diff --git a/.gitignore b/.gitignore index 01012cb0..adb9120a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,9 +3,6 @@ # Compiled class file *.class -# Log file -*.log - # BlueJ files *.ctxt @@ -143,3 +140,11 @@ _idea .DS_Store .module-cache +# Webpack bundles +app/src/main/webapp/resources/js-bundles + +# Temporary folders +tmp +temp +_tmp +_temp \ No newline at end of file diff --git a/README.md b/README.md index c3e80645..ecab55e9 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,24 @@ contents of the source directories change. This is especially useful when experi or the bioentity properties directory is updated after a release of Ensembl, WormBase ParaSite, Reactome, Gene Ontoloy, Plant Ontology or InterPro. +### How to add a private experiment bundle + +Private experiments are not available to download from our FTP site. You can download them from the `codon-cluster` by using the following steps: + +1. These steps should be done before the `PostGreSQL` and `Solr` steps. +2. After logged in to the `codon-cluster` check if the experiment bundle can be found under this path: +```/nfs/production/irene/ma/experiments/```. +2. If it is there, then go to the folder on your local computer where you would like to download the bundle. +3. Download it by this command: +```scp -r codon-login:/nfs/production/irene/ma/experiments/ .```. +4. Create a temp container with mounting the already existing data volume for our local experiments: +````docker container create --name expVol -v gxa_atlas-data-exp:/atlas-data/exp ubuntu:jammy```` +5. Copy the file bundles of the downloaded private experiment into the volume: ```docker cp expVol:/atlas-data/exp/magetab/``` +6. Add `` into the `PRIVATE_EXP_IDS` variable. It is in to `test-data.env` file under the `docker/prepare-dev-environment` folder. If it is not there, then please create it. +7. The experiment accession IDs in that variable should be separated by SPACE. + + + ### PostGreSQL To create our PostGreSQL database and run the schema migrations up to the latest version please execute this script: @@ -86,10 +104,21 @@ To create our PostGreSQL database and run the schema migrations up to the latest ``` ### Solr -To create the collections, their schemas and populate them, please run the following script. +To create the collections, their schemas and populate them, please run the following scripts. + +Currently, this step is separated into 2 sub-steps by Solr collections. +There is an inconsistency in our web apps and various shell scripts - that we use together with the Data Prod Team - +how we use the `SOLR_HOST` and `SOLR_HOSTS` variables. We need to sort this out, +but while it is not solved we probably have to keep this 2 sub-steps, unless we find a way to merge them. +To create and populate the `bioentities` collection: ```bash -./docker/prepare-dev-environment/solr/run.sh -r -l solr.log +./docker/prepare-dev-environment/solr-bioentities/run.sh -r -l solr-bioentities.log +``` + +To create and populate the `bulk-analytics` collection: +```bash +./docker/prepare-dev-environment/solr-analytics/run.sh -l solr-analytics.log ``` Run the script with the `-h` flag for more details. @@ -239,6 +268,9 @@ The script `debug-single-test.sh` is a shortcut for this task. It takes the same ``` ## Run web application + +Please check this first in the troubleshooting session: [Known Build Issue](#known-build-issue) + The web application is compiled in two stages: 1. Front end JavaScript packages are transpiled into β€œbundles” with [Webpack](https://webpack.js.org/) 2. Bundles and back end Java code are built as a WAR file @@ -270,9 +302,31 @@ If you don't give any flags, or you add both then the script is going to build b ## Troubleshooting +### Known Build Issue + +This current version of our developer env has a bug when we build and execute the application +with the `build-and-deploy-webapp.sh` script. +We have a ticket to fix this in our backlog: [Update bulk with the latest webpack and its dependencies](https://github.com/ebi-gene-expression-group/atlas-web-bulk/issues/176) + +You can build a working WAR with the following steps: +1. Manually build the UI: +```bash +./compile-front-end-packages.sh -iu +``` + +2. Manually build the backend: +```bash +./gradlew :app:war +``` + +3. Use this script to start up the web app on your local environment: +```bash +./build-and-deploy-webapp.sh -n +``` + ### SolrCloud nodes shut down on macOS Docker for macOS sets fairly strict resource limits for all Docker containers. If your containers require e.g. more -memory you need to increase the available amount in the Docker Dashboard. For bulk Expression Atlas, plase set Memory +memory you need to increase the available amount in the Docker Dashboard. For bulk Expression Atlas, please set Memory to between 8-12 GB and disk image to 100 GB or more. Please see the screenshot below for reference: ![Screenshot-2021-02-18-at-18-27-40](https://user-images.githubusercontent.com/4425744/109644570-8ccee680-7b4d-11eb-9db0-7a29fb4d9e2b.png) \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 0a3ea5e7..2868e2f7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,7 +6,7 @@ plugins { } gitProperties { - gitPropertiesName = "resources/git.properties" + gitPropertiesName = "resources/configuration.properties" } version '36.0.0' diff --git a/app/src/main/java/uk/ac/ebi/atlas/experimentpage/content/ExperimentPageContentService.java b/app/src/main/java/uk/ac/ebi/atlas/experimentpage/content/ExperimentPageContentService.java index 982c1584..d0ad60ca 100644 --- a/app/src/main/java/uk/ac/ebi/atlas/experimentpage/content/ExperimentPageContentService.java +++ b/app/src/main/java/uk/ac/ebi/atlas/experimentpage/content/ExperimentPageContentService.java @@ -10,14 +10,12 @@ import org.springframework.cache.annotation.Cacheable; import org.springframework.stereotype.Component; import uk.ac.ebi.atlas.commons.readers.TsvStreamer; -import uk.ac.ebi.atlas.experimentpage.ExperimentDesignFile; import uk.ac.ebi.atlas.experimentpage.ExternallyAvailableContentService; import uk.ac.ebi.atlas.experimentpage.json.JsonBaselineExperimentController; import uk.ac.ebi.atlas.experimentpage.qc.MicroarrayQcFiles; import uk.ac.ebi.atlas.experimentpage.qc.QcReportController; import uk.ac.ebi.atlas.model.download.ExternallyAvailableContent; import uk.ac.ebi.atlas.model.experiment.Experiment; -import uk.ac.ebi.atlas.model.experiment.ExperimentDesignTable; import uk.ac.ebi.atlas.model.experiment.ExperimentType; import uk.ac.ebi.atlas.model.experiment.sample.ReportsGeneExpression; import uk.ac.ebi.atlas.resource.DataFileHub; @@ -85,12 +83,6 @@ private JsonObject experimentPageContentForExperiment(final Experiment buildInfo; diff --git a/app/src/test/java/uk/ac/ebi/atlas/acceptance/rest/tests/DAS/DASFeaturesControllerWIT.java b/app/src/test/java/uk/ac/ebi/atlas/acceptance/rest/tests/DAS/DASFeaturesControllerWIT.java index 6e2ed5c5..2e9ed8ba 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/acceptance/rest/tests/DAS/DASFeaturesControllerWIT.java +++ b/app/src/test/java/uk/ac/ebi/atlas/acceptance/rest/tests/DAS/DASFeaturesControllerWIT.java @@ -85,7 +85,7 @@ void featuresURLGeneWithoutExpressions() throws Exception { .andExpect(status().isOk()) .andExpect(view().name("das-features")) .andExpect(model().attribute( - MODEL_ATTRIBUTE_NAMES[ThreadLocalRandom.current().nextInt(2, MODEL_ATTRIBUTE_NAMES.length)], + MODEL_ATTRIBUTE_NAMES[ThreadLocalRandom.current().nextInt(4, MODEL_ATTRIBUTE_NAMES.length)], "Not studied or no differential expression found for this gene")); } diff --git a/app/src/test/java/uk/ac/ebi/atlas/download/DownloadControllerWIT.java b/app/src/test/java/uk/ac/ebi/atlas/download/DownloadControllerWIT.java index f94dfa9c..00d186cf 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/download/DownloadControllerWIT.java +++ b/app/src/test/java/uk/ac/ebi/atlas/download/DownloadControllerWIT.java @@ -46,7 +46,7 @@ void downloadModelHaveFtpFileInfo() throws Exception { this.mockMvc.perform(get("/download")) .andExpect(status().isOk()) .andExpect(view().name("download")) - .andExpect(model().attributeExists("fileName", "fileSize", "fileTimestamp")); + .andExpect(model().attributeExists("mainTitle")); } @Test diff --git a/app/src/test/java/uk/ac/ebi/atlas/experimentimport/GxaExperimentCrudIT.java b/app/src/test/java/uk/ac/ebi/atlas/experimentimport/GxaExperimentCrudIT.java index 2f3e8770..7826df1c 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/experimentimport/GxaExperimentCrudIT.java +++ b/app/src/test/java/uk/ac/ebi/atlas/experimentimport/GxaExperimentCrudIT.java @@ -64,9 +64,10 @@ void updatesLastUpdateIfExperimentIsAlreadyPresent() { var lastUpdateBeforeUpdate = experimentBeforeUpdate.getLastUpdate(); subject.createExperiment(experimentAccession, RNG.nextBoolean()); - assertThat(subject.readExperiment(experimentAccession)).get() + var updatedExperiment = subject.readExperiment(experimentAccession).orElseThrow(); + assertThat(updatedExperiment) .isEqualToIgnoringGivenFields(experimentBeforeUpdate, "lastUpdate", "isPrivate"); - assertThat(subject.readExperiment(experimentAccession).orElseThrow().getLastUpdate()) + assertThat(updatedExperiment.getLastUpdate()) .isAfter(lastUpdateBeforeUpdate); } diff --git a/app/src/test/java/uk/ac/ebi/atlas/experimentimport/admin/ExperimentOpsExecutionServiceTest.java b/app/src/test/java/uk/ac/ebi/atlas/experimentimport/admin/ExperimentOpsExecutionServiceTest.java index 1aa0e07d..7a0e100a 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/experimentimport/admin/ExperimentOpsExecutionServiceTest.java +++ b/app/src/test/java/uk/ac/ebi/atlas/experimentimport/admin/ExperimentOpsExecutionServiceTest.java @@ -6,14 +6,11 @@ import org.mockito.Mock; import org.mockito.junit.MockitoJUnitRunner; import uk.ac.ebi.atlas.experimentimport.ExperimentCrud; -import uk.ac.ebi.atlas.experimentimport.ExperimentDto; import uk.ac.ebi.atlas.experimentimport.analyticsindex.AnalyticsIndexerManager; import uk.ac.ebi.atlas.experimentimport.coexpression.BaselineCoexpressionProfileLoader; -import java.util.Optional; import static org.mockito.Mockito.verify; -import static org.mockito.Mockito.when; @RunWith(MockitoJUnitRunner.class) public class ExperimentOpsExecutionServiceTest { @@ -28,14 +25,10 @@ public class ExperimentOpsExecutionServiceTest { @Mock private AnalyticsIndexerManager analyticsIndexerManager; - @Mock - private ExperimentDto experimentDto; - private ExperimentOpsExecutionService subject; @Before public void setUp() { - when(experimentCrudMock.readExperiment(ACCESSION)).thenReturn(Optional.of(experimentDto)); subject = new ExpressionAtlasExperimentOpsExecutionService( experimentCrudMock, @@ -46,7 +39,7 @@ public void setUp() { @Test public void updateExperimentDesignShouldRemoveExperimentFromCache() throws Exception { subject.attemptExecuteStatefulOp(ACCESSION, Op.UPDATE_DESIGN); -// verify(experimentTrader).removeExperimentFromCache(ACCESSION); + verify(experimentCrudMock).updateExperimentDesign(ACCESSION); } @Test diff --git a/app/src/test/java/uk/ac/ebi/atlas/search/JsonBioentityInformationControllerWIT.java b/app/src/test/java/uk/ac/ebi/atlas/search/JsonBioentityInformationControllerWIT.java index c498e35b..9bef27ea 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/search/JsonBioentityInformationControllerWIT.java +++ b/app/src/test/java/uk/ac/ebi/atlas/search/JsonBioentityInformationControllerWIT.java @@ -61,7 +61,7 @@ public void payloadIsValidJson() throws Exception { @Test public void geneIdContainingDotIsNotTruncated() throws Exception { - String geneId = solrUtils.fetchRandomGeneOfSpecies("Arabidopsis_lyrata"); // has gene IDs containing dots + String geneId = solrUtils.fetchRandomGeneOfSpecies("Schizosaccharomyces_pombe"); // has gene IDs containing dots if(!geneId.isEmpty()) { this.mockMvc diff --git a/app/src/test/java/uk/ac/ebi/atlas/tracks/GenomeBrowserControllerWIT.java b/app/src/test/java/uk/ac/ebi/atlas/tracks/GenomeBrowserControllerWIT.java index 50f6fcd9..c7ba515e 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/tracks/GenomeBrowserControllerWIT.java +++ b/app/src/test/java/uk/ac/ebi/atlas/tracks/GenomeBrowserControllerWIT.java @@ -303,7 +303,7 @@ void differentialVertebrateExperimentEnsembl() throws Exception { @Test void privateExperimentWithoutAccessKey() throws Exception { this.mockMvc.perform( - get(MessageFormat.format(URL_TEMPLATE, "ensembl", "E-MTAB-4106", "SPAC869.01", "g5_g1"))) + get(MessageFormat.format(URL_TEMPLATE, "ensembl", "E-MTAB-5555", "ENSMUSG00000000001", "g4_g2"))) .andExpect(status().isNotFound()) .andReturn(); } diff --git a/app/src/test/java/uk/ac/ebi/atlas/tracks/TracksControllerWIT.java b/app/src/test/java/uk/ac/ebi/atlas/tracks/TracksControllerWIT.java index 3d8a9338..6246d5b7 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/tracks/TracksControllerWIT.java +++ b/app/src/test/java/uk/ac/ebi/atlas/tracks/TracksControllerWIT.java @@ -64,7 +64,7 @@ void setUp() { @Test void getTrackFile() throws Exception { - this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5423", "g391"}))) + this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5422", "g2_g1"}))) .andExpect(status().isOk()); } @@ -77,7 +77,7 @@ void getTrackOfUnknownExperiment() throws Exception { @Test void getUnknownTrackEndsUpIn404NotFound() throws Exception { MvcResult result = - this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5423", "gFooBar"}))) + this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5422", "gFooBar"}))) .andExpect(status().isOk()) .andReturn(); @@ -87,14 +87,15 @@ void getUnknownTrackEndsUpIn404NotFound() throws Exception { @Test void getTrackPrivateExperimentWithoutAcessKey() throws Exception { - this.mockMvc.perform(get(DIFFERENTIAL_URL_TEMPLATE.format(new Object[] {"E-MTAB-4106", "g5_g3"}))) + this.mockMvc.perform(get(DIFFERENTIAL_URL_TEMPLATE.format(new Object[] {"E-MTAB-5555", "g4_g2"}))) .andExpect(status().isNotFound()); } @Test void getTrackPrivateExperimentWitIncorrectAcessKey() throws Exception { this.mockMvc.perform( - get(DIFFERENTIAL_URL_TEMPLATE.format(new Object[] {"E-MTAB-4106", "g5_g3"}) + "?accessKey=foo-bar")) + get(DIFFERENTIAL_URL_TEMPLATE.format(new Object[] {"E-MTAB-5555", "g4_g2"}) + + "?accessKey=foo-bar")) .andExpect(status().isNotFound()); } @@ -102,7 +103,7 @@ void getTrackPrivateExperimentWitIncorrectAcessKey() throws Exception { void getTrackPrivateExperimentWithGoodAcessKey() throws Exception { this.mockMvc.perform( get(DIFFERENTIAL_URL_TEMPLATE.format( - new Object[] {"E-MTAB-4106", "g5_g3"}) + "?accessKey=89319682-55b6-4b4b-a5ef-f50e1e0915ea")) + new Object[] {"E-MTAB-5555", "g4_g2"}) + "?accessKey=ef1db551-15ef-4074-b56c-ed9a1b1157d2")) .andExpect(status().isOk()); } } diff --git a/app/src/test/java/uk/ac/ebi/atlas/widget/BaselineAndDifferentialAnalyticsServiceIT.java b/app/src/test/java/uk/ac/ebi/atlas/widget/BaselineAndDifferentialAnalyticsServiceIT.java index 24b08d69..3ca36898 100644 --- a/app/src/test/java/uk/ac/ebi/atlas/widget/BaselineAndDifferentialAnalyticsServiceIT.java +++ b/app/src/test/java/uk/ac/ebi/atlas/widget/BaselineAndDifferentialAnalyticsServiceIT.java @@ -5,6 +5,7 @@ import com.google.gson.JsonObject; import org.hamcrest.Matchers; import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInstance; @@ -29,7 +30,6 @@ import static org.hamcrest.Matchers.greaterThan; import static org.hamcrest.Matchers.not; import static org.hamcrest.core.Is.is; -import static org.junit.Assert.assertTrue; import static uk.ac.ebi.atlas.utils.GsonProvider.GSON; @ExtendWith(SpringExtension.class) @@ -72,7 +72,7 @@ void geneExpressedInBaselineAndDifferentialExperiments() { JsonObject result = baselineAnalyticsSearchService.findFacetsForTreeSearch(SemanticQuery.create(BASELINE_GENE), SemanticQuery.create(), new Species("Foous baris", SpeciesProperties.UNKNOWN)); assertThat(result.entrySet(), not(Matchers.empty())); - assertTrue("This Ensembl gene has a homo sapiens result", result.has("homo sapiens")); + Assertions.assertTrue(result.has("homo sapiens"), "This Ensembl gene has a homo sapiens result"); } @Test @@ -106,11 +106,11 @@ void nonExistentGene() { @Test void differentialAnalyticsSearchServiceHasTheRightReturnFormat() { JsonObject result = - differentialAnalyticsSearchService.fetchResults(SemanticQuery.create("GO:0008150"), EMPTY_QUERY); + differentialAnalyticsSearchService.fetchResults(SemanticQuery.create("GO:2000651"), EMPTY_QUERY); testDifferentialResultsAreInRightFormat(result); } - private ImmutableList fieldsNeededInDifferentialResults = ImmutableList.of( + private final ImmutableList fieldsNeededInDifferentialResults = ImmutableList.of( "species", "kingdom", "experimentType", @@ -127,14 +127,14 @@ void differentialAnalyticsSearchServiceHasTheRightReturnFormat() { "colour", "id"); - private ImmutableList fieldsNeededInMicroarrayDifferentialResults = + private final ImmutableList fieldsNeededInMicroarrayDifferentialResults = ImmutableList.builder() .addAll(fieldsNeededInDifferentialResults) .add("tStatistic") .build(); private void testDifferentialResultsAreInRightFormat(JsonObject result) { - assertTrue(GSON.toJson(result), result.has("results")); + Assertions.assertTrue(result.has("results"), GSON.toJson(result)); assertThat(result.get("results").getAsJsonArray().size(), greaterThan(0)); for (JsonElement jsonElement: result.get("results").getAsJsonArray()) { @@ -143,11 +143,11 @@ private void testDifferentialResultsAreInRightFormat(JsonObject result) { if (experimentType.isMicroarray()) { for (String fieldName: fieldsNeededInMicroarrayDifferentialResults) { - assertTrue("result has " + fieldName, jsonElement.getAsJsonObject().has(fieldName)); + Assertions.assertTrue(jsonElement.getAsJsonObject().has(fieldName), "result has " + fieldName); } } else { for (String fieldName: fieldsNeededInDifferentialResults) { - assertTrue("result has " + fieldName, jsonElement.getAsJsonObject().has(fieldName)); + Assertions.assertTrue(jsonElement.getAsJsonObject().has(fieldName), "result has " + fieldName); } } } diff --git a/app/src/test/resources/fixtures/experiment-fixture.sql b/app/src/test/resources/fixtures/experiment-fixture.sql index 64817539..9f2bcb95 100644 --- a/app/src/test/resources/fixtures/experiment-fixture.sql +++ b/app/src/test/resources/fixtures/experiment-fixture.sql @@ -8,8 +8,7 @@ INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, do INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MEXP-1810', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'a137fc25-4f99-41f0-a5b8-b598d6175085', '2021-01-22 21:08:41.599319', '19615088', '10.1186/1471-2164-10-325', false, 'Caenorhabditis elegans', '2021-01-22 21:08:41.599319'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MEXP-1968', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', '65232ab9-def8-402d-8ed6-7a8cb0497855', '2021-01-22 21:08:41.630668', '19363488', '10.1038/ncb1866', false, 'Mus musculus', '2021-01-22 21:08:41.630668'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-1913', 'RNASEQ_MRNA_DIFFERENTIAL', '6a36eb1f-65ad-44e2-b78e-ebac128e7495', '2021-01-22 21:08:41.666076', null, null, false, 'Oryza sativa Indica group', '2021-01-22 21:08:41.666076'); -INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-2770', 'RNASEQ_MRNA_BASELINE', '599f36c7-e447-42fa-8a9b-e093c88614ab', '2021-01-22 21:08:46.984579', '22460905', '10.1038/nature11003', false, 'Homo sapiens', '2021-01-22 21:08:46.984579'); -INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-2836', 'RNASEQ_MRNA_BASELINE', '41978942-b362-46b4-aa1f-011d4a07ac16', '2021-01-22 21:08:47.068539', '26694548, 26870787, 5613900', '10.1126/science.1260419, 10.1371/journal.pone.0145301, None', false, 'Homo sapiens', '2021-01-22 21:08:47.068539'); +INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-2836', 'RNASEQ_MRNA_BASELINE', '41978942-b362-46b4-aa1f-011d4a07ac16', '2021-01-22 21:08:47.068539', '26694548, 26870787, 5613900', '10.1126/science.1260419, 10.1371/journal.pone.0145301, 10.1016/j.ebiom.2015.09.027', false, 'Homo sapiens', '2021-01-22 21:08:47.068539'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-2909', 'RNASEQ_MRNA_DIFFERENTIAL', '4e6c212c-1d70-4275-81c1-d3e25d0bd09a', '2021-01-22 21:08:47.092711', null, null, false, 'Anas platyrhynchos', '2021-01-22 21:08:47.092711'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-3827', 'RNASEQ_MRNA_BASELINE', 'f5e6d655-6bbb-4abb-8c96-a2b595f1ad6f', '2021-01-22 21:08:47.130728', null, null, false, 'Homo sapiens', '2021-01-22 21:08:47.130728'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-3834', 'RNASEQ_MRNA_DIFFERENTIAL', '72d3bc49-4650-4ab8-8628-36ed49d14fff', '2021-01-22 21:08:47.149904', null, null, false, 'Oryza sativa', '2021-01-22 21:08:47.149904'); @@ -17,14 +16,13 @@ INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, do INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-451', 'RNASEQ_MRNA_BASELINE', 'dc592ad1-d3d5-4284-bf98-6cbfe4472dfe', '2021-01-22 21:08:47.237945', '22253936', '10.1371/journal.pntd.0001455', false, 'Schistosoma mansoni', '2021-01-22 21:08:47.237945'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-4559', 'RNASEQ_MRNA_DIFFERENTIAL', '4d48908f-ef54-44b3-9405-35cdf6acd08e', '2021-01-22 21:08:47.259809', null, null, false, 'Zea mays subsp. mays', '2021-01-22 21:08:47.259809'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5128', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', '5550f8a9-2055-419b-864c-ab2c9d91d9d2', '2021-01-22 21:08:47.284917', null, null, false, 'Saccharomyces cerevisiae', '2021-01-22 21:08:47.284917'); -INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5200', 'RNASEQ_MRNA_BASELINE', '2e13c434-4da1-40fb-b9e3-af92fed0c959', '2021-01-22 21:08:48.092384', null, '10.1038/s41586-020-1969-6', false, 'Homo sapiens', '2021-01-22 21:08:48.092384'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5422', 'RNASEQ_MRNA_DIFFERENTIAL', '2ec933ae-3344-4601-9279-dc58633cb940', '2021-01-22 21:08:51.054533', null, null, false, 'Zea mays', '2021-01-22 21:08:51.054533'); -INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5423', 'RNASEQ_MRNA_BASELINE', '3129b93d-cf5e-49b3-aebb-e7da1af3fe44', '2021-01-22 21:09:02.204925', null, null, false, 'Homo sapiens', '2021-01-22 21:09:02.204925'); +INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5555', 'RNASEQ_MRNA_DIFFERENTIAL', 'ef1db551-15ef-4074-b56c-ed9a1b1157d2', '2022-01-01 10:53:23.911751', null, null, true, 'Mus musculus', '2020-08-06 16:47:30.425804'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5633', 'RNASEQ_MRNA_DIFFERENTIAL', 'f4beab2e-9657-44c0-b29d-51b0a7bcf6e7', '2021-01-22 21:09:02.258675', null, null, false, 'Mus musculus domesticus', '2021-01-22 21:09:02.258675'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5941', 'RNASEQ_MRNA_DIFFERENTIAL', 'b94045cd-6ebf-4eba-8880-0c7bf60ac5a3', '2021-01-22 21:09:02.279798', null, null, false, 'Oryza sativa Japonica Group', '2021-01-22 21:09:02.279798'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-TABM-713', 'MICROARRAY_1COLOUR_MICRORNA_DIFFERENTIAL', '577cb0f0-77da-41a6-8a40-e2d87d26462f', '2021-01-22 21:09:02.324879', '19823581', '10.1371/journal.pone.0007405', false, 'Homo sapiens', '2021-01-22 21:09:02.324879'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5214', 'RNASEQ_MRNA_BASELINE', 'c582039b-9cc4-456c-82e5-1a5c4ca31a2e', '2021-01-27 19:57:33.246907', '25954001', '10.1126/science.1262110', false, 'Homo sapiens', '2021-01-27 19:57:33.246907'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-PROT-1', 'PROTEOMICS_BASELINE', 'b9e6f93b-2eaf-4453-bdd1-f8e6a20e989b', '2021-01-28 11:27:20.638822', '24669763, 24870542', '10.1021/pr401169d, 10.1038/nature13302', false, 'Homo sapiens', '2021-01-28 11:27:20.638822'); -INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', '89319682-55b6-4b4b-a5ef-f50e1e0915ea', '2021-01-22 21:08:47.172392', null, null, true, 'Schizosaccharomyces pombe', '2021-01-22 21:08:47.172392'); +INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', '89319682-55b6-4b4b-a5ef-f50e1e0915ea', '2021-01-22 21:08:47.172392', null, null, false, 'Schizosaccharomyces pombe', '2021-01-22 21:08:47.172392'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-PROT-28', 'PROTEOMICS_BASELINE_DIA', '06a070de-bb86-437f-9e3f-8ab50fcb7ee9', '2021-10-28 14:41:36.785096', '27561551', '10.1038/ncomms12645', false, 'Homo sapiens', '2021-10-28 14:41:36.785096'); INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-PROT-39', 'PROTEOMICS_DIFFERENTIAL', '7cb4ea96-ab27-4b2b-83dd-eeb042e6bb15', '2022-01-07 10:53:23.911751', '30691479', '10.1186/s13041-019-0430-y', false, 'Homo sapiens', '2020-08-06 16:47:30.425804'); diff --git a/app/src/test/resources/fixtures/small-experiment-fixture.sql b/app/src/test/resources/fixtures/small-experiment-fixture.sql index 2904ae1d..6565b047 100644 --- a/app/src/test/resources/fixtures/small-experiment-fixture.sql +++ b/app/src/test/resources/fixtures/small-experiment-fixture.sql @@ -1,18 +1,16 @@ --SELECT * FROM experiment INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-ERAD-475', 'RNASEQ_MRNA_BASELINE', 'Danio rerio', 'b9d97ed2-5781-4612-b5bc-154b742407a0', FALSE, '2018-09-25 14:47:05.650556', '2018-09-25 14:47:05.650556', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MEXP-1968', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Mus musculus', '61307087-0959-4a9f-8903-d32d791c5a2a', FALSE, '2018-09-25 14:47:05.696830', '2018-09-25 14:47:05.696830', '19363488', NULL); ---INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2770', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', '7906ab89-00d8-4496-a03a-7e45917fcf65', FALSE, '2018-09-25 14:47:09.712458', '2018-09-25 14:47:09.712458', '22460905', NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-3827', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', '29954c1b-e124-44a2-ac54-30e1f56b388b', FALSE, '2018-09-25 14:47:09.764754', '2018-09-25 14:47:09.764754', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4559', 'RNASEQ_MRNA_DIFFERENTIAL', 'Zea mays subsp. mays', '0f313ed3-b2a7-432b-955d-4b32acc6d427', FALSE, '2018-09-25 14:47:09.782017', '2018-09-25 14:47:09.782017', NULL, NULL); -INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5200', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'e714ed0f-66cd-45bc-be31-32db465ced85', FALSE, '2018-09-25 14:47:10.355291', '2018-09-25 14:47:10.355291', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5422', 'RNASEQ_MRNA_DIFFERENTIAL', 'Zea mays', 'd45ee12a-cc48-4d79-a5d4-8afc1f3eb99c', FALSE, '2018-09-25 14:47:10.433139', '2018-09-25 14:47:10.433139', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5633', 'RNASEQ_MRNA_DIFFERENTIAL', 'Mus musculus domesticus', 'b003fbaa-abe5-4fd0-a158-2c07588ec2c4', FALSE, '2018-09-25 14:47:10.443715', '2018-09-25 14:47:10.443715', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-PROT-1', 'PROTEOMICS_BASELINE', 'Homo sapiens', 'a27ccefd-0332-4ec3-acae-7904ad5fe6a4', FALSE, '2018-09-25 14:47:10.465387', '2018-09-25 14:47:10.465387', '24669763, 24870542', NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2909', 'RNASEQ_MRNA_DIFFERENTIAL', 'Anas platyrhynchos', '0539b3c6-f5fe-41fe-b330-3f77767581f8', FALSE, '2018-09-25 14:47:10.494002', '2018-09-25 14:47:10.494002', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-3834', 'RNASEQ_MRNA_DIFFERENTIAL', 'Oryza sativa', 'c555596b-7347-4986-827c-daadbbab068a', FALSE, '2018-09-25 14:47:10.502111', '2018-09-25 14:47:10.502111', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5128', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Saccharomyces cerevisiae', '6e50909b-7380-4268-a142-90028bfddc72', FALSE, '2018-09-25 14:47:10.521114', '2018-09-25 14:47:10.521114', NULL, NULL); ---INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5214', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'ab4819c9-1ed3-46b7-969e-afb0f36515f2', FALSE, '2018-09-25 14:47:13.862734', '2018-09-25 14:47:13.862734', '25954001', NULL); ---INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5423', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'c552df94-f38c-4b02-9b7b-43787eaec211', FALSE, '2018-09-25 14:47:22.303555', '2018-09-25 14:47:22.303555', NULL, NULL); +INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5214', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'ab4819c9-1ed3-46b7-969e-afb0f36515f2', FALSE, '2018-09-25 14:47:13.862734', '2018-09-25 14:47:13.862734', '25954001', NULL); +INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5555', 'RNASEQ_MRNA_DIFFERENTIAL', 'Mus musculus', 'ef1db551-15ef-4074-b56c-ed9a1b1157d2', true, '2018-09-25 14:47:10.465387', '2022-01-01 10:53:23.911751', '30691479', '10.1186/s13041-019-0430-y'); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5941', 'RNASEQ_MRNA_DIFFERENTIAL', 'Oryza sativa Japonica Group', '1e123c89-1771-4d47-a133-d13bf832d11c', FALSE, '2018-09-25 14:47:22.339414', '2018-09-25 14:47:22.339414', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-TABM-713', 'MICROARRAY_1COLOUR_MICRORNA_DIFFERENTIAL', 'Homo sapiens', '261799f4-ab40-472b-a330-0e8dd28444e3', FALSE, '2018-09-25 14:47:22.349442', '2018-09-25 14:47:22.349442', '19823581', NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-GEOD-43049', 'MICROARRAY_2COLOUR_MRNA_DIFFERENTIAL', 'Homo sapiens', '5a1d29f7-9eba-42c3-a722-9370cb5e9b0f', FALSE, '2018-09-25 14:49:42.707984', '2018-09-25 14:49:42.707984', NULL, NULL); @@ -20,6 +18,6 @@ INSERT INTO experiment (accession, type, species, access_key, private, load_date INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MEXP-1810', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Caenorhabditis elegans', '50f28f5f-e748-4dd8-9ac8-a74fe393d6a1', FALSE, '2018-09-25 20:08:56.844377', '2018-09-25 20:08:56.844377', '19615088', NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MAXD-6', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Drosophila melanogaster', '9000547c-964d-4643-87b7-a53b41144ba5', FALSE, '2018-10-04 10:42:18.685367', '2018-10-04 10:42:18.685367', '16277749', NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4401', 'RNASEQ_MRNA_BASELINE', 'Brachypodium distachyon', '59e227ef-159c-434e-b621-08b5cf02b4be', FALSE, '2018-10-05 14:21:12.972882', '2018-10-05 14:21:12.972882', '22443345', NULL); -INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2836', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'be0f3bf4-5900-4bd0-94cd-34f3765de5e5', FALSE, '2018-10-05 15:03:22.352400', '2018-10-05 15:03:22.352400', '26694548, 5613900, 27699219', NULL); -INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', 'Schizosaccharomyces pombe', '1483a23f-4853-4583-b10c-5ab333bf522f', true, '2018-10-05 15:23:03.254754', '2018-10-05 15:23:03.254754', NULL, NULL); +INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2836', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'be0f3bf4-5900-4bd0-94cd-34f3765de5e5', TRUE, '2018-10-05 15:03:22.352400', '2018-10-05 15:03:22.352400', '26694548, 5613900, 27699219', NULL); +INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', 'Schizosaccharomyces pombe', '1483a23f-4853-4583-b10c-5ab333bf522f', FALSE, '2018-10-05 15:23:03.254754', '2018-10-05 15:23:03.254754', NULL, NULL); INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-451', 'RNASEQ_MRNA_BASELINE', 'Schistosoma mansoni', '240bf90b-5e7b-4d1b-a9c0-cae7a2e92841', FALSE, '2018-10-06 14:18:30.525142', '2018-10-06 14:18:30.525142', '22253936', NULL); diff --git a/atlas-web-core b/atlas-web-core index b6e5ad6d..4b7eab49 160000 --- a/atlas-web-core +++ b/atlas-web-core @@ -1 +1 @@ -Subproject commit b6e5ad6d3f11afea1239d311607b4f82af746f67 +Subproject commit 4b7eab49792c3fdd8be0b753108e41d85b5031a7 diff --git a/buildSrc/src/main/groovy/atlas-web-app.java-conventions.gradle b/buildSrc/src/main/groovy/atlas-web-app.java-conventions.gradle index 7ff37170..aafd45fb 100644 --- a/buildSrc/src/main/groovy/atlas-web-app.java-conventions.gradle +++ b/buildSrc/src/main/groovy/atlas-web-app.java-conventions.gradle @@ -64,8 +64,8 @@ dependencies { testImplementation 'org.springframework:spring-test:5.1.5.RELEASE' testImplementation 'com.h2database:h2:1.4.199' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.4.1' - testImplementation 'org.mockito:mockito-core:2.25.1' - testImplementation 'org.mockito:mockito-junit-jupiter:2.25.1' + testImplementation 'org.mockito:mockito-core:5.2.0' + testImplementation 'org.mockito:mockito-junit-jupiter:5.2.0' testImplementation 'org.assertj:assertj-core:3.11.1' testImplementation 'org.assertj:assertj-guava:3.2.0' testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0' diff --git a/debug-single-test.sh b/debug-single-test.sh index 8dc10e1f..04a43f54 100755 --- a/debug-single-test.sh +++ b/debug-single-test.sh @@ -5,26 +5,25 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) source ${SCRIPT_DIR}/docker/dev.env function print_usage() { - printf '\n%b\n\n' "Usage: ${0} [ -p SUBPROJECT_NAME ] [ -s SCHEMA_VERSION ] -n TEST_NAME" + printf '\n%b\n\n' "Usage: ${0} [ -p SUBREPO_NAME ] -n TEST_NAME" printf '%b\n' "Debug a unit/integration test in a module with the given schema version" printf '\n%b\n' "-n\tName of the unit/integration test to debug;\n\tfor example: CellPlotDaoIT" printf '\n%b\n' "-p\tName of the sub-project the test can be found;\n\tfor example: app or atlas-web-core (default is app)" printf '%b\n\n' "-h\tShow usage instructions" } -PROJECT_NAME=app -SCHEMA_VERSION=latest +REPO_NAME=app mandatory_name=false -while getopts "n:p:s:h" opt +while getopts "n:p:h" opt do case ${opt} in n ) mandatory_name=true; TEST_CASE_NAME=${OPTARG} ;; p ) - PROJECT_NAME=${OPTARG} - if ! [[ "$PROJECT_NAME" =~ ^(app|atlas-web-core)$ ]]; then + REPO_NAME=${OPTARG} + if ! [[ "$REPO_NAME" =~ ^(app|atlas-web-core)$ ]]; then echo "Project name is not valid: $OPTARG" >&2 exit 1 fi @@ -54,7 +53,7 @@ docker-compose \ --env-file ${SCRIPT_DIR}/docker/dev.env \ -f docker/docker-compose-postgres-test.yml \ -f docker/docker-compose-solrcloud.yml \ --f docker/docker-compose-gradle.yml \ +-f docker/docker-compose-gradle-test.yml \ run --rm --service-ports \ gxa-gradle bash -c " set -e @@ -63,14 +62,14 @@ gradle clean gradle \ -PdataFilesLocation=/atlas-data \ --PexperimentFilesLocation=/atlas-data/gxa \ +-PexperimentFilesLocation=/atlas-data/exp \ -PexperimentDesignLocation=/atlas-data/expdesign \ -PjdbcUrl=jdbc:postgresql://${POSTGRES_HOST}:5432/${POSTGRES_DB} \ -PjdbcUsername=${POSTGRES_USER} \ -PjdbcPassword=${POSTGRES_PASSWORD} \ --PzkHosts=${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 \ --PsolrHosts=http://${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr,http://${SOLR_CLOUD_CONTAINER_2_NAME}:8983/solr \ -${PROJECT_NAME}:testClasses +-PzkHosts=${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 \ +-PsolrHosts=http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr,http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_2_NAME}:8983/solr \ +${REPO_NAME}:testClasses -gradle --continuous -PremoteDebug :${PROJECT_NAME}:test --tests $TEST_CASE_NAME +gradle --continuous -PremoteDebug :${REPO_NAME}:test --tests $TEST_CASE_NAME " diff --git a/docker/dev.env b/docker/dev.env index 336ab10e..89ce1e86 100644 --- a/docker/dev.env +++ b/docker/dev.env @@ -5,6 +5,7 @@ GRADLE_RO_DEP_CACHE_VOL_NAME=gradle-ro-dep-cache ATLAS_DATA_BIOENTITY_PROPERTIES_VOL_NAME=atlas-data-bioentity-properties ATLAS_DATA_EXP_VOL_NAME=atlas-data-exp +ATLAS_DATA_ONTOLOGY_VOL_NAME=atlas-data-ontology ATLAS_DATA_EXPDESIGN_VOL_NAME=atlas-data-expdesign ATLAS_DATA_VOL_NAME=gxa-data diff --git a/docker/docker-compose-gradle-test.yml b/docker/docker-compose-gradle-test.yml new file mode 100644 index 00000000..10e1383d --- /dev/null +++ b/docker/docker-compose-gradle-test.yml @@ -0,0 +1,45 @@ +version: "3.6" + +services: + gxa-gradle: + image: gradle:7.0-jdk11 + networks: + - atlas-test-net + ports: + - "5005:5005" + volumes: + - ..:/root/project + - gradle-wrapper-dists:/root/.gradle/wrapper/dists + - gradle-ro-dep-cache:/gradle-ro-dep-cache:ro + - bioentity-properties:/atlas-data/bioentity_properties:ro + - gxa-exp:/atlas-data/exp:ro + - gxa-expdesign:/atlas-data/expdesign + - gxa-ontology:/atlas-data/ontology + depends_on: + gxa-solrcloud-0: + condition: service_started + gxa-solrcloud-1: + condition: service_started + gxa-flyway: + condition: service_completed_successfully + environment: + GRADLE_RO_DEP_CACHE: /gradle-ro-dep-cache + working_dir: /root/project + +volumes: + gradle-wrapper-dists: + name: ${PROJECT_NAME}_${GRADLE_WRAPPER_DISTS_VOL_NAME} + gradle-ro-dep-cache: + name: ${PROJECT_NAME}_${GRADLE_RO_DEP_CACHE_VOL_NAME} + bioentity-properties: + name: ${PROJECT_NAME}_${ATLAS_DATA_BIOENTITY_PROPERTIES_VOL_NAME} + gxa-exp: + name: ${PROJECT_NAME}_${ATLAS_DATA_EXP_VOL_NAME} + gxa-expdesign: + name: ${PROJECT_NAME}_${ATLAS_DATA_EXPDESIGN_VOL_NAME} + gxa-ontology: + name: ${PROJECT_NAME}_${ATLAS_DATA_ONTOLOGY_VOL_NAME} + +networks: + atlas-test-net: + name: atlas-test-net \ No newline at end of file diff --git a/docker/docker-compose-gradle.yml b/docker/docker-compose-gradle.yml index 25cd34a7..14ca342b 100644 --- a/docker/docker-compose-gradle.yml +++ b/docker/docker-compose-gradle.yml @@ -12,6 +12,7 @@ services: - bioentity-properties:/atlas-data/bioentity_properties:ro - gxa-exp:/atlas-data/exp:ro - gxa-expdesign:/atlas-data/expdesign + - gxa-ontology:/atlas-data/ontology depends_on: gxa-solrcloud-0: condition: service_started @@ -34,6 +35,8 @@ volumes: name: ${PROJECT_NAME}_${ATLAS_DATA_EXP_VOL_NAME} gxa-expdesign: name: ${PROJECT_NAME}_${ATLAS_DATA_EXPDESIGN_VOL_NAME} + gxa-ontology: + name: ${PROJECT_NAME}_${ATLAS_DATA_ONTOLOGY_VOL_NAME} networks: atlas-test-net: diff --git a/docker/docker-compose-solrcloud.yml b/docker/docker-compose-solrcloud.yml index 306a4fba..d37e2217 100644 --- a/docker/docker-compose-solrcloud.yml +++ b/docker/docker-compose-solrcloud.yml @@ -67,6 +67,8 @@ services: SOLR_HEAP: 3g SOLR_OPTS: -Denable.packages=true -Dsolr.max.booleanClauses=100000000 ZK_HOST: ${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 + secrets: + - solrcloud.der depends_on: - gxa-solrcloud-zookeeper-0 - gxa-solrcloud-zookeeper-1 @@ -87,12 +89,18 @@ services: SOLR_HEAP: 3g SOLR_OPTS: -Denable.packages=true -Dsolr.max.booleanClauses=100000000 ZK_HOST: ${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 + secrets: + - solrcloud.der depends_on: - gxa-solrcloud-zookeeper-0 - gxa-solrcloud-zookeeper-1 - gxa-solrcloud-zookeeper-2 command: "-q" +secrets: + solrcloud.der: + file: ${SOLR_PUBLIC_KEY:-/dev/null} + volumes: zookeeper-0-data: name: ${PROJECT_NAME}_solrcloud-zookeeper-0-data @@ -113,4 +121,4 @@ volumes: networks: atlas-test-net: - name: atlas-test-net \ No newline at end of file + name: atlas-test-net diff --git a/docker/docker-compose-tomcat.yml b/docker/docker-compose-tomcat.yml index a6f95782..ce903f6a 100644 --- a/docker/docker-compose-tomcat.yml +++ b/docker/docker-compose-tomcat.yml @@ -16,9 +16,10 @@ services: - ../webapps:/usr/local/tomcat/webapps - ./webapp-properties:/webapp-properties - bioentity-properties:/atlas-data/bioentity_properties - - gxa-data:/atlas-data/gxa + - gxa-data:/atlas-data/exp - gxa-expdesign:/atlas-data/expdesign - gxa-exp:/atlas-data/exp + - gxa-ontology:/atlas-data/ontology - gxa-tomcat-conf:/usr/local/tomcat/conf depends_on: gxa-gradle-build: @@ -46,6 +47,8 @@ volumes: name: ${PROJECT_NAME}_${ATLAS_DATA_EXP_VOL_NAME} gxa-expdesign: name: ${PROJECT_NAME}_${ATLAS_DATA_EXPDESIGN_VOL_NAME} + gxa-ontology: + name: ${PROJECT_NAME}_${ATLAS_DATA_ONTOLOGY_VOL_NAME} networks: atlas-test-net: diff --git a/docker/prepare-dev-environment/postgres/docker-compose.yml b/docker/prepare-dev-environment/postgres/docker-compose.yml index 91cdd22e..0a57c1b6 100644 --- a/docker/prepare-dev-environment/postgres/docker-compose.yml +++ b/docker/prepare-dev-environment/postgres/docker-compose.yml @@ -27,7 +27,7 @@ services: -PjdbcUrl=jdbc:postgresql://${POSTGRES_HOST}:5432/${POSTGRES_DB} \ -PjdbcUsername=${POSTGRES_USER} \ -PjdbcPassword=${POSTGRES_PASSWORD} \ - :cli:bootRun --args="create-update-experiment -e $(echo ${EXP_IDS} | sed -e "s/ /,/g")" + :cli:bootRun --args="create-update-experiment -e $(echo ${EXP_IDS} | sed -e "s/ /,/g") -p $(echo ${PRIVATE_EXP_IDS} | sed -e "s/ /,/g")" ./gradlew \ -PexperimentFilesLocation=/atlas-data/exp \ diff --git a/docker/prepare-dev-environment/solr-analytics/Dockerfile b/docker/prepare-dev-environment/solr-analytics/Dockerfile new file mode 100644 index 00000000..6e01eb29 --- /dev/null +++ b/docker/prepare-dev-environment/solr-analytics/Dockerfile @@ -0,0 +1,23 @@ +FROM ubuntu:jammy + +# Update package list and install necessary tools +# Python 3 is required by index-bioentities but comes as part of Ubuntu +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + git openjdk-11-jdk jq rsync curl + +# Clean up APT cache and temporary files +RUN apt-get clean && \ + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +# Create the necessary directory +RUN mkdir -p /root/bioentity-properties-jsonl +RUN mkdir -p /root/experiments-jsonl + +# Clone the necessary repositories +WORKDIR /root +RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/index-bioentities.git +RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/atlas-web-bulk.git +RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/solr-bulk.git + +ENTRYPOINT ["/bin/bash", "-c"] diff --git a/docker/prepare-dev-environment/solr-analytics/docker-compose.yml b/docker/prepare-dev-environment/solr-analytics/docker-compose.yml new file mode 100644 index 00000000..8ef79936 --- /dev/null +++ b/docker/prepare-dev-environment/solr-analytics/docker-compose.yml @@ -0,0 +1,92 @@ +version: "3.6" + +services: + solr-populator: + build: + context: ${DOCKERFILE_PATH} + no_cache: true + networks: + - atlas-test-net + ports: + - "8089:8089" + depends_on: + - gxa-postgres + - gxa-solrcloud-0 + - gxa-solrcloud-1 + volumes: + - gradle-wrapper-dists:/root/.gradle/wrapper/dists + - gradle-ro-dep-cache:/gradle-ro-dep-cache:ro + - atlas-data-bioentity-properties:/atlas-data/bioentity_properties + - atlas-data-exp:/atlas-data/exp + - atlas-data-expdesign:/atlas-data/expdesign + secrets: + - solrcloud.pem + environment: + JAVA_TOOL_OPTIONS: "-Dfile.encoding=UTF8" + JAVA_OPTS: "-Dsolr.httpclient.builder.factory=org.apache.solr.client.solrj.impl.PreemptiveBasicAuthClientBuilderFactory -Dbasicauth=${SOLR_USER}:${SOLR_PASSWORD}" + GRADLE_RO_DEP_CACHE: /gradle-ro-dep-cache + ZK_HOSTS: "${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181" + SOLR_HOST: "http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr" + SOLR_NUM_SHARDS: 2 + NUM_DOCS_PER_BATCH: 20000 + SOLR_COLLECTION_BIOENTITIES: bioentities + SOLR_COLLECTION_BIOENTITIES_SCHEMA_VERSION: 1 + SOLR_COLLECTION_BULK_ANALYTICS: bulk-analytics + SOLR_COLLECTION_BULK_ANALYTICS_SCHEMA_VERSION: 1 + working_dir: /root + command: + - | + cd /root/atlas-web-bulk + ./gradlew -PdataFilesLocation=/root \ + -PexperimentFilesLocation=/atlas-data/exp \ + -PexperimentDesignLocation=/atlas-data/expdesign \ + -PjdbcUrl=jdbc:postgresql://${POSTGRES_HOST}:5432/${POSTGRES_DB} \ + -PjdbcUsername=${POSTGRES_USER} \ + -PjdbcPassword=${POSTGRES_PASSWORD} \ + -PzkHosts=$${ZK_HOSTS} \ + -PsolrHosts=$${SOLR_HOST} \ + -PsolrUser=${SOLR_USER} \ + -PsolrPassword=${SOLR_PASSWORD} \ + :cli:bootRun --args="bulk-analytics-json --output=/root/experiments-jsonl -e $(echo ${EXP_IDS} ${PRIVATE_EXP_IDS} | sed -e "s/ /,/g")" + + cd /root/solr-bulk/bin + export SOLR_HOST="${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983" + ./create-bulk-analytics-collection.sh + echo "bulk-analytics collection has been created" + ./create-bulk-analytics-schema.sh + echo "bulk-analytics schema has been created" + + cd /root/index-bioentities/bin + export SOLR_COLLECTION=$${SOLR_COLLECTION_BULK_ANALYTICS} + export SCHEMA_VERSION=$${SOLR_COLLECTION_BULK_ANALYTICS_SCHEMA_VERSION} + export SOLR_HOSTS="${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983" + export SOLR_PROCESSORS=dedupe + for FILE in `ls /root/experiments-jsonl/*.jsonl` + do + INPUT_JSONL=$${FILE} ./solr-jsonl-chunk-loader.sh >> /dev/stdout 2>&1 + done + +secrets: + solrcloud.pem: + file: ${SOLR_PRIVATE_KEY:-/dev/null} + +volumes: + gradle-wrapper-dists: + external: true + name: ${PROJECT_NAME}_${GRADLE_WRAPPER_DISTS_VOL_NAME} + gradle-ro-dep-cache: + external: true + name: ${PROJECT_NAME}_${GRADLE_RO_DEP_CACHE_VOL_NAME} + atlas-data-bioentity-properties: + external: true + name: ${PROJECT_NAME}_${ATLAS_DATA_BIOENTITY_PROPERTIES_VOL_NAME} + atlas-data-exp: + external: true + name: ${PROJECT_NAME}_${ATLAS_DATA_EXP_VOL_NAME} + atlas-data-expdesign: + external: true + name: ${PROJECT_NAME}_${ATLAS_DATA_EXPDESIGN_VOL_NAME} + +networks: + atlas-test-net: + name: atlas-test-net diff --git a/docker/prepare-dev-environment/solr/run.sh b/docker/prepare-dev-environment/solr-analytics/run.sh similarity index 79% rename from docker/prepare-dev-environment/solr/run.sh rename to docker/prepare-dev-environment/solr-analytics/run.sh index 2f2bec5b..ff2070fd 100755 --- a/docker/prepare-dev-environment/solr/run.sh +++ b/docker/prepare-dev-environment/solr-analytics/run.sh @@ -14,27 +14,22 @@ source ${ENV_FILE} # print_error source ${SCRIPT_DIR}/../utils.sh -REMOVE_VOLUMES=false LOG_FILE=/dev/stdout function print_usage() { - printf '\n%b\n' "Usage: ${0} [ -r ] [ -l FILE ]" + printf '\n%b\n' "Usage: ${0} [ -l FILE ]" printf '\n%b\n' "Populate a Docker Compose SolrCloud 8 cluster with bulk Expression Atlas data." - printf '\n%b\n' "-r\t\tRemove volumes before creating them" printf '\n%b\n' "-l FILE \tLog file (default is ${LOG_FILE})" printf '%b\n\n' "-h\t\tDisplay usage instructions" } -while getopts "k:o:l:rh" opt +while getopts "l:h" opt do case ${opt} in l) LOG_FILE=$OPTARG ;; - r) - REMOVE_VOLUMES=true - ;; h) print_usage exit 0 @@ -62,12 +57,6 @@ DOCKER_COMPOSE_SOLRCLOUD_COMMAND="docker compose \ DOCKER_COMPOSE_COMMAND_VARS="DOCKERFILE_PATH=${SCRIPT_DIR}" -if [ "${REMOVE_VOLUMES}" = "true" ]; then - countdown "πŸ—‘ Remove Docker Compose Solr and ZooKeeper volumes" - eval "${DOCKER_COMPOSE_SOLRCLOUD_COMMAND}" "down --volumes >> ${LOG_FILE} 2>&1" - print_done -fi - print_stage_name "πŸ›« Spin up containers to index bioentity annotations and test experiments metadata and data in Solr" eval "${DOCKER_COMPOSE_COMMAND_VARS}" "${DOCKER_COMPOSE_COMMAND}" "up --build >> ${LOG_FILE} 2>&1" print_done @@ -76,7 +65,7 @@ print_stage_name "πŸ›¬ Bring down all services" eval "${DOCKER_COMPOSE_COMMAND_VARS}" "${DOCKER_COMPOSE_COMMAND}" "down --rmi local >> ${LOG_FILE} 2>&1" print_done -printf '%b\n' "πŸ™‚ All done! You can keep $(basename ${SOLR_PRIVATE_KEY}) and reuse it to sign any other Solr packages." +printf '%b\n' "πŸ™‚ All done!" printf '%b\n' " Start the SolrCloud cluster again with the following command:" printf '%b\n\n' " ${DOCKER_COMPOSE_SOLRCLOUD_COMMAND} up -d" printf '%b\n\n' " You can point your browser at http://localhost:8983 to explore your SolrCloud instance." diff --git a/docker/prepare-dev-environment/solr/Dockerfile b/docker/prepare-dev-environment/solr-bioentities/Dockerfile similarity index 74% rename from docker/prepare-dev-environment/solr/Dockerfile rename to docker/prepare-dev-environment/solr-bioentities/Dockerfile index 6ac71b26..00d60011 100644 --- a/docker/prepare-dev-environment/solr/Dockerfile +++ b/docker/prepare-dev-environment/solr-bioentities/Dockerfile @@ -15,8 +15,8 @@ RUN mkdir -p /root/bioentity-properties-jsonl # Clone the necessary repositories WORKDIR /root -RUN git clone --depth 1 https://github.com/ebi-gene-expression-group/index-bioentities.git +RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/index-bioentities.git RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/atlas-web-bulk.git -RUN git clone --depth 1 https://github.com/ebi-gene-expression-group/solr-bulk.git +RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/solr-bulk.git ENTRYPOINT ["/bin/bash", "-c"] diff --git a/docker/prepare-dev-environment/solr/docker-compose.yml b/docker/prepare-dev-environment/solr-bioentities/docker-compose.yml similarity index 64% rename from docker/prepare-dev-environment/solr/docker-compose.yml rename to docker/prepare-dev-environment/solr-bioentities/docker-compose.yml index 175557ed..1cd954d1 100644 --- a/docker/prepare-dev-environment/solr/docker-compose.yml +++ b/docker/prepare-dev-environment/solr-bioentities/docker-compose.yml @@ -2,9 +2,13 @@ version: "3.6" services: solr-populator: - build: ${DOCKERFILE_PATH} + build: + context: ${DOCKERFILE_PATH} + no_cache: true networks: - atlas-test-net + ports: + - "8089:8089" depends_on: - gxa-postgres - gxa-solrcloud-0 @@ -15,11 +19,12 @@ services: - atlas-data-bioentity-properties:/atlas-data/bioentity_properties - atlas-data-exp:/atlas-data/exp - atlas-data-expdesign:/atlas-data/expdesign + secrets: + - solrcloud.pem environment: JAVA_TOOL_OPTIONS: "-Dfile.encoding=UTF8" + JAVA_OPTS: "-Dsolr.httpclient.builder.factory=org.apache.solr.client.solrj.impl.PreemptiveBasicAuthClientBuilderFactory -Dbasicauth=${SOLR_USER}:${SOLR_PASSWORD}" GRADLE_RO_DEP_CACHE: /gradle-ro-dep-cache - ZK_HOSTS: "${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181" - SOLR_HOSTS: "http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr,http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_2_NAME}:8983/solr" SOLR_HOST: ${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983 SOLR_NUM_SHARDS: 2 NUM_DOCS_PER_BATCH: 20000 @@ -58,32 +63,9 @@ services: ./build-suggesters.sh unset SOLR_COLLECTION unset SCHEMA_VERSION - - cd /root/atlas-web-bulk - ./gradlew -PdataFilesLocation=/root \ - -PexperimentFilesLocation=/atlas-data/exp \ - -PexperimentDesignLocation=/atlas-data/expdesign \ - -PzkHosts=$${ZK_HOSTS} \ - -PsolrHosts="" \ - -PjdbcUrl=jdbc:postgresql://${POSTGRES_HOST}:5432/${POSTGRES_DB} \ - -PjdbcUsername=${POSTGRES_USER} \ - -PjdbcPassword=${POSTGRES_PASSWORD} \ - -PzkHosts=$${ZK_HOSTS} \ - -PsolrHosts=$${SOLR_HOSTS} \ - :cli:bootRun --args="bulk-analytics-json --output=/root/experiments-jsonl -e $(echo ${EXP_IDS} | sed -e "s/ /,/g")" - - cd /root/solr-bulk/bin - ./create-bulk-analytics-collection.sh - ./create-bulk-analytics-schema.sh - - cd /root/index-bioentities/bin - export SOLR_COLLECTION=$${SOLR_COLLECTION_BULK_ANALYTICS} - export SCHEMA_VERSION=$${SOLR_COLLECTION_BULK_ANALYTICS_SCHEMA_VERSION} - export SOLR_PROCESSORS=dedupe - for FILE in `ls /root/experiments-jsonl/*.jsonl` - do - INPUT_JSONL=$${FILE} ./solr-jsonl-chunk-loader.sh >> /dev/stdout 2>&1 - done +secrets: + solrcloud.pem: + file: ${SOLR_PRIVATE_KEY:-/dev/null} volumes: gradle-wrapper-dists: diff --git a/docker/prepare-dev-environment/solr-bioentities/run.sh b/docker/prepare-dev-environment/solr-bioentities/run.sh new file mode 100755 index 00000000..491a52e4 --- /dev/null +++ b/docker/prepare-dev-environment/solr-bioentities/run.sh @@ -0,0 +1,110 @@ +#!/usr/bin/env bash +set -e +SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) + +# PROJECT_NAME +# SOLR_CLOUD_CONTAINER_1_NAME +# SOLR_CLOUD_CONTAINER_2_NAME +ENV_FILE=${SCRIPT_DIR}/../../dev.env +source ${ENV_FILE} + +# countdown +# print_stage_name +# print_done +# print_error +source ${SCRIPT_DIR}/../utils.sh + +SOLR_KEYS_DIRECTORY=${SCRIPT_DIR} +REMOVE_VOLUMES=false +LOG_FILE=/dev/stdout +function print_usage() { + printf '\n%b\n' "Usage: ${0} [ -r ] [ -l FILE ]" + printf '\n%b\n' "Populate a Docker Compose SolrCloud 8 cluster with bulk Expression Atlas data." + + printf '\n%b\n' "-r\t\tRemove volumes before creating them" + printf '\n%b\n' "-l FILE \tLog file (default is ${LOG_FILE})" + printf '%b\n\n' "-h\t\tDisplay usage instructions" +} + + +while getopts "l:rh" opt +do + case ${opt} in + l) + LOG_FILE=$OPTARG + ;; + r) + REMOVE_VOLUMES=true + ;; + h) + print_usage + exit 0 + ;; + \?) + printf '%b\n' "Invalid option: -${OPTARG}" >&2 + print_usage + exit 2 + ;; + esac +done + +DOCKER_COMPOSE_COMMAND="docker compose \ +--project-name ${PROJECT_NAME} \ +--env-file ${ENV_FILE} \ +--env-file ${SCRIPT_DIR}/../test-data.env \ +--file ${SCRIPT_DIR}/../../docker-compose-postgres.yml \ +--file ${SCRIPT_DIR}/../../docker-compose-solrcloud.yml \ +--file ${SCRIPT_DIR}/docker-compose.yml" + +DOCKER_COMPOSE_SOLRCLOUD_COMMAND="docker compose \ +--project-name ${PROJECT_NAME} \ +--env-file ${ENV_FILE} \ +--file ${SCRIPT_DIR}/../../docker-compose-solrcloud.yml" + +SOLR_PRIVATE_KEY=${SOLR_KEYS_DIRECTORY}/solrcloud.pem +SOLR_PUBLIC_KEY=${SOLR_KEYS_DIRECTORY}/solrcloud.der +SOLR_USERFILES_PATH=/var/solr/data/userfiles/ +DOCKER_COMPOSE_COMMAND_VARS="DOCKERFILE_PATH=${SCRIPT_DIR}" + +if [ "${REMOVE_VOLUMES}" = "true" ]; then + countdown "πŸ—‘ Remove Docker Compose Solr and ZooKeeper volumes" + eval "${DOCKER_COMPOSE_SOLRCLOUD_COMMAND}" "down --volumes >> ${LOG_FILE} 2>&1" + print_done +fi + +print_stage_name "πŸ” Generate RSA keypair to sign and verify Solr packages" +openssl genrsa -out ${SOLR_PRIVATE_KEY} 512 >> ${LOG_FILE} 2>&1 +openssl rsa -in ${SOLR_PRIVATE_KEY} -pubout -outform DER -out ${SOLR_PUBLIC_KEY} >> ${LOG_FILE} 2>&1 +print_done + +print_stage_name "πŸŒ… Start Solr 8 cluster in Docker Compose" +eval "${DOCKER_COMPOSE_COMMAND_VARS}" "${DOCKER_COMPOSE_SOLRCLOUD_COMMAND}" "up -d >> ${LOG_FILE} 2>&1" +print_done + +print_stage_name "πŸ’€ Give Solr ten seconds to start up" +sleep 10 +print_done + +print_stage_name "πŸ” Register ${SOLR_PUBLIC_KEY} in SolrCloud" +docker exec ${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME} ./bin/solr package add-key /run/secrets/solrcloud.der >> ${LOG_FILE} 2>&1 +print_done + +print_stage_name "πŸŒ„ Stop Solr 8 cluster in Docker Compose" +eval "${DOCKER_COMPOSE_COMMAND_VARS}" "${DOCKER_COMPOSE_SOLRCLOUD_COMMAND}" "down >> ${LOG_FILE} 2>&1" +print_done + +print_stage_name "πŸ›« Spin up containers to index bioentity annotations and test experiments metadata and data in Solr" +eval "${DOCKER_COMPOSE_COMMAND_VARS}" "${DOCKER_COMPOSE_COMMAND}" "up --build >> ${LOG_FILE} 2>&1" +print_done + +print_stage_name "πŸ›¬ Bring down all services" +eval "${DOCKER_COMPOSE_COMMAND_VARS}" "${DOCKER_COMPOSE_COMMAND}" "down --rmi local >> ${LOG_FILE} 2>&1" +print_done + +printf '%b\n' "πŸ™‚ All done! You can keep $(basename ${SOLR_PRIVATE_KEY}) and reuse it to sign any other Solr packages." +printf '%b\n' " Start the SolrCloud cluster again with the following command:" +printf '%b\n\n' " ${DOCKER_COMPOSE_SOLRCLOUD_COMMAND} up -d" +printf '%b\n\n' " You can point your browser at http://localhost:8983 to explore your SolrCloud instance." +printf '%b\n' " Stop the SolrCloud cluster again with the following command:" +printf '%b\n' " ${DOCKER_COMPOSE_SOLRCLOUD_COMMAND} down" + diff --git a/docker/prepare-dev-environment/test-data.env b/docker/prepare-dev-environment/test-data.env index 79f24089..299206c3 100644 --- a/docker/prepare-dev-environment/test-data.env +++ b/docker/prepare-dev-environment/test-data.env @@ -1,2 +1,3 @@ EXP_IDS="E-ERAD-475 E-GEOD-40611 E-GEOD-43049 E-GEOD-46858 E-MAXD-6 E-MEXP-1810 E-MEXP-1968 E-MTAB-1913 E-MTAB-2836 E-MTAB-2909 E-MTAB-3827 E-MTAB-3834 E-MTAB-4401 E-MTAB-451 E-MTAB-4559 E-MTAB-5128 E-MTAB-5422 E-MTAB-5633 E-MTAB-5941 E-TABM-713 E-MTAB-5214 E-PROT-1 E-MTAB-4106 E-PROT-28 E-PROT-39" +PRIVATE_EXP_IDS="E-MTAB-5555" SPECIES="danio_rerio homo_sapiens equus_caballus drosophila_melanogaster caenorhabditis_elegans mus_musculus oryza_indica anas_platyrhynchos oryza_sativa brachypodium_distachyon schistosoma_mansoni zea_mays saccharomyces_cerevisiae schizosaccharomyces_pombe" \ No newline at end of file diff --git a/docker/prepare-dev-environment/volumes/Dockerfile b/docker/prepare-dev-environment/volumes/Dockerfile index db0fcc20..186b9700 100644 --- a/docker/prepare-dev-environment/volumes/Dockerfile +++ b/docker/prepare-dev-environment/volumes/Dockerfile @@ -10,5 +10,6 @@ RUN apt-get clean && \ # Copy the auxiliary JSON files to the parent of the magetab directory COPY atlas-data/exp/* /atlas-data/exp/ +COPY atlas-data/ontology/* /atlas-data/ontology/ ENTRYPOINT ["/bin/bash", "-c"] diff --git a/docker/prepare-dev-environment/volumes/atlas-data/ontology/anatomical_systems.txt b/docker/prepare-dev-environment/volumes/atlas-data/ontology/anatomical_systems.txt new file mode 100644 index 00000000..f6dfb172 --- /dev/null +++ b/docker/prepare-dev-environment/volumes/atlas-data/ontology/anatomical_systems.txt @@ -0,0 +1,14559 @@ +#system id system name tissue id tissue name +UBERON_0000060 anatomical wall UBERON_0003688 omentum +UBERON_0000060 anatomical wall UBERON_0005448 greater omentum +UBERON_0000061 anatomical structure UBERON_0000922 embryo +UBERON_0000061 anatomical structure UBERON_0002331 umbilical cord +UBERON_0000949 endocrine system UBERON_0000006 islet of Langerhans +UBERON_0000949 endocrine system UBERON_0000007 pituitary gland +UBERON_0000949 endocrine system UBERON_0000016 endocrine pancreas +UBERON_0000949 endocrine system UBERON_0001053 arthropod neurohemal organ +UBERON_0000949 endocrine system UBERON_0001056 corpus cardiacum +UBERON_0000949 endocrine system UBERON_0001057 corpus allatum +UBERON_0000949 endocrine system UBERON_0001113 lobe of liver +UBERON_0000949 endocrine system UBERON_0001114 right lobe of liver +UBERON_0000949 endocrine system UBERON_0001115 left lobe of liver +UBERON_0000949 endocrine system UBERON_0001116 quadrate lobe of liver +UBERON_0000949 endocrine system UBERON_0001117 caudate lobe of liver +UBERON_0000949 endocrine system UBERON_0001118 lobe of thyroid gland +UBERON_0000949 endocrine system UBERON_0001119 right lobe of thyroid gland +UBERON_0000949 endocrine system UBERON_0001120 left lobe of thyroid gland +UBERON_0000949 endocrine system UBERON_0001132 parathyroid gland +UBERON_0000949 endocrine system UBERON_0001143 hepatic vein +UBERON_0000949 endocrine system UBERON_0001149 bare area of liver +UBERON_0000949 endocrine system UBERON_0001171 portal lobule +UBERON_0000949 endocrine system UBERON_0001172 hepatic acinus +UBERON_0000949 endocrine system UBERON_0001233 right adrenal gland +UBERON_0000949 endocrine system UBERON_0001234 left adrenal gland +UBERON_0000949 endocrine system UBERON_0001235 adrenal cortex +UBERON_0000949 endocrine system UBERON_0001236 adrenal medulla +UBERON_0000949 endocrine system UBERON_0001237 paraaortic body +UBERON_0000949 endocrine system UBERON_0001246 interlobular bile duct +UBERON_0000949 endocrine system UBERON_0001247 falciform ligament +UBERON_0000949 endocrine system UBERON_0001264 pancreas +UBERON_0000949 endocrine system UBERON_0001279 portal triad +UBERON_0000949 endocrine system UBERON_0001280 liver parenchyma +UBERON_0000949 endocrine system UBERON_0001281 hepatic sinusoid +UBERON_0000949 endocrine system UBERON_0001282 intralobular bile duct +UBERON_0000949 endocrine system UBERON_0001283 bile canaliculus +UBERON_0000949 endocrine system UBERON_0001609 isthmus of thyroid gland +UBERON_0000949 endocrine system UBERON_0001746 capsule of thyroid gland +UBERON_0000949 endocrine system UBERON_0001747 parenchyma of thyroid gland +UBERON_0000949 endocrine system UBERON_0001748 capsule of parathyroid gland +UBERON_0000949 endocrine system UBERON_0001749 parenchyma of parathyroid gland +UBERON_0000949 endocrine system UBERON_0001761 future foramen cecum +UBERON_0000949 endocrine system UBERON_0001905 pineal body +UBERON_0000949 endocrine system UBERON_0002046 thyroid gland +UBERON_0000949 endocrine system UBERON_0002052 adrenal gland capsule +UBERON_0000949 endocrine system UBERON_0002053 zona glomerulosa of adrenal gland +UBERON_0000949 endocrine system UBERON_0002054 zona fasciculata of adrenal gland +UBERON_0000949 endocrine system UBERON_0002055 zona reticularis of adrenal gland +UBERON_0000949 endocrine system UBERON_0002107 liver +UBERON_0000949 endocrine system UBERON_0002122 capsule of thymus +UBERON_0000949 endocrine system UBERON_0002123 cortex of thymus +UBERON_0000949 endocrine system UBERON_0002124 medulla of thymus +UBERON_0000949 endocrine system UBERON_0002125 thymus lobule +UBERON_0000949 endocrine system UBERON_0002139 subcommissural organ +UBERON_0000949 endocrine system UBERON_0002196 adenohypophysis +UBERON_0000949 endocrine system UBERON_0002197 median eminence of neurohypophysis +UBERON_0000949 endocrine system UBERON_0002198 neurohypophysis +UBERON_0000949 endocrine system UBERON_0002254 thyroglossal duct +UBERON_0000949 endocrine system UBERON_0002368 endocrine gland +UBERON_0000949 endocrine system UBERON_0002369 adrenal gland +UBERON_0000949 endocrine system UBERON_0002370 thymus +UBERON_0000949 endocrine system UBERON_0002432 pars intermedia of adenohypophysis +UBERON_0000949 endocrine system UBERON_0002433 pars tuberalis of adenohypophysis +UBERON_0000949 endocrine system UBERON_0002434 pituitary stalk +UBERON_0000949 endocrine system UBERON_0002512 corpus luteum +UBERON_0000949 endocrine system UBERON_0002648 anterior median eminence +UBERON_0000949 endocrine system UBERON_0002652 posterior median eminence +UBERON_0000949 endocrine system UBERON_0003091 thyroid primordium +UBERON_0000949 endocrine system UBERON_0003092 ultimobranchial body +UBERON_0000949 endocrine system UBERON_0003217 neural lobe of neurohypophysis +UBERON_0000949 endocrine system UBERON_0003261 thyroid primordium endoderm +UBERON_0000949 endocrine system UBERON_0003483 thymus lymphoid tissue +UBERON_0000949 endocrine system UBERON_0003704 intrahepatic bile duct +UBERON_0000949 endocrine system UBERON_0003846 thymus epithelium +UBERON_0000949 endocrine system UBERON_0003987 Hassall's corpuscle +UBERON_0000949 endocrine system UBERON_0003988 thymus corticomedullary boundary +UBERON_0000949 endocrine system UBERON_0004058 biliary ductule +UBERON_0000949 endocrine system UBERON_0004092 hypothalamus-pituitary axis +UBERON_0000949 endocrine system UBERON_0004647 liver lobule +UBERON_0000949 endocrine system UBERON_0004791 thymus trabecula +UBERON_0000949 endocrine system UBERON_0004792 secretion of endocrine pancreas +UBERON_0000949 endocrine system UBERON_0004823 intrahepatic bile duct epithelium +UBERON_0000949 endocrine system UBERON_0004827 thyroid gland medulla +UBERON_0000949 endocrine system UBERON_0005050 liver papillary process +UBERON_0000949 endocrine system UBERON_0005221 liver right lobe parenchyma +UBERON_0000949 endocrine system UBERON_0005222 liver left lobe parenchyma +UBERON_0000949 endocrine system UBERON_0005305 thyroid follicle +UBERON_0000949 endocrine system UBERON_0005452 hepatic cord +UBERON_0000949 endocrine system UBERON_0005457 left thymus lobe +UBERON_0000949 endocrine system UBERON_0005469 right thymus lobe +UBERON_0000949 endocrine system UBERON_0005483 thymus lobe +UBERON_0000949 endocrine system UBERON_0005605 intrahepatic part of hepatic duct +UBERON_0000949 endocrine system UBERON_0005642 ultimobranchial body epithelium +UBERON_0000949 endocrine system UBERON_0006377 remnant of Rathke's pouch +UBERON_0000949 endocrine system UBERON_0006588 round ligament of liver +UBERON_0000949 endocrine system UBERON_0006727 liver left lateral lobe +UBERON_0000949 endocrine system UBERON_0006728 liver left medial lobe +UBERON_0000949 endocrine system UBERON_0006729 liver perisinusoidal space +UBERON_0000949 endocrine system UBERON_0006749 superior parathyroid gland +UBERON_0000949 endocrine system UBERON_0006755 inferior parathyroid gland +UBERON_0000949 endocrine system UBERON_0006841 central vein of liver +UBERON_0000949 endocrine system UBERON_0006856 interrenal gland +UBERON_0000949 endocrine system UBERON_0006858 adrenal/interrenal gland +UBERON_0000949 endocrine system UBERON_0006870 endostyle +UBERON_0000949 endocrine system UBERON_0006877 vasculature of liver +UBERON_0000949 endocrine system UBERON_0006925 digestive system gland +UBERON_0000949 endocrine system UBERON_0006936 thymus subcapsular epithelium +UBERON_0000949 endocrine system UBERON_0006964 pars distalis of adenohypophysis +UBERON_0000949 endocrine system UBERON_0007132 head kidney +UBERON_0000949 endocrine system UBERON_0009024 adrenal gland X zone +UBERON_0000949 endocrine system UBERON_0009114 cervical thymus +UBERON_0000949 endocrine system UBERON_0009115 thoracic thymus +UBERON_0000949 endocrine system UBERON_0009116 thymoid +UBERON_0000949 endocrine system UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0000949 endocrine system UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0000949 endocrine system UBERON_0009753 adrenal gland cortex zone +UBERON_0000949 endocrine system UBERON_0009860 ascidian digestive gland +UBERON_0000949 endocrine system UBERON_0009975 remnant of lumen of Rathke's pouch +UBERON_0000949 endocrine system UBERON_0009976 hypothalamo-hypophyseal system +UBERON_0000949 endocrine system UBERON_0010074 chromaffin system +UBERON_0000949 endocrine system UBERON_0010133 neuroendocrine gland +UBERON_0000949 endocrine system UBERON_0010134 secretory circumventricular organ +UBERON_0000949 endocrine system UBERON_0010183 liver trabecula +UBERON_0000949 endocrine system UBERON_0010233 stroma of thyroid gland +UBERON_0000949 endocrine system UBERON_0010264 hepatopancreas +UBERON_0000949 endocrine system UBERON_0010265 mollusc hepatopancreas +UBERON_0000949 endocrine system UBERON_0010266 arthropod hepatopancreas +UBERON_0000949 endocrine system UBERON_0010704 parenchyma of quadrate lobe of liver +UBERON_0000949 endocrine system UBERON_0010706 parenchyma of caudate lobe of liver +UBERON_0000949 endocrine system UBERON_0011195 inferior parathyroid epithelium +UBERON_0000949 endocrine system UBERON_0011196 superior parathyroid epithelium +UBERON_0000949 endocrine system UBERON_0011197 parathyroid epithelium +UBERON_0000949 endocrine system UBERON_0011359 urophysis +UBERON_0000949 endocrine system UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0000949 endocrine system UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0000949 endocrine system UBERON_0011768 pineal gland stalk +UBERON_0000949 endocrine system UBERON_0011955 left hepatic vein +UBERON_0000949 endocrine system UBERON_0011956 right hepatic vein +UBERON_0000949 endocrine system UBERON_0011957 middle hepatic vein +UBERON_0000949 endocrine system UBERON_0012246 thyroid follicular lumen +UBERON_0000949 endocrine system UBERON_0012279 chromaffin paraganglion +UBERON_0000949 endocrine system UBERON_0012325 retrocerebral complex +UBERON_0000949 endocrine system UBERON_0012363 thyroid follicle epithelium +UBERON_0000949 endocrine system UBERON_0012364 colloid of thyroid follicle +UBERON_0000949 endocrine system UBERON_0013138 coronary ligament of liver +UBERON_0000949 endocrine system UBERON_0013139 ligament of liver +UBERON_0000949 endocrine system UBERON_0013745 zona intermedia of adrenal gland +UBERON_0000949 endocrine system UBERON_0014400 hepatic sinusoidal space +UBERON_0000949 endocrine system UBERON_0014475 endostylar duct +UBERON_0000949 endocrine system UBERON_0014779 liver reticuloendothelial system +UBERON_0000949 endocrine system UBERON_0015142 falciform fat +UBERON_0000949 endocrine system UBERON_0015455 accessory hepatic vein +UBERON_0000949 endocrine system UBERON_0015481 left hepatic artery +UBERON_0000949 endocrine system UBERON_0015482 right hepatic artery +UBERON_0000949 endocrine system UBERON_0015796 liver blood vessel +UBERON_0000949 endocrine system UBERON_0016478 liver stroma +UBERON_0000949 endocrine system UBERON_0016479 capsule of liver +UBERON_0000949 endocrine system UBERON_0016480 interlobular stroma of liver +UBERON_0000949 endocrine system UBERON_0016890 intrahepatic branch of portal vein +UBERON_0000949 endocrine system UBERON_0017632 pineal corpora arenacea +UBERON_0000949 endocrine system UBERON_0018229 renin-angiotensin system +UBERON_0000949 endocrine system UBERON_0018244 superficial cervical thymus +UBERON_0000949 endocrine system UBERON_0018245 deep cervical thymus +UBERON_0000949 endocrine system UBERON_0018268 type 1 adrenal tissue +UBERON_0000949 endocrine system UBERON_0018269 type 2 adrenal tissue +UBERON_0000949 endocrine system UBERON_0018270 type 3 adrenal tissue +UBERON_0000949 endocrine system UBERON_0018271 type 4 adrenal tissue +UBERON_0000949 endocrine system UBERON_0018303 adrenal tissue +UBERON_0000949 endocrine system UBERON_0023752 intermediate part of hypophysis +UBERON_0000949 endocrine system UBERON_0027109 lateral eminence of hypophysis +UBERON_0000949 endocrine system UBERON_0034907 pineal parenchyma +UBERON_0000949 endocrine system UBERON_0035075 thymus subunit +UBERON_0000949 endocrine system UBERON_0035444 triangular ligament of liver +UBERON_0000949 endocrine system UBERON_0035756 capillary network of liver +UBERON_0000949 endocrine system UBERON_0035825 left adrenal gland cortex +UBERON_0000949 endocrine system UBERON_0035826 left adrenal gland medulla +UBERON_0000949 endocrine system UBERON_0035827 right adrenal gland cortex +UBERON_0000949 endocrine system UBERON_0035828 right adrenal gland medulla +UBERON_0000949 endocrine system UBERON_0039222 cystic artery +UBERON_0000949 endocrine system UBERON_2001200 corpuscles of Stannius +UBERON_0000949 endocrine system UBERON_2001371 pancreatic system +UBERON_0000949 endocrine system UBERON_2005174 ventral liver lobe +UBERON_0000949 endocrine system UBERON_2007004 epiphysial cluster +UBERON_0000949 endocrine system UBERON_3010404 capillary system of liver +UBERON_0000949 endocrine system UBERON_3010541 median pars intermedia +UBERON_0000949 endocrine system UBERON_8400001 hepatic acinus zone 1 +UBERON_0000949 endocrine system UBERON_8400002 hepatic acinus zone 3 +UBERON_0000949 endocrine system UBERON_8400003 hepatic acinus zone 2 +UBERON_0000949 endocrine system UBERON_8400005 metabolic zone of liver +UBERON_0000949 endocrine system UBERON_8400006 liver lobule periportal region +UBERON_0000949 endocrine system UBERON_8400007 liver lobule centrilobular region +UBERON_0000949 endocrine system UBERON_8400008 liver lobule midzonal region +UBERON_0000949 endocrine system UBERON_8400021 liver serosa +UBERON_0000949 endocrine system UBERON_8400023 liver subserosa +UBERON_0000949 endocrine system UBERON_8400024 subcapsular region of liver +UBERON_0000990 reproductive system UBERON_0000002 cervix, uterine +UBERON_0000990 reproductive system UBERON_0000002 uterine cervix +UBERON_0000990 reproductive system UBERON_0000035 primary ovarian follicle +UBERON_0000990 reproductive system UBERON_0000036 secondary ovarian follicle +UBERON_0000990 reproductive system UBERON_0000037 tertiary ovarian follicle +UBERON_0000990 reproductive system UBERON_0000038 follicular fluid +UBERON_0000990 reproductive system UBERON_0000039 follicular antrum +UBERON_0000990 reproductive system UBERON_0000051 fornix of vagina +UBERON_0000990 reproductive system UBERON_0000079 male reproductive system +UBERON_0000990 reproductive system UBERON_0000086 zona pellucida +UBERON_0000990 reproductive system UBERON_0000155 theca cell layer +UBERON_0000990 reproductive system UBERON_0000156 theca externa +UBERON_0000990 reproductive system UBERON_0000157 theca interna +UBERON_0000990 reproductive system UBERON_0000359 preputial gland +UBERON_0000990 reproductive system UBERON_0000428 prostate epithelium +UBERON_0000990 reproductive system UBERON_0000450 corpus albicans +UBERON_0000990 reproductive system UBERON_0000453 decidua basalis +UBERON_0000990 reproductive system UBERON_0000458 endocervix +UBERON_0000990 reproductive system UBERON_0000459 uterine wall +UBERON_0000990 reproductive system UBERON_0000460 major vestibular gland +UBERON_0000990 reproductive system UBERON_0000461 minor vestibular gland +UBERON_0000990 reproductive system UBERON_0000473 testis +UBERON_0000990 reproductive system UBERON_0000474 female reproductive system +UBERON_0000990 reproductive system UBERON_0000989 penis +UBERON_0000990 reproductive system UBERON_0000991 gonad +UBERON_0000990 reproductive system UBERON_0000992 ovary +UBERON_0000990 reproductive system UBERON_0000993 oviduct +UBERON_0000990 reproductive system UBERON_0000994 spermathecum +UBERON_0000990 reproductive system UBERON_0000995 uterus +UBERON_0000990 reproductive system UBERON_0000996 vagina +UBERON_0000990 reproductive system UBERON_0000997 mammalian vulva +UBERON_0000990 reproductive system UBERON_0000998 seminal vesicle +UBERON_0000990 reproductive system UBERON_0000999 ejaculatory duct +UBERON_0000990 reproductive system UBERON_0001000 vas deferens +UBERON_0000990 reproductive system UBERON_0001295 endometrium +UBERON_0000990 reproductive system UBERON_0001296 myometrium +UBERON_0000990 reproductive system UBERON_0001297 serosa of uterus +UBERON_0000990 reproductive system UBERON_0001299 glans penis +UBERON_0000990 reproductive system UBERON_0001300 scrotum +UBERON_0000990 reproductive system UBERON_0001301 epididymis +UBERON_0000990 reproductive system UBERON_0001302 right uterine tube +UBERON_0000990 reproductive system UBERON_0001303 left uterine tube +UBERON_0000990 reproductive system UBERON_0001304 germinal epithelium of ovary +UBERON_0000990 reproductive system UBERON_0001305 ovarian follicle +UBERON_0000990 reproductive system UBERON_0001306 cumulus oophorus +UBERON_0000990 reproductive system UBERON_0001307 capsule of ovary +UBERON_0000990 reproductive system UBERON_0001319 vaginal vein +UBERON_0000990 reproductive system UBERON_0001328 lobe of prostate +UBERON_0000990 reproductive system UBERON_0001329 prostate gland anterior lobe +UBERON_0000990 reproductive system UBERON_0001331 skin of penis +UBERON_0000990 reproductive system UBERON_0001332 prepuce of penis +UBERON_0000990 reproductive system UBERON_0001337 spongiose part of urethra +UBERON_0000990 reproductive system UBERON_0001340 dorsal artery of penis +UBERON_0000990 reproductive system UBERON_0001342 mesovarium +UBERON_0000990 reproductive system UBERON_0001343 seminiferous tubule of testis +UBERON_0000990 reproductive system UBERON_0001344 epithelium of vagina +UBERON_0000990 reproductive system UBERON_0001346 vaginal hymen +UBERON_0000990 reproductive system UBERON_0001471 skin of prepuce of penis +UBERON_0000990 reproductive system UBERON_0001472 vaginal venous plexus +UBERON_0000990 reproductive system UBERON_0001987 placenta +UBERON_0000990 reproductive system UBERON_0002118 right ovary +UBERON_0000990 reproductive system UBERON_0002119 left ovary +UBERON_0000990 reproductive system UBERON_0002247 uterine horn +UBERON_0000990 reproductive system UBERON_0002337 endometrial stroma +UBERON_0000990 reproductive system UBERON_0002366 bulbo-urethral gland +UBERON_0000990 reproductive system UBERON_0002367 prostate gland +UBERON_0000990 reproductive system UBERON_0002411 clitoris +UBERON_0000990 reproductive system UBERON_0002450 decidua +UBERON_0000990 reproductive system UBERON_0002451 endometrial gland +UBERON_0000990 reproductive system UBERON_0002485 prostate duct +UBERON_0000990 reproductive system UBERON_0002493 uterine artery +UBERON_0000990 reproductive system UBERON_0002512 corpus luteum +UBERON_0000990 reproductive system UBERON_0002537 hermaphrodite gonad +UBERON_0000990 reproductive system UBERON_0003133 reproductive organ +UBERON_0000990 reproductive system UBERON_0003134 female reproductive organ +UBERON_0000990 reproductive system UBERON_0003135 male reproductive organ +UBERON_0000990 reproductive system UBERON_0003199 egg chamber +UBERON_0000990 reproductive system UBERON_0003218 ovary septum +UBERON_0000990 reproductive system UBERON_0003312 mesenchyme of testis +UBERON_0000990 reproductive system UBERON_0003315 mesenchyme of ovary +UBERON_0000990 reproductive system UBERON_0003366 epithelium of uterine horn +UBERON_0000990 reproductive system UBERON_0003428 gonadal fat pad +UBERON_0000990 reproductive system UBERON_0003480 vein of clitoris +UBERON_0000990 reproductive system UBERON_0003485 vagina sebaceous gland +UBERON_0000990 reproductive system UBERON_0003855 gonad mesenchyme +UBERON_0000990 reproductive system UBERON_0003885 mesometrium +UBERON_0000990 reproductive system UBERON_0003889 fallopian tube +UBERON_0000990 reproductive system UBERON_0003937 reproductive gland +UBERON_0000990 reproductive system UBERON_0003946 placenta labyrinth +UBERON_0000990 reproductive system UBERON_0003959 rete testis +UBERON_0000990 reproductive system UBERON_0003970 placental labyrinth vasculature +UBERON_0000990 reproductive system UBERON_0003972 placenta junctional zone +UBERON_0000990 reproductive system UBERON_0003974 upper part of vagina +UBERON_0000990 reproductive system UBERON_0003975 internal female genitalia +UBERON_0000990 reproductive system UBERON_0003981 primordial ovarian follicle +UBERON_0000990 reproductive system UBERON_0003982 mature ovarian follicle +UBERON_0000990 reproductive system UBERON_0003984 uterine tube infundibulum +UBERON_0000990 reproductive system UBERON_0004014 labium minora +UBERON_0000990 reproductive system UBERON_0004021 spongiotrophoblast layer +UBERON_0000990 reproductive system UBERON_0004053 external male genitalia +UBERON_0000990 reproductive system UBERON_0004054 internal male genitalia +UBERON_0000990 reproductive system UBERON_0004084 genital labium +UBERON_0000990 reproductive system UBERON_0004085 labium majora +UBERON_0000990 reproductive system UBERON_0004175 internal genitalia +UBERON_0000990 reproductive system UBERON_0004176 external genitalia +UBERON_0000990 reproductive system UBERON_0004179 prostate glandular acinus +UBERON_0000990 reproductive system UBERON_0004183 placental labyrinth blood vessel +UBERON_0000990 reproductive system UBERON_0004184 prostate gland stroma +UBERON_0000990 reproductive system UBERON_0004223 vagina smooth muscle +UBERON_0000990 reproductive system UBERON_0004224 muscular coat of vas deferens +UBERON_0000990 reproductive system UBERON_0004243 prostate gland smooth muscle +UBERON_0000990 reproductive system UBERON_0004245 oviduct smooth muscle +UBERON_0000990 reproductive system UBERON_0004346 gubernaculum (male or female) +UBERON_0000990 reproductive system UBERON_0004353 female inguinal canal +UBERON_0000990 reproductive system UBERON_0004354 male inguinal canal +UBERON_0000990 reproductive system UBERON_0004358 caput epididymis +UBERON_0000990 reproductive system UBERON_0004359 corpus epididymis +UBERON_0000990 reproductive system UBERON_0004360 cauda epididymis +UBERON_0000990 reproductive system UBERON_0004520 striated muscle tissue of prostate +UBERON_0000990 reproductive system UBERON_0004533 left testis +UBERON_0000990 reproductive system UBERON_0004534 right testis +UBERON_0000990 reproductive system UBERON_0004544 epididymis epithelium +UBERON_0000990 reproductive system UBERON_0004547 decidua capsularis +UBERON_0000990 reproductive system UBERON_0004665 muscular coat of seminal vesicle +UBERON_0000990 reproductive system UBERON_0004713 corpus cavernosum penis +UBERON_0000990 reproductive system UBERON_0004801 cervix epithelium +UBERON_0000990 reproductive system UBERON_0004803 penis epithelium +UBERON_0000990 reproductive system UBERON_0004804 oviduct epithelium +UBERON_0000990 reproductive system UBERON_0004805 seminal vesicle epithelium +UBERON_0000990 reproductive system UBERON_0004806 vas deferens epithelium +UBERON_0000990 reproductive system UBERON_0004811 endometrium epithelium +UBERON_0000990 reproductive system UBERON_0004812 male prepuce epithelium +UBERON_0000990 reproductive system UBERON_0004813 seminiferous tubule epithelium +UBERON_0000990 reproductive system UBERON_0004835 epididymis smooth muscle +UBERON_0000990 reproductive system UBERON_0004876 urogenital fold +UBERON_0000990 reproductive system UBERON_0004909 epithelium of gonad +UBERON_0000990 reproductive system UBERON_0004910 epithelium of male gonad +UBERON_0000990 reproductive system UBERON_0004911 epithelium of female gonad +UBERON_0000990 reproductive system UBERON_0004983 mucosa of vagina +UBERON_0000990 reproductive system UBERON_0004984 mucosa of seminal vesicle +UBERON_0000990 reproductive system UBERON_0004985 mucosa of ejaculatory duct +UBERON_0000990 reproductive system UBERON_0004986 mucosa of deferent duct +UBERON_0000990 reproductive system UBERON_0005011 mucosa of right uterine tube +UBERON_0000990 reproductive system UBERON_0005012 mucosa of left uterine tube +UBERON_0000990 reproductive system UBERON_0005048 mucosa of uterine tube +UBERON_0000990 reproductive system UBERON_0005049 mucosa of infundibulum of uterine tube +UBERON_0000990 reproductive system UBERON_0005051 mediastinum testis +UBERON_0000990 reproductive system UBERON_0005056 external female genitalia +UBERON_0000990 reproductive system UBERON_0005156 reproductive structure +UBERON_0000990 reproductive system UBERON_0005170 granulosa cell layer +UBERON_0000990 reproductive system UBERON_0005192 deferent duct artery +UBERON_0000990 reproductive system UBERON_0005195 deferent duct vein +UBERON_0000990 reproductive system UBERON_0005205 lamina propria of vagina +UBERON_0000990 reproductive system UBERON_0005212 Leydig cell region of testis +UBERON_0000990 reproductive system UBERON_0005296 ovary sex cord +UBERON_0000990 reproductive system UBERON_0005297 testis sex cord +UBERON_0000990 reproductive system UBERON_0005298 skin of clitoris +UBERON_0000990 reproductive system UBERON_0005299 prepuce of clitoris +UBERON_0000990 reproductive system UBERON_0005301 male preputial gland +UBERON_0000990 reproductive system UBERON_0005302 female preputial gland +UBERON_0000990 reproductive system UBERON_0005352 spermatic cord +UBERON_0000990 reproductive system UBERON_0005398 female reproductive gland +UBERON_0000990 reproductive system UBERON_0005399 male reproductive gland +UBERON_0000990 reproductive system UBERON_0005564 gonad primordium +UBERON_0000990 reproductive system UBERON_0005796 duplex uterus +UBERON_0000990 reproductive system UBERON_0005797 bipartite uterus +UBERON_0000990 reproductive system UBERON_0005798 bicornuate uterus +UBERON_0000990 reproductive system UBERON_0005799 simplex uterus +UBERON_0000990 reproductive system UBERON_0005876 undifferentiated genital tubercle +UBERON_0000990 reproductive system UBERON_0005890 gonad germinal epithelium +UBERON_0000990 reproductive system UBERON_0005903 duct of seminal vesicle +UBERON_0000990 reproductive system UBERON_0005904 duct of male reproductive system +UBERON_0000990 reproductive system UBERON_0006233 female genital tubercle +UBERON_0000990 reproductive system UBERON_0006261 male genital tubercle +UBERON_0000990 reproductive system UBERON_0006435 os penis +UBERON_0000990 reproductive system UBERON_0006440 os clitoris +UBERON_0000990 reproductive system UBERON_0006594 gubernacular cord +UBERON_0000990 reproductive system UBERON_0006608 corpus cavernosum clitoridis +UBERON_0000990 reproductive system UBERON_0006610 tunica albuginea +UBERON_0000990 reproductive system UBERON_0006639 crus of penis +UBERON_0000990 reproductive system UBERON_0006640 crus of clitoris +UBERON_0000990 reproductive system UBERON_0006641 appendix epididymis +UBERON_0000990 reproductive system UBERON_0006642 muscle layer of oviduct +UBERON_0000990 reproductive system UBERON_0006643 tunica albuginea of testis +UBERON_0000990 reproductive system UBERON_0006644 tunica albuginea of ovary +UBERON_0000990 reproductive system UBERON_0006645 adventitia of epididymis +UBERON_0000990 reproductive system UBERON_0006646 muscle layer of epididymis +UBERON_0000990 reproductive system UBERON_0006647 adventitia of ductus deferens +UBERON_0000990 reproductive system UBERON_0006648 adventitia of seminal vesicle +UBERON_0000990 reproductive system UBERON_0006650 tunica vaginalis testis +UBERON_0000990 reproductive system UBERON_0006651 appendix testis +UBERON_0000990 reproductive system UBERON_0006652 muscular layer of vagina +UBERON_0000990 reproductive system UBERON_0006653 glans clitoris +UBERON_0000990 reproductive system UBERON_0006655 septum of scrotum +UBERON_0000990 reproductive system UBERON_0006656 deep dorsal vein of penis +UBERON_0000990 reproductive system UBERON_0006690 deep dorsal vein of clitoris +UBERON_0000990 reproductive system UBERON_0006834 uterus or analog +UBERON_0000990 reproductive system UBERON_0006868 seminal fluid secreting gland +UBERON_0000990 reproductive system UBERON_0006878 decidua parietalis +UBERON_0000990 reproductive system UBERON_0006922 cervix squamous epithelium +UBERON_0000990 reproductive system UBERON_0006923 vagina squamous epithelium +UBERON_0000990 reproductive system UBERON_0006946 efferent duct +UBERON_0000990 reproductive system UBERON_0006947 male genital duct +UBERON_0000990 reproductive system UBERON_0006948 efferent duct epithelium +UBERON_0000990 reproductive system UBERON_0006953 ejaculatory duct epithelium +UBERON_0000990 reproductive system UBERON_0006955 uterine epithelium +UBERON_0000990 reproductive system UBERON_0006960 ovary stroma +UBERON_0000990 reproductive system UBERON_0007180 atretic follicle of ovary +UBERON_0000990 reproductive system UBERON_0007181 serosa of infundibulum of uterine tube +UBERON_0000990 reproductive system UBERON_0007182 muscle layer of infundibulum of uterine tube +UBERON_0000990 reproductive system UBERON_0007194 vesicular gland +UBERON_0000990 reproductive system UBERON_0007589 ciliated columnar oviduct epithelium +UBERON_0000990 reproductive system UBERON_0007590 cuboidal oviduct epithelium +UBERON_0000990 reproductive system UBERON_0007615 prostate gland ventral lobe +UBERON_0000990 reproductive system UBERON_0007719 bone of reproductive organ +UBERON_0000990 reproductive system UBERON_0007773 scrotal sweat gland +UBERON_0000990 reproductive system UBERON_0008311 penile bulb artery +UBERON_0000990 reproductive system UBERON_0008320 common penile artery +UBERON_0000990 reproductive system UBERON_0008321 deep artery of penis +UBERON_0000990 reproductive system UBERON_0008322 deep artery of clitoris +UBERON_0000990 reproductive system UBERON_0008323 dorsal artery of clitoris +UBERON_0000990 reproductive system UBERON_0008330 vestibule of vagina +UBERON_0000990 reproductive system UBERON_0008331 clitoral smooth muscle +UBERON_0000990 reproductive system UBERON_0008488 cremaster muscle +UBERON_0000990 reproductive system UBERON_0008715 muscle tissue of prostate +UBERON_0000990 reproductive system UBERON_0008798 rugal fold of vagina +UBERON_0000990 reproductive system UBERON_0008807 coagulating gland +UBERON_0000990 reproductive system UBERON_0008808 prostate gland dorsolateral lobe +UBERON_0000990 reproductive system UBERON_0008811 intromittent organ +UBERON_0000990 reproductive system UBERON_0008812 hemipenis +UBERON_0000990 reproductive system UBERON_0008824 duct of epididymis +UBERON_0000990 reproductive system UBERON_0008842 suspensory ligament of testis +UBERON_0000990 reproductive system UBERON_0008843 gubernaculum testis +UBERON_0000990 reproductive system UBERON_0008844 gubernaculum (female) +UBERON_0000990 reproductive system UBERON_0008847 ovarian ligament +UBERON_0000990 reproductive system UBERON_0008848 cranial suspensory ligament +UBERON_0000990 reproductive system UBERON_0008855 placenta metrial gland +UBERON_0000990 reproductive system UBERON_0008935 gastropod albumen gland +UBERON_0000990 reproductive system UBERON_0008936 gastropod genital pore +UBERON_0000990 reproductive system UBERON_0008975 oviduct shell gland +UBERON_0000990 reproductive system UBERON_0009002 placental membrane +UBERON_0000990 reproductive system UBERON_0009020 left uterine horn +UBERON_0000990 reproductive system UBERON_0009022 right uterine horn +UBERON_0000990 reproductive system UBERON_0009042 prostatic venous plexus +UBERON_0000990 reproductive system UBERON_0009098 gravid uterus +UBERON_0000990 reproductive system UBERON_0009117 indifferent gonad +UBERON_0000990 reproductive system UBERON_0009196 indifferent external genitalia +UBERON_0000990 reproductive system UBERON_0009645 ampullary gland +UBERON_0000990 reproductive system UBERON_0009853 body of uterus +UBERON_0000990 reproductive system UBERON_0010005 placental labyrinth villous +UBERON_0000990 reproductive system UBERON_0010006 placenta intervillous maternal lacunae +UBERON_0000990 reproductive system UBERON_0010007 placenta fetal blood space +UBERON_0000990 reproductive system UBERON_0010008 placental cotyledon +UBERON_0000990 reproductive system UBERON_0010041 median ovary +UBERON_0000990 reproductive system UBERON_0010141 primitive sex cord of indifferent gonad +UBERON_0000990 reproductive system UBERON_0010145 paraurethral gland +UBERON_0000990 reproductive system UBERON_0010146 paraurethral duct +UBERON_0000990 reproductive system UBERON_0010147 male accessory sex gland +UBERON_0000990 reproductive system UBERON_0010150 duct of major vestibular gland +UBERON_0000990 reproductive system UBERON_0010151 duct of bulbourethral gland +UBERON_0000990 reproductive system UBERON_0010185 rete ovarii +UBERON_0000990 reproductive system UBERON_0010391 parametrium +UBERON_0000990 reproductive system UBERON_0010412 epididymal fat pad +UBERON_0000990 reproductive system UBERON_0010413 parametrial fat pad +UBERON_0000990 reproductive system UBERON_0010516 clasper +UBERON_0000990 reproductive system UBERON_0010517 cephalic clasper +UBERON_0000990 reproductive system UBERON_0010518 pelvic fin clasper +UBERON_0000990 reproductive system UBERON_0011183 corpus spongiosum of penis +UBERON_0000990 reproductive system UBERON_0011283 epoophoron +UBERON_0000990 reproductive system UBERON_0011298 submucosa of uterine tube +UBERON_0000990 reproductive system UBERON_0011374 prepuce +UBERON_0000990 reproductive system UBERON_0011375 skin of prepuce of clitoris +UBERON_0000990 reproductive system UBERON_0011379 male external urethral sphincter +UBERON_0000990 reproductive system UBERON_0011380 female external urethral sphincter +UBERON_0000990 reproductive system UBERON_0011388 male bulbospongiosus muscle +UBERON_0000990 reproductive system UBERON_0011754 genital swelling +UBERON_0000990 reproductive system UBERON_0011755 female labial swelling +UBERON_0000990 reproductive system UBERON_0011756 male genital swelling +UBERON_0000990 reproductive system UBERON_0011757 differentiated genital tubercle +UBERON_0000990 reproductive system UBERON_0011826 vestibular gland +UBERON_0000990 reproductive system UBERON_0011830 duct of lesser vestibular gland +UBERON_0000990 reproductive system UBERON_0011831 duct of vestibular gland +UBERON_0000990 reproductive system UBERON_0011879 mesorchium +UBERON_0000990 reproductive system UBERON_0011894 lumen of vagina +UBERON_0000990 reproductive system UBERON_0011949 endometrium luminal epithelium +UBERON_0000990 reproductive system UBERON_0011951 prostate luminal epithelium +UBERON_0000990 reproductive system UBERON_0012186 ovary growing follicle +UBERON_0000990 reproductive system UBERON_0012241 male urethral meatus +UBERON_0000990 reproductive system UBERON_0012247 cervical gland +UBERON_0000990 reproductive system UBERON_0012248 cervical mucosa +UBERON_0000990 reproductive system UBERON_0012249 ectocervix +UBERON_0000990 reproductive system UBERON_0012250 cervix glandular epithelium +UBERON_0000990 reproductive system UBERON_0012251 ectocervical epithelium +UBERON_0000990 reproductive system UBERON_0012252 endocervical epithelium +UBERON_0000990 reproductive system UBERON_0012253 cervical squamo-columnar junction +UBERON_0000990 reproductive system UBERON_0012276 endometrium glandular epithelium +UBERON_0000990 reproductive system UBERON_0012294 navicular fossa of spongiose part of urethra +UBERON_0000990 reproductive system UBERON_0012295 GuΓ©rin's valve +UBERON_0000990 reproductive system UBERON_0012317 vagina orifice +UBERON_0000990 reproductive system UBERON_0012326 gubernacular bulb +UBERON_0000990 reproductive system UBERON_0012327 pearly penile papule +UBERON_0000990 reproductive system UBERON_0012328 penile spine +UBERON_0000990 reproductive system UBERON_0012487 vaginal sphincter +UBERON_0000990 reproductive system UBERON_0012499 serosa of uterine tube +UBERON_0000990 reproductive system UBERON_0012648 ampulla of uterine tube +UBERON_0000990 reproductive system UBERON_0013128 bulb of penis +UBERON_0000990 reproductive system UBERON_0013129 bulb of vestibule +UBERON_0000990 reproductive system UBERON_0013191 ovarian cortex +UBERON_0000990 reproductive system UBERON_0013192 ovarian medulla +UBERON_0000990 reproductive system UBERON_0013237 genital papilla of vulva +UBERON_0000990 reproductive system UBERON_0013238 future glans +UBERON_0000990 reproductive system UBERON_0013239 future glans penis +UBERON_0000990 reproductive system UBERON_0013240 future glans clitoris +UBERON_0000990 reproductive system UBERON_0013247 male paramesonephric duct +UBERON_0000990 reproductive system UBERON_0013248 paradidymis +UBERON_0000990 reproductive system UBERON_0013249 paroophoron +UBERON_0000990 reproductive system UBERON_0013250 vesicular appendage of epoophoron +UBERON_0000990 reproductive system UBERON_0013262 remnnant of ductus deferens +UBERON_0000990 reproductive system UBERON_0013277 remnant of processus vaginalis +UBERON_0000990 reproductive system UBERON_0013278 canal of Nuck +UBERON_0000990 reproductive system UBERON_0013515 subdivision of oviduct +UBERON_0000990 reproductive system UBERON_0013516 uterine tube magnum +UBERON_0000990 reproductive system UBERON_0013519 avian uterine tube isthmus +UBERON_0000990 reproductive system UBERON_0013523 lateral vaginal canal +UBERON_0000990 reproductive system UBERON_0013524 median vaginal canal +UBERON_0000990 reproductive system UBERON_0013637 prostate gland lateral lobe +UBERON_0000990 reproductive system UBERON_0013672 priapium +UBERON_0000990 reproductive system UBERON_0013673 os priapium +UBERON_0000990 reproductive system UBERON_0013674 ctenactinium +UBERON_0000990 reproductive system UBERON_0013675 toxactinium +UBERON_0000990 reproductive system UBERON_0013676 aproctal bone of priapium +UBERON_0000990 reproductive system UBERON_0013677 serrated projection of ctenactinium +UBERON_0000990 reproductive system UBERON_0013719 dartos muscle of scrotum +UBERON_0000990 reproductive system UBERON_0013720 dartos muscle of labia majora +UBERON_0000990 reproductive system UBERON_0013758 cervical os +UBERON_0000990 reproductive system UBERON_0013759 internal cervical os +UBERON_0000990 reproductive system UBERON_0013760 external cervical os +UBERON_0000990 reproductive system UBERON_0013761 cervical cavity +UBERON_0000990 reproductive system UBERON_0013769 uterine lumen +UBERON_0000990 reproductive system UBERON_0014394 uterine fat pad +UBERON_0000990 reproductive system UBERON_0014458 female bulbospongiosus muscle +UBERON_0000990 reproductive system UBERON_0014849 hemotrichorial placental membrane +UBERON_0000990 reproductive system UBERON_0014850 hemomonochorial placental membrane +UBERON_0000990 reproductive system UBERON_0014914 haemolymphatic fluid-testis barrier +UBERON_0000990 reproductive system UBERON_0015130 connective tissue of prostate gland +UBERON_0000990 reproductive system UBERON_0015131 subepithelial connective tissue of prostatic gland +UBERON_0000990 reproductive system UBERON_0015171 uterine spiral artery +UBERON_0000990 reproductive system UBERON_0015172 endometrial blood vessel +UBERON_0000990 reproductive system UBERON_0015173 helicine branch of uterine artery +UBERON_0000990 reproductive system UBERON_0015174 helicine artery of penis +UBERON_0000990 reproductive system UBERON_0015177 helicine artery +UBERON_0000990 reproductive system UBERON_0015243 lower part of vagina +UBERON_0000990 reproductive system UBERON_0015479 scrotum skin +UBERON_0000990 reproductive system UBERON_0015717 smooth muscle tissue layer of ejaculatory duct +UBERON_0000990 reproductive system UBERON_0015792 prostate gland dorsal lobe +UBERON_0000990 reproductive system UBERON_0016408 corona of glans penis +UBERON_0000990 reproductive system UBERON_0016409 base of glans penis +UBERON_0000990 reproductive system UBERON_0016486 posterior fornix of vagina +UBERON_0000990 reproductive system UBERON_0016487 anterior fornix of vagina +UBERON_0000990 reproductive system UBERON_0016505 Mullerian tubercle +UBERON_0000990 reproductive system UBERON_0016524 muscle layer of spongiose part of urethra +UBERON_0000990 reproductive system UBERON_0016632 isthmus of fallopian tube +UBERON_0000990 reproductive system UBERON_0017160 lumen of hemipenial sheath +UBERON_0000990 reproductive system UBERON_0017161 hemipenial mucuous gland +UBERON_0000990 reproductive system UBERON_0017162 hemipenial holocrine gland +UBERON_0000990 reproductive system UBERON_0017180 hemipenis keratinized epithelium +UBERON_0000990 reproductive system UBERON_0017258 placentome of cotyledonary placenta +UBERON_0000990 reproductive system UBERON_0017259 placental caruncle +UBERON_0000990 reproductive system UBERON_0017294 horn of hemipenis +UBERON_0000990 reproductive system UBERON_0017623 prepelvic clasper +UBERON_0000990 reproductive system UBERON_0017624 pseudoclasper +UBERON_0000990 reproductive system UBERON_0017659 ventral surface of penis +UBERON_0000990 reproductive system UBERON_0017732 raphe of scrotum +UBERON_0000990 reproductive system UBERON_0018131 periovarian fat pad +UBERON_0000990 reproductive system UBERON_0018134 rugal fold of scrotum +UBERON_0000990 reproductive system UBERON_0018315 clasper plate +UBERON_0000990 reproductive system UBERON_0018319 extramural oviduct +UBERON_0000990 reproductive system UBERON_0018343 oviduct mucosal fold +UBERON_0000990 reproductive system UBERON_0018529 female inguinal ring +UBERON_0000990 reproductive system UBERON_0018530 male inguinal ring +UBERON_0000990 reproductive system UBERON_0018531 female superficial inguinal ring +UBERON_0000990 reproductive system UBERON_0018532 female deep inguinal ring +UBERON_0000990 reproductive system UBERON_0019042 reproductive system mucosa +UBERON_0000990 reproductive system UBERON_0019197 dorsal nerve of penis +UBERON_0000990 reproductive system UBERON_0019198 dorsal nerve of clitoris +UBERON_0000990 reproductive system UBERON_0022355 basal layer of endometrium +UBERON_0000990 reproductive system UBERON_0022356 outer layer of endometrium +UBERON_0000990 reproductive system UBERON_0022358 placenta blood vessel +UBERON_0000990 reproductive system UBERON_0034691 internal spermatic fascia +UBERON_0000990 reproductive system UBERON_0034694 gubernacular bulb, intra-abdominal part +UBERON_0000990 reproductive system UBERON_0034695 gubernacular bulb, extra-abdominal part +UBERON_0000990 reproductive system UBERON_0034735 oviduct albumen gland +UBERON_0000990 reproductive system UBERON_0034770 bulbourethral gland epithelium +UBERON_0000990 reproductive system UBERON_0034928 dorsal surface of penis +UBERON_0000990 reproductive system UBERON_0034963 lateral fornix of vagina +UBERON_0000990 reproductive system UBERON_0035004 preputial swelling +UBERON_0000990 reproductive system UBERON_0035005 preputial swelling of male +UBERON_0000990 reproductive system UBERON_0035006 preputial swelling of female +UBERON_0000990 reproductive system UBERON_0035098 hemipenis transversus muscle +UBERON_0000990 reproductive system UBERON_0035104 raphe of penis +UBERON_0000990 reproductive system UBERON_0035105 sac of scrotum +UBERON_0000990 reproductive system UBERON_0035142 preputial space of male +UBERON_0000990 reproductive system UBERON_0035143 preputial space of female +UBERON_0000990 reproductive system UBERON_0035144 preputial space +UBERON_0000990 reproductive system UBERON_0035165 posterior surface of prostate +UBERON_0000990 reproductive system UBERON_0035258 mons pubis +UBERON_0000990 reproductive system UBERON_0035310 inferolateral surface of prostate +UBERON_0000990 reproductive system UBERON_0035316 prostatic capsule +UBERON_0000990 reproductive system UBERON_0035331 base of prostate +UBERON_0000990 reproductive system UBERON_0035341 posterior lobe of prostate +UBERON_0000990 reproductive system UBERON_0035441 apex of prostate +UBERON_0000990 reproductive system UBERON_0035465 endometrial cavity +UBERON_0000990 reproductive system UBERON_0035480 surface of prostate +UBERON_0000990 reproductive system UBERON_0035523 anterior surface of prostate +UBERON_0000990 reproductive system UBERON_0035651 glans +UBERON_0000990 reproductive system UBERON_0035766 median lobe of prostate +UBERON_0000990 reproductive system UBERON_0035956 epididymal lumen +UBERON_0000990 reproductive system UBERON_0035962 supravaginal part of cervix +UBERON_0000990 reproductive system UBERON_0036151 diffuse placenta +UBERON_0000990 reproductive system UBERON_0036152 cotyledonary placenta +UBERON_0000990 reproductive system UBERON_0036153 zonary placenta +UBERON_0000990 reproductive system UBERON_0036154 discoid placenta +UBERON_0000990 reproductive system UBERON_0036161 epitheliochorial placenta +UBERON_0000990 reproductive system UBERON_0036162 endotheliochorial placenta +UBERON_0000990 reproductive system UBERON_0036163 hemochorial placenta +UBERON_0000990 reproductive system UBERON_0036185 Sertoli cell barrier +UBERON_0000990 reproductive system UBERON_0036262 uterine ligament +UBERON_0000990 reproductive system UBERON_0036292 adnexa of uterus +UBERON_0000990 reproductive system UBERON_0036441 wall of uterine tube +UBERON_0000990 reproductive system UBERON_0036523 wall of vagina +UBERON_0000990 reproductive system UBERON_0039288 rima vulvae +UBERON_0000990 reproductive system UBERON_0039421 superficial dorsal vein of penis +UBERON_0000990 reproductive system UBERON_0039422 dorsal vein of penis +UBERON_0000990 reproductive system UBERON_2001118 urogenital papilla +UBERON_0000990 reproductive system UBERON_2001263 ovarian follicle stage I +UBERON_0000990 reproductive system UBERON_2001265 ovarian follicle stage II +UBERON_0000990 reproductive system UBERON_2001266 ovarian follicle stage III +UBERON_0000990 reproductive system UBERON_2001571 postovulatory follicle +UBERON_0000990 reproductive system UBERON_2002114 cotylephore +UBERON_0000990 reproductive system UBERON_2002117 ovipositor +UBERON_0000990 reproductive system UBERON_2005272 immature gonad +UBERON_0000990 reproductive system UBERON_3000041 Bidder's organ +UBERON_0000990 reproductive system UBERON_3010240 Nobelian rod +UBERON_0000990 reproductive system UBERON_3010259 phallodeum +UBERON_0000990 reproductive system UBERON_3010260 intromittent organ (Ascaphus type) +UBERON_0000990 reproductive system UBERON_3010529 ovisac +UBERON_0000990 reproductive system UBERON_3010586 vasa efferentia +UBERON_0000990 reproductive system UBERON_3010780 pars recta +UBERON_0000990 reproductive system UBERON_3010781 pars convoluta of oviduct +UBERON_0000990 reproductive system UBERON_4100111 hemipenal sheath +UBERON_0000990 reproductive system UBERON_4300018 ventral marginal cartilage +UBERON_0000990 reproductive system UBERON_8410010 fimbria of uterine tube +UBERON_0000990 reproductive system UBERON_8410025 transition zone of prostate +UBERON_0000990 reproductive system UBERON_8410026 peripheral zone of prostate +UBERON_0000990 reproductive system UBERON_8410027 central zone of prostate +UBERON_0000990 reproductive system UBERON_8450001 egg follicle +UBERON_0000990 reproductive system UBERON_8480005 placental artery endothelium +UBERON_0000990 reproductive system UBERON_8480007 placental artery +UBERON_0000990 reproductive system UBERON_8480008 placental vein +UBERON_0001004 respiratory system UBERON_0000031 lamina propria of trachea +UBERON_0001004 respiratory system UBERON_0000065 respiratory tract +UBERON_0001004 respiratory system UBERON_0000072 proximo-distal subdivision of respiratory tract +UBERON_0001004 respiratory system UBERON_0000101 lobe of lung +UBERON_0001004 respiratory system UBERON_0000102 lung vasculature +UBERON_0001004 respiratory system UBERON_0000114 lung connective tissue +UBERON_0001004 respiratory system UBERON_0000115 lung epithelium +UBERON_0001004 respiratory system UBERON_0000116 lung saccule +UBERON_0001004 respiratory system UBERON_0000117 respiratory tube +UBERON_0001004 respiratory system UBERON_0000170 pair of lungs +UBERON_0001004 respiratory system UBERON_0000171 respiration organ +UBERON_0001004 respiratory system UBERON_0000205 papula +UBERON_0001004 respiratory system UBERON_0000206 pharyngeal gill +UBERON_0001004 respiratory system UBERON_0000355 pharyngeal mucosa +UBERON_0001004 respiratory system UBERON_0000379 tracheal mucosa +UBERON_0001004 respiratory system UBERON_0000388 epiglottis +UBERON_0001004 respiratory system UBERON_0000402 nasal vestibule +UBERON_0001004 respiratory system UBERON_0000410 bronchial mucosa +UBERON_0001004 respiratory system UBERON_0000929 pharyngeal branch of vagus nerve +UBERON_0001004 respiratory system UBERON_0000977 pleura +UBERON_0001004 respiratory system UBERON_0001005 respiratory airway +UBERON_0001004 respiratory system UBERON_0001042 chordate pharynx +UBERON_0001004 respiratory system UBERON_0001051 hypopharynx +UBERON_0001004 respiratory system UBERON_0001102 cartilage of main bronchus +UBERON_0001004 respiratory system UBERON_0001103 diaphragm +UBERON_0001004 respiratory system UBERON_0001557 upper respiratory tract +UBERON_0001004 respiratory system UBERON_0001558 lower respiratory tract +UBERON_0001004 respiratory system UBERON_0001566 cricothyroid muscle +UBERON_0001004 respiratory system UBERON_0001568 muscle of larynx +UBERON_0001004 respiratory system UBERON_0001570 inferior pharyngeal constrictor +UBERON_0001004 respiratory system UBERON_0001707 nasal cavity +UBERON_0001004 respiratory system UBERON_0001724 sphenoidal sinus +UBERON_0001004 respiratory system UBERON_0001728 nasopharynx +UBERON_0001004 respiratory system UBERON_0001729 oropharynx +UBERON_0001004 respiratory system UBERON_0001730 extrinsic ligament of larynx +UBERON_0001004 respiratory system UBERON_0001732 pharyngeal tonsil +UBERON_0001004 respiratory system UBERON_0001735 tonsillar ring +UBERON_0001004 respiratory system UBERON_0001737 larynx +UBERON_0001004 respiratory system UBERON_0001738 thyroid cartilage +UBERON_0001004 respiratory system UBERON_0001739 laryngeal cartilage +UBERON_0001004 respiratory system UBERON_0001740 arytenoid cartilage +UBERON_0001004 respiratory system UBERON_0001741 corniculate cartilage +UBERON_0001004 respiratory system UBERON_0001742 epiglottic cartilage +UBERON_0001004 respiratory system UBERON_0001743 ligament of larynx +UBERON_0001004 respiratory system UBERON_0001760 frontal sinus +UBERON_0001004 respiratory system UBERON_0001761 future foramen cecum +UBERON_0001004 respiratory system UBERON_0001764 maxillary sinus +UBERON_0001004 respiratory system UBERON_0001824 mucosa of larynx +UBERON_0001004 respiratory system UBERON_0001825 paranasal sinus +UBERON_0001004 respiratory system UBERON_0001826 nasal cavity mucosa +UBERON_0001004 respiratory system UBERON_0001901 epithelium of trachea +UBERON_0001004 respiratory system UBERON_0001951 epithelium of nasopharynx +UBERON_0001004 respiratory system UBERON_0001952 epithelium of oropharynx +UBERON_0001004 respiratory system UBERON_0001955 epithelium of respiratory bronchiole +UBERON_0001004 respiratory system UBERON_0001956 cartilage of bronchus +UBERON_0001004 respiratory system UBERON_0001957 submucosa of bronchus +UBERON_0001004 respiratory system UBERON_0001958 terminal bronchiole epithelium +UBERON_0001004 respiratory system UBERON_0001963 bronchial-associated lymphoid tissue +UBERON_0001004 respiratory system UBERON_0001997 olfactory epithelium +UBERON_0001004 respiratory system UBERON_0002031 epithelium of bronchus +UBERON_0001004 respiratory system UBERON_0002041 terminal bronchus +UBERON_0001004 respiratory system UBERON_0002048 lung +UBERON_0001004 respiratory system UBERON_0002051 epithelium of bronchiole +UBERON_0001004 respiratory system UBERON_0002167 right lung +UBERON_0001004 respiratory system UBERON_0002168 left lung +UBERON_0001004 respiratory system UBERON_0002169 alveolar sac +UBERON_0001004 respiratory system UBERON_0002170 upper lobe of right lung +UBERON_0001004 respiratory system UBERON_0002171 lower lobe of right lung +UBERON_0001004 respiratory system UBERON_0002172 alveolar atrium +UBERON_0001004 respiratory system UBERON_0002173 pulmonary alveolar duct +UBERON_0001004 respiratory system UBERON_0002174 middle lobe of right lung +UBERON_0001004 respiratory system UBERON_0002177 right main bronchus +UBERON_0001004 respiratory system UBERON_0002178 left main bronchus +UBERON_0001004 respiratory system UBERON_0002182 main bronchus +UBERON_0001004 respiratory system UBERON_0002183 lobar bronchus +UBERON_0001004 respiratory system UBERON_0002184 segmental bronchus +UBERON_0001004 respiratory system UBERON_0002185 bronchus +UBERON_0001004 respiratory system UBERON_0002186 bronchiole +UBERON_0001004 respiratory system UBERON_0002187 terminal bronchiole +UBERON_0001004 respiratory system UBERON_0002188 respiratory bronchiole +UBERON_0001004 respiratory system UBERON_0002202 submucosa of trachea +UBERON_0001004 respiratory system UBERON_0002232 olfactory gland +UBERON_0001004 respiratory system UBERON_0002299 alveolus of lung +UBERON_0001004 respiratory system UBERON_0002338 lamina propria of bronchus +UBERON_0001004 respiratory system UBERON_0002339 epithelium of lobar bronchus +UBERON_0001004 respiratory system UBERON_0002340 epithelium of main bronchus +UBERON_0001004 respiratory system UBERON_0002341 epithelium of segmental bronchus +UBERON_0001004 respiratory system UBERON_0002372 tonsil +UBERON_0001004 respiratory system UBERON_0002373 palatine tonsil +UBERON_0001004 respiratory system UBERON_0002375 cricoid cartilage +UBERON_0001004 respiratory system UBERON_0002400 parietal pleura +UBERON_0001004 respiratory system UBERON_0002401 visceral pleura +UBERON_0001004 respiratory system UBERON_0002402 pleural cavity +UBERON_0001004 respiratory system UBERON_0002453 ethmoid sinus +UBERON_0001004 respiratory system UBERON_0002486 glottis +UBERON_0001004 respiratory system UBERON_0002535 gill +UBERON_0001004 respiratory system UBERON_0003091 thyroid primordium +UBERON_0001004 respiratory system UBERON_0003118 pharyngeal arch artery 1 +UBERON_0001004 respiratory system UBERON_0003119 pharyngeal arch artery 2 +UBERON_0001004 respiratory system UBERON_0003120 pharyngeal arch artery 3 +UBERON_0001004 respiratory system UBERON_0003121 pharyngeal arch artery 4 +UBERON_0001004 respiratory system UBERON_0003122 pharyngeal arch artery 5 +UBERON_0001004 respiratory system UBERON_0003123 pharyngeal arch artery 6 +UBERON_0001004 respiratory system UBERON_0003126 trachea +UBERON_0001004 respiratory system UBERON_0003127 open tracheal system trachea +UBERON_0001004 respiratory system UBERON_0003261 thyroid primordium endoderm +UBERON_0001004 respiratory system UBERON_0003279 endothelium of trachea +UBERON_0001004 respiratory system UBERON_0003280 endothelium of main bronchus +UBERON_0001004 respiratory system UBERON_0003295 pharyngeal gland +UBERON_0001004 respiratory system UBERON_0003351 pharyngeal epithelium +UBERON_0001004 respiratory system UBERON_0003364 epithelium of right lung +UBERON_0001004 respiratory system UBERON_0003365 epithelium of left lung +UBERON_0001004 respiratory system UBERON_0003384 skeletal muscle tissue of pharynx +UBERON_0001004 respiratory system UBERON_0003387 smooth muscle of trachea +UBERON_0001004 respiratory system UBERON_0003389 mesothelium of diaphragm +UBERON_0001004 respiratory system UBERON_0003404 lobar bronchus of right lung +UBERON_0001004 respiratory system UBERON_0003405 lobar bronchus of left lung +UBERON_0001004 respiratory system UBERON_0003406 cartilage of respiratory system +UBERON_0001004 respiratory system UBERON_0003410 oropharyngeal gland +UBERON_0001004 respiratory system UBERON_0003456 respiratory system lymphatic vessel +UBERON_0001004 respiratory system UBERON_0003469 respiratory system artery +UBERON_0001004 respiratory system UBERON_0003489 respiratory system capillary endothelium +UBERON_0001004 respiratory system UBERON_0003490 respiratory system reticular lamina +UBERON_0001004 respiratory system UBERON_0003492 bronchus reticular lamina +UBERON_0001004 respiratory system UBERON_0003493 trachea reticular lamina +UBERON_0001004 respiratory system UBERON_0003494 respiratory system venule +UBERON_0001004 respiratory system UBERON_0003495 respiratory system arteriole +UBERON_0001004 respiratory system UBERON_0003504 respiratory system blood vessel +UBERON_0001004 respiratory system UBERON_0003505 trachea blood vessel +UBERON_0001004 respiratory system UBERON_0003512 lung blood vessel +UBERON_0001004 respiratory system UBERON_0003518 main bronchus blood vessel +UBERON_0001004 respiratory system UBERON_0003526 respiratory system capillary +UBERON_0001004 respiratory system UBERON_0003529 respiratory system lymphatic vessel endothelium +UBERON_0001004 respiratory system UBERON_0003536 right lung alveolar duct +UBERON_0001004 respiratory system UBERON_0003537 left lung alveolar duct +UBERON_0001004 respiratory system UBERON_0003538 right lung bronchiole +UBERON_0001004 respiratory system UBERON_0003539 left lung bronchiole +UBERON_0001004 respiratory system UBERON_0003540 right lung terminal bronchiole +UBERON_0001004 respiratory system UBERON_0003541 left lung terminal bronchiole +UBERON_0001004 respiratory system UBERON_0003542 right lung respiratory bronchiole +UBERON_0001004 respiratory system UBERON_0003543 left lung respiratory bronchiole +UBERON_0001004 respiratory system UBERON_0003570 respiratory system connective tissue +UBERON_0001004 respiratory system UBERON_0003571 trachea connective tissue +UBERON_0001004 respiratory system UBERON_0003580 lower respiratory tract connective tissue +UBERON_0001004 respiratory system UBERON_0003582 nasopharynx connective tissue +UBERON_0001004 respiratory system UBERON_0003583 larynx connective tissue +UBERON_0001004 respiratory system UBERON_0003590 main bronchus connective tissue +UBERON_0001004 respiratory system UBERON_0003591 lobar bronchus connective tissue +UBERON_0001004 respiratory system UBERON_0003592 bronchus connective tissue +UBERON_0001004 respiratory system UBERON_0003603 lower respiratory tract cartilage +UBERON_0001004 respiratory system UBERON_0003604 trachea cartilage +UBERON_0001004 respiratory system UBERON_0003611 respiratory system elastic tissue +UBERON_0001004 respiratory system UBERON_0003615 lung elastic tissue +UBERON_0001004 respiratory system UBERON_0003616 bronchus elastic tissue +UBERON_0001004 respiratory system UBERON_0003617 trachea elastic tissue +UBERON_0001004 respiratory system UBERON_0003643 respiratory system arterial blood vessel +UBERON_0001004 respiratory system UBERON_0003706 laryngeal vocal fold +UBERON_0001004 respiratory system UBERON_0003831 respiratory system muscle +UBERON_0001004 respiratory system UBERON_0003948 blood-air barrier +UBERON_0001004 respiratory system UBERON_0003949 tubal tonsil +UBERON_0001004 respiratory system UBERON_0004110 midnasal cavity +UBERON_0001004 respiratory system UBERON_0004225 respiratory system smooth muscle +UBERON_0001004 respiratory system UBERON_0004233 lower respiratory tract smooth muscle +UBERON_0001004 respiratory system UBERON_0004241 main bronchus smooth muscle +UBERON_0001004 respiratory system UBERON_0004242 bronchus smooth muscle +UBERON_0001004 respiratory system UBERON_0004296 respiratory system lymphatic vessel smooth muscle +UBERON_0001004 respiratory system UBERON_0004297 respiratory system blood vessel smooth muscle +UBERON_0001004 respiratory system UBERON_0004363 pharyngeal arch artery +UBERON_0001004 respiratory system UBERON_0004368 Reichert's cartilage +UBERON_0001004 respiratory system UBERON_0004478 musculature of larynx +UBERON_0001004 respiratory system UBERON_0004495 skeletal muscle tissue of diaphragm +UBERON_0001004 respiratory system UBERON_0004515 smooth muscle tissue of bronchiole +UBERON_0001004 respiratory system UBERON_0004516 smooth muscle tissue of terminal bronchiole +UBERON_0001004 respiratory system UBERON_0004517 smooth muscle tissue of respiratory bronchiole +UBERON_0001004 respiratory system UBERON_0004702 respiratory system blood vessel endothelium +UBERON_0001004 respiratory system UBERON_0004777 respiratory system submucosa +UBERON_0001004 respiratory system UBERON_0004778 larynx submucosa +UBERON_0001004 respiratory system UBERON_0004779 respiratory system lamina propria +UBERON_0001004 respiratory system UBERON_0004785 respiratory system mucosa +UBERON_0001004 respiratory system UBERON_0004789 larynx mucous gland +UBERON_0001004 respiratory system UBERON_0004798 respiratory system basal lamina +UBERON_0001004 respiratory system UBERON_0004799 trachea basal lamina +UBERON_0001004 respiratory system UBERON_0004800 bronchus basal lamina +UBERON_0001004 respiratory system UBERON_0004802 respiratory tract epithelium +UBERON_0001004 respiratory system UBERON_0004807 respiratory system epithelium +UBERON_0001004 respiratory system UBERON_0004814 upper respiratory tract epithelium +UBERON_0001004 respiratory system UBERON_0004815 lower respiratory tract epithelium +UBERON_0001004 respiratory system UBERON_0004816 larynx epithelium +UBERON_0001004 respiratory system UBERON_0004818 terminal bronchus epithelium +UBERON_0001004 respiratory system UBERON_0004821 pulmonary alveolus epithelium +UBERON_0001004 respiratory system UBERON_0004830 respiratory system skeletal muscle +UBERON_0001004 respiratory system UBERON_0004848 respiratory system arterial endothelium +UBERON_0001004 respiratory system UBERON_0004849 respiratory system venous endothelium +UBERON_0001004 respiratory system UBERON_0004861 right lung alveolus +UBERON_0001004 respiratory system UBERON_0004862 left lung alveolus +UBERON_0001004 respiratory system UBERON_0004883 lung mesenchyme +UBERON_0001004 respiratory system UBERON_0004884 lobar bronchus mesenchyme +UBERON_0001004 respiratory system UBERON_0004886 lung hilus +UBERON_0001004 respiratory system UBERON_0004887 left lung hilus +UBERON_0001004 respiratory system UBERON_0004888 right lung hilus +UBERON_0001004 respiratory system UBERON_0004889 lobar bronchus vasculature +UBERON_0001004 respiratory system UBERON_0004890 right lung accessory lobe +UBERON_0001004 respiratory system UBERON_0004892 lobar bronchus alveolar system +UBERON_0001004 respiratory system UBERON_0004893 interalveolar septum +UBERON_0001004 respiratory system UBERON_0004894 alveolar wall +UBERON_0001004 respiratory system UBERON_0004895 alveolar smooth muscle +UBERON_0001004 respiratory system UBERON_0004896 right lung accessory lobe lobar bronchus +UBERON_0001004 respiratory system UBERON_0004897 right lung accessory lobe lobar bronchus mesenchyme +UBERON_0001004 respiratory system UBERON_0004899 right lung cranial lobe lobar bronchus mesenchyme +UBERON_0001004 respiratory system UBERON_0004900 right lung middle lobe lobar bronchus mesenchyme +UBERON_0001004 respiratory system UBERON_0004901 right lung lobar bronchus mesenchyme +UBERON_0001004 respiratory system UBERON_0004903 bronchoalveolar duct junction +UBERON_0001004 respiratory system UBERON_0004924 submucosa of pharynx +UBERON_0001004 respiratory system UBERON_0004925 submucosa of laryngopharynx +UBERON_0001004 respiratory system UBERON_0004947 submucosa of right main bronchus +UBERON_0001004 respiratory system UBERON_0004948 submucosa of left main bronchus +UBERON_0001004 respiratory system UBERON_0004949 submucosa of main bronchus +UBERON_0001004 respiratory system UBERON_0004950 submucosa of lobar bronchus +UBERON_0001004 respiratory system UBERON_0004951 submucosa of segmental bronchus +UBERON_0001004 respiratory system UBERON_0004952 submucosa of bronchiole +UBERON_0001004 respiratory system UBERON_0004982 mucosa of epiglottis +UBERON_0001004 respiratory system UBERON_0004987 mucosa of laryngopharynx +UBERON_0001004 respiratory system UBERON_0005022 mucosa of nasopharynx +UBERON_0001004 respiratory system UBERON_0005023 mucosa of oropharynx +UBERON_0001004 respiratory system UBERON_0005034 mucosa of right main bronchus +UBERON_0001004 respiratory system UBERON_0005035 mucosa of left main bronchus +UBERON_0001004 respiratory system UBERON_0005036 mucosa of main bronchus +UBERON_0001004 respiratory system UBERON_0005037 mucosa of lobar bronchus +UBERON_0001004 respiratory system UBERON_0005038 mucosa of segmental bronchus +UBERON_0001004 respiratory system UBERON_0005039 mucosa of bronchiole +UBERON_0001004 respiratory system UBERON_0005040 mucosa of terminal bronchiole +UBERON_0001004 respiratory system UBERON_0005041 mucosa of respiratory bronchiole +UBERON_0001004 respiratory system UBERON_0005047 mucosa of vocal fold +UBERON_0001004 respiratory system UBERON_0005155 open tracheal system +UBERON_0001004 respiratory system UBERON_0005203 trachea gland +UBERON_0001004 respiratory system UBERON_0005204 larynx submucosa gland +UBERON_0001004 respiratory system UBERON_0005207 tonsil capsule +UBERON_0001004 respiratory system UBERON_0005244 lobar bronchus of right lung cranial lobe +UBERON_0001004 respiratory system UBERON_0005245 lobar bronchus of right lung caudal lobe +UBERON_0001004 respiratory system UBERON_0005314 alveolar primary septum +UBERON_0001004 respiratory system UBERON_0005315 alveolar secondary septum +UBERON_0001004 respiratory system UBERON_0005384 nasal cavity epithelium +UBERON_0001004 respiratory system UBERON_0005385 nasal cavity respiratory epithelium +UBERON_0001004 respiratory system UBERON_0005386 olfactory segment of nasal mucosa +UBERON_0001004 respiratory system UBERON_0005562 thymus primordium +UBERON_0001004 respiratory system UBERON_0005639 right lung cranial lobe epithelium +UBERON_0001004 respiratory system UBERON_0005640 right lung caudal lobe epithelium +UBERON_0001004 respiratory system UBERON_0005655 right lung accessory lobe epithelium +UBERON_0001004 respiratory system UBERON_0005672 right lung endothelium +UBERON_0001004 respiratory system UBERON_0005673 left lung endothelium +UBERON_0001004 respiratory system UBERON_0005674 right lung cranial lobe endothelium +UBERON_0001004 respiratory system UBERON_0005675 right lung caudal lobe endothelium +UBERON_0001004 respiratory system UBERON_0005676 right lung accessory lobe endothelium +UBERON_0001004 respiratory system UBERON_0005678 right lung cranial lobe segmental bronchus +UBERON_0001004 respiratory system UBERON_0005679 right lung caudal lobe segmental bronchus +UBERON_0001004 respiratory system UBERON_0005680 right lung accessory lobe segmental bronchus +UBERON_0001004 respiratory system UBERON_0005681 right lung upper lobe bronchiole +UBERON_0001004 respiratory system UBERON_0005682 right lung accessory lobe bronchiole +UBERON_0001004 respiratory system UBERON_0005872 1st arch pharyngeal cleft +UBERON_0001004 respiratory system UBERON_0005873 2nd arch pharyngeal cleft +UBERON_0001004 respiratory system UBERON_0005874 3rd arch pharyngeal cleft +UBERON_0001004 respiratory system UBERON_0005875 4th arch pharyngeal cleft +UBERON_0001004 respiratory system UBERON_0005879 pharyngeal cleft +UBERON_0001004 respiratory system UBERON_0006257 laryngotracheal groove +UBERON_0001004 respiratory system UBERON_0006325 laryngeal intrinsic ligament +UBERON_0001004 respiratory system UBERON_0006326 base of arytenoid +UBERON_0001004 respiratory system UBERON_0006327 laryngeal extrinsic muscle +UBERON_0001004 respiratory system UBERON_0006328 laryngeal intrinsic muscle +UBERON_0001004 respiratory system UBERON_0006494 apex of arytenoid +UBERON_0001004 respiratory system UBERON_0006518 right lung lobe +UBERON_0001004 respiratory system UBERON_0006524 alveolar system +UBERON_0001004 respiratory system UBERON_0006525 left lung alveolar system +UBERON_0001004 respiratory system UBERON_0006526 right lung alveolar system +UBERON_0001004 respiratory system UBERON_0006670 central tendon of diaphragm +UBERON_0001004 respiratory system UBERON_0006679 carina of trachea +UBERON_0001004 respiratory system UBERON_0006680 trachealis +UBERON_0001004 respiratory system UBERON_0006685 pharyngeal tubercle +UBERON_0001004 respiratory system UBERON_0006832 lumen of open tracheal system trachea +UBERON_0001004 respiratory system UBERON_0006833 lumen of trachea +UBERON_0001004 respiratory system UBERON_0007145 dome of diaphragm +UBERON_0001004 respiratory system UBERON_0007161 medial arcuate ligament +UBERON_0001004 respiratory system UBERON_0007162 lateral arcuate ligament +UBERON_0001004 respiratory system UBERON_0007166 left dome of diaphragm +UBERON_0001004 respiratory system UBERON_0007167 right dome of diaphragm +UBERON_0001004 respiratory system UBERON_0007196 tracheobronchial tree +UBERON_0001004 respiratory system UBERON_0007250 lingual tonsil +UBERON_0001004 respiratory system UBERON_0007267 trachea pre-cartilage rings +UBERON_0001004 respiratory system UBERON_0007303 pharyngeal vasculature +UBERON_0001004 respiratory system UBERON_0007311 sputum +UBERON_0001004 respiratory system UBERON_0007689 thyroid diverticulum +UBERON_0001004 respiratory system UBERON_0008310 nasopharyngeal gland +UBERON_0001004 respiratory system UBERON_0008397 tracheobronchial epithelium +UBERON_0001004 respiratory system UBERON_0008572 posterior crico-arytenoid +UBERON_0001004 respiratory system UBERON_0008573 lateral crico-arytenoid +UBERON_0001004 respiratory system UBERON_0008574 transverse arytenoid +UBERON_0001004 respiratory system UBERON_0008575 oblique arytenoid +UBERON_0001004 respiratory system UBERON_0008576 thyro-arytenoid +UBERON_0001004 respiratory system UBERON_0008577 vocalis muscle +UBERON_0001004 respiratory system UBERON_0008804 stylopharyngeus muscle +UBERON_0001004 respiratory system UBERON_0008815 pharyngeal slit +UBERON_0001004 respiratory system UBERON_0008817 thymus primordium endoderm +UBERON_0001004 respiratory system UBERON_0008870 pulmonary alveolar parenchyma +UBERON_0001004 respiratory system UBERON_0008873 alveolar pore +UBERON_0001004 respiratory system UBERON_0008874 pulmonary acinus +UBERON_0001004 respiratory system UBERON_0008891 external gill +UBERON_0001004 respiratory system UBERON_0008892 internal gill +UBERON_0001004 respiratory system UBERON_0008946 lung parenchyma +UBERON_0001004 respiratory system UBERON_0008948 upper lobe of lung +UBERON_0001004 respiratory system UBERON_0008949 lower lobe of lung +UBERON_0001004 respiratory system UBERON_0008950 azygous lobe of lung +UBERON_0001004 respiratory system UBERON_0008951 left lung lobe +UBERON_0001004 respiratory system UBERON_0008952 upper lobe of left lung +UBERON_0001004 respiratory system UBERON_0008953 lower lobe of left lung +UBERON_0001004 respiratory system UBERON_0008954 lingula of left lung +UBERON_0001004 respiratory system UBERON_0008955 middle lobe of lung +UBERON_0001004 respiratory system UBERON_0008961 parabronchus +UBERON_0001004 respiratory system UBERON_0009058 faveolus +UBERON_0001004 respiratory system UBERON_0009060 air sac +UBERON_0001004 respiratory system UBERON_0009061 anterior air sac +UBERON_0001004 respiratory system UBERON_0009062 posterior air sac +UBERON_0001004 respiratory system UBERON_0009063 interclavicular air sac +UBERON_0001004 respiratory system UBERON_0009064 cervical air sac +UBERON_0001004 respiratory system UBERON_0009065 anterior thoracic air sac +UBERON_0001004 respiratory system UBERON_0009066 posterior thoracic air sac +UBERON_0001004 respiratory system UBERON_0009067 abdominal air sac +UBERON_0001004 respiratory system UBERON_0009071 mesobronchus +UBERON_0001004 respiratory system UBERON_0009072 ventrobronchus +UBERON_0001004 respiratory system UBERON_0009073 dorsobronchus +UBERON_0001004 respiratory system UBERON_0009074 syrinx organ +UBERON_0001004 respiratory system UBERON_0009075 membrana tympaniformis +UBERON_0001004 respiratory system UBERON_0009076 membrana tympaniformis lateralis +UBERON_0001004 respiratory system UBERON_0009077 membrana tympaniformis medialis +UBERON_0001004 respiratory system UBERON_0009078 pessulus +UBERON_0001004 respiratory system UBERON_0009116 thymoid +UBERON_0001004 respiratory system UBERON_0009119 branchial basket +UBERON_0001004 respiratory system UBERON_0009120 gill filament +UBERON_0001004 respiratory system UBERON_0009504 mesenchyme of main bronchus +UBERON_0001004 respiratory system UBERON_0009505 mesenchyme of trachea +UBERON_0001004 respiratory system UBERON_0009536 vascular element of left lung +UBERON_0001004 respiratory system UBERON_0009537 vascular element of right lung +UBERON_0001004 respiratory system UBERON_0009602 left lung associated mesenchyme +UBERON_0001004 respiratory system UBERON_0009603 right lung associated mesenchyme +UBERON_0001004 respiratory system UBERON_0009644 trachea non-cartilage connective tissue +UBERON_0001004 respiratory system UBERON_0009652 bronchus basement membrane +UBERON_0001004 respiratory system UBERON_0009653 trachea basement membrane +UBERON_0001004 respiratory system UBERON_0009671 nasal fin +UBERON_0001004 respiratory system UBERON_0009672 oronasal membrane +UBERON_0001004 respiratory system UBERON_0009695 epithelium of laryngopharynx +UBERON_0001004 respiratory system UBERON_0009778 pleural sac +UBERON_0001004 respiratory system UBERON_0009867 Hatschek's diverticulum +UBERON_0001004 respiratory system UBERON_0009868 Hatschek's left diverticulum +UBERON_0001004 respiratory system UBERON_0009869 Hatschek's right diverticulum +UBERON_0001004 respiratory system UBERON_0009948 clavicular air sac +UBERON_0001004 respiratory system UBERON_0009959 lumen of oropharynx +UBERON_0001004 respiratory system UBERON_0010002 pulmonary neuroendocrine body +UBERON_0001004 respiratory system UBERON_0010019 spiracle (sensu Vertebrata) +UBERON_0001004 respiratory system UBERON_0010060 pharyngeal opening of pharyngotympanic tube +UBERON_0001004 respiratory system UBERON_0010061 lumen of nasopharynx +UBERON_0001004 respiratory system UBERON_0010212 laryngeal apparatus +UBERON_0001004 respiratory system UBERON_0010213 laryngeal pre-cartilage condensation +UBERON_0001004 respiratory system UBERON_0010214 cricoid pre-cartilage condensation +UBERON_0001004 respiratory system UBERON_0010215 arytenoid swellings +UBERON_0001004 respiratory system UBERON_0010219 thyroid pre-cartilage condensation +UBERON_0001004 respiratory system UBERON_0010220 arytenoid pre-cartilage condensation +UBERON_0001004 respiratory system UBERON_0010221 laryngeal associated mesenchyme +UBERON_0001004 respiratory system UBERON_0010234 palatopharyngeus muscle +UBERON_0001004 respiratory system UBERON_0010368 pulmonary lobule +UBERON_0001004 respiratory system UBERON_0010369 secondary pulmonary lobule +UBERON_0001004 respiratory system UBERON_0010384 lumen of laryngopharynx +UBERON_0001004 respiratory system UBERON_0010423 primary lymphoid nodule of tonsil +UBERON_0001004 respiratory system UBERON_0010927 thyroepiglotticus muscle +UBERON_0001004 respiratory system UBERON_0010928 cricopharyngeus muscle +UBERON_0001004 respiratory system UBERON_0010932 crico-arytenoid muscle +UBERON_0001004 respiratory system UBERON_0010936 thyropharyngeus muscle +UBERON_0001004 respiratory system UBERON_0010937 salpingopharyngeus muscle +UBERON_0001004 respiratory system UBERON_0010958 arytenoid muscle +UBERON_0001004 respiratory system UBERON_0011025 aryepiglotticus muscle +UBERON_0001004 respiratory system UBERON_0011150 pharyngeal arch derived gill +UBERON_0001004 respiratory system UBERON_0011157 cuneiform cartilage +UBERON_0001004 respiratory system UBERON_0011289 pharyngobasilar fascia +UBERON_0001004 respiratory system UBERON_0011311 hyoepiglottic ligament +UBERON_0001004 respiratory system UBERON_0011312 hyoepiglottic muscle +UBERON_0001004 respiratory system UBERON_0011345 pharyngeal raphe +UBERON_0001004 respiratory system UBERON_0011495 rectus thoracis muscle +UBERON_0001004 respiratory system UBERON_0011623 horn of thyroid cartilage +UBERON_0001004 respiratory system UBERON_0011624 superior horn of thyroid cartilage +UBERON_0001004 respiratory system UBERON_0011625 inferior horn of thyroid cartilage +UBERON_0001004 respiratory system UBERON_0011862 pulmonary collagen fibril +UBERON_0001004 respiratory system UBERON_0011985 infraorbital sinus +UBERON_0001004 respiratory system UBERON_0012055 left lung lower lobe bronchiole +UBERON_0001004 respiratory system UBERON_0012056 left lung upper lobe bronchiole +UBERON_0001004 respiratory system UBERON_0012059 right lung lower lobe bronchiole +UBERON_0001004 respiratory system UBERON_0012063 lobar bronchus of right lung middle lobe +UBERON_0001004 respiratory system UBERON_0012065 lobar bronchus of left lung upper lobe +UBERON_0001004 respiratory system UBERON_0012066 lobar bronchus of left lung lower lobe +UBERON_0001004 respiratory system UBERON_0012067 primary bronchiole +UBERON_0001004 respiratory system UBERON_0012068 right lung middle lobe bronchiole +UBERON_0001004 respiratory system UBERON_0012082 bronchial lumen +UBERON_0001004 respiratory system UBERON_0012083 lumen of primary bronchus +UBERON_0001004 respiratory system UBERON_0012084 lumen of secondary bronchus +UBERON_0001004 respiratory system UBERON_0012085 lumen of tertiary bronchus +UBERON_0001004 respiratory system UBERON_0012086 lumen of parabronchus +UBERON_0001004 respiratory system UBERON_0012087 air capillary of parabronchus +UBERON_0001004 respiratory system UBERON_0012088 lateroobronchus +UBERON_0001004 respiratory system UBERON_0012100 appendicocostalis muscle +UBERON_0001004 respiratory system UBERON_0012121 respiratory velum +UBERON_0001004 respiratory system UBERON_0012181 tonsil crypt +UBERON_0001004 respiratory system UBERON_0012278 gland of nasal mucosa +UBERON_0001004 respiratory system UBERON_0012330 nasal-associated lymphoid tissue +UBERON_0001004 respiratory system UBERON_0012416 respiratory system arterial smooth muscle +UBERON_0001004 respiratory system UBERON_0013074 cornual diverticulum +UBERON_0001004 respiratory system UBERON_0013157 1st arch maxillary-mandibular cleft +UBERON_0001004 respiratory system UBERON_0013167 cricopharyngeal ligament +UBERON_0001004 respiratory system UBERON_0013168 thyroepiglottic ligament +UBERON_0001004 respiratory system UBERON_0013169 vestibular ligament +UBERON_0001004 respiratory system UBERON_0013170 cricoarytenoid ligament +UBERON_0001004 respiratory system UBERON_0013171 cricothyroid ligament +UBERON_0001004 respiratory system UBERON_0013172 cricotracheal ligament +UBERON_0001004 respiratory system UBERON_0013233 supraorbital gland +UBERON_0001004 respiratory system UBERON_0013479 lung endothelium +UBERON_0001004 respiratory system UBERON_0013653 velar skeleton +UBERON_0001004 respiratory system UBERON_0013688 tonsil germinal center +UBERON_0001004 respiratory system UBERON_0013696 tonsil epithelium +UBERON_0001004 respiratory system UBERON_0014372 fibroelastic membrane of larynx +UBERON_0001004 respiratory system UBERON_0014385 aryepiglottic fold +UBERON_0001004 respiratory system UBERON_0014398 respiratory muscle +UBERON_0001004 respiratory system UBERON_0014479 elephant trunk +UBERON_0001004 respiratory system UBERON_0014765 crus of diaphragm +UBERON_0001004 respiratory system UBERON_0014766 right crus of diaphragm +UBERON_0001004 respiratory system UBERON_0014767 left crus of diaphragm +UBERON_0001004 respiratory system UBERON_0015214 arcuate ligament +UBERON_0001004 respiratory system UBERON_0015215 median arcuate ligament +UBERON_0001004 respiratory system UBERON_0015246 septal organ of Masera +UBERON_0001004 respiratory system UBERON_0015247 bifurcation of trachea +UBERON_0001004 respiratory system UBERON_0015329 respiratory system basement membrane +UBERON_0001004 respiratory system UBERON_0015472 tracheobronchial lymph node +UBERON_0001004 respiratory system UBERON_0015784 duct of olfactory gland +UBERON_0001004 respiratory system UBERON_0015785 acinus of olfactory gland +UBERON_0001004 respiratory system UBERON_0015786 respiratory segment of nasal mucosa +UBERON_0001004 respiratory system UBERON_0015787 upper respiratory conduit +UBERON_0001004 respiratory system UBERON_0015788 olfactory apparatus chamber +UBERON_0001004 respiratory system UBERON_0015794 left lung lobar bronchus epithelium +UBERON_0001004 respiratory system UBERON_0015795 right lung lobar bronchus epitheium +UBERON_0001004 respiratory system UBERON_0016405 pulmonary capillary +UBERON_0001004 respiratory system UBERON_0016458 esophageal hiatus +UBERON_0001004 respiratory system UBERON_0016481 bronchial lymph node +UBERON_0001004 respiratory system UBERON_0016545 pharyngeal ectoderm +UBERON_0001004 respiratory system UBERON_0017616 afferent spiracular artery +UBERON_0001004 respiratory system UBERON_0017617 efferent spiracular artery +UBERON_0001004 respiratory system UBERON_0018103 posterior fascicle of palatopharyngeus +UBERON_0001004 respiratory system UBERON_0018226 pulmonary part of lymphatic system +UBERON_0001004 respiratory system UBERON_0018227 pulmonary lymphatic vessel +UBERON_0001004 respiratory system UBERON_0019190 mucous gland of lung +UBERON_0001004 respiratory system UBERON_0034680 laryngeal prominence +UBERON_0001004 respiratory system UBERON_0034721 pharyngeal taste bud +UBERON_0001004 respiratory system UBERON_0034937 pharyngeal bar +UBERON_0001004 respiratory system UBERON_0035077 lateral nasal gland +UBERON_0001004 respiratory system UBERON_0035120 fauces +UBERON_0001004 respiratory system UBERON_0035228 tonsillar fossa +UBERON_0001004 respiratory system UBERON_0035240 posterior wall of oropharynx +UBERON_0001004 respiratory system UBERON_0035270 roof of nasopharynx +UBERON_0001004 respiratory system UBERON_0035286 lateral wall of oropharynx +UBERON_0001004 respiratory system UBERON_0035313 posterior wall of laryngopharynx +UBERON_0001004 respiratory system UBERON_0035383 lateral wall of nasopharynx +UBERON_0001004 respiratory system UBERON_0035401 posterior wall of nasopharynx +UBERON_0001004 respiratory system UBERON_0035431 mediastinal pleura +UBERON_0001004 respiratory system UBERON_0035453 laryngeal ventricle +UBERON_0001004 respiratory system UBERON_0035468 costodiaphragmatic recess +UBERON_0001004 respiratory system UBERON_0035767 intrapulmonary bronchus +UBERON_0001004 respiratory system UBERON_0035831 costal diaphragm +UBERON_0001004 respiratory system UBERON_0035963 epithelial lining fluid +UBERON_0001004 respiratory system UBERON_0036068 subglottis +UBERON_0001004 respiratory system UBERON_0036071 diaphragmaticus muscle +UBERON_0001004 respiratory system UBERON_0036225 respiratory system gland +UBERON_0001004 respiratory system UBERON_0036263 supraglottic part of larynx +UBERON_0001004 respiratory system UBERON_0036274 tonsillar pillar +UBERON_0001004 respiratory system UBERON_0038897 superior tracheobronchial lymph node +UBERON_0001004 respiratory system UBERON_0038900 inferior tracheobronchial lymph node +UBERON_0001004 respiratory system UBERON_2000202 efferent portion of pharyngeal arch artery +UBERON_0001004 respiratory system UBERON_2000211 gill lamella +UBERON_0001004 respiratory system UBERON_2000319 branchiostegal membrane +UBERON_0001004 respiratory system UBERON_2000666 filamental artery +UBERON_0001004 respiratory system UBERON_2000716 afferent portion of pharyngeal arch artery +UBERON_0001004 respiratory system UBERON_2001467 pharyngeal mesoderm +UBERON_0001004 respiratory system UBERON_2001857 hyoidean artery +UBERON_0001004 respiratory system UBERON_2001990 epibranchial arborescent organ +UBERON_0001004 respiratory system UBERON_2002057 gill opening +UBERON_0001004 respiratory system UBERON_2002116 epibranchial organ +UBERON_0001004 respiratory system UBERON_2005012 afferent filamental artery +UBERON_0001004 respiratory system UBERON_2005013 concurrent branch afferent branchial artery +UBERON_0001004 respiratory system UBERON_2005014 recurrent branch afferent branchial artery +UBERON_0001004 respiratory system UBERON_2005015 afferent lamellar arteriole +UBERON_0001004 respiratory system UBERON_2005018 efferent filamental artery +UBERON_0001004 respiratory system UBERON_2005019 efferent lamellar arteriole +UBERON_0001004 respiratory system UBERON_3000085 cavum inferius +UBERON_0001004 respiratory system UBERON_3000086 cavum internasale +UBERON_0001004 respiratory system UBERON_3000087 cavum medius +UBERON_0001004 respiratory system UBERON_3000088 cavum praenasale +UBERON_0001004 respiratory system UBERON_3000089 cavum principale +UBERON_0001004 respiratory system UBERON_3000676 bronchial process +UBERON_0001004 respiratory system UBERON_3000677 lateral process of cricoid cartilage +UBERON_0001004 respiratory system UBERON_3000678 esophageal process +UBERON_0001004 respiratory system UBERON_3000688 prominentia apicalis dorsalis +UBERON_0001004 respiratory system UBERON_3000689 prominentia apicalis ventralis +UBERON_0001004 respiratory system UBERON_3000948 articular process +UBERON_0001004 respiratory system UBERON_3010197 lateral recess +UBERON_0001004 respiratory system UBERON_3010200 vasculature of respiratory integument +UBERON_0001004 respiratory system UBERON_3010524 bronchial tube +UBERON_0001004 respiratory system UBERON_3010613 laryngo-tracheal chamber +UBERON_0001004 respiratory system UBERON_6003039 dorsal trunk of insect trachea +UBERON_0001004 respiratory system UBERON_6005043 insect trachea +UBERON_0001004 respiratory system UBERON_6005054 insect spiracle +UBERON_0001004 respiratory system UBERON_8410043 bronchus submucosal gland +UBERON_0001004 respiratory system UBERON_8410077 airway submucosal gland +UBERON_0001007 digestive system UBERON_0000059 large intestine +UBERON_0001007 digestive system UBERON_0000159 anal canal +UBERON_0001007 digestive system UBERON_0000160 intestine +UBERON_0001007 digestive system UBERON_0000162 cloaca +UBERON_0001007 digestive system UBERON_0000163 embryonic cloaca +UBERON_0001007 digestive system UBERON_0000164 primitive urogenital sinus +UBERON_0001007 digestive system UBERON_0000165 mouth +UBERON_0001007 digestive system UBERON_0000166 oral opening +UBERON_0001007 digestive system UBERON_0000167 oral cavity +UBERON_0001007 digestive system UBERON_0000168 proximal-distal subdivision of colon +UBERON_0001007 digestive system UBERON_0000314 cecum mucosa +UBERON_0001007 digestive system UBERON_0000317 colonic mucosa +UBERON_0001007 digestive system UBERON_0000320 duodenal mucosa +UBERON_0001007 digestive system UBERON_0000325 gastric gland +UBERON_0001007 digestive system UBERON_0000328 gut wall +UBERON_0001007 digestive system UBERON_0000331 ileal mucosa +UBERON_0001007 digestive system UBERON_0000333 intestinal gland +UBERON_0001007 digestive system UBERON_0000355 pharyngeal mucosa +UBERON_0001007 digestive system UBERON_0000378 tongue muscle +UBERON_0001007 digestive system UBERON_0000388 epiglottis +UBERON_0001007 digestive system UBERON_0000396 vallate papilla +UBERON_0001007 digestive system UBERON_0000397 colonic epithelium +UBERON_0001007 digestive system UBERON_0000399 jejunal mucosa +UBERON_0001007 digestive system UBERON_0000400 jejunal epithelium +UBERON_0001007 digestive system UBERON_0000401 mandibular ramus +UBERON_0001007 digestive system UBERON_0000424 gastric pit +UBERON_0001007 digestive system UBERON_0000569 ileocecal valve +UBERON_0001007 digestive system UBERON_0000945 stomach +UBERON_0001007 digestive system UBERON_0001035 dento-alveolar joint +UBERON_0001007 digestive system UBERON_0001041 foregut +UBERON_0001007 digestive system UBERON_0001042 chordate pharynx +UBERON_0001007 digestive system UBERON_0001043 esophagus +UBERON_0001007 digestive system UBERON_0001044 saliva-secreting gland +UBERON_0001007 digestive system UBERON_0001045 midgut +UBERON_0001007 digestive system UBERON_0001046 hindgut +UBERON_0001007 digestive system UBERON_0001051 hypopharynx +UBERON_0001007 digestive system UBERON_0001052 rectum +UBERON_0001007 digestive system UBERON_0001064 ventral pancreatic duct +UBERON_0001007 digestive system UBERON_0001065 parotid main excretory duct +UBERON_0001007 digestive system UBERON_0001073 ileocecal junction +UBERON_0001007 digestive system UBERON_0001096 wall of esophagus +UBERON_0001007 digestive system UBERON_0001113 lobe of liver +UBERON_0001007 digestive system UBERON_0001114 right lobe of liver +UBERON_0001007 digestive system UBERON_0001115 left lobe of liver +UBERON_0001007 digestive system UBERON_0001116 quadrate lobe of liver +UBERON_0001007 digestive system UBERON_0001117 caudate lobe of liver +UBERON_0001007 digestive system UBERON_0001143 hepatic vein +UBERON_0001007 digestive system UBERON_0001149 bare area of liver +UBERON_0001007 digestive system UBERON_0001152 cystic duct +UBERON_0001007 digestive system UBERON_0001153 caecum +UBERON_0001007 digestive system UBERON_0001154 vermiform appendix +UBERON_0001007 digestive system UBERON_0001155 colon +UBERON_0001007 digestive system UBERON_0001156 ascending colon +UBERON_0001007 digestive system UBERON_0001157 transverse colon +UBERON_0001007 digestive system UBERON_0001158 descending colon +UBERON_0001007 digestive system UBERON_0001159 sigmoid colon +UBERON_0001007 digestive system UBERON_0001160 fundus of stomach +UBERON_0001007 digestive system UBERON_0001161 body of stomach +UBERON_0001007 digestive system UBERON_0001162 cardia of stomach +UBERON_0001007 digestive system UBERON_0001163 lesser curvature of stomach +UBERON_0001007 digestive system UBERON_0001164 greater curvature of stomach +UBERON_0001007 digestive system UBERON_0001165 pyloric antrum +UBERON_0001007 digestive system UBERON_0001166 pylorus +UBERON_0001007 digestive system UBERON_0001167 wall of stomach +UBERON_0001007 digestive system UBERON_0001168 wall of small intestine +UBERON_0001007 digestive system UBERON_0001169 wall of large intestine +UBERON_0001007 digestive system UBERON_0001170 mesentery of small intestine +UBERON_0001007 digestive system UBERON_0001171 portal lobule +UBERON_0001007 digestive system UBERON_0001172 hepatic acinus +UBERON_0001007 digestive system UBERON_0001173 biliary tree +UBERON_0001007 digestive system UBERON_0001174 common bile duct +UBERON_0001007 digestive system UBERON_0001175 common hepatic duct +UBERON_0001007 digestive system UBERON_0001176 right hepatic duct +UBERON_0001007 digestive system UBERON_0001177 left hepatic duct +UBERON_0001007 digestive system UBERON_0001199 mucosa of stomach +UBERON_0001007 digestive system UBERON_0001200 submucosa of stomach +UBERON_0001007 digestive system UBERON_0001201 serosa of stomach +UBERON_0001007 digestive system UBERON_0001202 pyloric sphincter +UBERON_0001007 digestive system UBERON_0001203 muscularis mucosae of stomach +UBERON_0001007 digestive system UBERON_0001204 mucosa of small intestine +UBERON_0001007 digestive system UBERON_0001205 submucosa of small intestine +UBERON_0001007 digestive system UBERON_0001206 serosa of small intestine +UBERON_0001007 digestive system UBERON_0001207 mucosa of large intestine +UBERON_0001007 digestive system UBERON_0001208 submucosa of large intestine +UBERON_0001007 digestive system UBERON_0001209 serosa of large intestine +UBERON_0001007 digestive system UBERON_0001210 muscularis mucosae of small intestine +UBERON_0001007 digestive system UBERON_0001211 Peyer's patch +UBERON_0001007 digestive system UBERON_0001212 duodenal gland +UBERON_0001007 digestive system UBERON_0001213 intestinal villus +UBERON_0001007 digestive system UBERON_0001238 lamina propria of small intestine +UBERON_0001007 digestive system UBERON_0001239 muscularis mucosae of large intestine +UBERON_0001007 digestive system UBERON_0001240 muscularis mucosae of intestine +UBERON_0001007 digestive system UBERON_0001241 crypt of Lieberkuhn of small intestine +UBERON_0001007 digestive system UBERON_0001242 intestinal mucosa +UBERON_0001007 digestive system UBERON_0001243 serosa of intestine +UBERON_0001007 digestive system UBERON_0001245 anus +UBERON_0001007 digestive system UBERON_0001246 interlobular bile duct +UBERON_0001007 digestive system UBERON_0001247 falciform ligament +UBERON_0001007 digestive system UBERON_0001248 hilum of spleen +UBERON_0001007 digestive system UBERON_0001249 spleen lymphoid follicle +UBERON_0001007 digestive system UBERON_0001250 red pulp of spleen +UBERON_0001007 digestive system UBERON_0001251 marginal zone of spleen +UBERON_0001007 digestive system UBERON_0001262 wall of intestine +UBERON_0001007 digestive system UBERON_0001265 trabecula of spleen +UBERON_0001007 digestive system UBERON_0001266 splenic cord +UBERON_0001007 digestive system UBERON_0001276 epithelium of stomach +UBERON_0001007 digestive system UBERON_0001277 intestinal epithelium +UBERON_0001007 digestive system UBERON_0001278 epithelium of large intestine +UBERON_0001007 digestive system UBERON_0001279 portal triad +UBERON_0001007 digestive system UBERON_0001280 liver parenchyma +UBERON_0001007 digestive system UBERON_0001281 hepatic sinusoid +UBERON_0001007 digestive system UBERON_0001282 intralobular bile duct +UBERON_0001007 digestive system UBERON_0001283 bile canaliculus +UBERON_0001007 digestive system UBERON_0001357 inferior rectal artery +UBERON_0001007 digestive system UBERON_0001458 skin of lip +UBERON_0001007 digestive system UBERON_0001555 digestive tract +UBERON_0001007 digestive system UBERON_0001555 gut +UBERON_0001007 digestive system UBERON_0001571 genioglossus muscle +UBERON_0001007 digestive system UBERON_0001572 hyoglossus muscle +UBERON_0001007 digestive system UBERON_0001573 styloglossus +UBERON_0001007 digestive system UBERON_0001574 palatoglossus muscle +UBERON_0001007 digestive system UBERON_0001575 extrinsic muscle of tongue +UBERON_0001007 digestive system UBERON_0001576 intrinsic muscle of tongue +UBERON_0001007 digestive system UBERON_0001581 depressor labii inferioris +UBERON_0001007 digestive system UBERON_0001610 lingual artery +UBERON_0001007 digestive system UBERON_0001611 sublingual artery +UBERON_0001007 digestive system UBERON_0001617 mental artery +UBERON_0001007 digestive system UBERON_0001655 submental vein +UBERON_0001007 digestive system UBERON_0001682 palatine bone +UBERON_0001007 digestive system UBERON_0001684 mandible +UBERON_0001007 digestive system UBERON_0001708 jaw skeleton +UBERON_0001007 digestive system UBERON_0001709 upper jaw region +UBERON_0001007 digestive system UBERON_0001710 lower jaw region +UBERON_0001007 digestive system UBERON_0001716 secondary palate +UBERON_0001007 digestive system UBERON_0001723 tongue +UBERON_0001007 digestive system UBERON_0001726 papilla of tongue +UBERON_0001007 digestive system UBERON_0001728 nasopharynx +UBERON_0001007 digestive system UBERON_0001729 oropharynx +UBERON_0001007 digestive system UBERON_0001731 cavity of pharynx +UBERON_0001007 digestive system UBERON_0001732 pharyngeal tonsil +UBERON_0001007 digestive system UBERON_0001733 soft palate +UBERON_0001007 digestive system UBERON_0001734 palatine uvula +UBERON_0001007 digestive system UBERON_0001735 tonsillar ring +UBERON_0001007 digestive system UBERON_0001736 submandibular gland +UBERON_0001007 digestive system UBERON_0001742 epiglottic cartilage +UBERON_0001007 digestive system UBERON_0001761 future foramen cecum +UBERON_0001007 digestive system UBERON_0001764 maxillary sinus +UBERON_0001007 digestive system UBERON_0001828 gingiva +UBERON_0001007 digestive system UBERON_0001829 major salivary gland +UBERON_0001007 digestive system UBERON_0001830 minor salivary gland +UBERON_0001007 digestive system UBERON_0001831 parotid gland +UBERON_0001007 digestive system UBERON_0001832 sublingual gland +UBERON_0001007 digestive system UBERON_0001833 lip +UBERON_0001007 digestive system UBERON_0001834 upper lip +UBERON_0001007 digestive system UBERON_0001835 lower lip +UBERON_0001007 digestive system UBERON_0001837 duct of salivary gland +UBERON_0001007 digestive system UBERON_0001838 sublingual duct +UBERON_0001007 digestive system UBERON_0001902 epithelium of small intestine +UBERON_0001007 digestive system UBERON_0001949 gingival epithelium +UBERON_0001007 digestive system UBERON_0001951 epithelium of nasopharynx +UBERON_0001007 digestive system UBERON_0001952 epithelium of oropharynx +UBERON_0001007 digestive system UBERON_0001959 white pulp of spleen +UBERON_0001007 digestive system UBERON_0001960 periarterial lymphatic sheath +UBERON_0001007 digestive system UBERON_0001962 gut-associated lymphoid tissue +UBERON_0001007 digestive system UBERON_0001972 submucosa of esophagus +UBERON_0001007 digestive system UBERON_0001974 lamina propria of esophagus +UBERON_0001007 digestive system UBERON_0001975 serosa of esophagus +UBERON_0001007 digestive system UBERON_0001976 epithelium of esophagus +UBERON_0001007 digestive system UBERON_0001983 crypt of Lieberkuhn +UBERON_0001007 digestive system UBERON_0001984 crypt of Lieberkuhn of large intestine +UBERON_0001007 digestive system UBERON_0002029 epithelium of gall bladder +UBERON_0001007 digestive system UBERON_0002106 spleen +UBERON_0001007 digestive system UBERON_0002107 liver +UBERON_0001007 digestive system UBERON_0002108 small intestine +UBERON_0001007 digestive system UBERON_0002110 gall bladder +UBERON_0001007 digestive system UBERON_0002112 smooth muscle of esophagus +UBERON_0001007 digestive system UBERON_0002114 duodenum +UBERON_0001007 digestive system UBERON_0002115 jejunum +UBERON_0001007 digestive system UBERON_0002116 ileum +UBERON_0001007 digestive system UBERON_0002244 premaxilla +UBERON_0001007 digestive system UBERON_0002294 biliary system +UBERON_0001007 digestive system UBERON_0002334 submandibular duct +UBERON_0001007 digestive system UBERON_0002372 tonsil +UBERON_0001007 digestive system UBERON_0002373 palatine tonsil +UBERON_0001007 digestive system UBERON_0002394 bile duct +UBERON_0001007 digestive system UBERON_0002396 vomer +UBERON_0001007 digestive system UBERON_0002397 maxilla +UBERON_0001007 digestive system UBERON_0002399 lesser omentum +UBERON_0001007 digestive system UBERON_0002423 hepatobiliary system +UBERON_0001007 digestive system UBERON_0002424 oral epithelium +UBERON_0001007 digestive system UBERON_0002439 myenteric nerve plexus +UBERON_0001007 digestive system UBERON_0002447 palatine gland +UBERON_0001007 digestive system UBERON_0002448 fungiform papilla +UBERON_0001007 digestive system UBERON_0002467 filiform papilla +UBERON_0001007 digestive system UBERON_0002468 foliate papilla +UBERON_0001007 digestive system UBERON_0002469 esophagus mucosa +UBERON_0001007 digestive system UBERON_0002539 pharyngeal arch +UBERON_0001007 digestive system UBERON_0003066 pharyngeal arch 2 +UBERON_0001007 digestive system UBERON_0003091 thyroid primordium +UBERON_0001007 digestive system UBERON_0003107 Meckel's cartilage +UBERON_0001007 digestive system UBERON_0003114 pharyngeal arch 3 +UBERON_0001007 digestive system UBERON_0003115 pharyngeal arch 4 +UBERON_0001007 digestive system UBERON_0003116 pharyngeal arch 5 +UBERON_0001007 digestive system UBERON_0003117 pharyngeal arch 6 +UBERON_0001007 digestive system UBERON_0003118 pharyngeal arch artery 1 +UBERON_0001007 digestive system UBERON_0003119 pharyngeal arch artery 2 +UBERON_0001007 digestive system UBERON_0003120 pharyngeal arch artery 3 +UBERON_0001007 digestive system UBERON_0003121 pharyngeal arch artery 4 +UBERON_0001007 digestive system UBERON_0003122 pharyngeal arch artery 5 +UBERON_0001007 digestive system UBERON_0003123 pharyngeal arch artery 6 +UBERON_0001007 digestive system UBERON_0003216 hard palate +UBERON_0001007 digestive system UBERON_0003235 epithelium of upper jaw +UBERON_0001007 digestive system UBERON_0003236 epithelium of lower jaw +UBERON_0001007 digestive system UBERON_0003258 endoderm of foregut +UBERON_0001007 digestive system UBERON_0003259 endoderm of midgut +UBERON_0001007 digestive system UBERON_0003260 endoderm of hindgut +UBERON_0001007 digestive system UBERON_0003261 thyroid primordium endoderm +UBERON_0001007 digestive system UBERON_0003267 tooth of upper jaw +UBERON_0001007 digestive system UBERON_0003268 tooth of lower jaw +UBERON_0001007 digestive system UBERON_0003277 skeleton of upper jaw +UBERON_0001007 digestive system UBERON_0003278 skeleton of lower jaw +UBERON_0001007 digestive system UBERON_0003281 mesentery of stomach +UBERON_0001007 digestive system UBERON_0003283 mesentery of oesophagus +UBERON_0001007 digestive system UBERON_0003284 mesentery of midgut +UBERON_0001007 digestive system UBERON_0003286 foregut region of duodenum +UBERON_0001007 digestive system UBERON_0003287 midgut region of duodenum +UBERON_0001007 digestive system UBERON_0003294 gland of foregut +UBERON_0001007 digestive system UBERON_0003295 pharyngeal gland +UBERON_0001007 digestive system UBERON_0003323 mesenchyme of upper jaw +UBERON_0001007 digestive system UBERON_0003324 mesenchyme of lower jaw +UBERON_0001007 digestive system UBERON_0003329 submucosa of anal canal +UBERON_0001007 digestive system UBERON_0003330 submucosa of rectum +UBERON_0001007 digestive system UBERON_0003331 submucosa of colon +UBERON_0001007 digestive system UBERON_0003332 submucosa of duodenum +UBERON_0001007 digestive system UBERON_0003333 submucosa of jejunum +UBERON_0001007 digestive system UBERON_0003334 serosa of rectum +UBERON_0001007 digestive system UBERON_0003335 serosa of colon +UBERON_0001007 digestive system UBERON_0003336 serosa of duodenum +UBERON_0001007 digestive system UBERON_0003337 serosa of jejunum +UBERON_0001007 digestive system UBERON_0003342 mucosa of anal canal +UBERON_0001007 digestive system UBERON_0003343 mucosa of oral region +UBERON_0001007 digestive system UBERON_0003346 mucosa of rectum +UBERON_0001007 digestive system UBERON_0003351 pharyngeal epithelium +UBERON_0001007 digestive system UBERON_0003352 epithelium of midgut +UBERON_0001007 digestive system UBERON_0003353 epithelium of hindgut +UBERON_0001007 digestive system UBERON_0003354 epithelium of rectum +UBERON_0001007 digestive system UBERON_0003357 epithelium of tongue +UBERON_0001007 digestive system UBERON_0003358 epithelium of soft palate +UBERON_0001007 digestive system UBERON_0003359 epithelium of submandibular gland +UBERON_0001007 digestive system UBERON_0003360 epithelium of parotid gland +UBERON_0001007 digestive system UBERON_0003361 epithelium of sublingual gland +UBERON_0001007 digestive system UBERON_0003368 epithelium of hard palate +UBERON_0001007 digestive system UBERON_0003384 skeletal muscle tissue of pharynx +UBERON_0001007 digestive system UBERON_0003394 mesentery of hindgut +UBERON_0001007 digestive system UBERON_0003395 mesentery of rectum +UBERON_0001007 digestive system UBERON_0003396 mesentery of colon +UBERON_0001007 digestive system UBERON_0003397 mesentery of duodenum +UBERON_0001007 digestive system UBERON_0003398 mesentery of jejunum +UBERON_0001007 digestive system UBERON_0003408 gland of digestive tract +UBERON_0001007 digestive system UBERON_0003409 gland of tongue +UBERON_0001007 digestive system UBERON_0003410 oropharyngeal gland +UBERON_0001007 digestive system UBERON_0003414 mesenchyme of mandible +UBERON_0001007 digestive system UBERON_0003416 mesenchyme of tongue +UBERON_0001007 digestive system UBERON_0003417 mesenchyme of soft palate +UBERON_0001007 digestive system UBERON_0003418 mesenchyme of submandibular gland +UBERON_0001007 digestive system UBERON_0003419 mesenchyme of parotid +UBERON_0001007 digestive system UBERON_0003420 mesenchyme of sublingual gland +UBERON_0001007 digestive system UBERON_0003424 mesenchyme of hard palate +UBERON_0001007 digestive system UBERON_0003450 upper jaw incisor +UBERON_0001007 digestive system UBERON_0003451 lower jaw incisor +UBERON_0001007 digestive system UBERON_0003453 large intestine Peyer's patch +UBERON_0001007 digestive system UBERON_0003454 small intestine Peyer's patch +UBERON_0001007 digestive system UBERON_0003582 nasopharynx connective tissue +UBERON_0001007 digestive system UBERON_0003666 upper jaw molar +UBERON_0001007 digestive system UBERON_0003667 lower jaw molar +UBERON_0001007 digestive system UBERON_0003679 mouth floor +UBERON_0001007 digestive system UBERON_0003682 palatal muscle +UBERON_0001007 digestive system UBERON_0003686 tooth socket +UBERON_0001007 digestive system UBERON_0003700 temporomandibular joint +UBERON_0001007 digestive system UBERON_0003703 extrahepatic bile duct +UBERON_0001007 digestive system UBERON_0003704 intrahepatic bile duct +UBERON_0001007 digestive system UBERON_0003705 Meckel's diverticulum +UBERON_0001007 digestive system UBERON_0003729 mouth mucosa +UBERON_0001007 digestive system UBERON_0003729 oral mucosa +UBERON_0001007 digestive system UBERON_0003820 prostate bud +UBERON_0001007 digestive system UBERON_0003832 esophagus muscle +UBERON_0001007 digestive system UBERON_0003894 liver primordium +UBERON_0001007 digestive system UBERON_0003903 bursa of Fabricius +UBERON_0001007 digestive system UBERON_0003904 bursal plica +UBERON_0001007 digestive system UBERON_0003905 bursal follicle +UBERON_0001007 digestive system UBERON_0003910 splenic sinusoid +UBERON_0001007 digestive system UBERON_0003928 digestive system duct +UBERON_0001007 digestive system UBERON_0003929 digestive tract epithelium +UBERON_0001007 digestive system UBERON_0003949 tubal tonsil +UBERON_0001007 digestive system UBERON_0003985 major sublingual duct +UBERON_0001007 digestive system UBERON_0003986 minor sublingual duct +UBERON_0001007 digestive system UBERON_0004041 spleen primary B follicle +UBERON_0001007 digestive system UBERON_0004042 spleen secondary B follicle +UBERON_0001007 digestive system UBERON_0004045 tailgut +UBERON_0001007 digestive system UBERON_0004058 biliary ductule +UBERON_0001007 digestive system UBERON_0004103 alveolar ridge +UBERON_0001007 digestive system UBERON_0004117 pharyngeal pouch +UBERON_0001007 digestive system UBERON_0004163 anterior ectodermal midgut +UBERON_0001007 digestive system UBERON_0004185 endodermal part of digestive tract +UBERON_0001007 digestive system UBERON_0004220 large intestine smooth muscle +UBERON_0001007 digestive system UBERON_0004221 intestine smooth muscle +UBERON_0001007 digestive system UBERON_0004222 stomach smooth muscle +UBERON_0001007 digestive system UBERON_0004226 gastrointestinal system smooth muscle +UBERON_0001007 digestive system UBERON_0004238 spleen smooth muscle +UBERON_0001007 digestive system UBERON_0004239 small intestine smooth muscle +UBERON_0001007 digestive system UBERON_0004240 gall bladder smooth muscle +UBERON_0001007 digestive system UBERON_0004362 pharyngeal arch 1 +UBERON_0001007 digestive system UBERON_0004363 pharyngeal arch artery +UBERON_0001007 digestive system UBERON_0004368 Reichert's cartilage +UBERON_0001007 digestive system UBERON_0004527 alveolar process of maxilla +UBERON_0001007 digestive system UBERON_0004528 alveolar ridge of mandible +UBERON_0001007 digestive system UBERON_0004550 gastroesophageal sphincter +UBERON_0001007 digestive system UBERON_0004641 spleen capsule +UBERON_0001007 digestive system UBERON_0004647 liver lobule +UBERON_0001007 digestive system UBERON_0004648 esophagus muscularis mucosa +UBERON_0001007 digestive system UBERON_0004650 tongue keratinized epithelium +UBERON_0001007 digestive system UBERON_0004657 mandible condylar process +UBERON_0001007 digestive system UBERON_0004658 mandible head +UBERON_0001007 digestive system UBERON_0004659 mandible neck +UBERON_0001007 digestive system UBERON_0004660 mandible coronoid process +UBERON_0001007 digestive system UBERON_0004661 mandible temporal crest +UBERON_0001007 digestive system UBERON_0004693 Peyer's patch epithelium +UBERON_0001007 digestive system UBERON_0004697 Peyer's patch germinal center +UBERON_0001007 digestive system UBERON_0004742 dentary +UBERON_0001007 digestive system UBERON_0004744 articular/anguloarticular +UBERON_0001007 digestive system UBERON_0004752 palatoquadrate cartilage +UBERON_0001007 digestive system UBERON_0004757 rectal salt gland +UBERON_0001007 digestive system UBERON_0004760 gland of anal canal +UBERON_0001007 digestive system UBERON_0004767 vomerine tooth +UBERON_0001007 digestive system UBERON_0004768 bone of lower jaw +UBERON_0001007 digestive system UBERON_0004780 gastrointestinal system lamina propria +UBERON_0001007 digestive system UBERON_0004781 gall bladder lamina propria +UBERON_0001007 digestive system UBERON_0004782 gastrointestinal system serosa +UBERON_0001007 digestive system UBERON_0004783 gall bladder serosa +UBERON_0001007 digestive system UBERON_0004786 gastrointestinal system mucosa +UBERON_0001007 digestive system UBERON_0004794 esophagus secretion +UBERON_0001007 digestive system UBERON_0004808 gastrointestinal system epithelium +UBERON_0001007 digestive system UBERON_0004809 salivary gland epithelium +UBERON_0001007 digestive system UBERON_0004820 bile duct epithelium +UBERON_0001007 digestive system UBERON_0004822 extrahepatic bile duct epithelium +UBERON_0001007 digestive system UBERON_0004823 intrahepatic bile duct epithelium +UBERON_0001007 digestive system UBERON_0004831 esophagus skeletal muscle +UBERON_0001007 digestive system UBERON_0004833 lip skeletal muscle +UBERON_0001007 digestive system UBERON_0004834 hepatic duct smooth muscle +UBERON_0001007 digestive system UBERON_0004854 gastrointestinal system mesentery +UBERON_0001007 digestive system UBERON_0004902 urogenital sinus epithelium +UBERON_0001007 digestive system UBERON_0004906 ectodermal part of digestive tract +UBERON_0001007 digestive system UBERON_0004907 lower digestive tract +UBERON_0001007 digestive system UBERON_0004908 upper digestive tract +UBERON_0001007 digestive system UBERON_0004912 biliary bud +UBERON_0001007 digestive system UBERON_0004913 hepatopancreatic ampulla +UBERON_0001007 digestive system UBERON_0004914 duodenal papilla +UBERON_0001007 digestive system UBERON_0004915 sphincter of hepatopancreatic ampulla +UBERON_0001007 digestive system UBERON_0004921 subdivision of digestive tract +UBERON_0001007 digestive system UBERON_0004924 submucosa of pharynx +UBERON_0001007 digestive system UBERON_0004925 submucosa of laryngopharynx +UBERON_0001007 digestive system UBERON_0004926 submucosa of cystic duct +UBERON_0001007 digestive system UBERON_0004927 submucosa of cecum +UBERON_0001007 digestive system UBERON_0004928 submucosa of appendix +UBERON_0001007 digestive system UBERON_0004929 submucosa of ascending colon +UBERON_0001007 digestive system UBERON_0004930 submucosa of transverse colon +UBERON_0001007 digestive system UBERON_0004931 submucosa of descending colon +UBERON_0001007 digestive system UBERON_0004932 submucosa of sigmoid colon +UBERON_0001007 digestive system UBERON_0004933 submucosa of fundus of stomach +UBERON_0001007 digestive system UBERON_0004934 submucosa of body of stomach +UBERON_0001007 digestive system UBERON_0004935 submucosa of cardia of stomach +UBERON_0001007 digestive system UBERON_0004936 submucosa of pyloric antrum +UBERON_0001007 digestive system UBERON_0004937 submucosa of pylorus +UBERON_0001007 digestive system UBERON_0004938 submucosa of biliary tree +UBERON_0001007 digestive system UBERON_0004939 submucosa of common bile duct +UBERON_0001007 digestive system UBERON_0004940 submucosa of common hepatic duct +UBERON_0001007 digestive system UBERON_0004941 submucosa of right hepatic duct +UBERON_0001007 digestive system UBERON_0004942 submucosa of left hepatic duct +UBERON_0001007 digestive system UBERON_0004946 submucosa of ileum +UBERON_0001007 digestive system UBERON_0004982 mucosa of epiglottis +UBERON_0001007 digestive system UBERON_0004987 mucosa of laryngopharynx +UBERON_0001007 digestive system UBERON_0004988 mucosa of cystic duct +UBERON_0001007 digestive system UBERON_0004989 mucosa of appendix +UBERON_0001007 digestive system UBERON_0004990 mucosa of ascending colon +UBERON_0001007 digestive system UBERON_0004991 mucosa of transverse colon +UBERON_0001007 digestive system UBERON_0004992 mucosa of descending colon +UBERON_0001007 digestive system UBERON_0004993 mucosa of sigmoid colon +UBERON_0001007 digestive system UBERON_0004994 mucosa of fundus of stomach +UBERON_0001007 digestive system UBERON_0004995 mucosa of body of stomach +UBERON_0001007 digestive system UBERON_0004996 mucosa of cardia of stomach +UBERON_0001007 digestive system UBERON_0004997 mucosa of pyloric antrum +UBERON_0001007 digestive system UBERON_0004998 mucosa of pylorus +UBERON_0001007 digestive system UBERON_0004999 mucosa of biliary tree +UBERON_0001007 digestive system UBERON_0005000 mucosa of common bile duct +UBERON_0001007 digestive system UBERON_0005001 mucosa of common hepatic duct +UBERON_0001007 digestive system UBERON_0005002 mucosa of right hepatic duct +UBERON_0001007 digestive system UBERON_0005003 mucosa of left hepatic duct +UBERON_0001007 digestive system UBERON_0005019 mucosa of palate +UBERON_0001007 digestive system UBERON_0005020 mucosa of tongue +UBERON_0001007 digestive system UBERON_0005022 mucosa of nasopharynx +UBERON_0001007 digestive system UBERON_0005023 mucosa of oropharynx +UBERON_0001007 digestive system UBERON_0005024 mucosa of soft palate +UBERON_0001007 digestive system UBERON_0005025 mucosa of uvula +UBERON_0001007 digestive system UBERON_0005031 mucosa of upper lip +UBERON_0001007 digestive system UBERON_0005032 mucosa of lower lip +UBERON_0001007 digestive system UBERON_0005033 mucosa of gallbladder +UBERON_0001007 digestive system UBERON_0005046 mucosa of hard palate +UBERON_0001007 digestive system UBERON_0005050 liver papillary process +UBERON_0001007 digestive system UBERON_0005052 gizzard +UBERON_0001007 digestive system UBERON_0005171 hepatic duct +UBERON_0001007 digestive system UBERON_0005196 spleen germinal center +UBERON_0001007 digestive system UBERON_0005207 tonsil capsule +UBERON_0001007 digestive system UBERON_0005221 liver right lobe parenchyma +UBERON_0001007 digestive system UBERON_0005222 liver left lobe parenchyma +UBERON_0001007 digestive system UBERON_0005334 oral lamina propria +UBERON_0001007 digestive system UBERON_0005353 spleen perifollicular zone +UBERON_0001007 digestive system UBERON_0005402 philtrum +UBERON_0001007 digestive system UBERON_0005409 alimentary part of gastrointestinal system +UBERON_0001007 digestive system UBERON_0005429 dorsal pancreatic duct +UBERON_0001007 digestive system UBERON_0005452 hepatic cord +UBERON_0001007 digestive system UBERON_0005477 stomach fundus epithelium +UBERON_0001007 digestive system UBERON_0005562 thymus primordium +UBERON_0001007 digestive system UBERON_0005597 lung primordium +UBERON_0001007 digestive system UBERON_0005602 dorsal mesogastrium +UBERON_0001007 digestive system UBERON_0005604 extrahepatic part of hepatic duct +UBERON_0001007 digestive system UBERON_0005605 intrahepatic part of hepatic duct +UBERON_0001007 digestive system UBERON_0005619 secondary palatal shelf +UBERON_0001007 digestive system UBERON_0005620 primary palate +UBERON_0001007 digestive system UBERON_0005626 ventral mesogastrium +UBERON_0001007 digestive system UBERON_0005636 caecum epithelium +UBERON_0001007 digestive system UBERON_0005637 pyloric region epithelium +UBERON_0001007 digestive system UBERON_0005643 foregut duodenum epithelium +UBERON_0001007 digestive system UBERON_0005644 midgut duodenum epithelium +UBERON_0001007 digestive system UBERON_0005653 upper jaw molar epithelium +UBERON_0001007 digestive system UBERON_0005654 lower jaw molar epithelium +UBERON_0001007 digestive system UBERON_0005658 secondary palatal shelf epithelium +UBERON_0001007 digestive system UBERON_0005659 primary palate epithelium +UBERON_0001007 digestive system UBERON_0005660 2nd arch ectoderm +UBERON_0001007 digestive system UBERON_0005661 3rd arch ectoderm +UBERON_0001007 digestive system UBERON_0005662 4th arch ectoderm +UBERON_0001007 digestive system UBERON_0005664 2nd arch endoderm +UBERON_0001007 digestive system UBERON_0005665 3rd arch endoderm +UBERON_0001007 digestive system UBERON_0005666 4th arch endoderm +UBERON_0001007 digestive system UBERON_0005677 caecum mesentery +UBERON_0001007 digestive system UBERON_0005685 midgut dorsal mesentery +UBERON_0001007 digestive system UBERON_0005686 caecum dorsal mesentery +UBERON_0001007 digestive system UBERON_0005689 2nd arch mesenchyme +UBERON_0001007 digestive system UBERON_0005690 3rd arch mesenchyme +UBERON_0001007 digestive system UBERON_0005691 4th arch mesenchyme +UBERON_0001007 digestive system UBERON_0005700 upper jaw molar odontogenic papilla +UBERON_0001007 digestive system UBERON_0005701 lower jaw molar odontogenic papilla +UBERON_0001007 digestive system UBERON_0005704 secondary palatal shelf mesenchyme +UBERON_0001007 digestive system UBERON_0005705 primary palate mesenchyme +UBERON_0001007 digestive system UBERON_0005707 upper jaw incisor odontogenic papilla +UBERON_0001007 digestive system UBERON_0005708 lower jaw incisor odontogenic papilla +UBERON_0001007 digestive system UBERON_0005709 upper jaw incisor epithelium +UBERON_0001007 digestive system UBERON_0005710 lower jaw incisor epithelium +UBERON_0001007 digestive system UBERON_0005711 foregut duodenum mesentery +UBERON_0001007 digestive system UBERON_0005712 midgut duodenum mesentery +UBERON_0001007 digestive system UBERON_0005867 mandibular prominence +UBERON_0001007 digestive system UBERON_0005871 palatine process of maxilla +UBERON_0001007 digestive system UBERON_0005872 1st arch pharyngeal cleft +UBERON_0001007 digestive system UBERON_0005873 2nd arch pharyngeal cleft +UBERON_0001007 digestive system UBERON_0005874 3rd arch pharyngeal cleft +UBERON_0001007 digestive system UBERON_0005875 4th arch pharyngeal cleft +UBERON_0001007 digestive system UBERON_0005879 pharyngeal cleft +UBERON_0001007 digestive system UBERON_0005905 insect labrum +UBERON_0001007 digestive system UBERON_0006081 fundus of gallbladder +UBERON_0001007 digestive system UBERON_0006211 buccopharyngeal membrane +UBERON_0001007 digestive system UBERON_0006216 cervical sinus of His +UBERON_0001007 digestive system UBERON_0006217 cloacal membrane +UBERON_0001007 digestive system UBERON_0006223 dorsal meso-oesophagus +UBERON_0001007 digestive system UBERON_0006235 foregut-midgut junction +UBERON_0001007 digestive system UBERON_0006242 gall bladder primordium +UBERON_0001007 digestive system UBERON_0006257 laryngotracheal groove +UBERON_0001007 digestive system UBERON_0006260 lingual swellings +UBERON_0001007 digestive system UBERON_0006264 mouth-foregut junction +UBERON_0001007 digestive system UBERON_0006272 oronasal cavity +UBERON_0001007 digestive system UBERON_0006293 spleen primordium +UBERON_0001007 digestive system UBERON_0006298 submandibular gland primordium +UBERON_0001007 digestive system UBERON_0006330 anterior lingual gland +UBERON_0001007 digestive system UBERON_0006359 mesoduodenum +UBERON_0001007 digestive system UBERON_0006360 tongue intermolar eminence +UBERON_0001007 digestive system UBERON_0006562 pharynx +UBERON_0001007 digestive system UBERON_0006574 pectinate line +UBERON_0001007 digestive system UBERON_0006588 round ligament of liver +UBERON_0001007 digestive system UBERON_0006597 quadrate bone +UBERON_0001007 digestive system UBERON_0006606 mandibular symphysis +UBERON_0001007 digestive system UBERON_0006669 alveolar canal +UBERON_0001007 digestive system UBERON_0006672 incisive canal +UBERON_0001007 digestive system UBERON_0006673 mandibular canal +UBERON_0001007 digestive system UBERON_0006676 muscularis mucosa +UBERON_0001007 digestive system UBERON_0006685 pharyngeal tubercle +UBERON_0001007 digestive system UBERON_0006688 sublingual caruncle +UBERON_0001007 digestive system UBERON_0006689 frenulum of tongue +UBERON_0001007 digestive system UBERON_0006699 foramen cecum of tongue +UBERON_0001007 digestive system UBERON_0006727 liver left lateral lobe +UBERON_0001007 digestive system UBERON_0006728 liver left medial lobe +UBERON_0001007 digestive system UBERON_0006729 liver perisinusoidal space +UBERON_0001007 digestive system UBERON_0006756 median lingual swelling +UBERON_0001007 digestive system UBERON_0006757 lateral lingual swelling +UBERON_0001007 digestive system UBERON_0006812 mental foramen +UBERON_0001007 digestive system UBERON_0006841 central vein of liver +UBERON_0001007 digestive system UBERON_0006866 terminal part of digestive tract +UBERON_0001007 digestive system UBERON_0006870 endostyle +UBERON_0001007 digestive system UBERON_0006877 vasculature of liver +UBERON_0001007 digestive system UBERON_0006905 mandibular process mesenchyme +UBERON_0001007 digestive system UBERON_0006909 lumen of digestive tract +UBERON_0001007 digestive system UBERON_0006912 urinary bladder muscularis mucosa +UBERON_0001007 digestive system UBERON_0006913 lip epithelium +UBERON_0001007 digestive system UBERON_0006916 non-keratinized epithelium of tongue +UBERON_0001007 digestive system UBERON_0006918 parakeratinized epithelium of tongue +UBERON_0001007 digestive system UBERON_0006919 tongue squamous epithelium +UBERON_0001007 digestive system UBERON_0006920 esophagus squamous epithelium +UBERON_0001007 digestive system UBERON_0006921 stomach squamous epithelium +UBERON_0001007 digestive system UBERON_0006924 stomach glandular epithelium +UBERON_0001007 digestive system UBERON_0006925 digestive system gland +UBERON_0001007 digestive system UBERON_0006931 stomach glandular region mucosa +UBERON_0001007 digestive system UBERON_0006956 buccal mucosa +UBERON_0001007 digestive system UBERON_0006957 submandibular gland primordium epithelium +UBERON_0001007 digestive system UBERON_0006959 mandible angular process +UBERON_0001007 digestive system UBERON_0006976 peptonephridium +UBERON_0001007 digestive system UBERON_0007122 pharyngeal pouch 1 +UBERON_0001007 digestive system UBERON_0007123 pharyngeal pouch 2 +UBERON_0001007 digestive system UBERON_0007124 pharyngeal pouch 3 +UBERON_0001007 digestive system UBERON_0007125 pharyngeal pouch 4 +UBERON_0001007 digestive system UBERON_0007126 pharyngeal pouch 5 +UBERON_0001007 digestive system UBERON_0007127 pharyngeal pouch 6 +UBERON_0001007 digestive system UBERON_0007147 lumen of midgut +UBERON_0001007 digestive system UBERON_0007148 lumen of hindgut +UBERON_0001007 digestive system UBERON_0007158 lumen of anal canal +UBERON_0001007 digestive system UBERON_0007159 lumen of colon +UBERON_0001007 digestive system UBERON_0007177 lamina propria of mucosa of colon +UBERON_0001007 digestive system UBERON_0007178 muscularis mucosae of colon +UBERON_0001007 digestive system UBERON_0007237 1st arch mandibular component +UBERON_0001007 digestive system UBERON_0007238 1st arch maxillary component +UBERON_0001007 digestive system UBERON_0007250 lingual tonsil +UBERON_0001007 digestive system UBERON_0007303 pharyngeal vasculature +UBERON_0001007 digestive system UBERON_0007329 pancreatic duct +UBERON_0001007 digestive system UBERON_0007331 maxillary rhamphotheca +UBERON_0001007 digestive system UBERON_0007332 mandibular rhamphotheca +UBERON_0001007 digestive system UBERON_0007356 crop +UBERON_0001007 digestive system UBERON_0007357 proventriculus +UBERON_0001007 digestive system UBERON_0007358 abomasum +UBERON_0001007 digestive system UBERON_0007359 ruminant forestomach +UBERON_0001007 digestive system UBERON_0007361 ruminant reticulum +UBERON_0001007 digestive system UBERON_0007362 omasum +UBERON_0001007 digestive system UBERON_0007364 reticulorumen +UBERON_0001007 digestive system UBERON_0007365 rumen +UBERON_0001007 digestive system UBERON_0007366 ruminant stomach +UBERON_0001007 digestive system UBERON_0007367 surface of tongue +UBERON_0001007 digestive system UBERON_0007371 superior surface of tongue +UBERON_0001007 digestive system UBERON_0007373 inferior surface of tongue +UBERON_0001007 digestive system UBERON_0007652 esophageal sphincter +UBERON_0001007 digestive system UBERON_0007689 thyroid diverticulum +UBERON_0001007 digestive system UBERON_0007690 early pharyngeal endoderm +UBERON_0001007 digestive system UBERON_0008199 chin +UBERON_0001007 digestive system UBERON_0008246 pyloric stomach +UBERON_0001007 digestive system UBERON_0008248 echinoderm pyloric cecum +UBERON_0001007 digestive system UBERON_0008250 cardiac stomach +UBERON_0001007 digestive system UBERON_0008253 Aristotle's lantern +UBERON_0001007 digestive system UBERON_0008285 rumen epithelium +UBERON_0001007 digestive system UBERON_0008310 nasopharyngeal gland +UBERON_0001007 digestive system UBERON_0008342 intestinal villus of duodenum +UBERON_0001007 digestive system UBERON_0008343 intestinal villus of jejunum +UBERON_0001007 digestive system UBERON_0008344 intestinal villus of ileum +UBERON_0001007 digestive system UBERON_0008345 ileal epithelium +UBERON_0001007 digestive system UBERON_0008346 duodenal epithelium +UBERON_0001007 digestive system UBERON_0008420 buccal epithelium +UBERON_0001007 digestive system UBERON_0008428 ceratoglossus +UBERON_0001007 digestive system UBERON_0008582 superior longitudinal muscle of tongue +UBERON_0001007 digestive system UBERON_0008583 transverse muscle of tongue +UBERON_0001007 digestive system UBERON_0008584 vertical muscle of tongue +UBERON_0001007 digestive system UBERON_0008585 levator veli palatini +UBERON_0001007 digestive system UBERON_0008586 tensor veli palatini +UBERON_0001007 digestive system UBERON_0008596 mentalis muscle +UBERON_0001007 digestive system UBERON_0008791 rugal fold of stomach +UBERON_0001007 digestive system UBERON_0008799 transverse palatine fold +UBERON_0001007 digestive system UBERON_0008802 cheek pouch +UBERON_0001007 digestive system UBERON_0008804 stylopharyngeus muscle +UBERON_0001007 digestive system UBERON_0008805 gingival groove +UBERON_0001007 digestive system UBERON_0008806 buccal funnel +UBERON_0001007 digestive system UBERON_0008809 foramina of scarpa +UBERON_0001007 digestive system UBERON_0008814 pharyngeal arch system +UBERON_0001007 digestive system UBERON_0008815 pharyngeal slit +UBERON_0001007 digestive system UBERON_0008817 thymus primordium endoderm +UBERON_0001007 digestive system UBERON_0008827 murine forestomach +UBERON_0001007 digestive system UBERON_0008835 hepatic diverticulum +UBERON_0001007 digestive system UBERON_0008836 liver bud +UBERON_0001007 digestive system UBERON_0008856 stomach muscularis externa +UBERON_0001007 digestive system UBERON_0008857 stomach smooth muscle circular layer +UBERON_0001007 digestive system UBERON_0008858 pyloric canal +UBERON_0001007 digestive system UBERON_0008859 cardiac gastric gland +UBERON_0001007 digestive system UBERON_0008860 intermediate gastric gland +UBERON_0001007 digestive system UBERON_0008861 pyloric gastric gland +UBERON_0001007 digestive system UBERON_0008862 stomach smooth muscle inner oblique layer +UBERON_0001007 digestive system UBERON_0008863 stomach smooth muscle outer longitudinal layer +UBERON_0001007 digestive system UBERON_0008896 post-hyoid pharyngeal arch +UBERON_0001007 digestive system UBERON_0008947 respiratory primordium +UBERON_0001007 digestive system UBERON_0008971 left colon +UBERON_0001007 digestive system UBERON_0008972 right colon +UBERON_0001007 digestive system UBERON_0008989 submucosal esophageal gland +UBERON_0001007 digestive system UBERON_0008994 equine glandular stomach +UBERON_0001007 digestive system UBERON_0009099 typhlosole +UBERON_0001007 digestive system UBERON_0009116 thymoid +UBERON_0001007 digestive system UBERON_0009119 branchial basket +UBERON_0001007 digestive system UBERON_0009130 dorsal meso-duodenum +UBERON_0001007 digestive system UBERON_0009145 pharyngeal region of foregut +UBERON_0001007 digestive system UBERON_0009207 geschmacksstreifen +UBERON_0001007 digestive system UBERON_0009210 pharyngeal membrane +UBERON_0001007 digestive system UBERON_0009213 pharyngeal membrane of 1st arch +UBERON_0001007 digestive system UBERON_0009215 pharyngeal membrane of 2nd arch +UBERON_0001007 digestive system UBERON_0009216 pharyngeal membrane of 3rd arch +UBERON_0001007 digestive system UBERON_0009217 pharyngeal membrane of 4th arch +UBERON_0001007 digestive system UBERON_0009471 dorsum of tongue +UBERON_0001007 digestive system UBERON_0009478 associated mesenchyme of midgut +UBERON_0001007 digestive system UBERON_0009479 ectoderm of buccopharyngeal membrane +UBERON_0001007 digestive system UBERON_0009480 endoderm of buccopharyngeal membrane +UBERON_0001007 digestive system UBERON_0009482 associated mesenchyme of foregut-midgut junction +UBERON_0001007 digestive system UBERON_0009483 mesentery of foregut-midgut junction +UBERON_0001007 digestive system UBERON_0009484 dorsal mesentery of mesentery of foregut-midgut junction +UBERON_0001007 digestive system UBERON_0009494 pharyngeal arch mesenchymal region +UBERON_0001007 digestive system UBERON_0009497 epithelium of foregut-midgut junction +UBERON_0001007 digestive system UBERON_0009502 ventral mesentery of mesentery of foregut-midgut junction +UBERON_0001007 digestive system UBERON_0009503 mesenchyme of hindgut +UBERON_0001007 digestive system UBERON_0009522 lateral lingual swelling epithelium +UBERON_0001007 digestive system UBERON_0009539 mesenchyme of submandibular gland primordium +UBERON_0001007 digestive system UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0001007 digestive system UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0001007 digestive system UBERON_0009550 endoderm of foregut-midgut junction +UBERON_0001007 digestive system UBERON_0009566 intestinal submucosa +UBERON_0001007 digestive system UBERON_0009584 1st arch mandibular mesenchyme +UBERON_0001007 digestive system UBERON_0009654 alveolar artery +UBERON_0001007 digestive system UBERON_0009669 embryonic cloacal lumen +UBERON_0001007 digestive system UBERON_0009670 rectal lumen +UBERON_0001007 digestive system UBERON_0009671 nasal fin +UBERON_0001007 digestive system UBERON_0009672 oronasal membrane +UBERON_0001007 digestive system UBERON_0009679 set of lower jaw teeth +UBERON_0001007 digestive system UBERON_0009680 set of upper jaw teeth +UBERON_0001007 digestive system UBERON_0009695 epithelium of laryngopharynx +UBERON_0001007 digestive system UBERON_0009697 epithelium of appendix +UBERON_0001007 digestive system UBERON_0009722 entire pharyngeal arch endoderm +UBERON_0001007 digestive system UBERON_0009844 urogenital sinus lumen +UBERON_0001007 digestive system UBERON_0009846 embryonic cloacal epithelium +UBERON_0001007 digestive system UBERON_0009847 prostate field +UBERON_0001007 digestive system UBERON_0009854 digestive tract diverticulum +UBERON_0001007 digestive system UBERON_0009855 echinoderm gastric caecum +UBERON_0001007 digestive system UBERON_0009860 ascidian digestive gland +UBERON_0001007 digestive system UBERON_0009867 Hatschek's diverticulum +UBERON_0001007 digestive system UBERON_0009868 Hatschek's left diverticulum +UBERON_0001007 digestive system UBERON_0009869 Hatschek's right diverticulum +UBERON_0001007 digestive system UBERON_0009870 zone of stomach +UBERON_0001007 digestive system UBERON_0009882 anal column +UBERON_0001007 digestive system UBERON_0009890 anterior intestinal portal +UBERON_0001007 digestive system UBERON_0009959 lumen of oropharynx +UBERON_0001007 digestive system UBERON_0009960 esophagus smooth muscle circular layer +UBERON_0001007 digestive system UBERON_0009961 esophagus smooth muscle longitudinal layer +UBERON_0001007 digestive system UBERON_0009967 spleen venous sinus +UBERON_0001007 digestive system UBERON_0009970 epithelium of pancreatic duct +UBERON_0001007 digestive system UBERON_0009971 principal gastric gland +UBERON_0001007 digestive system UBERON_0010012 upper beak +UBERON_0001007 digestive system UBERON_0010013 lower beak +UBERON_0001007 digestive system UBERON_0010016 spiral valve of intestine +UBERON_0001007 digestive system UBERON_0010017 spiral valve of cystic duct +UBERON_0001007 digestive system UBERON_0010021 dorsal part of pharyngeal pouch 1 +UBERON_0001007 digestive system UBERON_0010022 ventral part of pharyngeal pouch 1 +UBERON_0001007 digestive system UBERON_0010023 dorsal part of pharyngeal pouch 2 +UBERON_0001007 digestive system UBERON_0010024 ventral part of pharyngeal pouch 2 +UBERON_0001007 digestive system UBERON_0010025 dorsal part of pharyngeal pouch 3 +UBERON_0001007 digestive system UBERON_0010026 ventral part of pharyngeal pouch 3 +UBERON_0001007 digestive system UBERON_0010027 dorsal part of pharyngeal pouch 4 +UBERON_0001007 digestive system UBERON_0010028 ventral part of pharyngeal pouch 4 +UBERON_0001007 digestive system UBERON_0010029 dorsal part of pharyngeal pouch 5 +UBERON_0001007 digestive system UBERON_0010030 ventral part of pharyngeal pouch 5 +UBERON_0001007 digestive system UBERON_0010031 6th arch mesenchyme +UBERON_0001007 digestive system UBERON_0010032 anterior part of tongue +UBERON_0001007 digestive system UBERON_0010033 posterior part of tongue +UBERON_0001007 digestive system UBERON_0010034 copula linguae +UBERON_0001007 digestive system UBERON_0010038 fundic gastric gland +UBERON_0001007 digestive system UBERON_0010039 food storage organ +UBERON_0001007 digestive system UBERON_0010040 stomach non-glandular epithelium +UBERON_0001007 digestive system UBERON_0010042 1st arch mesenchyme +UBERON_0001007 digestive system UBERON_0010045 1st arch maxillary mesenchyme +UBERON_0001007 digestive system UBERON_0010046 entire pharyngeal arch associated mesenchyme +UBERON_0001007 digestive system UBERON_0010047 oral gland +UBERON_0001007 digestive system UBERON_0010048 Duvernoy's gland +UBERON_0001007 digestive system UBERON_0010049 supralabial gland +UBERON_0001007 digestive system UBERON_0010050 infralabial gland +UBERON_0001007 digestive system UBERON_0010052 mucosa of dorsum of tongue +UBERON_0001007 digestive system UBERON_0010056 future tongue +UBERON_0001007 digestive system UBERON_0010057 hypopharyngeal eminence +UBERON_0001007 digestive system UBERON_0010059 hypoglossal cord +UBERON_0001007 digestive system UBERON_0010060 pharyngeal opening of pharyngotympanic tube +UBERON_0001007 digestive system UBERON_0010061 lumen of nasopharynx +UBERON_0001007 digestive system UBERON_0010081 future common hepatic duct +UBERON_0001007 digestive system UBERON_0010153 rumen papilla +UBERON_0001007 digestive system UBERON_0010154 inner lining mucosa of the abomasum +UBERON_0001007 digestive system UBERON_0010169 moustache +UBERON_0001007 digestive system UBERON_0010174 Schweigger-Seidel sheath +UBERON_0001007 digestive system UBERON_0010183 liver trabecula +UBERON_0001007 digestive system UBERON_0010228 ruminal fluid +UBERON_0001007 digestive system UBERON_0010234 palatopharyngeus muscle +UBERON_0001007 digestive system UBERON_0010235 uvular muscle +UBERON_0001007 digestive system UBERON_0010238 torus pylorus +UBERON_0001007 digestive system UBERON_0010239 spiral colon +UBERON_0001007 digestive system UBERON_0010240 zygomatic gland +UBERON_0001007 digestive system UBERON_0010241 molar gland +UBERON_0001007 digestive system UBERON_0010242 anterior buccal gland +UBERON_0001007 digestive system UBERON_0010252 1st arch mandibular mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010253 1st arch maxillary mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010254 2nd arch mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010255 3rd arch mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010256 4th arch mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010257 6th arch mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010259 1st arch mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010264 hepatopancreas +UBERON_0001007 digestive system UBERON_0010265 mollusc hepatopancreas +UBERON_0001007 digestive system UBERON_0010266 arthropod hepatopancreas +UBERON_0001007 digestive system UBERON_0010336 mandibular process mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010337 mandibular process mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010338 1st arch maxillary mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010339 1st arch mandibular mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010341 1st arch mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010343 2nd arch mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010344 3rd arch mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010345 4th arch mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010347 6th arch mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010359 pharyngeal arch mesenchyme from neural crest +UBERON_0001007 digestive system UBERON_0010360 pharyngeal arch mesenchyme from head mesenchyme +UBERON_0001007 digestive system UBERON_0010384 lumen of laryngopharynx +UBERON_0001007 digestive system UBERON_0010386 Peyer's patch follicle +UBERON_0001007 digestive system UBERON_0010387 Peyer's patch T cell area +UBERON_0001007 digestive system UBERON_0010398 spleen marginal sinus +UBERON_0001007 digestive system UBERON_0010399 spleen trabecular artery +UBERON_0001007 digestive system UBERON_0010400 spleen trabecular vein +UBERON_0001007 digestive system UBERON_0010401 spleen central arteriole +UBERON_0001007 digestive system UBERON_0010421 spleen B cell corona +UBERON_0001007 digestive system UBERON_0010423 primary lymphoid nodule of tonsil +UBERON_0001007 digestive system UBERON_0010426 oropharyngeal choana +UBERON_0001007 digestive system UBERON_0010704 parenchyma of quadrate lobe of liver +UBERON_0001007 digestive system UBERON_0010706 parenchyma of caudate lobe of liver +UBERON_0001007 digestive system UBERON_0010756 spleen follicular dendritic cell network +UBERON_0001007 digestive system UBERON_0010937 salpingopharyngeus muscle +UBERON_0001007 digestive system UBERON_0011079 angular bone +UBERON_0001007 digestive system UBERON_0011085 palatoquadrate arch +UBERON_0001007 digestive system UBERON_0011087 pharyngeal arch 7 +UBERON_0001007 digestive system UBERON_0011184 epithelium of crypt of Lieberkuhn +UBERON_0001007 digestive system UBERON_0011185 gastrointestinal sphincter +UBERON_0001007 digestive system UBERON_0011189 lamina propria of large intestine +UBERON_0001007 digestive system UBERON_0011198 muscle layer of large intestine +UBERON_0001007 digestive system UBERON_0011201 muscle layer of small intestine +UBERON_0001007 digestive system UBERON_0011245 infra-orbital canal of maxilla +UBERON_0001007 digestive system UBERON_0011267 quadratojugal bone +UBERON_0001007 digestive system UBERON_0011268 sublingua +UBERON_0001007 digestive system UBERON_0011289 pharyngobasilar fascia +UBERON_0001007 digestive system UBERON_0011303 lamprey sucker +UBERON_0001007 digestive system UBERON_0011309 body of mandible +UBERON_0001007 digestive system UBERON_0011310 masseteric fossa +UBERON_0001007 digestive system UBERON_0011318 capsule of temporomandibular joint +UBERON_0001007 digestive system UBERON_0011319 disk of temporomandibular joint +UBERON_0001007 digestive system UBERON_0011320 ligament of temporomandibular joint +UBERON_0001007 digestive system UBERON_0011342 surface of mandible +UBERON_0001007 digestive system UBERON_0011343 medial surface of mandible +UBERON_0001007 digestive system UBERON_0011344 lateral surface of mandible +UBERON_0001007 digestive system UBERON_0011345 pharyngeal raphe +UBERON_0001007 digestive system UBERON_0011346 palatine raphe +UBERON_0001007 digestive system UBERON_0011347 raphe of hard palate +UBERON_0001007 digestive system UBERON_0011348 raphe of soft palate +UBERON_0001007 digestive system UBERON_0011349 pterygomandibular raphe +UBERON_0001007 digestive system UBERON_0011510 cloacal bursa +UBERON_0001007 digestive system UBERON_0011535 chondroglossus muscle +UBERON_0001007 digestive system UBERON_0011565 lumen of gastrointestinal system +UBERON_0001007 digestive system UBERON_0011566 lumen of esophagus +UBERON_0001007 digestive system UBERON_0011592 future upper lip +UBERON_0001007 digestive system UBERON_0011593 maxillary tooth +UBERON_0001007 digestive system UBERON_0011594 dentary tooth +UBERON_0001007 digestive system UBERON_0011595 jaw region +UBERON_0001007 digestive system UBERON_0011596 future lower lip +UBERON_0001007 digestive system UBERON_0011597 bone of upper jaw +UBERON_0001007 digestive system UBERON_0011598 coronoid bone +UBERON_0001007 digestive system UBERON_0011601 gingiva of upper jaw +UBERON_0001007 digestive system UBERON_0011602 gingiva of lower jaw +UBERON_0001007 digestive system UBERON_0011603 coronoid tooth +UBERON_0001007 digestive system UBERON_0011628 early premaxilla +UBERON_0001007 digestive system UBERON_0011634 ectopterygoid bone +UBERON_0001007 digestive system UBERON_0011635 splenial bone +UBERON_0001007 digestive system UBERON_0011636 surangular bone +UBERON_0001007 digestive system UBERON_0011637 prearticular bone +UBERON_0001007 digestive system UBERON_0011638 pharyngeal arch 8 +UBERON_0001007 digestive system UBERON_0011640 palatoglossal arch +UBERON_0001007 digestive system UBERON_0011642 oral epithelium from ectoderm +UBERON_0001007 digestive system UBERON_0011698 midgut loop +UBERON_0001007 digestive system UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0001007 digestive system UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0001007 digestive system UBERON_0011770 mentomeckelian +UBERON_0001007 digestive system UBERON_0011772 lower jaw opening +UBERON_0001007 digestive system UBERON_0011773 upper jaw opening +UBERON_0001007 digestive system UBERON_0011847 acinus of parotid gland +UBERON_0001007 digestive system UBERON_0011850 acinus of salivary gland +UBERON_0001007 digestive system UBERON_0011876 body of tongue +UBERON_0001007 digestive system UBERON_0011877 margin of tongue +UBERON_0001007 digestive system UBERON_0011878 muscle layer of esophagus +UBERON_0001007 digestive system UBERON_0011903 gizzard smooth muscle +UBERON_0001007 digestive system UBERON_0011904 gastrolith +UBERON_0001007 digestive system UBERON_0011953 stomach glandular region +UBERON_0001007 digestive system UBERON_0011954 stomach non-glandular region +UBERON_0001007 digestive system UBERON_0011955 left hepatic vein +UBERON_0001007 digestive system UBERON_0011956 right hepatic vein +UBERON_0001007 digestive system UBERON_0011957 middle hepatic vein +UBERON_0001007 digestive system UBERON_0012070 palatal tooth +UBERON_0001007 digestive system UBERON_0012073 tooth of palatine bone +UBERON_0001007 digestive system UBERON_0012074 bony part of hard palate +UBERON_0001007 digestive system UBERON_0012102 buccal salivary gland +UBERON_0001007 digestive system UBERON_0012105 baleen plate +UBERON_0001007 digestive system UBERON_0012106 baleen plate bristle +UBERON_0001007 digestive system UBERON_0012111 diastema +UBERON_0001007 digestive system UBERON_0012172 stomach primordium +UBERON_0001007 digestive system UBERON_0012181 tonsil crypt +UBERON_0001007 digestive system UBERON_0012256 digestive syncytial vacuole +UBERON_0001007 digestive system UBERON_0012270 forestomach-glandular stomach junction +UBERON_0001007 digestive system UBERON_0012271 major duodenal papilla +UBERON_0001007 digestive system UBERON_0012272 minor duodenal papilla +UBERON_0001007 digestive system UBERON_0012273 periampullary region of duodenum +UBERON_0001007 digestive system UBERON_0012287 Rathkes pouch epithelium +UBERON_0001007 digestive system UBERON_0012313 1st arch maxillary ectoderm +UBERON_0001007 digestive system UBERON_0012330 nasal-associated lymphoid tissue +UBERON_0001007 digestive system UBERON_0012360 bone of jaw +UBERON_0001007 digestive system UBERON_0012367 muscle layer of intestine +UBERON_0001007 digestive system UBERON_0012376 retromolar triangle +UBERON_0001007 digestive system UBERON_0012377 muscle layer of jejunum +UBERON_0001007 digestive system UBERON_0012398 large intestine smooth muscle circular layer +UBERON_0001007 digestive system UBERON_0012399 large intestine smooth muscle longitudinal layer +UBERON_0001007 digestive system UBERON_0012401 small intestine smooth muscle circular layer +UBERON_0001007 digestive system UBERON_0012402 small intestine smooth muscle longitudinal layer +UBERON_0001007 digestive system UBERON_0012419 taenia coli +UBERON_0001007 digestive system UBERON_0012420 coprodeum +UBERON_0001007 digestive system UBERON_0012421 urodeum +UBERON_0001007 digestive system UBERON_0012425 striated border microvillus layer +UBERON_0001007 digestive system UBERON_0012427 intestinal brush border layer +UBERON_0001007 digestive system UBERON_0012462 proctodeum portion of cloaca +UBERON_0001007 digestive system UBERON_0012463 cloacal lumen +UBERON_0001007 digestive system UBERON_0012464 cloacal vent +UBERON_0001007 digestive system UBERON_0012465 lumen of terminal part of digestive tract +UBERON_0001007 digestive system UBERON_0012471 hepatogastric ligament +UBERON_0001007 digestive system UBERON_0012472 hepatoduodenal ligament +UBERON_0001007 digestive system UBERON_0012474 hepatic cecum +UBERON_0001007 digestive system UBERON_0012478 cloacal gland +UBERON_0001007 digestive system UBERON_0012479 urodeal gland +UBERON_0001007 digestive system UBERON_0012480 cloacal mucosa +UBERON_0001007 digestive system UBERON_0012481 cloacal epithelium +UBERON_0001007 digestive system UBERON_0012482 submucosa of cloaca +UBERON_0001007 digestive system UBERON_0012483 serosa of cloaca +UBERON_0001007 digestive system UBERON_0012485 cloacal villus +UBERON_0001007 digestive system UBERON_0012486 muscle layer of cloaca +UBERON_0001007 digestive system UBERON_0012488 muscle layer of duodenum +UBERON_0001007 digestive system UBERON_0012489 muscle layer of colon +UBERON_0001007 digestive system UBERON_0012490 muscle layer of anal canal +UBERON_0001007 digestive system UBERON_0012494 muscularis mucosae of duodenum +UBERON_0001007 digestive system UBERON_0012497 muscularis mucosae of rectum +UBERON_0001007 digestive system UBERON_0012498 serosa of appendix +UBERON_0001007 digestive system UBERON_0012503 serosa of fundus of stomach +UBERON_0001007 digestive system UBERON_0012504 adventitia of esophagus +UBERON_0001007 digestive system UBERON_0012621 muscle of Aristotle's lantern +UBERON_0001007 digestive system UBERON_0012650 gastroduodenal junction +UBERON_0001007 digestive system UBERON_0012651 mucosa of gastroduodenal junction +UBERON_0001007 digestive system UBERON_0012652 colorectum +UBERON_0001007 digestive system UBERON_0013067 colorectal mucosa +UBERON_0001007 digestive system UBERON_0013068 palatine torus +UBERON_0001007 digestive system UBERON_0013132 penicillar arteriole +UBERON_0001007 digestive system UBERON_0013135 interdental plate +UBERON_0001007 digestive system UBERON_0013138 coronary ligament of liver +UBERON_0001007 digestive system UBERON_0013139 ligament of liver +UBERON_0001007 digestive system UBERON_0013154 1st arch maxillary endoderm +UBERON_0001007 digestive system UBERON_0013155 1st arch mandibular ectoderm +UBERON_0001007 digestive system UBERON_0013156 1st arch mandibular endoderm +UBERON_0001007 digestive system UBERON_0013157 1st arch maxillary-mandibular cleft +UBERON_0001007 digestive system UBERON_0013158 foregut-midgut junction gland +UBERON_0001007 digestive system UBERON_0013195 parakeratinized epithelium of gingiva +UBERON_0001007 digestive system UBERON_0013217 zygomatic plate +UBERON_0001007 digestive system UBERON_0013244 vaginal plate +UBERON_0001007 digestive system UBERON_0013245 sinovaginal bulb +UBERON_0001007 digestive system UBERON_0013450 simian shelf +UBERON_0001007 digestive system UBERON_0013471 retromolar space +UBERON_0001007 digestive system UBERON_0013472 upper esophagus +UBERON_0001007 digestive system UBERON_0013473 lower esophagus +UBERON_0001007 digestive system UBERON_0013474 middle part of esophagus +UBERON_0001007 digestive system UBERON_0013475 gustatory gland +UBERON_0001007 digestive system UBERON_0013476 dermal layer of tongue +UBERON_0001007 digestive system UBERON_0013478 cecal tonsil +UBERON_0001007 digestive system UBERON_0013481 crypt of Lieberkuhn of ileum +UBERON_0001007 digestive system UBERON_0013482 crypt of Lieberkuhn of duodenum +UBERON_0001007 digestive system UBERON_0013483 crypt of Lieberkuhn of jejunum +UBERON_0001007 digestive system UBERON_0013485 crypt of Lieberkuhn of colon +UBERON_0001007 digestive system UBERON_0013486 crypt of Lieberkuhn of appendix +UBERON_0001007 digestive system UBERON_0013501 cloacal sphincter +UBERON_0001007 digestive system UBERON_0013502 5th arch mesenchyme +UBERON_0001007 digestive system UBERON_0013525 stomach lumen +UBERON_0001007 digestive system UBERON_0013612 lower jaw cingulum +UBERON_0001007 digestive system UBERON_0013613 upper jaw cingulum +UBERON_0001007 digestive system UBERON_0013617 upper primary molar tooth +UBERON_0001007 digestive system UBERON_0013619 upper secondary molar tooth +UBERON_0001007 digestive system UBERON_0013620 lower primary molar tooth +UBERON_0001007 digestive system UBERON_0013621 lower secondary molar tooth +UBERON_0001007 digestive system UBERON_0013636 epithelium of intestinal villus +UBERON_0001007 digestive system UBERON_0013638 horny papilla of tongue +UBERON_0001007 digestive system UBERON_0013639 mechanical papilla of tongue +UBERON_0001007 digestive system UBERON_0013640 internal cheek pouch +UBERON_0001007 digestive system UBERON_0013641 external cheek pouch +UBERON_0001007 digestive system UBERON_0013644 duodenal ampulla +UBERON_0001007 digestive system UBERON_0013656 dulla +UBERON_0001007 digestive system UBERON_0013688 tonsil germinal center +UBERON_0001007 digestive system UBERON_0013689 appendix lymphoid tissue +UBERON_0001007 digestive system UBERON_0013695 colon endothelium +UBERON_0001007 digestive system UBERON_0013696 tonsil epithelium +UBERON_0001007 digestive system UBERON_0013739 base of crypt of Lieberkuhn +UBERON_0001007 digestive system UBERON_0013740 wall of crypt of Lieberkuhn +UBERON_0001007 digestive system UBERON_0013741 base of crypt of Lieberkuhn of large intestine +UBERON_0001007 digestive system UBERON_0013742 wall of crypt of Lieberkuhn of large intestine +UBERON_0001007 digestive system UBERON_0013743 base of crypt of Lieberkuhn of small intestine +UBERON_0001007 digestive system UBERON_0013744 wall of crypt of Lieberkuhn of small intestine +UBERON_0001007 digestive system UBERON_0013765 digestive system element +UBERON_0001007 digestive system UBERON_0013767 frontal process of maxilla +UBERON_0001007 digestive system UBERON_0014389 gustatory papilla of tongue +UBERON_0001007 digestive system UBERON_0014390 muscle layer of ileum +UBERON_0001007 digestive system UBERON_0014400 hepatic sinusoidal space +UBERON_0001007 digestive system UBERON_0014451 tongue taste bud +UBERON_0001007 digestive system UBERON_0014452 gustatory epithelium of tongue +UBERON_0001007 digestive system UBERON_0014453 gustatory epithelium of palate +UBERON_0001007 digestive system UBERON_0014475 endostylar duct +UBERON_0001007 digestive system UBERON_0014510 lamina of omasum +UBERON_0001007 digestive system UBERON_0014683 parasymphisial tooth whorl +UBERON_0001007 digestive system UBERON_0014684 Helicoprion tooth whorl +UBERON_0001007 digestive system UBERON_0014693 inferior alveolar artery +UBERON_0001007 digestive system UBERON_0014705 median lingual swelling epithelium +UBERON_0001007 digestive system UBERON_0014727 intercalated duct of salivary gland +UBERON_0001007 digestive system UBERON_0014729 striated duct of salivary gland +UBERON_0001007 digestive system UBERON_0014779 liver reticuloendothelial system +UBERON_0001007 digestive system UBERON_0014780 palatine aponeurosis +UBERON_0001007 digestive system UBERON_0014783 cloacal muscle +UBERON_0001007 digestive system UBERON_0014784 transverse cloacal muscle +UBERON_0001007 digestive system UBERON_0014785 levator cloacae +UBERON_0001007 digestive system UBERON_0014790 lingual septum +UBERON_0001007 digestive system UBERON_0014916 velar vocal fold +UBERON_0001007 digestive system UBERON_0015139 infundibulum of gallbladder +UBERON_0001007 digestive system UBERON_0015142 falciform fat +UBERON_0001007 digestive system UBERON_0015232 nematode pharynx +UBERON_0001007 digestive system UBERON_0015423 hilar portion of hepatic duct +UBERON_0001007 digestive system UBERON_0015445 anterior lingual gland duct +UBERON_0001007 digestive system UBERON_0015455 accessory hepatic vein +UBERON_0001007 digestive system UBERON_0015481 left hepatic artery +UBERON_0001007 digestive system UBERON_0015482 right hepatic artery +UBERON_0001007 digestive system UBERON_0015716 anal canal epithelium +UBERON_0001007 digestive system UBERON_0015766 epithelium of duct of salivary gland +UBERON_0001007 digestive system UBERON_0015796 liver blood vessel +UBERON_0001007 digestive system UBERON_0015833 foregut epithelium +UBERON_0001007 digestive system UBERON_0015834 duodenum lamina propria +UBERON_0001007 digestive system UBERON_0015847 upper left incisor tooth +UBERON_0001007 digestive system UBERON_0015850 upper left incisor tusk +UBERON_0001007 digestive system UBERON_0015851 upper right incisor tusk +UBERON_0001007 digestive system UBERON_0015852 narwhal tusk +UBERON_0001007 digestive system UBERON_0015853 dental pulp of median incisor tusk +UBERON_0001007 digestive system UBERON_0016442 median palatine suture +UBERON_0001007 digestive system UBERON_0016452 upper secondary premolar tooth +UBERON_0001007 digestive system UBERON_0016453 lower secondary premolar tooth +UBERON_0001007 digestive system UBERON_0016454 upper central secondary incisor tooth +UBERON_0001007 digestive system UBERON_0016455 upper lateral secondary incisor tooth +UBERON_0001007 digestive system UBERON_0016478 liver stroma +UBERON_0001007 digestive system UBERON_0016479 capsule of liver +UBERON_0001007 digestive system UBERON_0016480 interlobular stroma of liver +UBERON_0001007 digestive system UBERON_0016482 dental plaque +UBERON_0001007 digestive system UBERON_0016484 subgingival dental plaque +UBERON_0001007 digestive system UBERON_0016485 supragingival dental plaque +UBERON_0001007 digestive system UBERON_0016499 esophageal-pneumatic duct sphincter +UBERON_0001007 digestive system UBERON_0016500 muscularis mucosa of fundus of urinary bladder +UBERON_0001007 digestive system UBERON_0016501 muscularis mucosae of fundus of stomach +UBERON_0001007 digestive system UBERON_0016502 stomach fundus lumen +UBERON_0001007 digestive system UBERON_0016505 Mullerian tubercle +UBERON_0001007 digestive system UBERON_0016511 lamina propria of fundus of stomach +UBERON_0001007 digestive system UBERON_0016512 lumen of duodenum +UBERON_0001007 digestive system UBERON_0016517 lumen of jejunum +UBERON_0001007 digestive system UBERON_0016519 muscularis mucosae of jejunum +UBERON_0001007 digestive system UBERON_0016545 pharyngeal ectoderm +UBERON_0001007 digestive system UBERON_0016547 lower foregut region endoderm +UBERON_0001007 digestive system UBERON_0016618 baleen feeding system +UBERON_0001007 digestive system UBERON_0016619 Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0001007 digestive system UBERON_0016620 ventral throat pleat +UBERON_0001007 digestive system UBERON_0016621 lunge feeding organ +UBERON_0001007 digestive system UBERON_0016622 lunge feeding organ papilla +UBERON_0001007 digestive system UBERON_0016624 lunge feeding vibrissa +UBERON_0001007 digestive system UBERON_0016628 stem of Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0001007 digestive system UBERON_0016629 branch of Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0001007 digestive system UBERON_0016885 epithelium of terminal part of digestive tract +UBERON_0001007 digestive system UBERON_0016886 muscle tissue of terminal part of digestive tract +UBERON_0001007 digestive system UBERON_0016890 intrahepatic branch of portal vein +UBERON_0001007 digestive system UBERON_0016910 frenulum of lip +UBERON_0001007 digestive system UBERON_0016912 frenulum of upper lip +UBERON_0001007 digestive system UBERON_0016913 frenulum of lower lip +UBERON_0001007 digestive system UBERON_0016915 vermilion +UBERON_0001007 digestive system UBERON_0016918 upper vermilion +UBERON_0001007 digestive system UBERON_0016919 lower vermilion +UBERON_0001007 digestive system UBERON_0016943 lower premolar tooth +UBERON_0001007 digestive system UBERON_0016944 upper premolar tooth +UBERON_0001007 digestive system UBERON_0017164 dorsal cloacal gland +UBERON_0001007 digestive system UBERON_0017249 incisive process of premaxilla +UBERON_0001007 digestive system UBERON_0017271 upper primary premolar tooth +UBERON_0001007 digestive system UBERON_0017272 lower primary premolar tooth +UBERON_0001007 digestive system UBERON_0017298 cingulum of upper incisor tooth +UBERON_0001007 digestive system UBERON_0017299 cingulum of lower incisor tooth +UBERON_0001007 digestive system UBERON_0017312 cingulum of upper canine tooth +UBERON_0001007 digestive system UBERON_0017313 cingulum of lower canine tooth +UBERON_0001007 digestive system UBERON_0017612 cingulum of lower jaw molar +UBERON_0001007 digestive system UBERON_0017613 cingulum of upper jaw molar +UBERON_0001007 digestive system UBERON_0017616 afferent spiracular artery +UBERON_0001007 digestive system UBERON_0017617 efferent spiracular artery +UBERON_0001007 digestive system UBERON_0017626 transverse folds of rectum +UBERON_0001007 digestive system UBERON_0017627 rectal valve +UBERON_0001007 digestive system UBERON_0017653 intermaxillary salivary gland +UBERON_0001007 digestive system UBERON_0017748 lower primary incisor tooth +UBERON_0001007 digestive system UBERON_0018103 posterior fascicle of palatopharyngeus +UBERON_0001007 digestive system UBERON_0018111 muscle layer of rectum +UBERON_0001007 digestive system UBERON_0018112 rectum smooth muscle tissue +UBERON_0001007 digestive system UBERON_0018136 maxillary fenestra +UBERON_0001007 digestive system UBERON_0018137 premaxillary fenestra +UBERON_0001007 digestive system UBERON_0018149 angle of oral opening +UBERON_0001007 digestive system UBERON_0018150 skin of lower lip +UBERON_0001007 digestive system UBERON_0018151 skin of upper lip +UBERON_0001007 digestive system UBERON_0018242 palatine bone horizontal plate +UBERON_0001007 digestive system UBERON_0018257 submucosa of digestive tract +UBERON_0001007 digestive system UBERON_0018261 muscular coat of digestive tract +UBERON_0001007 digestive system UBERON_0018281 lower deciduous premolar 5 +UBERON_0001007 digestive system UBERON_0018282 lower molar 3 +UBERON_0001007 digestive system UBERON_0018284 lower premolar 1 +UBERON_0001007 digestive system UBERON_0018285 lower premolar 2 +UBERON_0001007 digestive system UBERON_0018297 resorption pit +UBERON_0001007 digestive system UBERON_0018299 mandibular symphyseal tooth +UBERON_0001007 digestive system UBERON_0018300 upper canine 1 +UBERON_0001007 digestive system UBERON_0018301 upper deciduous premolar 5 +UBERON_0001007 digestive system UBERON_0018302 upper molar 1 +UBERON_0001007 digestive system UBERON_0018314 choanal groove +UBERON_0001007 digestive system UBERON_0018331 intraramal joint +UBERON_0001007 digestive system UBERON_0018333 labial cartilage +UBERON_0001007 digestive system UBERON_0018334 lateral condyle of quadrate +UBERON_0001007 digestive system UBERON_0018336 maxillary shank +UBERON_0001007 digestive system UBERON_0018337 medial condyle of quadrate +UBERON_0001007 digestive system UBERON_0018338 medial cotyla +UBERON_0001007 digestive system UBERON_0018341 nasal process of premaxilla +UBERON_0001007 digestive system UBERON_0018353 quadrate condyle +UBERON_0001007 digestive system UBERON_0018407 infra-orbital foramen of maxilla +UBERON_0001007 digestive system UBERON_0018409 infra-orbital groove of maxilla +UBERON_0001007 digestive system UBERON_0018410 lacteal +UBERON_0001007 digestive system UBERON_0018542 mandibular symphyseal region +UBERON_0001007 digestive system UBERON_0018543 lumen of intestine +UBERON_0001007 digestive system UBERON_0018561 upper secondary canine tooth +UBERON_0001007 digestive system UBERON_0018562 lower secondary canine tooth +UBERON_0001007 digestive system UBERON_0018568 lower central secondary incisor tooth +UBERON_0001007 digestive system UBERON_0018570 lower lateral secondary incisor tooth +UBERON_0001007 digestive system UBERON_0018571 upper first secondary premolar tooth +UBERON_0001007 digestive system UBERON_0018572 upper second secondary premolar tooth +UBERON_0001007 digestive system UBERON_0018573 lower first secondary premolar tooth +UBERON_0001007 digestive system UBERON_0018574 lower second secondary premolar tooth +UBERON_0001007 digestive system UBERON_0018575 upper first secondary molar tooth +UBERON_0001007 digestive system UBERON_0018576 upper second secondary molar tooth +UBERON_0001007 digestive system UBERON_0018577 upper third secondary molar tooth +UBERON_0001007 digestive system UBERON_0018578 lower first secondary molar tooth +UBERON_0001007 digestive system UBERON_0018579 lower second secondary molar tooth +UBERON_0001007 digestive system UBERON_0018580 lower third secondary molar tooth +UBERON_0001007 digestive system UBERON_0018588 upper first primary molar tooth +UBERON_0001007 digestive system UBERON_0018589 lower first primary molar tooth +UBERON_0001007 digestive system UBERON_0018591 upper primary incisor tooth +UBERON_0001007 digestive system UBERON_0018593 upper central primary incisor tooth +UBERON_0001007 digestive system UBERON_0018594 upper lateral primary incisor tooth +UBERON_0001007 digestive system UBERON_0018595 lower central primary incisor tooth +UBERON_0001007 digestive system UBERON_0018596 lower lateral primary incisor tooth +UBERON_0001007 digestive system UBERON_0018597 upper primary canine tooth +UBERON_0001007 digestive system UBERON_0018598 lower primary canine tooth +UBERON_0001007 digestive system UBERON_0018599 upper second primary molar tooth +UBERON_0001007 digestive system UBERON_0018600 lower second primary molar tooth +UBERON_0001007 digestive system UBERON_0018601 lower central incisor tooth +UBERON_0001007 digestive system UBERON_0018602 lower lateral incisor tooth +UBERON_0001007 digestive system UBERON_0018603 upper central incisor tooth +UBERON_0001007 digestive system UBERON_0018604 upper lateral incisor tooth +UBERON_0001007 digestive system UBERON_0018613 secondary upper tooth +UBERON_0001007 digestive system UBERON_0018614 permanent lower tooth +UBERON_0001007 digestive system UBERON_0018616 primary upper tooth +UBERON_0001007 digestive system UBERON_0018617 primary lower tooth +UBERON_0001007 digestive system UBERON_0018621 upper canine tooth +UBERON_0001007 digestive system UBERON_0018622 lower canine tooth +UBERON_0001007 digestive system UBERON_0018623 lower secondary incisor tooth +UBERON_0001007 digestive system UBERON_0018648 upper premolar 4 +UBERON_0001007 digestive system UBERON_0019206 tongue papilla epithelium +UBERON_0001007 digestive system UBERON_0019253 upper secondary incisor tooth +UBERON_0001007 digestive system UBERON_0022275 colic flexure +UBERON_0001007 digestive system UBERON_0022276 splenic flexure of colon +UBERON_0001007 digestive system UBERON_0022277 hepatic flexure of colon +UBERON_0001007 digestive system UBERON_0022280 epithelium of crypt of Lieberkuhn of small intestine +UBERON_0001007 digestive system UBERON_0022281 epithelium of crypt of Lieberkuhn of large intestine +UBERON_0001007 digestive system UBERON_0022292 splenic arteriole +UBERON_0001007 digestive system UBERON_0022357 mesentery of ileum +UBERON_0001007 digestive system UBERON_0022361 lung field +UBERON_0001007 digestive system UBERON_0023541 conical papilla +UBERON_0001007 digestive system UBERON_0034670 palatal taste bud +UBERON_0001007 digestive system UBERON_0034719 lip taste bud +UBERON_0001007 digestive system UBERON_0034721 pharyngeal taste bud +UBERON_0001007 digestive system UBERON_0034724 esophageal taste bud +UBERON_0001007 digestive system UBERON_0034767 buccal vestibule +UBERON_0001007 digestive system UBERON_0034898 alveolar ridge of premaxilla +UBERON_0001007 digestive system UBERON_0034900 palatine process of premaxilla +UBERON_0001007 digestive system UBERON_0034909 intermaxillary suture +UBERON_0001007 digestive system UBERON_0034932 epithelium of biliary system +UBERON_0001007 digestive system UBERON_0034934 Weber's gland +UBERON_0001007 digestive system UBERON_0034937 pharyngeal bar +UBERON_0001007 digestive system UBERON_0034995 jaw mesenchyme +UBERON_0001007 digestive system UBERON_0035037 jaw epithelium +UBERON_0001007 digestive system UBERON_0035045 parotid gland intralobular duct +UBERON_0001007 digestive system UBERON_0035046 parotid gland intercalated duct +UBERON_0001007 digestive system UBERON_0035047 parotid gland striated duct +UBERON_0001007 digestive system UBERON_0035048 parotid gland excretory duct +UBERON_0001007 digestive system UBERON_0035049 excretory duct of salivary gland +UBERON_0001007 digestive system UBERON_0035053 interlobular duct of salivary gland +UBERON_0001007 digestive system UBERON_0035076 parotid gland myoepithelium +UBERON_0001007 digestive system UBERON_0035078 parotid gland interlobular duct +UBERON_0001007 digestive system UBERON_0035115 diastema between central incisors +UBERON_0001007 digestive system UBERON_0035116 diastema between upper central incisors +UBERON_0001007 digestive system UBERON_0035117 diastema between lower central incisors +UBERON_0001007 digestive system UBERON_0035119 diastema between incisors +UBERON_0001007 digestive system UBERON_0035120 fauces +UBERON_0001007 digestive system UBERON_0035122 interincisive suture +UBERON_0001007 digestive system UBERON_0035126 transverse palatine suture +UBERON_0001007 digestive system UBERON_0035127 suture of hard palate +UBERON_0001007 digestive system UBERON_0035139 anterior nasal spine of maxilla +UBERON_0001007 digestive system UBERON_0035149 gingival epithelial attachment +UBERON_0001007 digestive system UBERON_0035177 abdominal part of esophagus +UBERON_0001007 digestive system UBERON_0035216 thoracic part of esophagus +UBERON_0001007 digestive system UBERON_0035228 tonsillar fossa +UBERON_0001007 digestive system UBERON_0035240 posterior wall of oropharynx +UBERON_0001007 digestive system UBERON_0035243 anal sinus +UBERON_0001007 digestive system UBERON_0035267 neck of gallbladder +UBERON_0001007 digestive system UBERON_0035270 roof of nasopharynx +UBERON_0001007 digestive system UBERON_0035286 lateral wall of oropharynx +UBERON_0001007 digestive system UBERON_0035313 posterior wall of laryngopharynx +UBERON_0001007 digestive system UBERON_0035377 transverse fold of rectum +UBERON_0001007 digestive system UBERON_0035383 lateral wall of nasopharynx +UBERON_0001007 digestive system UBERON_0035386 space of Mall +UBERON_0001007 digestive system UBERON_0035401 posterior wall of nasopharynx +UBERON_0001007 digestive system UBERON_0035444 triangular ligament of liver +UBERON_0001007 digestive system UBERON_0035450 cervical part of esophagus +UBERON_0001007 digestive system UBERON_0035536 body of gallbladder +UBERON_0001007 digestive system UBERON_0035756 capillary network of liver +UBERON_0001007 digestive system UBERON_0035805 muscle layer of sigmoid colon +UBERON_0001007 digestive system UBERON_0035833 lower esophagus muscularis layer +UBERON_0001007 digestive system UBERON_0035834 lower esophagus mucosa +UBERON_0001007 digestive system UBERON_0035840 esophagogastric junction muscularis mucosa +UBERON_0001007 digestive system UBERON_0035843 lower esophagus submucosa +UBERON_0001007 digestive system UBERON_0035844 lower esophagus muscularis mucosa +UBERON_0001007 digestive system UBERON_0035942 space between upper and lower jaws +UBERON_0001007 digestive system UBERON_0035967 alveolar mucosa +UBERON_0001007 digestive system UBERON_0036072 respiratory primordium epithelium +UBERON_0001007 digestive system UBERON_0036073 respiratory primordium mesenchyme +UBERON_0001007 digestive system UBERON_0036144 incisive duct +UBERON_0001007 digestive system UBERON_0036214 rectosigmoid junction +UBERON_0001007 digestive system UBERON_0036274 tonsillar pillar +UBERON_0001007 digestive system UBERON_0036293 oral frenulum +UBERON_0001007 digestive system UBERON_0036294 mucosa of lip +UBERON_0001007 digestive system UBERON_0036301 vasculature of spleen +UBERON_0001007 digestive system UBERON_0036337 wall of appendix +UBERON_0001007 digestive system UBERON_0036343 wall of gallbladder +UBERON_0001007 digestive system UBERON_0036362 wall of anal canal +UBERON_0001007 digestive system UBERON_0039222 cystic artery +UBERON_0001007 digestive system UBERON_1000000 chin ventral margin +UBERON_0001007 digestive system UBERON_1000011 labial commissure +UBERON_0001007 digestive system UBERON_1000023 spleen pulp +UBERON_0001007 digestive system UBERON_1000024 parenchyma of spleen +UBERON_0001007 digestive system UBERON_2000103 supramaxilla +UBERON_0001007 digestive system UBERON_2000202 efferent portion of pharyngeal arch artery +UBERON_0001007 digestive system UBERON_2000224 quadrate ventral process +UBERON_0001007 digestive system UBERON_2000240 metapterygoid +UBERON_0001007 digestive system UBERON_2000422 retroarticular +UBERON_0001007 digestive system UBERON_2000620 autopalatine +UBERON_0001007 digestive system UBERON_2000657 entopterygoid +UBERON_0001007 digestive system UBERON_2000666 filamental artery +UBERON_0001007 digestive system UBERON_2000695 labial cavities +UBERON_0001007 digestive system UBERON_2000699 entopterygoid vertical strut +UBERON_0001007 digestive system UBERON_2000716 afferent portion of pharyngeal arch artery +UBERON_0001007 digestive system UBERON_2001076 intestinal bulb +UBERON_0001007 digestive system UBERON_2001129 pharyngeal pouches 2-6 +UBERON_0001007 digestive system UBERON_2001274 coronomeckelian +UBERON_0001007 digestive system UBERON_2001324 enteric musculature +UBERON_0001007 digestive system UBERON_2001371 pancreatic system +UBERON_0001007 digestive system UBERON_2001406 kinethmoid bone +UBERON_0001007 digestive system UBERON_2001430 pneumatic duct +UBERON_0001007 digestive system UBERON_2001467 pharyngeal mesoderm +UBERON_0001007 digestive system UBERON_2001577 premaxilla ascending process +UBERON_0001007 digestive system UBERON_2001578 anterior dorsomedial process of autopalatine +UBERON_0001007 digestive system UBERON_2001603 maxilla ascending process +UBERON_0001007 digestive system UBERON_2001610 quadrate dorsal process +UBERON_0001007 digestive system UBERON_2001611 quadrate posterodorsal process +UBERON_0001007 digestive system UBERON_2001626 premaxillary tooth +UBERON_0001007 digestive system UBERON_2001632 ectopterygoid tooth +UBERON_0001007 digestive system UBERON_2001692 median premaxilla +UBERON_0001007 digestive system UBERON_2001805 articular bone +UBERON_0001007 digestive system UBERON_2001935 oral disk +UBERON_0001007 digestive system UBERON_2001990 epibranchial arborescent organ +UBERON_0001007 digestive system UBERON_2002012 dentary foramen +UBERON_0001007 digestive system UBERON_2002020 hypomaxilla +UBERON_0001007 digestive system UBERON_2002057 gill opening +UBERON_0001007 digestive system UBERON_2002092 rostral cartilage +UBERON_0001007 digestive system UBERON_2002108 buccal papilla +UBERON_0001007 digestive system UBERON_2002116 epibranchial organ +UBERON_0001007 digestive system UBERON_2002257 premaxilla dentigerous process +UBERON_0001007 digestive system UBERON_2005012 afferent filamental artery +UBERON_0001007 digestive system UBERON_2005013 concurrent branch afferent branchial artery +UBERON_0001007 digestive system UBERON_2005014 recurrent branch afferent branchial artery +UBERON_0001007 digestive system UBERON_2005015 afferent lamellar arteriole +UBERON_0001007 digestive system UBERON_2005018 efferent filamental artery +UBERON_0001007 digestive system UBERON_2005019 efferent lamellar arteriole +UBERON_0001007 digestive system UBERON_2005126 intestinal bulb epithelium +UBERON_0001007 digestive system UBERON_2005170 extrahepatic duct +UBERON_0001007 digestive system UBERON_2005174 ventral liver lobe +UBERON_0001007 digestive system UBERON_2005256 intervillus pockets +UBERON_0001007 digestive system UBERON_2005273 intestinal mucosal muscle +UBERON_0001007 digestive system UBERON_2005279 enteric circular muscle +UBERON_0001007 digestive system UBERON_2005346 extrapancreatic duct +UBERON_0001007 digestive system UBERON_3000003 alary process of premaxilla +UBERON_0001007 digestive system UBERON_3000006 alveolar foramen +UBERON_0001007 digestive system UBERON_3000012 angulosplenial coronoid process +UBERON_0001007 digestive system UBERON_3000017 anterior process of pars palatina of maxilla +UBERON_0001007 digestive system UBERON_3000022 antorbital process +UBERON_0001007 digestive system UBERON_3000031 ascending process of palatoquadrate +UBERON_0001007 digestive system UBERON_3000036 basal process of palatoquadrate +UBERON_0001007 digestive system UBERON_3000038 basimandibulare +UBERON_0001007 digestive system UBERON_3000110 crista contacta +UBERON_0001007 digestive system UBERON_3000111 crista dentalis of maxilla +UBERON_0001007 digestive system UBERON_3000112 crista dentalis of premaxilla +UBERON_0001007 digestive system UBERON_3000115 crista lateralis of premaxilla +UBERON_0001007 digestive system UBERON_3000177 flange of quadratojugal +UBERON_0001007 digestive system UBERON_3000237 infrarostral cartilage +UBERON_0001007 digestive system UBERON_3000255 lamina anterior of pars facialis +UBERON_0001007 digestive system UBERON_3000281 margo orbitalis of maxilla +UBERON_0001007 digestive system UBERON_3000288 maxillopalatine +UBERON_0001007 digestive system UBERON_3000295 median symphysis +UBERON_0001007 digestive system UBERON_3000323 nasopremaxilla +UBERON_0001007 digestive system UBERON_3000363 otic ligament +UBERON_0001007 digestive system UBERON_3000365 otic process +UBERON_0001007 digestive system UBERON_3000375 palatine process of the pars facialis of the maxilla +UBERON_0001007 digestive system UBERON_3000380 palatoquadrate articular process +UBERON_0001007 digestive system UBERON_3000394 pars articularis of mandibular arch +UBERON_0001007 digestive system UBERON_3000400 pars facialis of maxilla +UBERON_0001007 digestive system UBERON_3000401 pars facialis of maxillopalatine +UBERON_0001007 digestive system UBERON_3000446 posterior condyle +UBERON_0001007 digestive system UBERON_3000450 posterior mental process +UBERON_0001007 digestive system UBERON_3000453 posterolateral vomerine process +UBERON_0001007 digestive system UBERON_3000459 prearticular coronoid process +UBERON_0001007 digestive system UBERON_3000467 preorbital process of the pars facialis of the maxilla +UBERON_0001007 digestive system UBERON_3000492 processus infrafenestralis +UBERON_0001007 digestive system UBERON_3000493 processus internus of pseudoangular +UBERON_0001007 digestive system UBERON_3000500 processus posterior of maxilla +UBERON_0001007 digestive system UBERON_3000505 processus pterygoideus of maxilla +UBERON_0001007 digestive system UBERON_3000509 processus suprafenestralis +UBERON_0001007 digestive system UBERON_3000512 processus zygomatico-maxillaris +UBERON_0001007 digestive system UBERON_3000515 pseudoangular +UBERON_0001007 digestive system UBERON_3000516 pseudobasal process +UBERON_0001007 digestive system UBERON_3000518 pseudodentary +UBERON_0001007 digestive system UBERON_3000519 pseudodentary tooth +UBERON_0001007 digestive system UBERON_3000523 pterygoid process of palatoquadrate +UBERON_0001007 digestive system UBERON_3000527 quadrate process of palatoquadrate +UBERON_0001007 digestive system UBERON_3000539 recessus marsupiatus of premaxilla +UBERON_0001007 digestive system UBERON_3000540 recessus vaginiformis +UBERON_0001007 digestive system UBERON_3000543 retroarticular process +UBERON_0001007 digestive system UBERON_3000547 rostral process +UBERON_0001007 digestive system UBERON_3000581 sulcus dentalis of maxilla +UBERON_0001007 digestive system UBERON_3000582 sulcus dentalis of premaxilla +UBERON_0001007 digestive system UBERON_3000583 sulcus for Meckels cartilage +UBERON_0001007 digestive system UBERON_3000597 symphysis maxillaris +UBERON_0001007 digestive system UBERON_3000605 tentacular foramen +UBERON_0001007 digestive system UBERON_3000634 vomerine canal +UBERON_0001007 digestive system UBERON_3000642 maxillopalatine tooth +UBERON_0001007 digestive system UBERON_3000645 corpus +UBERON_0001007 digestive system UBERON_3000646 margo libera +UBERON_0001007 digestive system UBERON_3000647 crista interna +UBERON_0001007 digestive system UBERON_3000649 anterior process of vomer +UBERON_0001007 digestive system UBERON_3000650 processus frontalis of maxilla +UBERON_0001007 digestive system UBERON_3000651 lamina anterior of maxilla +UBERON_0001007 digestive system UBERON_3000652 fossa maxillaris +UBERON_0001007 digestive system UBERON_3000653 pars glenoidalis of quadratojugal +UBERON_0001007 digestive system UBERON_3000654 pars jugalis +UBERON_0001007 digestive system UBERON_3000657 dentigerous process +UBERON_0001007 digestive system UBERON_3000658 prechoanal process +UBERON_0001007 digestive system UBERON_3000659 postchoanal process +UBERON_0001007 digestive system UBERON_3000660 margo choanalis +UBERON_0001007 digestive system UBERON_3000661 crista vomeri +UBERON_0001007 digestive system UBERON_3000966 angulosplenial +UBERON_0001007 digestive system UBERON_3000998 suprarostral cartilage +UBERON_0001007 digestive system UBERON_3001003 cloacal fold +UBERON_0001007 digestive system UBERON_3010061 anterior quadratocranial commissure +UBERON_0001007 digestive system UBERON_3010091 upper lip protuberances +UBERON_0001007 digestive system UBERON_3010094 quadratoethmoid process +UBERON_0001007 digestive system UBERON_3010144 odontoids +UBERON_0001007 digestive system UBERON_3010404 capillary system of liver +UBERON_0001007 digestive system UBERON_3010458 suprarostral ala +UBERON_0001007 digestive system UBERON_3010528 articular process of palatoquadrate +UBERON_0001007 digestive system UBERON_3010589 cloacal papilla +UBERON_0001007 digestive system UBERON_3010590 amphibian cloacal gland +UBERON_0001007 digestive system UBERON_3010820 suboccular arch +UBERON_0001007 digestive system UBERON_3010821 hyoquadrate process +UBERON_0001007 digestive system UBERON_3010824 processus triangularis of palatoquadrate cartilage +UBERON_0001007 digestive system UBERON_4200198 incisor process +UBERON_0001007 digestive system UBERON_4200234 precoronoid bone +UBERON_0001007 digestive system UBERON_4200235 postcoronoid bone +UBERON_0001007 digestive system UBERON_4200236 anterior coronoid bone +UBERON_0001007 digestive system UBERON_4200237 posterior coronoid bone +UBERON_0001007 digestive system UBERON_4200238 coronoid fang +UBERON_0001007 digestive system UBERON_4200243 surangular pit line +UBERON_0001007 digestive system UBERON_4200245 parasymphysial plate +UBERON_0001007 digestive system UBERON_4200246 mesial parasymphysial foramen +UBERON_0001007 digestive system UBERON_4200247 lateral parasymphysial foramen +UBERON_0001007 digestive system UBERON_4200250 meckelian bone +UBERON_0001007 digestive system UBERON_4200251 meckelian foramen +UBERON_0001007 digestive system UBERON_4300002 palatine prong +UBERON_0001007 digestive system UBERON_4300017 rostrodermethmoid +UBERON_0001007 digestive system UBERON_4300129 dorsal pelvic gland +UBERON_0001007 digestive system UBERON_4300130 lateral pelvic gland +UBERON_0001007 digestive system UBERON_4300133 upper jaw symphyseal region +UBERON_0001007 digestive system UBERON_4300137 lingual region +UBERON_0001007 digestive system UBERON_4300138 labial region +UBERON_0001007 digestive system UBERON_4300139 posterolingual region +UBERON_0001007 digestive system UBERON_4300174 actinopterygian pyloric caecum +UBERON_0001007 digestive system UBERON_4300199 postsplenial +UBERON_0001007 digestive system UBERON_4300243 premaxillary tooth 2 +UBERON_0001007 digestive system UBERON_4300244 premaxillary tooth 3 +UBERON_0001007 digestive system UBERON_4300246 dentary tooth 2 +UBERON_0001007 digestive system UBERON_4300247 dentary tooth 3 +UBERON_0001007 digestive system UBERON_4300252 ethmo-palatine cartilage +UBERON_0001007 digestive system UBERON_4500016 premaxilla articular process +UBERON_0001007 digestive system UBERON_4500018 premaxilla maxillary process +UBERON_0001007 digestive system UBERON_6001842 insect embryonic/larval digestive system +UBERON_0001007 digestive system UBERON_6001845 insect cephalopharyngeal skeleton +UBERON_0001007 digestive system UBERON_6001848 insect epipharyngeal sclerite +UBERON_0001007 digestive system UBERON_7500052 lower fourth secondary molar tooth +UBERON_0001007 digestive system UBERON_7500053 lower fourth secondary premolar tooth +UBERON_0001007 digestive system UBERON_7500054 lower third secondary premolar tooth +UBERON_0001007 digestive system UBERON_7500057 upper fourth secondary molar tooth +UBERON_0001007 digestive system UBERON_7500058 upper fourth secondary premolar tooth +UBERON_0001007 digestive system UBERON_7500059 upper third secondary premolar tooth +UBERON_0001007 digestive system UBERON_7500083 greater palatine foramen +UBERON_0001007 digestive system UBERON_7500084 lesser palatine foramen +UBERON_0001007 digestive system UBERON_8400001 hepatic acinus zone 1 +UBERON_0001007 digestive system UBERON_8400002 hepatic acinus zone 3 +UBERON_0001007 digestive system UBERON_8400003 hepatic acinus zone 2 +UBERON_0001007 digestive system UBERON_8400005 metabolic zone of liver +UBERON_0001007 digestive system UBERON_8400006 liver lobule periportal region +UBERON_0001007 digestive system UBERON_8400007 liver lobule centrilobular region +UBERON_0001007 digestive system UBERON_8400008 liver lobule midzonal region +UBERON_0001007 digestive system UBERON_8400021 liver serosa +UBERON_0001007 digestive system UBERON_8400023 liver subserosa +UBERON_0001007 digestive system UBERON_8400024 subcapsular region of liver +UBERON_0001007 digestive system UBERON_8410000 duodeno-jejunal junction +UBERON_0001007 digestive system UBERON_8410001 small intestine venule +UBERON_0001007 digestive system UBERON_8410002 small intestine lymphatic vessel +UBERON_0001007 digestive system UBERON_8410003 ductal plate +UBERON_0001007 digestive system UBERON_8410004 small intestine arteriole +UBERON_0001007 digestive system UBERON_8410005 transitional glandular epithelium of anorectum +UBERON_0001007 digestive system UBERON_8410006 submucous nerve plexus of anorectum +UBERON_0001007 digestive system UBERON_8410007 myenteric nerve plexus of anorectum +UBERON_0001007 digestive system UBERON_8410008 venule of anorectum +UBERON_0001007 digestive system UBERON_8410009 arteriole of anorectum +UBERON_0001007 digestive system UBERON_8410011 myenteric nerve plexus of appendix +UBERON_0001007 digestive system UBERON_8410012 submucous nerve plexus of appendix +UBERON_0001007 digestive system UBERON_8410015 arteriole of colon +UBERON_0001007 digestive system UBERON_8410016 descending sigmoid junction +UBERON_0001007 digestive system UBERON_8410019 jejuno-ileal junction +UBERON_0001007 digestive system UBERON_8410020 venule of appendix +UBERON_0001007 digestive system UBERON_8410024 intestinal junction +UBERON_0001007 digestive system UBERON_8410028 arteriole of appendix +UBERON_0001007 digestive system UBERON_8410029 lymphatic capillary of appendix +UBERON_0001007 digestive system UBERON_8410030 lymphatic vessel of appendix +UBERON_0001007 digestive system UBERON_8410031 muscularis mucosae of appendix +UBERON_0001007 digestive system UBERON_8410039 high endothelial venule of appendix +UBERON_0001007 digestive system UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0001007 digestive system UBERON_8410044 vein of appendix +UBERON_0001007 digestive system UBERON_8410045 artery of appendix +UBERON_0001007 digestive system UBERON_8410046 appendix smooth muscle circular layer +UBERON_0001007 digestive system UBERON_8410047 appendix smooth muscle longitudinal layer +UBERON_0001007 digestive system UBERON_8410048 venule of colon +UBERON_0001007 digestive system UBERON_8410049 serosal nerve fiber of appendix +UBERON_0001007 digestive system UBERON_8410050 anorectum +UBERON_0001007 digestive system UBERON_8410051 lymphatic vessel of colon +UBERON_0001007 digestive system UBERON_8410054 lymphatic capillary of colon +UBERON_0001007 digestive system UBERON_8410055 lymphatic capillary of anorectum +UBERON_0001007 digestive system UBERON_8410056 capillary of anorectum +UBERON_0001007 digestive system UBERON_8410057 capillary of colon +UBERON_0001007 digestive system UBERON_8410058 myenteric nerve plexus of colon +UBERON_0001007 digestive system UBERON_8410059 submucous nerve plexus of colon +UBERON_0001007 digestive system UBERON_8410060 colon smooth muscle circular layer +UBERON_0001007 digestive system UBERON_8410061 colon smooth muscle longitudinal layer +UBERON_0001007 digestive system UBERON_8410063 myenteric nerve plexus of small intestine +UBERON_0001007 digestive system UBERON_8410064 submucous nerve plexus of small intestine +UBERON_0001007 digestive system UBERON_8410068 capillary of small intestine +UBERON_0001008 renal system UBERON_0000056 ureter +UBERON_0001008 renal system UBERON_0000057 urethra +UBERON_0001008 renal system UBERON_0000074 renal glomerulus +UBERON_0001008 renal system UBERON_0000080 mesonephros +UBERON_0001008 renal system UBERON_0000081 metanephros +UBERON_0001008 renal system UBERON_0000082 adult mammalian kidney +UBERON_0001008 renal system UBERON_0000083 mesonephric tubule +UBERON_0001008 renal system UBERON_0000084 ureteric bud +UBERON_0001008 renal system UBERON_0000163 embryonic cloaca +UBERON_0001008 renal system UBERON_0000164 primitive urogenital sinus +UBERON_0001008 renal system UBERON_0000362 renal medulla +UBERON_0001008 renal system UBERON_0000365 urothelium +UBERON_0001008 renal system UBERON_0000381 urinary bladder detrusor smooth muscle +UBERON_0001008 renal system UBERON_0000461 minor vestibular gland +UBERON_0001008 renal system UBERON_0001054 Malpighian tubule +UBERON_0001008 renal system UBERON_0001222 right ureter +UBERON_0001008 renal system UBERON_0001223 left ureter +UBERON_0001008 renal system UBERON_0001224 renal pelvis +UBERON_0001008 renal system UBERON_0001225 cortex of kidney +UBERON_0001008 renal system UBERON_0001225 left renal cortex +UBERON_0001008 renal system UBERON_0001225 right renal cortex +UBERON_0001008 renal system UBERON_0001226 major calyx +UBERON_0001008 renal system UBERON_0001227 minor calyx +UBERON_0001008 renal system UBERON_0001228 renal papilla +UBERON_0001008 renal system UBERON_0001229 renal corpuscle +UBERON_0001008 renal system UBERON_0001230 glomerular capsule +UBERON_0001008 renal system UBERON_0001231 nephron tubule +UBERON_0001008 renal system UBERON_0001232 collecting duct of renal tubule +UBERON_0001008 renal system UBERON_0001252 adventitia of ureter +UBERON_0001008 renal system UBERON_0001253 lamina propria of ureter +UBERON_0001008 renal system UBERON_0001254 urothelium of ureter +UBERON_0001008 renal system UBERON_0001255 urinary bladder +UBERON_0001008 renal system UBERON_0001256 wall of urinary bladder +UBERON_0001008 renal system UBERON_0001257 trigone of urinary bladder +UBERON_0001008 renal system UBERON_0001258 neck of urinary bladder +UBERON_0001008 renal system UBERON_0001259 mucosa of urinary bladder +UBERON_0001008 renal system UBERON_0001260 serosa of urinary bladder +UBERON_0001008 renal system UBERON_0001261 lamina propria of urinary bladder +UBERON_0001008 renal system UBERON_0001284 renal column +UBERON_0001008 renal system UBERON_0001285 nephron +UBERON_0001008 renal system UBERON_0001286 Bowman's space +UBERON_0001008 renal system UBERON_0001287 proximal convoluted tubule +UBERON_0001008 renal system UBERON_0001288 loop of Henle +UBERON_0001008 renal system UBERON_0001289 descending limb of loop of Henle +UBERON_0001008 renal system UBERON_0001290 proximal straight tubule +UBERON_0001008 renal system UBERON_0001291 thick ascending limb of loop of Henle +UBERON_0001008 renal system UBERON_0001292 distal convoluted tubule +UBERON_0001008 renal system UBERON_0001293 outer medulla of kidney +UBERON_0001008 renal system UBERON_0001294 inner medulla of kidney +UBERON_0001008 renal system UBERON_0001333 male urethra +UBERON_0001008 renal system UBERON_0001334 female urethra +UBERON_0001008 renal system UBERON_0001335 prostatic urethra +UBERON_0001008 renal system UBERON_0001336 membranous urethra of male or female +UBERON_0001008 renal system UBERON_0001337 spongiose part of urethra +UBERON_0001008 renal system UBERON_0001338 urethral gland +UBERON_0001008 renal system UBERON_0001552 kidney arcuate artery +UBERON_0001008 renal system UBERON_0001556 lower urinary tract +UBERON_0001008 renal system UBERON_0002015 kidney capsule +UBERON_0001008 renal system UBERON_0002068 urachus +UBERON_0001008 renal system UBERON_0002113 kidney +UBERON_0001008 renal system UBERON_0002120 pronephros +UBERON_0001008 renal system UBERON_0002189 outer cortex of kidney +UBERON_0001008 renal system UBERON_0002303 juxtaglomerular apparatus +UBERON_0001008 renal system UBERON_0002319 mesangium +UBERON_0001008 renal system UBERON_0002320 glomerular mesangium +UBERON_0001008 renal system UBERON_0002321 extraglomerular mesangium +UBERON_0001008 renal system UBERON_0002325 epithelium of urethra +UBERON_0001008 renal system UBERON_0002326 lamina propria of urethra +UBERON_0001008 renal system UBERON_0002335 macula densa +UBERON_0001008 renal system UBERON_0002366 bulbo-urethral gland +UBERON_0001008 renal system UBERON_0003060 pronephric duct +UBERON_0001008 renal system UBERON_0003074 mesonephric duct +UBERON_0001008 renal system UBERON_0003393 mesentery of urinary system +UBERON_0001008 renal system UBERON_0003455 inner renal medulla loop of Henle +UBERON_0001008 renal system UBERON_0003475 ureteric vein +UBERON_0001008 renal system UBERON_0003517 kidney blood vessel +UBERON_0001008 renal system UBERON_0003527 kidney capillary +UBERON_0001008 renal system UBERON_0003546 distal convoluted tubule macula densa +UBERON_0001008 renal system UBERON_0003644 kidney arterial blood vessel +UBERON_0001008 renal system UBERON_0003820 prostate bud +UBERON_0001008 renal system UBERON_0003829 urethra muscle tissue +UBERON_0001008 renal system UBERON_0004100 renal collecting system +UBERON_0001008 renal system UBERON_0004134 proximal tubule +UBERON_0001008 renal system UBERON_0004135 distal tubule +UBERON_0001008 renal system UBERON_0004136 intermediate tubule +UBERON_0001008 renal system UBERON_0004188 glomerular epithelium +UBERON_0001008 renal system UBERON_0004189 glomerular endothelium +UBERON_0001008 renal system UBERON_0004190 renal glomerulus vasculature +UBERON_0001008 renal system UBERON_0004193 loop of Henle ascending limb thin segment +UBERON_0001008 renal system UBERON_0004194 long nephron +UBERON_0001008 renal system UBERON_0004195 short nephron +UBERON_0001008 renal system UBERON_0004196 proximal convoluted tubule segment 1 +UBERON_0001008 renal system UBERON_0004197 proximal convoluted tubule segment 2 +UBERON_0001008 renal system UBERON_0004198 comma-shaped body +UBERON_0001008 renal system UBERON_0004199 S-shaped body +UBERON_0001008 renal system UBERON_0004200 kidney pyramid +UBERON_0001008 renal system UBERON_0004201 kidney outer medulla inner stripe +UBERON_0001008 renal system UBERON_0004202 kidney outer medulla outer stripe +UBERON_0001008 renal system UBERON_0004203 cortical collecting duct +UBERON_0001008 renal system UBERON_0004204 outer medullary collecting duct +UBERON_0001008 renal system UBERON_0004205 inner medullary collecting duct +UBERON_0001008 renal system UBERON_0004206 long descending thin limb bend +UBERON_0001008 renal system UBERON_0004207 prebend segment of loop of Henle +UBERON_0001008 renal system UBERON_0004211 nephron epithelium +UBERON_0001008 renal system UBERON_0004212 glomerular capillary +UBERON_0001008 renal system UBERON_0004219 urethra smooth muscle layer +UBERON_0001008 renal system UBERON_0004227 kidney pelvis smooth muscle +UBERON_0001008 renal system UBERON_0004228 urinary bladder smooth muscle +UBERON_0001008 renal system UBERON_0004229 urinary bladder trigone smooth muscle +UBERON_0001008 renal system UBERON_0004230 urinary bladder neck smooth muscle +UBERON_0001008 renal system UBERON_0004294 glomerular capillary endothelium +UBERON_0001008 renal system UBERON_0004538 left kidney +UBERON_0001008 renal system UBERON_0004539 right kidney +UBERON_0001008 renal system UBERON_0004639 renal afferent arteriole +UBERON_0001008 renal system UBERON_0004640 renal efferent arteriole +UBERON_0001008 renal system UBERON_0004645 urinary bladder urothelium +UBERON_0001008 renal system UBERON_0004719 kidney arcuate vein +UBERON_0001008 renal system UBERON_0004723 interlobular artery +UBERON_0001008 renal system UBERON_0004736 metanephric glomerulus +UBERON_0001008 renal system UBERON_0004737 metanephric collecting duct +UBERON_0001008 renal system UBERON_0004738 metanephric juxtaglomerular apparatus +UBERON_0001008 renal system UBERON_0004739 pronephric glomerulus +UBERON_0001008 renal system UBERON_0004775 outer renal medulla vasa recta +UBERON_0001008 renal system UBERON_0004776 inner renal medulla vasa recta +UBERON_0001008 renal system UBERON_0004787 urethra urothelium +UBERON_0001008 renal system UBERON_0004788 kidney pelvis urothelium +UBERON_0001008 renal system UBERON_0004810 nephron tubule epithelium +UBERON_0001008 renal system UBERON_0004819 kidney epithelium +UBERON_0001008 renal system UBERON_0004829 urethra skeletal muscle tissue +UBERON_0001008 renal system UBERON_0004902 urogenital sinus epithelium +UBERON_0001008 renal system UBERON_0004917 urethral sphincter +UBERON_0001008 renal system UBERON_0004918 internal urethral sphincter +UBERON_0001008 renal system UBERON_0004919 external urethral sphincter +UBERON_0001008 renal system UBERON_0004943 submucosa of urinary bladder +UBERON_0001008 renal system UBERON_0004944 submucosa of trigone of urinary bladder +UBERON_0001008 renal system UBERON_0004945 submucosa of neck of urinary bladder +UBERON_0001008 renal system UBERON_0004980 mucosa of ureter +UBERON_0001008 renal system UBERON_0005004 mucosa of right ureter +UBERON_0001008 renal system UBERON_0005005 mucosa of left ureter +UBERON_0001008 renal system UBERON_0005006 mucosa of renal pelvis +UBERON_0001008 renal system UBERON_0005007 mucosa of major calyx +UBERON_0001008 renal system UBERON_0005008 mucosa of minor calyx +UBERON_0001008 renal system UBERON_0005009 mucosa of trigone of urinary bladder +UBERON_0001008 renal system UBERON_0005010 mucosa of neck of urinary bladder +UBERON_0001008 renal system UBERON_0005013 mucosa of male urethra +UBERON_0001008 renal system UBERON_0005014 mucosa of female urethra +UBERON_0001008 renal system UBERON_0005015 mucosa of prostatic urethra +UBERON_0001008 renal system UBERON_0005016 mucosa of intermediate urethra +UBERON_0001008 renal system UBERON_0005080 metanephric ureteric bud +UBERON_0001008 renal system UBERON_0005081 ureter ureteric bud +UBERON_0001008 renal system UBERON_0005096 descending thin limb +UBERON_0001008 renal system UBERON_0005097 renal connecting tubule +UBERON_0001008 renal system UBERON_0005099 short descending thin limb +UBERON_0001008 renal system UBERON_0005100 long descending thin limb +UBERON_0001008 renal system UBERON_0005101 early distal convoluted tubule +UBERON_0001008 renal system UBERON_0005102 late distal convoluted tubule +UBERON_0001008 renal system UBERON_0005103 mesonephric epithelium +UBERON_0001008 renal system UBERON_0005104 anterior mesonephric tubule +UBERON_0001008 renal system UBERON_0005105 posterior mesonephric tubule +UBERON_0001008 renal system UBERON_0005106 metanephric tubule +UBERON_0001008 renal system UBERON_0005108 metanephric epithelium +UBERON_0001008 renal system UBERON_0005109 metanephric smooth muscle tissue +UBERON_0001008 renal system UBERON_0005110 metanephric nephron +UBERON_0001008 renal system UBERON_0005111 metanephric pyramid +UBERON_0001008 renal system UBERON_0005114 metanephric ascending thin limb +UBERON_0001008 renal system UBERON_0005115 metanephric cortical collecting duct +UBERON_0001008 renal system UBERON_0005116 metanephric descending thin limb +UBERON_0001008 renal system UBERON_0005117 metanephric distal convoluted tubule +UBERON_0001008 renal system UBERON_0005118 metanephric early distal convoluted tubule +UBERON_0001008 renal system UBERON_0005119 metanephric glomerular mesangium +UBERON_0001008 renal system UBERON_0005120 metanephric late distal convoluted tubule +UBERON_0001008 renal system UBERON_0005121 metanephric long descending thin limb bend +UBERON_0001008 renal system UBERON_0005122 metanephric macula densa +UBERON_0001008 renal system UBERON_0005123 metanephric prebend segment +UBERON_0001008 renal system UBERON_0005124 metanephric proximal convoluted tubule +UBERON_0001008 renal system UBERON_0005125 metanephric proximal straight tubule +UBERON_0001008 renal system UBERON_0005126 metanephric S1 +UBERON_0001008 renal system UBERON_0005127 metanephric thick ascending limb +UBERON_0001008 renal system UBERON_0005129 metanephric distal tubule +UBERON_0001008 renal system UBERON_0005130 metanephric loop of Henle +UBERON_0001008 renal system UBERON_0005132 metanephric long nephron +UBERON_0001008 renal system UBERON_0005133 metanephric glomerulus vasculature +UBERON_0001008 renal system UBERON_0005134 metanephric nephron epithelium +UBERON_0001008 renal system UBERON_0005135 metanephric glomerular epithelium +UBERON_0001008 renal system UBERON_0005136 metanephric glomerular endothelium +UBERON_0001008 renal system UBERON_0005137 metanephric capsule +UBERON_0001008 renal system UBERON_0005139 metanephric long descending thin limb +UBERON_0001008 renal system UBERON_0005140 metanephric short nephron +UBERON_0001008 renal system UBERON_0005141 metanephric short descending thin limb +UBERON_0001008 renal system UBERON_0005144 metanephric glomerular capillary +UBERON_0001008 renal system UBERON_0005145 metanephric comma-shaped body +UBERON_0001008 renal system UBERON_0005146 metanephric nephron tubule +UBERON_0001008 renal system UBERON_0005147 metanephric renal vesicle +UBERON_0001008 renal system UBERON_0005148 metanephric S-shaped body +UBERON_0001008 renal system UBERON_0005149 metanephric connecting tubule +UBERON_0001008 renal system UBERON_0005151 metanephric proximal tubule +UBERON_0001008 renal system UBERON_0005164 ascending limb of loop of Henle +UBERON_0001008 renal system UBERON_0005167 papillary duct +UBERON_0001008 renal system UBERON_0005168 renal interlobular vein +UBERON_0001008 renal system UBERON_0005185 renal medulla collecting duct +UBERON_0001008 renal system UBERON_0005202 distal straight tubule macula densa +UBERON_0001008 renal system UBERON_0005211 renal medulla interstitium +UBERON_0001008 renal system UBERON_0005213 outer renal medulla interstitium +UBERON_0001008 renal system UBERON_0005214 inner renal medulla interstitium +UBERON_0001008 renal system UBERON_0005215 kidney interstitium +UBERON_0001008 renal system UBERON_0005249 metanephric renal pelvis +UBERON_0001008 renal system UBERON_0005268 renal cortex artery +UBERON_0001008 renal system UBERON_0005269 renal cortex vein +UBERON_0001008 renal system UBERON_0005270 renal cortex interstitium +UBERON_0001008 renal system UBERON_0005271 juxtamedullary cortex +UBERON_0001008 renal system UBERON_0005272 peritubular capillary +UBERON_0001008 renal system UBERON_0005308 nephrostome +UBERON_0001008 renal system UBERON_0005309 pronephric nephron +UBERON_0001008 renal system UBERON_0005310 pronephric nephron tubule +UBERON_0001008 renal system UBERON_0005312 primary ureteric bud +UBERON_0001008 renal system UBERON_0005319 mesonephric collecting duct +UBERON_0001008 renal system UBERON_0005320 mesonephric juxtaglomerular apparatus +UBERON_0001008 renal system UBERON_0005321 mesonephric smooth muscle tissue +UBERON_0001008 renal system UBERON_0005322 mesonephric nephron +UBERON_0001008 renal system UBERON_0005323 mesonephric mesenchyme +UBERON_0001008 renal system UBERON_0005324 mesonephric macula densa +UBERON_0001008 renal system UBERON_0005325 mesonephric glomerulus +UBERON_0001008 renal system UBERON_0005326 mesonephric glomerulus vasculature +UBERON_0001008 renal system UBERON_0005327 mesonephric glomerular epithelium +UBERON_0001008 renal system UBERON_0005328 mesonephric comma-shaped body +UBERON_0001008 renal system UBERON_0005329 mesonephric nephron tubule +UBERON_0001008 renal system UBERON_0005330 mesonephric nephron epithelium +UBERON_0001008 renal system UBERON_0005331 mesonephric renal vesicle +UBERON_0001008 renal system UBERON_0005332 mesonephric S-shaped body +UBERON_0001008 renal system UBERON_0005749 glomerular tuft +UBERON_0001008 renal system UBERON_0005750 glomerular parietal epithelium +UBERON_0001008 renal system UBERON_0005751 glomerular visceral epithelium +UBERON_0001008 renal system UBERON_0005760 urorectal septum +UBERON_0001008 renal system UBERON_0005777 glomerular basement membrane +UBERON_0001008 renal system UBERON_0005787 lamina densa of glomerular basement membrane +UBERON_0001008 renal system UBERON_0005788 lamina rara interna +UBERON_0001008 renal system UBERON_0005789 lamina rara externa +UBERON_0001008 renal system UBERON_0005792 nephric ridge +UBERON_0001008 renal system UBERON_0005892 mesonephric early distal tubule +UBERON_0001008 renal system UBERON_0005912 transitional epithelium of major calyx +UBERON_0001008 renal system UBERON_0006082 fundus of urinary bladder +UBERON_0001008 renal system UBERON_0006170 mesonephric capsule +UBERON_0001008 renal system UBERON_0006171 renal sinus +UBERON_0001008 renal system UBERON_0006172 rectal diverticulum +UBERON_0001008 renal system UBERON_0006173 pronephric proximal tubule +UBERON_0001008 renal system UBERON_0006174 pronephric sinus +UBERON_0001008 renal system UBERON_0006175 pronephric distal tubule +UBERON_0001008 renal system UBERON_0006182 mesonephric glomerular mesangium +UBERON_0001008 renal system UBERON_0006183 mesonephric glomerular capillary +UBERON_0001008 renal system UBERON_0006189 mesonephric connecting tubule +UBERON_0001008 renal system UBERON_0006190 mesonephric distal tubule +UBERON_0001008 renal system UBERON_0006192 mesonephric proximal tubule +UBERON_0001008 renal system UBERON_0006194 renal sinus of right kidney +UBERON_0001008 renal system UBERON_0006195 renal sinus of left kidney +UBERON_0001008 renal system UBERON_0006196 mesonephric sinus +UBERON_0001008 renal system UBERON_0006217 cloacal membrane +UBERON_0001008 renal system UBERON_0006307 urogenital membrane +UBERON_0001008 renal system UBERON_0006337 distal early tubule +UBERON_0001008 renal system UBERON_0006341 outer renal medulla peritubular capillary +UBERON_0001008 renal system UBERON_0006364 ureteric bud tip +UBERON_0001008 renal system UBERON_0006373 perihilar interstitium +UBERON_0001008 renal system UBERON_0006374 part of afferent arteriole forming the juxtaglomerular complex +UBERON_0001008 renal system UBERON_0006376 premacula segment of distal straight tubule +UBERON_0001008 renal system UBERON_0006517 kidney calyx +UBERON_0001008 renal system UBERON_0006534 renal convoluted tubule +UBERON_0001008 renal system UBERON_0006541 outer medulla inner stripe loop of Henle +UBERON_0001008 renal system UBERON_0006542 outer medulla outer stripe loop of Henle +UBERON_0001008 renal system UBERON_0006544 kidney vasculature +UBERON_0001008 renal system UBERON_0006553 renal duct +UBERON_0001008 renal system UBERON_0006555 excretory tube +UBERON_0001008 renal system UBERON_0006565 female urethral meatus +UBERON_0001008 renal system UBERON_0006851 renal cortex peritubular capillary +UBERON_0001008 renal system UBERON_0006853 renal cortex tubule +UBERON_0001008 renal system UBERON_0006854 distal straight tubule postmacula segment +UBERON_0001008 renal system UBERON_0006855 muscular coat of ureter +UBERON_0001008 renal system UBERON_0006856 interrenal gland +UBERON_0001008 renal system UBERON_0006857 interrenal primordium +UBERON_0001008 renal system UBERON_0006912 urinary bladder muscularis mucosa +UBERON_0001008 renal system UBERON_0006972 nephridium +UBERON_0001008 renal system UBERON_0006973 protonephridium +UBERON_0001008 renal system UBERON_0006974 metanephridium +UBERON_0001008 renal system UBERON_0007132 head kidney +UBERON_0001008 renal system UBERON_0007179 basal cell layer of urothelium +UBERON_0001008 renal system UBERON_0007298 pronephric proximal convoluted tubule +UBERON_0001008 renal system UBERON_0007306 pronephric glomerular capillary +UBERON_0001008 renal system UBERON_0007307 pronephric glomerular basement membrane +UBERON_0001008 renal system UBERON_0007308 pronephric distal early tubule +UBERON_0001008 renal system UBERON_0007653 capillary loop nephron +UBERON_0001008 renal system UBERON_0007654 maturing nephron +UBERON_0001008 renal system UBERON_0007684 uriniferous tubule +UBERON_0001008 renal system UBERON_0007685 region of nephron tubule +UBERON_0001008 renal system UBERON_0008404 proximal tubular epithelium +UBERON_0001008 renal system UBERON_0008408 distal tubular epithelium +UBERON_0001008 renal system UBERON_0008716 hilum of kidney +UBERON_0001008 renal system UBERON_0008987 renal parenchyma +UBERON_0001008 renal system UBERON_0009010 periurethral tissue +UBERON_0001008 renal system UBERON_0009035 renal straight tubule +UBERON_0001008 renal system UBERON_0009089 inner medulla vasa recta descending limb +UBERON_0001008 renal system UBERON_0009090 outer medulla vasa recta descending limb +UBERON_0001008 renal system UBERON_0009092 inner medulla vasa recta ascending limb +UBERON_0001008 renal system UBERON_0009093 outer medulla vasa recta ascending limb +UBERON_0001008 renal system UBERON_0009095 tip of renal papilla +UBERON_0001008 renal system UBERON_0009201 nephric duct +UBERON_0001008 renal system UBERON_0009622 pronephric proximal straight tubule +UBERON_0001008 renal system UBERON_0009650 cortical arch of kidney +UBERON_0001008 renal system UBERON_0009651 nephron tubule basement membrane +UBERON_0001008 renal system UBERON_0009669 embryonic cloacal lumen +UBERON_0001008 renal system UBERON_0009773 renal tubule +UBERON_0001008 renal system UBERON_0009844 urogenital sinus lumen +UBERON_0001008 renal system UBERON_0009846 embryonic cloacal epithelium +UBERON_0001008 renal system UBERON_0009847 prostate field +UBERON_0001008 renal system UBERON_0009866 Hatschek's nephridium +UBERON_0001008 renal system UBERON_0009871 nephrogenic zone +UBERON_0001008 renal system UBERON_0009883 medullary ray +UBERON_0001008 renal system UBERON_0009913 renal lobe +UBERON_0001008 renal system UBERON_0009914 renal lobule +UBERON_0001008 renal system UBERON_0009916 wall of ureter +UBERON_0001008 renal system UBERON_0009917 kidney corticomedullary boundary +UBERON_0001008 renal system UBERON_0009919 ureter smooth muscle +UBERON_0001008 renal system UBERON_0009958 bladder lumen +UBERON_0001008 renal system UBERON_0009962 excretory gland +UBERON_0001008 renal system UBERON_0009963 antennal gland +UBERON_0001008 renal system UBERON_0009964 crustacean maxillary gland +UBERON_0001008 renal system UBERON_0009965 coxal gland +UBERON_0001008 renal system UBERON_0009972 ureteropelvic junction +UBERON_0001008 renal system UBERON_0009973 ureterovesical junction +UBERON_0001008 renal system UBERON_0010151 duct of bulbourethral gland +UBERON_0001008 renal system UBERON_0010181 straight venules of kidney +UBERON_0001008 renal system UBERON_0010186 male urethral gland +UBERON_0001008 renal system UBERON_0010187 female urethral gland +UBERON_0001008 renal system UBERON_0010390 lumen of urethra +UBERON_0001008 renal system UBERON_0010418 urethral opening +UBERON_0001008 renal system UBERON_0010531 metanephros induced blastemal cells +UBERON_0001008 renal system UBERON_0010532 primitive nephron +UBERON_0001008 renal system UBERON_0010533 metanephros cortex +UBERON_0001008 renal system UBERON_0010534 primitive mesonephric nephron +UBERON_0001008 renal system UBERON_0010535 primitive metanephric nephron +UBERON_0001008 renal system UBERON_0010537 mesonephric nephron progenitor +UBERON_0001008 renal system UBERON_0011143 upper urinary tract +UBERON_0001008 renal system UBERON_0011149 Marshall's gland +UBERON_0001008 renal system UBERON_0011183 corpus spongiosum of penis +UBERON_0001008 renal system UBERON_0011199 prostatic utricle +UBERON_0001008 renal system UBERON_0011202 urachus epithelium +UBERON_0001008 renal system UBERON_0011203 urachus mesenchyme +UBERON_0001008 renal system UBERON_0011379 male external urethral sphincter +UBERON_0001008 renal system UBERON_0011380 female external urethral sphincter +UBERON_0001008 renal system UBERON_0011574 mesonephric duct lumen +UBERON_0001008 renal system UBERON_0011830 duct of lesser vestibular gland +UBERON_0001008 renal system UBERON_0011947 ureter luminal urothelium +UBERON_0001008 renal system UBERON_0011948 ureter subluminal urothelium +UBERON_0001008 renal system UBERON_0012238 ureteric bud trunk +UBERON_0001008 renal system UBERON_0012239 urinary bladder vasculature +UBERON_0001008 renal system UBERON_0012240 urethral meatus +UBERON_0001008 renal system UBERON_0012241 male urethral meatus +UBERON_0001008 renal system UBERON_0012242 internal urethral orifice +UBERON_0001008 renal system UBERON_0012294 navicular fossa of spongiose part of urethra +UBERON_0001008 renal system UBERON_0012295 GuΓ©rin's valve +UBERON_0001008 renal system UBERON_0012296 urethral crest +UBERON_0001008 renal system UBERON_0012297 male urethral crest +UBERON_0001008 renal system UBERON_0012298 female urethral crest +UBERON_0001008 renal system UBERON_0012299 mucosa of urethra +UBERON_0001008 renal system UBERON_0012301 female membranous urethra +UBERON_0001008 renal system UBERON_0012302 male membranous urethra +UBERON_0001008 renal system UBERON_0012303 ureteral orifice +UBERON_0001008 renal system UBERON_0012351 urachal lumen +UBERON_0001008 renal system UBERON_0012352 mesangial matrix +UBERON_0001008 renal system UBERON_0012378 muscle layer of urinary bladder +UBERON_0001008 renal system UBERON_0012428 proximal convoluted tubule brush border +UBERON_0001008 renal system UBERON_0012441 endothelium of peritubular capillary +UBERON_0001008 renal system UBERON_0013244 vaginal plate +UBERON_0001008 renal system UBERON_0013245 sinovaginal bulb +UBERON_0001008 renal system UBERON_0014388 kidney collecting duct epithelium +UBERON_0001008 renal system UBERON_0014401 renal venous blood vessel +UBERON_0001008 renal system UBERON_0014464 renal fat pad +UBERON_0001008 renal system UBERON_0014782 allantois of embryonic urinary system +UBERON_0001008 renal system UBERON_0015418 urethra mesenchymal layer +UBERON_0001008 renal system UBERON_0015420 ureteral valve +UBERON_0001008 renal system UBERON_0015777 transitional epithelium of prostatic urethra +UBERON_0001008 renal system UBERON_0016500 muscularis mucosa of fundus of urinary bladder +UBERON_0001008 renal system UBERON_0016505 Mullerian tubercle +UBERON_0001008 renal system UBERON_0016510 epithelium of male urethra +UBERON_0001008 renal system UBERON_0016515 muscular layer of prostatic urethra +UBERON_0001008 renal system UBERON_0016516 lamina propria of prostatic urethra +UBERON_0001008 renal system UBERON_0016520 epithelium of female urethra +UBERON_0001008 renal system UBERON_0016524 muscle layer of spongiose part of urethra +UBERON_0001008 renal system UBERON_0018113 left kidney interstitium +UBERON_0001008 renal system UBERON_0018114 right kidney interstitium +UBERON_0001008 renal system UBERON_0018115 left renal pelvis +UBERON_0001008 renal system UBERON_0018116 right renal pelvis +UBERON_0001008 renal system UBERON_0018117 left renal cortex interstitium +UBERON_0001008 renal system UBERON_0018118 right renal cortex interstitium +UBERON_0001008 renal system UBERON_0018119 left renal medulla interstitium +UBERON_0001008 renal system UBERON_0018120 right renal medulla interstitium +UBERON_0001008 renal system UBERON_0034770 bulbourethral gland epithelium +UBERON_0001008 renal system UBERON_0034884 juxtaglomerular arteriole +UBERON_0001008 renal system UBERON_0034996 outer renal medulla loop of Henle +UBERON_0001008 renal system UBERON_0034997 renal medulla loop of Henle +UBERON_0001008 renal system UBERON_0035368 anterior surface of kidney +UBERON_0001008 renal system UBERON_0035471 posterior surface of kidney +UBERON_0001008 renal system UBERON_0035758 peritubular capillary plexus of kidney +UBERON_0001008 renal system UBERON_0035762 capillary network of kidney +UBERON_0001008 renal system UBERON_0036295 renal pelvis/ureter +UBERON_0001008 renal system UBERON_0036375 wall of right ureter +UBERON_0001008 renal system UBERON_0036376 wall of left ureter +UBERON_0001008 renal system UBERON_0036521 wall of urethra +UBERON_0001008 renal system UBERON_0037447 wall of male urethra +UBERON_0001008 renal system UBERON_0037455 wall of female urethra +UBERON_0001008 renal system UBERON_2001055 pronephric duct opening +UBERON_0001008 renal system UBERON_2001200 corpuscles of Stannius +UBERON_0001008 renal system UBERON_2001293 posterior kidney +UBERON_0001008 renal system UBERON_2002225 posterior pronephric duct +UBERON_0001008 renal system UBERON_2005292 distal late tubule +UBERON_0001008 renal system UBERON_2005311 pronephric glomerular capsule epithelium +UBERON_0001008 renal system UBERON_3010392 mesonephric early proximal tubule +UBERON_0001008 renal system UBERON_3010393 mesonephric late distal segment +UBERON_0001008 renal system UBERON_3010394 mesonephric late proximal tubule +UBERON_0001008 renal system UBERON_3011120 early proximal tubule +UBERON_0001008 renal system UBERON_3011121 late distal segment +UBERON_0001008 renal system UBERON_8410073 medullary region of kidney +UBERON_0001009 circulatory system UBERON_0000102 lung vasculature +UBERON_0001009 circulatory system UBERON_0000415 artery wall +UBERON_0001009 circulatory system UBERON_0000442 right testicular vein +UBERON_0001009 circulatory system UBERON_0000443 left testicular vein +UBERON_0001009 circulatory system UBERON_0000457 cavernous artery +UBERON_0001009 circulatory system UBERON_0000946 cardial valve +UBERON_0001009 circulatory system UBERON_0000947 aorta +UBERON_0001009 circulatory system UBERON_0000948 heart +UBERON_0001009 circulatory system UBERON_0000985 axillary vein +UBERON_0001009 circulatory system UBERON_0001011 hemolymph +UBERON_0001009 circulatory system UBERON_0001070 external carotid artery +UBERON_0001009 circulatory system UBERON_0001071 superficial cervical artery +UBERON_0001009 circulatory system UBERON_0001072 posterior vena cava +UBERON_0001009 circulatory system UBERON_0001074 pericardial cavity +UBERON_0001009 circulatory system UBERON_0001081 endocardium of ventricle +UBERON_0001009 circulatory system UBERON_0001082 epicardium of ventricle +UBERON_0001009 circulatory system UBERON_0001083 myocardium of ventricle +UBERON_0001009 circulatory system UBERON_0001099 subcostal vein +UBERON_0001009 circulatory system UBERON_0001101 external jugular vein +UBERON_0001009 circulatory system UBERON_0001104 anterior jugular vein +UBERON_0001009 circulatory system UBERON_0001106 cephalic vein +UBERON_0001009 circulatory system UBERON_0001133 cardiac muscle tissue +UBERON_0001009 circulatory system UBERON_0001138 superior mesenteric vein +UBERON_0001009 circulatory system UBERON_0001139 common iliac vein +UBERON_0001009 circulatory system UBERON_0001140 renal vein +UBERON_0001009 circulatory system UBERON_0001141 right renal vein +UBERON_0001009 circulatory system UBERON_0001142 left renal vein +UBERON_0001009 circulatory system UBERON_0001143 hepatic vein +UBERON_0001009 circulatory system UBERON_0001144 testicular vein +UBERON_0001009 circulatory system UBERON_0001145 ovarian vein +UBERON_0001009 circulatory system UBERON_0001146 suprarenal vein +UBERON_0001009 circulatory system UBERON_0001182 superior mesenteric artery +UBERON_0001009 circulatory system UBERON_0001183 inferior mesenteric artery +UBERON_0001009 circulatory system UBERON_0001184 renal artery +UBERON_0001009 circulatory system UBERON_0001185 right renal artery +UBERON_0001009 circulatory system UBERON_0001186 left renal artery +UBERON_0001009 circulatory system UBERON_0001187 testicular artery +UBERON_0001009 circulatory system UBERON_0001188 right testicular artery +UBERON_0001009 circulatory system UBERON_0001189 left testicular artery +UBERON_0001009 circulatory system UBERON_0001190 ovarian artery +UBERON_0001009 circulatory system UBERON_0001191 common iliac artery +UBERON_0001009 circulatory system UBERON_0001192 left gastric artery +UBERON_0001009 circulatory system UBERON_0001193 hepatic artery +UBERON_0001009 circulatory system UBERON_0001194 splenic artery +UBERON_0001009 circulatory system UBERON_0001195 inferior pancreaticoduodenal artery +UBERON_0001009 circulatory system UBERON_0001196 middle colic artery +UBERON_0001009 circulatory system UBERON_0001197 ileocolic artery +UBERON_0001009 circulatory system UBERON_0001198 superior suprarenal artery +UBERON_0001009 circulatory system UBERON_0001214 pancreatic tributary of splenic vein +UBERON_0001009 circulatory system UBERON_0001215 inferior mesenteric vein +UBERON_0001009 circulatory system UBERON_0001216 jejunal vein +UBERON_0001009 circulatory system UBERON_0001217 ileal vein +UBERON_0001009 circulatory system UBERON_0001218 middle colic vein +UBERON_0001009 circulatory system UBERON_0001219 ileocolic vein +UBERON_0001009 circulatory system UBERON_0001281 hepatic sinusoid +UBERON_0001009 circulatory system UBERON_0001308 external iliac artery +UBERON_0001009 circulatory system UBERON_0001309 internal iliac artery +UBERON_0001009 circulatory system UBERON_0001310 umbilical artery +UBERON_0001009 circulatory system UBERON_0001311 inferior vesical artery +UBERON_0001009 circulatory system UBERON_0001312 superior vesical artery +UBERON_0001009 circulatory system UBERON_0001313 iliolumbar artery +UBERON_0001009 circulatory system UBERON_0001314 obturator artery +UBERON_0001009 circulatory system UBERON_0001315 superior gluteal artery +UBERON_0001009 circulatory system UBERON_0001316 external iliac vein +UBERON_0001009 circulatory system UBERON_0001317 internal iliac vein +UBERON_0001009 circulatory system UBERON_0001318 inferior vesical vein +UBERON_0001009 circulatory system UBERON_0001319 vaginal vein +UBERON_0001009 circulatory system UBERON_0001320 iliolumbar vein +UBERON_0001009 circulatory system UBERON_0001321 obturator vein +UBERON_0001009 circulatory system UBERON_0001330 pampiniform plexus +UBERON_0001009 circulatory system UBERON_0001340 dorsal artery of penis +UBERON_0001009 circulatory system UBERON_0001354 inferior epigastric artery +UBERON_0001009 circulatory system UBERON_0001355 deep femoral artery +UBERON_0001009 circulatory system UBERON_0001356 medial circumflex femoral artery +UBERON_0001009 circulatory system UBERON_0001357 inferior rectal artery +UBERON_0001009 circulatory system UBERON_0001358 perineal artery +UBERON_0001009 circulatory system UBERON_0001360 deep circumflex iliac vein +UBERON_0001009 circulatory system UBERON_0001361 femoral vein +UBERON_0001009 circulatory system UBERON_0001362 perineal vein +UBERON_0001009 circulatory system UBERON_0001363 great saphenous vein +UBERON_0001009 circulatory system UBERON_0001390 sural artery +UBERON_0001009 circulatory system UBERON_0001394 axillary artery +UBERON_0001009 circulatory system UBERON_0001395 thoraco-acromial artery +UBERON_0001009 circulatory system UBERON_0001396 lateral thoracic artery +UBERON_0001009 circulatory system UBERON_0001397 subscapular artery +UBERON_0001009 circulatory system UBERON_0001398 brachial artery +UBERON_0001009 circulatory system UBERON_0001399 deep brachial artery +UBERON_0001009 circulatory system UBERON_0001404 radial artery +UBERON_0001009 circulatory system UBERON_0001406 ulnar artery +UBERON_0001009 circulatory system UBERON_0001410 common palmar digital artery +UBERON_0001009 circulatory system UBERON_0001411 basilic vein +UBERON_0001009 circulatory system UBERON_0001412 common palmar digital vein +UBERON_0001009 circulatory system UBERON_0001413 brachial vein +UBERON_0001009 circulatory system UBERON_0001414 median basilic vein +UBERON_0001009 circulatory system UBERON_0001420 subscapular vein +UBERON_0001009 circulatory system UBERON_0001422 facial lymphatic vessel +UBERON_0001009 circulatory system UBERON_0001425 pectoral lymphatic vessel +UBERON_0001009 circulatory system UBERON_0001426 jugular lymphatic vessel +UBERON_0001009 circulatory system UBERON_0001472 vaginal venous plexus +UBERON_0001009 circulatory system UBERON_0001473 lymphatic vessel +UBERON_0001009 circulatory system UBERON_0001496 ascending aorta +UBERON_0001009 circulatory system UBERON_0001508 arch of aorta +UBERON_0001009 circulatory system UBERON_0001514 descending aorta +UBERON_0001009 circulatory system UBERON_0001515 thoracic aorta +UBERON_0001009 circulatory system UBERON_0001516 abdominal aorta +UBERON_0001009 circulatory system UBERON_0001529 brachiocephalic artery +UBERON_0001009 circulatory system UBERON_0001530 common carotid artery plus branches +UBERON_0001009 circulatory system UBERON_0001531 right common carotid artery plus branches +UBERON_0001009 circulatory system UBERON_0001532 internal carotid artery +UBERON_0001009 circulatory system UBERON_0001533 subclavian artery +UBERON_0001009 circulatory system UBERON_0001534 right subclavian artery +UBERON_0001009 circulatory system UBERON_0001535 vertebral artery +UBERON_0001009 circulatory system UBERON_0001536 left common carotid artery plus branches +UBERON_0001009 circulatory system UBERON_0001537 anterior tibial artery +UBERON_0001009 circulatory system UBERON_0001538 posterior tibial artery +UBERON_0001009 circulatory system UBERON_0001539 dorsalis pedis artery +UBERON_0001009 circulatory system UBERON_0001540 peroneal artery +UBERON_0001009 circulatory system UBERON_0001541 medial plantar artery +UBERON_0001009 circulatory system UBERON_0001544 popliteal vein +UBERON_0001009 circulatory system UBERON_0001545 anterior tibial vein +UBERON_0001009 circulatory system UBERON_0001546 posterior tibial vein +UBERON_0001009 circulatory system UBERON_0001547 small saphenous vein +UBERON_0001009 circulatory system UBERON_0001548 lateral marginal vein +UBERON_0001009 circulatory system UBERON_0001549 dorsal metatarsal vein +UBERON_0001009 circulatory system UBERON_0001550 medial marginal vein +UBERON_0001009 circulatory system UBERON_0001551 vein of hindlimb zeugopod +UBERON_0001009 circulatory system UBERON_0001552 kidney arcuate artery +UBERON_0001009 circulatory system UBERON_0001553 medial tarsal artery +UBERON_0001009 circulatory system UBERON_0001561 subcostal artery +UBERON_0001009 circulatory system UBERON_0001584 left subclavian artery +UBERON_0001009 circulatory system UBERON_0001585 anterior vena cava +UBERON_0001009 circulatory system UBERON_0001586 internal jugular vein +UBERON_0001009 circulatory system UBERON_0001587 subclavian vein +UBERON_0001009 circulatory system UBERON_0001588 vertebral vein +UBERON_0001009 circulatory system UBERON_0001589 internal thoracic vein +UBERON_0001009 circulatory system UBERON_0001590 pericardiacophrenic vein +UBERON_0001009 circulatory system UBERON_0001591 thymic vein +UBERON_0001009 circulatory system UBERON_0001592 bronchial vein +UBERON_0001009 circulatory system UBERON_0001593 venous plexus +UBERON_0001009 circulatory system UBERON_0001594 azygos vein +UBERON_0001009 circulatory system UBERON_0001610 lingual artery +UBERON_0001009 circulatory system UBERON_0001611 sublingual artery +UBERON_0001009 circulatory system UBERON_0001612 facial artery +UBERON_0001009 circulatory system UBERON_0001613 occipital artery +UBERON_0001009 circulatory system UBERON_0001614 superficial temporal artery +UBERON_0001009 circulatory system UBERON_0001615 transverse facial artery +UBERON_0001009 circulatory system UBERON_0001616 maxillary artery +UBERON_0001009 circulatory system UBERON_0001617 mental artery +UBERON_0001009 circulatory system UBERON_0001618 buccal artery +UBERON_0001009 circulatory system UBERON_0001619 ophthalmic artery +UBERON_0001009 circulatory system UBERON_0001620 central retinal artery +UBERON_0001009 circulatory system UBERON_0001621 coronary artery +UBERON_0001009 circulatory system UBERON_0001622 lacrimal artery +UBERON_0001009 circulatory system UBERON_0001623 dorsal nasal artery +UBERON_0001009 circulatory system UBERON_0001624 anterior cerebral artery +UBERON_0001009 circulatory system UBERON_0001625 right coronary artery +UBERON_0001009 circulatory system UBERON_0001626 left coronary artery +UBERON_0001009 circulatory system UBERON_0001627 middle cerebral artery +UBERON_0001009 circulatory system UBERON_0001628 posterior communicating artery +UBERON_0001009 circulatory system UBERON_0001629 carotid body +UBERON_0001009 circulatory system UBERON_0001631 thoracic duct +UBERON_0001009 circulatory system UBERON_0001632 temporal artery +UBERON_0001009 circulatory system UBERON_0001633 basilar artery +UBERON_0001009 circulatory system UBERON_0001634 mesencephalic artery +UBERON_0001009 circulatory system UBERON_0001635 superior cerebellar artery +UBERON_0001009 circulatory system UBERON_0001636 posterior cerebral artery +UBERON_0001009 circulatory system UBERON_0001637 artery +UBERON_0001009 circulatory system UBERON_0001638 vein +UBERON_0001009 circulatory system UBERON_0001639 hepatic portal vein +UBERON_0001009 circulatory system UBERON_0001640 celiac artery +UBERON_0001009 circulatory system UBERON_0001641 transverse sinus +UBERON_0001009 circulatory system UBERON_0001642 superior sagittal sinus +UBERON_0001009 circulatory system UBERON_0001651 right pulmonary artery +UBERON_0001009 circulatory system UBERON_0001652 left pulmonary artery +UBERON_0001009 circulatory system UBERON_0001653 facial vein +UBERON_0001009 circulatory system UBERON_0001654 supraorbital vein +UBERON_0001009 circulatory system UBERON_0001655 submental vein +UBERON_0001009 circulatory system UBERON_0001656 retromandibular vein +UBERON_0001009 circulatory system UBERON_0001657 superficial temporal vein +UBERON_0001009 circulatory system UBERON_0001658 middle temporal vein +UBERON_0001009 circulatory system UBERON_0001659 transverse facial vein +UBERON_0001009 circulatory system UBERON_0001660 maxillary vein +UBERON_0001009 circulatory system UBERON_0001661 deep temporal vein +UBERON_0001009 circulatory system UBERON_0001662 anterior auricular vein +UBERON_0001009 circulatory system UBERON_0001663 cerebral vein +UBERON_0001009 circulatory system UBERON_0001664 inferior cerebral vein +UBERON_0001009 circulatory system UBERON_0001668 cerebellar vein +UBERON_0001009 circulatory system UBERON_0001669 superior cerebellar vein +UBERON_0001009 circulatory system UBERON_0001670 inferior cerebellar vein +UBERON_0001009 circulatory system UBERON_0001671 temporal vein +UBERON_0001009 circulatory system UBERON_0001672 anterior cerebral vein +UBERON_0001009 circulatory system UBERON_0001673 central retinal vein +UBERON_0001009 circulatory system UBERON_0001674 masseteric vein +UBERON_0001009 circulatory system UBERON_0001776 optic choroid +UBERON_0001009 circulatory system UBERON_0001884 phrenic nerve +UBERON_0001009 circulatory system UBERON_0001886 choroid plexus +UBERON_0001009 circulatory system UBERON_0001889 trunk of phrenic nerve +UBERON_0001009 circulatory system UBERON_0001915 endothelium of capillary +UBERON_0001009 circulatory system UBERON_0001916 endothelium of arteriole +UBERON_0001009 circulatory system UBERON_0001917 endothelium of artery +UBERON_0001009 circulatory system UBERON_0001918 endothelium of venule +UBERON_0001009 circulatory system UBERON_0001919 endothelium of vein +UBERON_0001009 circulatory system UBERON_0001979 venule +UBERON_0001009 circulatory system UBERON_0001980 arteriole +UBERON_0001009 circulatory system UBERON_0001981 blood vessel +UBERON_0001009 circulatory system UBERON_0001982 capillary +UBERON_0001009 circulatory system UBERON_0002011 thoracodorsal artery +UBERON_0001009 circulatory system UBERON_0002012 pulmonary artery +UBERON_0001009 circulatory system UBERON_0002016 pulmonary vein +UBERON_0001009 circulatory system UBERON_0002017 portal vein +UBERON_0001009 circulatory system UBERON_0002039 inferior phrenic vein +UBERON_0001009 circulatory system UBERON_0002040 bronchial artery +UBERON_0001009 circulatory system UBERON_0002042 lymphatic vessel endothelium +UBERON_0001009 circulatory system UBERON_0002049 vasculature +UBERON_0001009 circulatory system UBERON_0002056 inferior suprarenal artery +UBERON_0001009 circulatory system UBERON_0002057 phrenic artery +UBERON_0001009 circulatory system UBERON_0002060 femoral artery +UBERON_0001009 circulatory system UBERON_0002061 truncus arteriosus +UBERON_0001009 circulatory system UBERON_0002062 endocardial cushion +UBERON_0001009 circulatory system UBERON_0002063 sinus venosus +UBERON_0001009 circulatory system UBERON_0002064 common cardinal vein +UBERON_0001009 circulatory system UBERON_0002065 posterior cardinal vein +UBERON_0001009 circulatory system UBERON_0002066 umbilical vein +UBERON_0001009 circulatory system UBERON_0002070 superior pancreaticoduodenal artery +UBERON_0001009 circulatory system UBERON_0002078 right cardiac atrium +UBERON_0001009 circulatory system UBERON_0002079 left cardiac atrium +UBERON_0001009 circulatory system UBERON_0002080 heart right ventricle +UBERON_0001009 circulatory system UBERON_0002081 cardiac atrium +UBERON_0001009 circulatory system UBERON_0002082 cardiac ventricle +UBERON_0001009 circulatory system UBERON_0002083 ductus venosus +UBERON_0001009 circulatory system UBERON_0002084 heart left ventricle +UBERON_0001009 circulatory system UBERON_0002085 interatrial septum +UBERON_0001009 circulatory system UBERON_0002086 sinoatrial valve +UBERON_0001009 circulatory system UBERON_0002087 atrioventricular canal +UBERON_0001009 circulatory system UBERON_0002088 lateral thoracic vein +UBERON_0001009 circulatory system UBERON_0002089 thoracodorsal vein +UBERON_0001009 circulatory system UBERON_0002094 interventricular septum +UBERON_0001009 circulatory system UBERON_0002098 apex of heart +UBERON_0001009 circulatory system UBERON_0002099 cardiac septum +UBERON_0001009 circulatory system UBERON_0002111 artery smooth muscle tissue +UBERON_0001009 circulatory system UBERON_0002133 atrioventricular valve +UBERON_0001009 circulatory system UBERON_0002134 tricuspid valve +UBERON_0001009 circulatory system UBERON_0002135 mitral valve +UBERON_0001009 circulatory system UBERON_0002137 aortic valve +UBERON_0001009 circulatory system UBERON_0002146 pulmonary valve +UBERON_0001009 circulatory system UBERON_0002165 endocardium +UBERON_0001009 circulatory system UBERON_0002166 endocardium of atrium +UBERON_0001009 circulatory system UBERON_0002200 vasculature of head +UBERON_0001009 circulatory system UBERON_0002201 vasculature of trunk +UBERON_0001009 circulatory system UBERON_0002203 vasculature of eye +UBERON_0001009 circulatory system UBERON_0002243 cutaneous vein +UBERON_0001009 circulatory system UBERON_0002248 transverse pericardial sinus +UBERON_0001009 circulatory system UBERON_0002249 median artery +UBERON_0001009 circulatory system UBERON_0002250 popliteal artery +UBERON_0001009 circulatory system UBERON_0002270 hyaloid artery +UBERON_0001009 circulatory system UBERON_0002288 choroid plexus of third ventricle +UBERON_0001009 circulatory system UBERON_0002290 choroid plexus of fourth ventricle +UBERON_0001009 circulatory system UBERON_0002302 myocardium of atrium +UBERON_0001009 circulatory system UBERON_0002307 choroid plexus of lateral ventricle +UBERON_0001009 circulatory system UBERON_0002320 glomerular mesangium +UBERON_0001009 circulatory system UBERON_0002333 pulmonary trunk +UBERON_0001009 circulatory system UBERON_0002345 descending thoracic aorta +UBERON_0001009 circulatory system UBERON_0002348 epicardium +UBERON_0001009 circulatory system UBERON_0002349 heart muscle +UBERON_0001009 circulatory system UBERON_0002349 myocardium +UBERON_0001009 circulatory system UBERON_0002350 conducting system of heart +UBERON_0001009 circulatory system UBERON_0002351 sinoatrial node +UBERON_0001009 circulatory system UBERON_0002352 atrioventricular node +UBERON_0001009 circulatory system UBERON_0002353 bundle of His +UBERON_0001009 circulatory system UBERON_0002354 cardiac Purkinje fiber +UBERON_0001009 circulatory system UBERON_0002357 serous pericardium +UBERON_0001009 circulatory system UBERON_0002359 fibrous pericardium +UBERON_0001009 circulatory system UBERON_0002391 lymph +UBERON_0001009 circulatory system UBERON_0002406 pericardial sac +UBERON_0001009 circulatory system UBERON_0002407 pericardium +UBERON_0001009 circulatory system UBERON_0002408 parietal serous pericardium +UBERON_0001009 circulatory system UBERON_0002425 visceral serous pericardium +UBERON_0001009 circulatory system UBERON_0002443 choroidal blood vessel +UBERON_0001009 circulatory system UBERON_0002454 dorsal metacarpal artery +UBERON_0001009 circulatory system UBERON_0002455 common plantar digital arteries +UBERON_0001009 circulatory system UBERON_0002456 internal thoracic artery +UBERON_0001009 circulatory system UBERON_0002457 intersomitic artery +UBERON_0001009 circulatory system UBERON_0002458 spinal artery +UBERON_0001009 circulatory system UBERON_0002459 inferior palpebral vein +UBERON_0001009 circulatory system UBERON_0002460 vesical vein +UBERON_0001009 circulatory system UBERON_0002493 uterine artery +UBERON_0001009 circulatory system UBERON_0002494 papillary muscle of heart +UBERON_0001009 circulatory system UBERON_0002505 spiral modiolar artery +UBERON_0001009 circulatory system UBERON_0002511 trabecula carnea +UBERON_0001009 circulatory system UBERON_0002522 tunica media +UBERON_0001009 circulatory system UBERON_0003084 heart primordium +UBERON_0001009 circulatory system UBERON_0003085 ventral aorta +UBERON_0001009 circulatory system UBERON_0003086 caudal artery +UBERON_0001009 circulatory system UBERON_0003087 anterior cardinal vein +UBERON_0001009 circulatory system UBERON_0003088 caudal vein +UBERON_0001009 circulatory system UBERON_0003105 dorsal lateral plate region +UBERON_0001009 circulatory system UBERON_0003118 pharyngeal arch artery 1 +UBERON_0001009 circulatory system UBERON_0003119 pharyngeal arch artery 2 +UBERON_0001009 circulatory system UBERON_0003120 pharyngeal arch artery 3 +UBERON_0001009 circulatory system UBERON_0003121 pharyngeal arch artery 4 +UBERON_0001009 circulatory system UBERON_0003122 pharyngeal arch artery 5 +UBERON_0001009 circulatory system UBERON_0003123 pharyngeal arch artery 6 +UBERON_0001009 circulatory system UBERON_0003210 blood-cerebrospinal fluid barrier +UBERON_0001009 circulatory system UBERON_0003282 mesentery of heart +UBERON_0001009 circulatory system UBERON_0003304 mesoderm blood island +UBERON_0001009 circulatory system UBERON_0003369 fossa ovalis of heart +UBERON_0001009 circulatory system UBERON_0003378 cardiac muscle of auricular region +UBERON_0001009 circulatory system UBERON_0003379 cardiac muscle of right atrium +UBERON_0001009 circulatory system UBERON_0003380 cardiac muscle of left atrium +UBERON_0001009 circulatory system UBERON_0003381 cardiac muscle of right ventricle +UBERON_0001009 circulatory system UBERON_0003382 cardiac muscle of left ventricle +UBERON_0001009 circulatory system UBERON_0003383 cardiac muscle tissue of interventricular septum +UBERON_0001009 circulatory system UBERON_0003388 mesothelium of pericardial cavity +UBERON_0001009 circulatory system UBERON_0003452 trabecula carnea cardiac muscle tissue +UBERON_0001009 circulatory system UBERON_0003456 respiratory system lymphatic vessel +UBERON_0001009 circulatory system UBERON_0003468 ureteric segment of renal artery +UBERON_0001009 circulatory system UBERON_0003469 respiratory system artery +UBERON_0001009 circulatory system UBERON_0003470 artery of upper lip +UBERON_0001009 circulatory system UBERON_0003471 artery of lower lip +UBERON_0001009 circulatory system UBERON_0003472 cerebellar artery +UBERON_0001009 circulatory system UBERON_0003473 thoracic cavity artery +UBERON_0001009 circulatory system UBERON_0003474 meningeal artery +UBERON_0001009 circulatory system UBERON_0003475 ureteric vein +UBERON_0001009 circulatory system UBERON_0003476 respiratory system venous blood vessel +UBERON_0001009 circulatory system UBERON_0003477 vein of upper lip +UBERON_0001009 circulatory system UBERON_0003478 vein of lower lip +UBERON_0001009 circulatory system UBERON_0003479 thoracic cavity vein +UBERON_0001009 circulatory system UBERON_0003480 vein of clitoris +UBERON_0001009 circulatory system UBERON_0003481 tail vein +UBERON_0001009 circulatory system UBERON_0003482 vein of trabecular bone +UBERON_0001009 circulatory system UBERON_0003489 respiratory system capillary endothelium +UBERON_0001009 circulatory system UBERON_0003494 respiratory system venule +UBERON_0001009 circulatory system UBERON_0003495 respiratory system arteriole +UBERON_0001009 circulatory system UBERON_0003496 head blood vessel +UBERON_0001009 circulatory system UBERON_0003497 abdomen blood vessel +UBERON_0001009 circulatory system UBERON_0003498 heart blood vessel +UBERON_0001009 circulatory system UBERON_0003499 brain blood vessel +UBERON_0001009 circulatory system UBERON_0003500 corneal blood vessel +UBERON_0001009 circulatory system UBERON_0003501 retina blood vessel +UBERON_0001009 circulatory system UBERON_0003502 neck blood vessel +UBERON_0001009 circulatory system UBERON_0003503 leg blood vessel +UBERON_0001009 circulatory system UBERON_0003504 respiratory system blood vessel +UBERON_0001009 circulatory system UBERON_0003505 trachea blood vessel +UBERON_0001009 circulatory system UBERON_0003506 chest blood vessel +UBERON_0001009 circulatory system UBERON_0003507 arm blood vessel +UBERON_0001009 circulatory system UBERON_0003508 pedal digit blood vessel +UBERON_0001009 circulatory system UBERON_0003509 arterial blood vessel +UBERON_0001009 circulatory system UBERON_0003510 eyelid blood vessel +UBERON_0001009 circulatory system UBERON_0003511 iris blood vessel +UBERON_0001009 circulatory system UBERON_0003512 lung blood vessel +UBERON_0001009 circulatory system UBERON_0003513 trunk blood vessel +UBERON_0001009 circulatory system UBERON_0003514 limb blood vessel +UBERON_0001009 circulatory system UBERON_0003515 forelimb blood vessel +UBERON_0001009 circulatory system UBERON_0003516 hindlimb blood vessel +UBERON_0001009 circulatory system UBERON_0003517 kidney blood vessel +UBERON_0001009 circulatory system UBERON_0003518 main bronchus blood vessel +UBERON_0001009 circulatory system UBERON_0003519 thoracic cavity blood vessel +UBERON_0001009 circulatory system UBERON_0003520 pelvis blood vessel +UBERON_0001009 circulatory system UBERON_0003521 pes blood vessel +UBERON_0001009 circulatory system UBERON_0003522 manual digit blood vessel +UBERON_0001009 circulatory system UBERON_0003523 manus blood vessel +UBERON_0001009 circulatory system UBERON_0003524 tail blood vessel +UBERON_0001009 circulatory system UBERON_0003526 respiratory system capillary +UBERON_0001009 circulatory system UBERON_0003527 kidney capillary +UBERON_0001009 circulatory system UBERON_0003529 respiratory system lymphatic vessel endothelium +UBERON_0001009 circulatory system UBERON_0003609 aorta elastic tissue +UBERON_0001009 circulatory system UBERON_0003610 heart elastic tissue +UBERON_0001009 circulatory system UBERON_0003613 cardiovascular system elastic tissue +UBERON_0001009 circulatory system UBERON_0003614 blood vessel elastic tissue +UBERON_0001009 circulatory system UBERON_0003618 aorta tunica media +UBERON_0001009 circulatory system UBERON_0003619 aorta tunica intima +UBERON_0001009 circulatory system UBERON_0003643 respiratory system arterial blood vessel +UBERON_0001009 circulatory system UBERON_0003644 kidney arterial blood vessel +UBERON_0001009 circulatory system UBERON_0003707 sinus of Valsalva +UBERON_0001009 circulatory system UBERON_0003708 carotid sinus +UBERON_0001009 circulatory system UBERON_0003709 circle of Willis +UBERON_0001009 circulatory system UBERON_0003710 vasa vasorum +UBERON_0001009 circulatory system UBERON_0003711 brachiocephalic vein +UBERON_0001009 circulatory system UBERON_0003712 cavernous sinus +UBERON_0001009 circulatory system UBERON_0003713 splenic vein +UBERON_0001009 circulatory system UBERON_0003834 thoracic segment blood vessel +UBERON_0001009 circulatory system UBERON_0003835 abdominal segment blood vessel +UBERON_0001009 circulatory system UBERON_0003847 thyroid artery +UBERON_0001009 circulatory system UBERON_0003848 gonadal vein +UBERON_0001009 circulatory system UBERON_0003906 cardiac jelly +UBERON_0001009 circulatory system UBERON_0003907 left atrioventricular canal +UBERON_0001009 circulatory system UBERON_0003908 right atrioventricular canal +UBERON_0001009 circulatory system UBERON_0003909 sinusoid +UBERON_0001009 circulatory system UBERON_0003910 splenic sinusoid +UBERON_0001009 circulatory system UBERON_0003911 choroid plexus epithelium +UBERON_0001009 circulatory system UBERON_0003920 venous blood vessel +UBERON_0001009 circulatory system UBERON_0003930 atrioventricular canal endocardium +UBERON_0001009 circulatory system UBERON_0003957 Bruch's membrane +UBERON_0001009 circulatory system UBERON_0003970 placental labyrinth vasculature +UBERON_0001009 circulatory system UBERON_0003983 conus arteriosus +UBERON_0001009 circulatory system UBERON_0004019 baroreceptor +UBERON_0001009 circulatory system UBERON_0004029 canal of Schlemm +UBERON_0001009 circulatory system UBERON_0004030 aqueous vein +UBERON_0001009 circulatory system UBERON_0004087 vena cava +UBERON_0001009 circulatory system UBERON_0004115 blood vessel of tympanic cavity +UBERON_0001009 circulatory system UBERON_0004118 vasculature of iris +UBERON_0001009 circulatory system UBERON_0004123 myocardial layer +UBERON_0001009 circulatory system UBERON_0004124 myocardium trabecular layer +UBERON_0001009 circulatory system UBERON_0004125 myocardial compact layer +UBERON_0001009 circulatory system UBERON_0004126 trabecular layer of ventricle +UBERON_0001009 circulatory system UBERON_0004127 compact layer of ventricle +UBERON_0001009 circulatory system UBERON_0004142 outflow tract septum +UBERON_0001009 circulatory system UBERON_0004145 outflow tract +UBERON_0001009 circulatory system UBERON_0004146 His-Purkinje system +UBERON_0001009 circulatory system UBERON_0004148 cardiac vein +UBERON_0001009 circulatory system UBERON_0004149 ventriculo bulbo valve +UBERON_0001009 circulatory system UBERON_0004150 coronary sinus valve +UBERON_0001009 circulatory system UBERON_0004151 cardiac chamber +UBERON_0001009 circulatory system UBERON_0004152 bulbus arteriosus +UBERON_0001009 circulatory system UBERON_0004153 ventricular septum intermedium +UBERON_0001009 circulatory system UBERON_0004154 atrial septum primum +UBERON_0001009 circulatory system UBERON_0004155 atrial septum secundum +UBERON_0001009 circulatory system UBERON_0004159 atrial septum intermedium +UBERON_0001009 circulatory system UBERON_0004160 proepicardium +UBERON_0001009 circulatory system UBERON_0004162 pulmonary myocardium +UBERON_0001009 circulatory system UBERON_0004178 aorta smooth muscle tissue +UBERON_0001009 circulatory system UBERON_0004183 placental labyrinth blood vessel +UBERON_0001009 circulatory system UBERON_0004189 glomerular endothelium +UBERON_0001009 circulatory system UBERON_0004190 renal glomerulus vasculature +UBERON_0001009 circulatory system UBERON_0004212 glomerular capillary +UBERON_0001009 circulatory system UBERON_0004232 lymphatic vessel smooth muscle +UBERON_0001009 circulatory system UBERON_0004236 arteriole smooth muscle +UBERON_0001009 circulatory system UBERON_0004237 blood vessel smooth muscle +UBERON_0001009 circulatory system UBERON_0004246 outflow tract smooth muscle +UBERON_0001009 circulatory system UBERON_0004257 upper leg blood vessel +UBERON_0001009 circulatory system UBERON_0004258 back blood vessel +UBERON_0001009 circulatory system UBERON_0004259 lower arm blood vessel +UBERON_0001009 circulatory system UBERON_0004260 upper arm blood vessel +UBERON_0001009 circulatory system UBERON_0004261 lower leg blood vessel +UBERON_0001009 circulatory system UBERON_0004265 outflow tract myocardium +UBERON_0001009 circulatory system UBERON_0004271 outflow tract pericardium +UBERON_0001009 circulatory system UBERON_0004274 lateral ventricle choroid plexus epithelium +UBERON_0001009 circulatory system UBERON_0004275 third ventricle choroid plexus epithelium +UBERON_0001009 circulatory system UBERON_0004276 fourth ventricle choroid plexus epithelium +UBERON_0001009 circulatory system UBERON_0004292 cardiac skeleton +UBERON_0001009 circulatory system UBERON_0004294 glomerular capillary endothelium +UBERON_0001009 circulatory system UBERON_0004296 respiratory system lymphatic vessel smooth muscle +UBERON_0001009 circulatory system UBERON_0004297 respiratory system blood vessel smooth muscle +UBERON_0001009 circulatory system UBERON_0004344 cardinal vein +UBERON_0001009 circulatory system UBERON_0004363 pharyngeal arch artery +UBERON_0001009 circulatory system UBERON_0004365 vitelline blood vessel +UBERON_0001009 circulatory system UBERON_0004374 vitelline vasculature +UBERON_0001009 circulatory system UBERON_0004449 cerebral artery +UBERON_0001009 circulatory system UBERON_0004450 gastric vein +UBERON_0001009 circulatory system UBERON_0004490 cardiac muscle tissue of atrium +UBERON_0001009 circulatory system UBERON_0004491 cardiac muscle tissue of interatrial septum +UBERON_0001009 circulatory system UBERON_0004492 cardiac muscle tissue of cardiac septum +UBERON_0001009 circulatory system UBERON_0004493 cardiac muscle tissue of myocardium +UBERON_0001009 circulatory system UBERON_0004494 cardiac muscle tissue of papillary muscle +UBERON_0001009 circulatory system UBERON_0004521 vasculature of muscle organ +UBERON_0001009 circulatory system UBERON_0004522 vasculature of musculoskeletal system +UBERON_0001009 circulatory system UBERON_0004523 papillary muscle of right ventricle +UBERON_0001009 circulatory system UBERON_0004524 papillary muscle of left ventricle +UBERON_0001009 circulatory system UBERON_0004525 cardiac muscle tissue of trabecula carnea of right ventricle +UBERON_0001009 circulatory system UBERON_0004526 cardiac muscle tissue of trabecula carnea of left ventricle +UBERON_0001009 circulatory system UBERON_0004535 cardiovascular system +UBERON_0001009 circulatory system UBERON_0004536 lymph vasculature +UBERON_0001009 circulatory system UBERON_0004537 blood vasculature +UBERON_0001009 circulatory system UBERON_0004540 proper plantar digital artery +UBERON_0001009 circulatory system UBERON_0004552 digital artery +UBERON_0001009 circulatory system UBERON_0004553 forelimb digital artery +UBERON_0001009 circulatory system UBERON_0004554 hindlimb digital artery +UBERON_0001009 circulatory system UBERON_0004561 proper palmar digital vein +UBERON_0001009 circulatory system UBERON_0004562 digital vein +UBERON_0001009 circulatory system UBERON_0004563 forelimb digital vein +UBERON_0001009 circulatory system UBERON_0004564 hindlimb digital vein +UBERON_0001009 circulatory system UBERON_0004571 systemic arterial system +UBERON_0001009 circulatory system UBERON_0004572 arterial system +UBERON_0001009 circulatory system UBERON_0004573 systemic artery +UBERON_0001009 circulatory system UBERON_0004581 systemic venous system +UBERON_0001009 circulatory system UBERON_0004582 venous system +UBERON_0001009 circulatory system UBERON_0004638 blood vessel endothelium +UBERON_0001009 circulatory system UBERON_0004639 renal afferent arteriole +UBERON_0001009 circulatory system UBERON_0004640 renal efferent arteriole +UBERON_0001009 circulatory system UBERON_0004646 infraorbital artery +UBERON_0001009 circulatory system UBERON_0004663 aorta wall +UBERON_0001009 circulatory system UBERON_0004664 aorta tunica adventitia +UBERON_0001009 circulatory system UBERON_0004666 interventricular septum membranous part +UBERON_0001009 circulatory system UBERON_0004667 interventricular septum muscular part +UBERON_0001009 circulatory system UBERON_0004688 costo-cervical trunk +UBERON_0001009 circulatory system UBERON_0004689 naso-frontal vein +UBERON_0001009 circulatory system UBERON_0004690 pancreaticoduodenal vein +UBERON_0001009 circulatory system UBERON_0004695 arterial system smooth muscle +UBERON_0001009 circulatory system UBERON_0004696 venous system smooth muscle +UBERON_0001009 circulatory system UBERON_0004698 vena cava endothelium +UBERON_0001009 circulatory system UBERON_0004699 outflow tract endothelium +UBERON_0001009 circulatory system UBERON_0004700 arterial system endothelium +UBERON_0001009 circulatory system UBERON_0004701 venous system endothelium +UBERON_0001009 circulatory system UBERON_0004702 respiratory system blood vessel endothelium +UBERON_0001009 circulatory system UBERON_0004706 bulbus cordis +UBERON_0001009 circulatory system UBERON_0004711 jugular vein +UBERON_0001009 circulatory system UBERON_0004719 kidney arcuate vein +UBERON_0001009 circulatory system UBERON_0004722 deep cervical lymph node +UBERON_0001009 circulatory system UBERON_0004723 interlobular artery +UBERON_0001009 circulatory system UBERON_0004726 vasa recta +UBERON_0001009 circulatory system UBERON_0004754 foramen ovale of heart +UBERON_0001009 circulatory system UBERON_0004775 outer renal medulla vasa recta +UBERON_0001009 circulatory system UBERON_0004776 inner renal medulla vasa recta +UBERON_0001009 circulatory system UBERON_0004784 heart ventricle wall +UBERON_0001009 circulatory system UBERON_0004797 blood vessel layer +UBERON_0001009 circulatory system UBERON_0004848 respiratory system arterial endothelium +UBERON_0001009 circulatory system UBERON_0004849 respiratory system venous endothelium +UBERON_0001009 circulatory system UBERON_0004851 aorta endothelium +UBERON_0001009 circulatory system UBERON_0004852 cardiovascular system endothelium +UBERON_0001009 circulatory system UBERON_0004864 vasculature of retina +UBERON_0001009 circulatory system UBERON_0004870 superficial cervical lymph node +UBERON_0001009 circulatory system UBERON_0004889 lobar bronchus vasculature +UBERON_0001009 circulatory system UBERON_0005063 left ventricular compact myocardium +UBERON_0001009 circulatory system UBERON_0005064 left ventricular trabecular myocardium +UBERON_0001009 circulatory system UBERON_0005065 right ventricular compact myocardium +UBERON_0001009 circulatory system UBERON_0005066 right ventricular trabecular myocardium +UBERON_0001009 circulatory system UBERON_0005091 left horn of sinus venosus +UBERON_0001009 circulatory system UBERON_0005092 right horn of sinus venosus +UBERON_0001009 circulatory system UBERON_0005119 metanephric glomerular mesangium +UBERON_0001009 circulatory system UBERON_0005133 metanephric glomerulus vasculature +UBERON_0001009 circulatory system UBERON_0005136 metanephric glomerular endothelium +UBERON_0001009 circulatory system UBERON_0005144 metanephric glomerular capillary +UBERON_0001009 circulatory system UBERON_0005168 renal interlobular vein +UBERON_0001009 circulatory system UBERON_0005192 deferent duct artery +UBERON_0001009 circulatory system UBERON_0005193 ethmoidal artery +UBERON_0001009 circulatory system UBERON_0005194 thoracic vein +UBERON_0001009 circulatory system UBERON_0005195 deferent duct vein +UBERON_0001009 circulatory system UBERON_0005206 choroid plexus stroma +UBERON_0001009 circulatory system UBERON_0005208 right atrium valve +UBERON_0001009 circulatory system UBERON_0005243 interventricular septum endocardium +UBERON_0001009 circulatory system UBERON_0005248 bulbus cordis myocardium +UBERON_0001009 circulatory system UBERON_0005261 atrium cardiac jelly +UBERON_0001009 circulatory system UBERON_0005262 ventricle cardiac jelly +UBERON_0001009 circulatory system UBERON_0005263 outflow tract cardiac jelly +UBERON_0001009 circulatory system UBERON_0005268 renal cortex artery +UBERON_0001009 circulatory system UBERON_0005269 renal cortex vein +UBERON_0001009 circulatory system UBERON_0005272 peritubular capillary +UBERON_0001009 circulatory system UBERON_0005316 endocardial endothelium +UBERON_0001009 circulatory system UBERON_0005317 pulmonary artery endothelium +UBERON_0001009 circulatory system UBERON_0005326 mesonephric glomerulus vasculature +UBERON_0001009 circulatory system UBERON_0005336 capillary layer of choroid +UBERON_0001009 circulatory system UBERON_0005337 outflow tract of ventricle +UBERON_0001009 circulatory system UBERON_0005338 outflow tract aortic component +UBERON_0001009 circulatory system UBERON_0005339 outflow tract pulmonary component +UBERON_0001009 circulatory system UBERON_0005396 carotid artery segment +UBERON_0001009 circulatory system UBERON_0005431 anterior spinal artery +UBERON_0001009 circulatory system UBERON_0005432 aortic sac +UBERON_0001009 circulatory system UBERON_0005435 upper part of cisterna chyli +UBERON_0001009 circulatory system UBERON_0005436 common hepatic artery +UBERON_0001009 circulatory system UBERON_0005438 coronary sinus +UBERON_0001009 circulatory system UBERON_0005440 ductus arteriosus +UBERON_0001009 circulatory system UBERON_0005455 interventricular groove +UBERON_0001009 circulatory system UBERON_0005458 left umbilical artery +UBERON_0001009 circulatory system UBERON_0005459 left umbilical vein +UBERON_0001009 circulatory system UBERON_0005460 left vitelline vein +UBERON_0001009 circulatory system UBERON_0005464 median sacral artery +UBERON_0001009 circulatory system UBERON_0005470 right umbilical artery +UBERON_0001009 circulatory system UBERON_0005471 right umbilical vein +UBERON_0001009 circulatory system UBERON_0005472 right vitelline vein +UBERON_0001009 circulatory system UBERON_0005475 sigmoid sinus +UBERON_0001009 circulatory system UBERON_0005481 tentorial sinus +UBERON_0001009 circulatory system UBERON_0005484 tricuspid valve leaflet +UBERON_0001009 circulatory system UBERON_0005485 valve of inferior vena cava +UBERON_0001009 circulatory system UBERON_0005486 venous dural sinus +UBERON_0001009 circulatory system UBERON_0005487 vitelline vein +UBERON_0001009 circulatory system UBERON_0005489 anterior interventricular sulcus +UBERON_0001009 circulatory system UBERON_0005490 posterior interventricular sulcus +UBERON_0001009 circulatory system UBERON_0005492 hyaloid vessel +UBERON_0001009 circulatory system UBERON_0005599 common dorsal aorta +UBERON_0001009 circulatory system UBERON_0005601 dorsal mesocardium +UBERON_0001009 circulatory system UBERON_0005606 hyaloid cavity +UBERON_0001009 circulatory system UBERON_0005607 hyaloid vascular plexus +UBERON_0001009 circulatory system UBERON_0005608 hyoid artery +UBERON_0001009 circulatory system UBERON_0005609 iliac artery +UBERON_0001009 circulatory system UBERON_0005610 iliac vein +UBERON_0001009 circulatory system UBERON_0005612 intercostal artery +UBERON_0001009 circulatory system UBERON_0005613 left dorsal aorta +UBERON_0001009 circulatory system UBERON_0005616 mesenteric artery +UBERON_0001009 circulatory system UBERON_0005617 mesenteric vein +UBERON_0001009 circulatory system UBERON_0005622 right dorsal aorta +UBERON_0001009 circulatory system UBERON_0005623 semi-lunar valve +UBERON_0001009 circulatory system UBERON_0005624 suprarenal artery +UBERON_0001009 circulatory system UBERON_0005628 ileal artery +UBERON_0001009 circulatory system UBERON_0005629 vascular plexus +UBERON_0001009 circulatory system UBERON_0005720 hindbrain venous system +UBERON_0001009 circulatory system UBERON_0005734 tunica adventitia of blood vessel +UBERON_0001009 circulatory system UBERON_0005740 tunica intima of artery +UBERON_0001009 circulatory system UBERON_0005800 section of aorta +UBERON_0001009 circulatory system UBERON_0005805 dorsal aorta +UBERON_0001009 circulatory system UBERON_0005806 portal system +UBERON_0001009 circulatory system UBERON_0005946 outflow tract of atrium +UBERON_0001009 circulatory system UBERON_0005953 outflow part of right ventricle +UBERON_0001009 circulatory system UBERON_0005956 outflow part of left ventricle +UBERON_0001009 circulatory system UBERON_0005965 outflow part of right atrium +UBERON_0001009 circulatory system UBERON_0005966 outflow part of left atrium +UBERON_0001009 circulatory system UBERON_0005967 conotruncal ridge +UBERON_0001009 circulatory system UBERON_0005973 blood-inner ear barrier +UBERON_0001009 circulatory system UBERON_0005979 crista terminalis +UBERON_0001009 circulatory system UBERON_0005980 pectinate muscle +UBERON_0001009 circulatory system UBERON_0005981 vena cava sinus +UBERON_0001009 circulatory system UBERON_0005982 Bachmann's bundle +UBERON_0001009 circulatory system UBERON_0005983 heart layer +UBERON_0001009 circulatory system UBERON_0005984 subendocardium layer +UBERON_0001009 circulatory system UBERON_0005985 coronary vessel +UBERON_0001009 circulatory system UBERON_0005986 left bundle branch +UBERON_0001009 circulatory system UBERON_0005987 right bundle branch +UBERON_0001009 circulatory system UBERON_0005988 atrium myocardial trabecula +UBERON_0001009 circulatory system UBERON_0005989 atrioventricular septum +UBERON_0001009 circulatory system UBERON_0005990 aortic valve cusp +UBERON_0001009 circulatory system UBERON_0005991 aortic valve anulus +UBERON_0001009 circulatory system UBERON_0005992 pulmonary valve cusp +UBERON_0001009 circulatory system UBERON_0005993 pulmonary valve anulus +UBERON_0001009 circulatory system UBERON_0005994 chorda tendineae +UBERON_0001009 circulatory system UBERON_0005995 mitral valve anulus +UBERON_0001009 circulatory system UBERON_0005996 mitral valve cusp +UBERON_0001009 circulatory system UBERON_0005997 tricuspid valve anulus +UBERON_0001009 circulatory system UBERON_0005998 tricuspid valve cusp +UBERON_0001009 circulatory system UBERON_0006002 vitelline artery +UBERON_0001009 circulatory system UBERON_0006008 fibrous ring of heart +UBERON_0001009 circulatory system UBERON_0006009 cusp of cardiac valve +UBERON_0001009 circulatory system UBERON_0006011 hyaloid vein +UBERON_0001009 circulatory system UBERON_0006060 conotruncus +UBERON_0001009 circulatory system UBERON_0006137 proper palmar digital artery +UBERON_0001009 circulatory system UBERON_0006138 plantar digital artery +UBERON_0001009 circulatory system UBERON_0006139 plantar digital vein +UBERON_0001009 circulatory system UBERON_0006140 palmar digital vein +UBERON_0001009 circulatory system UBERON_0006141 palmar digital artery +UBERON_0001009 circulatory system UBERON_0006142 common plantar digital vein +UBERON_0001009 circulatory system UBERON_0006143 proper plantar digital vein +UBERON_0001009 circulatory system UBERON_0006144 medial plantar digital vein +UBERON_0001009 circulatory system UBERON_0006145 dorsal digital artery of pes +UBERON_0001009 circulatory system UBERON_0006146 dorsal digital artery of manus +UBERON_0001009 circulatory system UBERON_0006163 dorsal digital artery +UBERON_0001009 circulatory system UBERON_0006164 forelimb common dorsal digital arteries +UBERON_0001009 circulatory system UBERON_0006165 median dorsal digital artery for digit 1 +UBERON_0001009 circulatory system UBERON_0006166 lateral dorsal digital artery for digit 5 +UBERON_0001009 circulatory system UBERON_0006167 forelimb proper dorsal digital arteries +UBERON_0001009 circulatory system UBERON_0006168 hindlimb common dorsal digital arteries +UBERON_0001009 circulatory system UBERON_0006169 hindlimb proper dorsal digital arteries +UBERON_0001009 circulatory system UBERON_0006182 mesonephric glomerular mesangium +UBERON_0001009 circulatory system UBERON_0006183 mesonephric glomerular capillary +UBERON_0001009 circulatory system UBERON_0006197 auricular vein +UBERON_0001009 circulatory system UBERON_0006198 dorsal intercostal artery +UBERON_0001009 circulatory system UBERON_0006199 posterior auricular vein +UBERON_0001009 circulatory system UBERON_0006200 caudal humeral circumflex vein +UBERON_0001009 circulatory system UBERON_0006207 aortico-pulmonary spiral septum +UBERON_0001009 circulatory system UBERON_0006212 bulbo-ventricular groove +UBERON_0001009 circulatory system UBERON_0006218 common atrial chamber +UBERON_0001009 circulatory system UBERON_0006252 intersubcardinal venous anastomosis +UBERON_0001009 circulatory system UBERON_0006282 primary head vein +UBERON_0001009 circulatory system UBERON_0006296 subcardinal vein +UBERON_0001009 circulatory system UBERON_0006300 supracardinal vein +UBERON_0001009 circulatory system UBERON_0006305 tunica vasculosa lentis +UBERON_0001009 circulatory system UBERON_0006309 venous vitelline plexus +UBERON_0001009 circulatory system UBERON_0006310 vitelline venous plexus +UBERON_0001009 circulatory system UBERON_0006338 lateral ventricle choroid plexus stroma +UBERON_0001009 circulatory system UBERON_0006339 third ventricle choroid plexus stroma +UBERON_0001009 circulatory system UBERON_0006340 fourth ventricle choroid plexus stroma +UBERON_0001009 circulatory system UBERON_0006341 outer renal medulla peritubular capillary +UBERON_0001009 circulatory system UBERON_0006345 stapedial artery +UBERON_0001009 circulatory system UBERON_0006347 communicating artery +UBERON_0001009 circulatory system UBERON_0006349 epigastric artery +UBERON_0001009 circulatory system UBERON_0006351 principal vein of forelimb +UBERON_0001009 circulatory system UBERON_0006353 principal vein of hindlimb +UBERON_0001009 circulatory system UBERON_0006355 superior vesical vein +UBERON_0001009 circulatory system UBERON_0006356 epigastric vein +UBERON_0001009 circulatory system UBERON_0006358 vasa hyaloidea propria +UBERON_0001009 circulatory system UBERON_0006374 part of afferent arteriole forming the juxtaglomerular complex +UBERON_0001009 circulatory system UBERON_0006436 principal artery to forelimb +UBERON_0001009 circulatory system UBERON_0006438 principal artery to hindlimb +UBERON_0001009 circulatory system UBERON_0006443 prinicipal vein of limb +UBERON_0001009 circulatory system UBERON_0006544 kidney vasculature +UBERON_0001009 circulatory system UBERON_0006558 lymphatic part of lymphoid system +UBERON_0001009 circulatory system UBERON_0006563 tunica media of pulmonary trunk +UBERON_0001009 circulatory system UBERON_0006564 superficial palmar arch +UBERON_0001009 circulatory system UBERON_0006566 left ventricle myocardium +UBERON_0001009 circulatory system UBERON_0006567 right ventricle myocardium +UBERON_0001009 circulatory system UBERON_0006570 trabecula carnea of right ventricle +UBERON_0001009 circulatory system UBERON_0006571 trabecula carnea of left ventricle +UBERON_0001009 circulatory system UBERON_0006615 venous sinus +UBERON_0001009 circulatory system UBERON_0006618 atrium auricular region +UBERON_0001009 circulatory system UBERON_0006630 left atrium auricular region +UBERON_0001009 circulatory system UBERON_0006631 right atrium auricular region +UBERON_0001009 circulatory system UBERON_0006632 musculo-phrenic artery +UBERON_0001009 circulatory system UBERON_0006634 lingual vein +UBERON_0001009 circulatory system UBERON_0006636 lumbar artery +UBERON_0001009 circulatory system UBERON_0006637 celiac trunk +UBERON_0001009 circulatory system UBERON_0006656 deep dorsal vein of penis +UBERON_0001009 circulatory system UBERON_0006662 musculo-phrenic vein +UBERON_0001009 circulatory system UBERON_0006663 hemiazygos vein +UBERON_0001009 circulatory system UBERON_0006664 greater palatine artery +UBERON_0001009 circulatory system UBERON_0006665 accessory hemiazygos vein +UBERON_0001009 circulatory system UBERON_0006666 great cerebral vein +UBERON_0001009 circulatory system UBERON_0006675 venous valve +UBERON_0001009 circulatory system UBERON_0006678 foramen secundum +UBERON_0001009 circulatory system UBERON_0006686 spinal vein +UBERON_0001009 circulatory system UBERON_0006687 median sacral vein +UBERON_0001009 circulatory system UBERON_0006690 deep dorsal vein of clitoris +UBERON_0001009 circulatory system UBERON_0006694 cerebellum vasculature +UBERON_0001009 circulatory system UBERON_0006764 anterior communicating artery +UBERON_0001009 circulatory system UBERON_0006765 left anterior vena cava +UBERON_0001009 circulatory system UBERON_0006766 right anterior vena cava +UBERON_0001009 circulatory system UBERON_0006828 trabecula carnea of atrium +UBERON_0001009 circulatory system UBERON_0006829 remnant of left anterior vena cava +UBERON_0001009 circulatory system UBERON_0006841 central vein of liver +UBERON_0001009 circulatory system UBERON_0006842 lymphatic capillary +UBERON_0001009 circulatory system UBERON_0006851 renal cortex peritubular capillary +UBERON_0001009 circulatory system UBERON_0006876 vasculature of organ +UBERON_0001009 circulatory system UBERON_0006877 vasculature of liver +UBERON_0001009 circulatory system UBERON_0006958 great vein of heart +UBERON_0001009 circulatory system UBERON_0006965 vascular cord +UBERON_0001009 circulatory system UBERON_0006966 coronary capillary +UBERON_0001009 circulatory system UBERON_0007100 primary circulatory organ +UBERON_0001009 circulatory system UBERON_0007142 left internal carotid artery +UBERON_0001009 circulatory system UBERON_0007143 right internal carotid artery +UBERON_0001009 circulatory system UBERON_0007146 posterior spinal artery +UBERON_0001009 circulatory system UBERON_0007149 inferior thyroid artery +UBERON_0001009 circulatory system UBERON_0007150 superior thyroid artery +UBERON_0001009 circulatory system UBERON_0007151 mitral valve leaflet +UBERON_0001009 circulatory system UBERON_0007152 inferior sagittal sinus +UBERON_0001009 circulatory system UBERON_0007153 superior epigastric artery +UBERON_0001009 circulatory system UBERON_0007154 inferior epigastric vein +UBERON_0001009 circulatory system UBERON_0007155 superior epigastric vein +UBERON_0001009 circulatory system UBERON_0007156 inferior thyroid vein +UBERON_0001009 circulatory system UBERON_0007157 superior thyroid vein +UBERON_0001009 circulatory system UBERON_0007160 inferior petrosal sinus +UBERON_0001009 circulatory system UBERON_0007181 serosa of infundibulum of uterine tube +UBERON_0001009 circulatory system UBERON_0007182 muscle layer of infundibulum of uterine tube +UBERON_0001009 circulatory system UBERON_0007186 pericardial visceral mesothelium +UBERON_0001009 circulatory system UBERON_0007187 pericardial parietal mesothelium +UBERON_0001009 circulatory system UBERON_0007188 mesothelium of serous pericardium +UBERON_0001009 circulatory system UBERON_0007204 brachiocephalic vasculature +UBERON_0001009 circulatory system UBERON_0007239 tunica media of artery +UBERON_0001009 circulatory system UBERON_0007240 tunica adventitia of artery +UBERON_0001009 circulatory system UBERON_0007241 tunica adventitia of vein +UBERON_0001009 circulatory system UBERON_0007242 tunica intima of vein +UBERON_0001009 circulatory system UBERON_0007243 tunica media of vein +UBERON_0001009 circulatory system UBERON_0007299 choroid plexus of tectal ventricle +UBERON_0001009 circulatory system UBERON_0007300 pectoral appendage blood vessel +UBERON_0001009 circulatory system UBERON_0007301 appendage blood vessel +UBERON_0001009 circulatory system UBERON_0007302 pectoral appendage vasculature +UBERON_0001009 circulatory system UBERON_0007303 pharyngeal vasculature +UBERON_0001009 circulatory system UBERON_0007304 appendage vasculature +UBERON_0001009 circulatory system UBERON_0007306 pronephric glomerular capillary +UBERON_0001009 circulatory system UBERON_0007312 pudendal artery +UBERON_0001009 circulatory system UBERON_0007314 superior external pudendal artery +UBERON_0001009 circulatory system UBERON_0007315 internal pudendal artery +UBERON_0001009 circulatory system UBERON_0007316 deep external pudendal artery +UBERON_0001009 circulatory system UBERON_0007317 superficial external pudendal artery +UBERON_0001009 circulatory system UBERON_0007318 saphenous vein +UBERON_0001009 circulatory system UBERON_0007319 medial saphenous vein +UBERON_0001009 circulatory system UBERON_0007321 lateral saphenous vein +UBERON_0001009 circulatory system UBERON_0007352 stria vascularis vasculature +UBERON_0001009 circulatory system UBERON_0007384 appendage lymph vessel +UBERON_0001009 circulatory system UBERON_0007385 pectoral appendage lymph vessel +UBERON_0001009 circulatory system UBERON_0007386 pelvic appendage lymph vessel +UBERON_0001009 circulatory system UBERON_0007610 tibial artery +UBERON_0001009 circulatory system UBERON_0007622 pecten oculi +UBERON_0001009 circulatory system UBERON_0007679 intersomitic vein +UBERON_0001009 circulatory system UBERON_0007693 caroticotympanic artery +UBERON_0001009 circulatory system UBERON_0007718 principal artery to limb +UBERON_0001009 circulatory system UBERON_0007777 umbilical vein endothelium +UBERON_0001009 circulatory system UBERON_0007778 umbilical artery endothelium +UBERON_0001009 circulatory system UBERON_0007798 vascular system +UBERON_0001009 circulatory system UBERON_0007807 connecting stalk vasculature +UBERON_0001009 circulatory system UBERON_0008267 left supracardinal vein +UBERON_0001009 circulatory system UBERON_0008268 right supracardinal vein +UBERON_0001009 circulatory system UBERON_0008307 heart endothelium +UBERON_0001009 circulatory system UBERON_0008311 penile bulb artery +UBERON_0001009 circulatory system UBERON_0008320 common penile artery +UBERON_0001009 circulatory system UBERON_0008321 deep artery of penis +UBERON_0001009 circulatory system UBERON_0008322 deep artery of clitoris +UBERON_0001009 circulatory system UBERON_0008323 dorsal artery of clitoris +UBERON_0001009 circulatory system UBERON_0008339 microvascular endothelium +UBERON_0001009 circulatory system UBERON_0008783 dorsal venous arch +UBERON_0001009 circulatory system UBERON_0008886 pulmonary vascular system +UBERON_0001009 circulatory system UBERON_0008887 rectal venous plexus +UBERON_0001009 circulatory system UBERON_0008888 vesical venous plexus +UBERON_0001009 circulatory system UBERON_0008889 uterine venous plexus +UBERON_0001009 circulatory system UBERON_0008998 vasculature of brain +UBERON_0001009 circulatory system UBERON_0009007 superficial inguinal lymph node +UBERON_0001009 circulatory system UBERON_0009025 gastroepiploic artery +UBERON_0001009 circulatory system UBERON_0009026 iliac circumflex artery +UBERON_0001009 circulatory system UBERON_0009027 vesical artery +UBERON_0001009 circulatory system UBERON_0009029 pudendal vein +UBERON_0001009 circulatory system UBERON_0009030 left pulmonary vein +UBERON_0001009 circulatory system UBERON_0009032 right pulmonary vein +UBERON_0001009 circulatory system UBERON_0009040 deep circumflex iliac artery +UBERON_0001009 circulatory system UBERON_0009041 superficial circumflex iliac artery +UBERON_0001009 circulatory system UBERON_0009042 prostatic venous plexus +UBERON_0001009 circulatory system UBERON_0009044 pudendal venous plexus +UBERON_0001009 circulatory system UBERON_0009046 inferior external pudendal vein +UBERON_0001009 circulatory system UBERON_0009047 superior external pudendal vein +UBERON_0001009 circulatory system UBERON_0009048 deep external pudendal vein +UBERON_0001009 circulatory system UBERON_0009049 superficial external pudendal vein +UBERON_0001009 circulatory system UBERON_0009054 open circulatory system +UBERON_0001009 circulatory system UBERON_0009055 closed circulatory system +UBERON_0001009 circulatory system UBERON_0009056 two-pass circulatory system +UBERON_0001009 circulatory system UBERON_0009057 one-pass circulatory system +UBERON_0001009 circulatory system UBERON_0009089 inner medulla vasa recta descending limb +UBERON_0001009 circulatory system UBERON_0009090 outer medulla vasa recta descending limb +UBERON_0001009 circulatory system UBERON_0009091 vasa recta ascending limb +UBERON_0001009 circulatory system UBERON_0009092 inner medulla vasa recta ascending limb +UBERON_0001009 circulatory system UBERON_0009093 outer medulla vasa recta ascending limb +UBERON_0001009 circulatory system UBERON_0009129 right atrium endocardium +UBERON_0001009 circulatory system UBERON_0009138 right common cardinal vein +UBERON_0001009 circulatory system UBERON_0009139 right posterior cardinal vein +UBERON_0001009 circulatory system UBERON_0009140 right subcardinal vein +UBERON_0001009 circulatory system UBERON_0009141 craniocervical region vein +UBERON_0001009 circulatory system UBERON_0009149 foramen primum +UBERON_0001009 circulatory system UBERON_0009202 vasa recta descending limb +UBERON_0001009 circulatory system UBERON_0009536 vascular element of left lung +UBERON_0001009 circulatory system UBERON_0009537 vascular element of right lung +UBERON_0001009 circulatory system UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0001009 circulatory system UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0001009 circulatory system UBERON_0009654 alveolar artery +UBERON_0001009 circulatory system UBERON_0009655 auricular artery +UBERON_0001009 circulatory system UBERON_0009657 artery of lip +UBERON_0001009 circulatory system UBERON_0009658 pancreaticoduodenal artery +UBERON_0001009 circulatory system UBERON_0009659 spermatic artery +UBERON_0001009 circulatory system UBERON_0009687 middle cardiac vein +UBERON_0001009 circulatory system UBERON_0009688 posterior inferior cerebellar artery +UBERON_0001009 circulatory system UBERON_0009689 anterior inferior cerebellar artery +UBERON_0001009 circulatory system UBERON_0009712 endocardium of right ventricle +UBERON_0001009 circulatory system UBERON_0009713 endocardium of left ventricle +UBERON_0001009 circulatory system UBERON_0009751 cardiac mesenchyme +UBERON_0001009 circulatory system UBERON_0009769 left common cardinal vein +UBERON_0001009 circulatory system UBERON_0009771 left anterior cardinal vein +UBERON_0001009 circulatory system UBERON_0009772 right anterior cardinal vein +UBERON_0001009 circulatory system UBERON_0009779 cardiac muscle tissue of right auricle +UBERON_0001009 circulatory system UBERON_0009780 cardiac muscle tissue of left auricle +UBERON_0001009 circulatory system UBERON_0009885 interlobar artery +UBERON_0001009 circulatory system UBERON_0009887 interlobar vein +UBERON_0001009 circulatory system UBERON_0009966 internodal tract +UBERON_0001009 circulatory system UBERON_0009967 spleen venous sinus +UBERON_0001009 circulatory system UBERON_0009968 primitive superior sagittal sinus +UBERON_0001009 circulatory system UBERON_0009976 hypothalamo-hypophyseal system +UBERON_0001009 circulatory system UBERON_0010018 spiral valve of conus arteriosus +UBERON_0001009 circulatory system UBERON_0010078 optic choroid vascular plexus +UBERON_0001009 circulatory system UBERON_0010131 conducting tissue of heart +UBERON_0001009 circulatory system UBERON_0010132 gastroduodenal artery +UBERON_0001009 circulatory system UBERON_0010160 lumen of lymphatic vessel +UBERON_0001009 circulatory system UBERON_0010161 lumen of blood vessel +UBERON_0001009 circulatory system UBERON_0010172 bulb of aorta +UBERON_0001009 circulatory system UBERON_0010173 sinotubular junction +UBERON_0001009 circulatory system UBERON_0010174 Schweigger-Seidel sheath +UBERON_0001009 circulatory system UBERON_0010175 nutrient foramen vein +UBERON_0001009 circulatory system UBERON_0010176 nutrient foramen artery +UBERON_0001009 circulatory system UBERON_0010181 straight venules of kidney +UBERON_0001009 circulatory system UBERON_0010189 right atrium venous valve +UBERON_0001009 circulatory system UBERON_0010190 pair of dorsal aortae +UBERON_0001009 circulatory system UBERON_0010191 aortic system +UBERON_0001009 circulatory system UBERON_0010192 genital artery +UBERON_0001009 circulatory system UBERON_0010193 renal portal vein +UBERON_0001009 circulatory system UBERON_0010194 hepatic portal system +UBERON_0001009 circulatory system UBERON_0010195 renal portal system +UBERON_0001009 circulatory system UBERON_0010197 trunk of common carotid artery +UBERON_0001009 circulatory system UBERON_0010198 carotid duct +UBERON_0001009 circulatory system UBERON_0010204 tail vasculature +UBERON_0001009 circulatory system UBERON_0010205 mesencephalic vein +UBERON_0001009 circulatory system UBERON_0010244 choroid tapetum lucidum +UBERON_0001009 circulatory system UBERON_0010246 choroidal guanine tapetum +UBERON_0001009 circulatory system UBERON_0010247 choroidal tapetum cellulosum +UBERON_0001009 circulatory system UBERON_0010248 choroidal tapetum fibrosum +UBERON_0001009 circulatory system UBERON_0010249 posterior meningeal artery +UBERON_0001009 circulatory system UBERON_0010250 middle meningeal artery +UBERON_0001009 circulatory system UBERON_0010251 anterior meningeal artery +UBERON_0001009 circulatory system UBERON_0010260 umbilical blood vessel +UBERON_0001009 circulatory system UBERON_0010277 mesocardium +UBERON_0001009 circulatory system UBERON_0010279 pericardial sinus +UBERON_0001009 circulatory system UBERON_0010283 oblique pericardial sinus +UBERON_0001009 circulatory system UBERON_0010293 suprachoroid lamina +UBERON_0001009 circulatory system UBERON_0010366 conjunctival vasculature +UBERON_0001009 circulatory system UBERON_0010367 conjunctival vein +UBERON_0001009 circulatory system UBERON_0010370 tibial vein +UBERON_0001009 circulatory system UBERON_0010396 afferent lymphatic vessel +UBERON_0001009 circulatory system UBERON_0010397 efferent lymphatic vessel +UBERON_0001009 circulatory system UBERON_0010399 spleen trabecular artery +UBERON_0001009 circulatory system UBERON_0010400 spleen trabecular vein +UBERON_0001009 circulatory system UBERON_0010401 spleen central arteriole +UBERON_0001009 circulatory system UBERON_0010408 ocular angle artery +UBERON_0001009 circulatory system UBERON_0010523 microcirculatory vessel +UBERON_0001009 circulatory system UBERON_0011005 endocardium of auricle +UBERON_0001009 circulatory system UBERON_0011006 endocardium of left auricle +UBERON_0001009 circulatory system UBERON_0011007 endocardium of right auricle +UBERON_0001009 circulatory system UBERON_0011191 ophthalmic vein +UBERON_0001009 circulatory system UBERON_0011192 superior ophthalmic vein +UBERON_0001009 circulatory system UBERON_0011193 inferior ophthalmic vein +UBERON_0001009 circulatory system UBERON_0011362 cranial blood vasculature +UBERON_0001009 circulatory system UBERON_0011363 cranial lymph vasculature +UBERON_0001009 circulatory system UBERON_0011383 inferior pancreaticoduodenal vein +UBERON_0001009 circulatory system UBERON_0011384 superior pancreaticoduodenal vein +UBERON_0001009 circulatory system UBERON_0011392 blood vessel internal elastic membrane +UBERON_0001009 circulatory system UBERON_0011693 extraembryonic portion of umbilical artery +UBERON_0001009 circulatory system UBERON_0011694 embryo portion of umbilical artery +UBERON_0001009 circulatory system UBERON_0011695 embryonic cardiovascular system +UBERON_0001009 circulatory system UBERON_0011696 left extraembryonic umbilical artery +UBERON_0001009 circulatory system UBERON_0011697 right extraembryonic umbilical artery +UBERON_0001009 circulatory system UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0001009 circulatory system UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0001009 circulatory system UBERON_0011741 cardiac valve leaflet +UBERON_0001009 circulatory system UBERON_0011742 aortic valve leaflet +UBERON_0001009 circulatory system UBERON_0011745 pulmonary valve leaflets +UBERON_0001009 circulatory system UBERON_0011765 jugular lymph sac +UBERON_0001009 circulatory system UBERON_0011819 lumen of atrioventricular canal +UBERON_0001009 circulatory system UBERON_0011820 atrioventricular region +UBERON_0001009 circulatory system UBERON_0011861 aorta collagen fibril +UBERON_0001009 circulatory system UBERON_0011897 cardiac endomysium +UBERON_0001009 circulatory system UBERON_0011944 subintestinal vein +UBERON_0001009 circulatory system UBERON_0011955 left hepatic vein +UBERON_0001009 circulatory system UBERON_0011956 right hepatic vein +UBERON_0001009 circulatory system UBERON_0011957 middle hepatic vein +UBERON_0001009 circulatory system UBERON_0012173 middle suprarenal artery +UBERON_0001009 circulatory system UBERON_0012187 frontal artery +UBERON_0001009 circulatory system UBERON_0012193 phrenic vein +UBERON_0001009 circulatory system UBERON_0012194 superior intercostal vein +UBERON_0001009 circulatory system UBERON_0012195 left superior intercostal vein +UBERON_0001009 circulatory system UBERON_0012196 right superior intercostal vein +UBERON_0001009 circulatory system UBERON_0012197 intercostal vein +UBERON_0001009 circulatory system UBERON_0012199 posterior intercostal vein +UBERON_0001009 circulatory system UBERON_0012200 anterior intercostal vein +UBERON_0001009 circulatory system UBERON_0012237 superior phrenic vein +UBERON_0001009 circulatory system UBERON_0012239 urinary bladder vasculature +UBERON_0001009 circulatory system UBERON_0012254 abdominal aorta artery +UBERON_0001009 circulatory system UBERON_0012255 inferior phrenic artery +UBERON_0001009 circulatory system UBERON_0012308 superficial lateral cervical lymph node +UBERON_0001009 circulatory system UBERON_0012309 superficial anterior cervical lymph node +UBERON_0001009 circulatory system UBERON_0012310 deep lateral cervical lymph node +UBERON_0001009 circulatory system UBERON_0012311 deep anterior cervical lymph node +UBERON_0001009 circulatory system UBERON_0012318 anterior ethmoidal artery +UBERON_0001009 circulatory system UBERON_0012319 posterior ethmoidal artery +UBERON_0001009 circulatory system UBERON_0012320 cervical artery +UBERON_0001009 circulatory system UBERON_0012321 deep cervical artery +UBERON_0001009 circulatory system UBERON_0012322 ascending cervical artery +UBERON_0001009 circulatory system UBERON_0012324 transverse cervical artery +UBERON_0001009 circulatory system UBERON_0012416 respiratory system arterial smooth muscle +UBERON_0001009 circulatory system UBERON_0012418 respiratory system venous smooth muscle +UBERON_0001009 circulatory system UBERON_0012441 endothelium of peritubular capillary +UBERON_0001009 circulatory system UBERON_0013124 left posterior cardinal vein +UBERON_0001009 circulatory system UBERON_0013125 left subcardinal vein +UBERON_0001009 circulatory system UBERON_0013126 vein of abdomen +UBERON_0001009 circulatory system UBERON_0013127 pulmonary venous system +UBERON_0001009 circulatory system UBERON_0013132 penicillar arteriole +UBERON_0001009 circulatory system UBERON_0013133 superior phrenic artery +UBERON_0001009 circulatory system UBERON_0013136 vein of lip +UBERON_0001009 circulatory system UBERON_0013137 external pudendal artery +UBERON_0001009 circulatory system UBERON_0013140 systemic vein +UBERON_0001009 circulatory system UBERON_0013141 capillary bed +UBERON_0001009 circulatory system UBERON_0013142 soleal vein +UBERON_0001009 circulatory system UBERON_0013143 gastrocnemius vein +UBERON_0001009 circulatory system UBERON_0013144 vein of genicular venous plexus +UBERON_0001009 circulatory system UBERON_0013145 accessory saphenous vein +UBERON_0001009 circulatory system UBERON_0013146 venous system of brain +UBERON_0001009 circulatory system UBERON_0013151 choroidal artery +UBERON_0001009 circulatory system UBERON_0013152 interventricular foramen of heart +UBERON_0001009 circulatory system UBERON_0013218 rete mirabile +UBERON_0001009 circulatory system UBERON_0013220 foramen of Panizza +UBERON_0001009 circulatory system UBERON_0013397 stratum argenteum of choroid +UBERON_0001009 circulatory system UBERON_0013398 choroidal gland +UBERON_0001009 circulatory system UBERON_0013399 blood vessel layer of choroid +UBERON_0001009 circulatory system UBERON_0013479 lung endothelium +UBERON_0001009 circulatory system UBERON_0013648 masseteric artery +UBERON_0001009 circulatory system UBERON_0013768 great vessel of heart +UBERON_0001009 circulatory system UBERON_0014399 sinusoidal space +UBERON_0001009 circulatory system UBERON_0014400 hepatic sinusoidal space +UBERON_0001009 circulatory system UBERON_0014401 renal venous blood vessel +UBERON_0001009 circulatory system UBERON_0014685 pterygoid plexus +UBERON_0001009 circulatory system UBERON_0014686 angular vein +UBERON_0001009 circulatory system UBERON_0014690 left gastric vein +UBERON_0001009 circulatory system UBERON_0014691 right gastric vein +UBERON_0001009 circulatory system UBERON_0014692 superficial epigastric vein +UBERON_0001009 circulatory system UBERON_0014693 inferior alveolar artery +UBERON_0001009 circulatory system UBERON_0014694 posterior auricular artery +UBERON_0001009 circulatory system UBERON_0014695 deep auricular artery +UBERON_0001009 circulatory system UBERON_0014696 anterior choroidal artery +UBERON_0001009 circulatory system UBERON_0014697 posterior choroidal artery +UBERON_0001009 circulatory system UBERON_0014699 extraembryonic venous system +UBERON_0001009 circulatory system UBERON_0014701 extraembryonic vascular system +UBERON_0001009 circulatory system UBERON_0014768 superior palpebral vein +UBERON_0001009 circulatory system UBERON_0014769 palpebral vein +UBERON_0001009 circulatory system UBERON_0014770 palpebral artery +UBERON_0001009 circulatory system UBERON_0014772 lateral palpebral artery +UBERON_0001009 circulatory system UBERON_0014773 medial palpebral artery +UBERON_0001009 circulatory system UBERON_0014786 extraembryonic umbilical vein +UBERON_0001009 circulatory system UBERON_0014787 left extraembryonic umbilical vein +UBERON_0001009 circulatory system UBERON_0014788 right extraembryonic umbilical vein +UBERON_0001009 circulatory system UBERON_0014789 embryo portion of umbilical vein +UBERON_0001009 circulatory system UBERON_0014851 chorda tendinea of left ventricle +UBERON_0001009 circulatory system UBERON_0014852 chorda tendinea of right ventricle +UBERON_0001009 circulatory system UBERON_0014853 commissural leaflet of mitral valve +UBERON_0001009 circulatory system UBERON_0014854 anterior leaflet of mitral valve +UBERON_0001009 circulatory system UBERON_0014855 posterior leaflet of mitral valve +UBERON_0001009 circulatory system UBERON_0014903 primordial vasculature +UBERON_0001009 circulatory system UBERON_0014904 intersegmental pulmonary vein +UBERON_0001009 circulatory system UBERON_0014907 intersomitic vessel +UBERON_0001009 circulatory system UBERON_0015125 anterior internodal tract +UBERON_0001009 circulatory system UBERON_0015126 middle internodal tract +UBERON_0001009 circulatory system UBERON_0015127 posterior internodal tract +UBERON_0001009 circulatory system UBERON_0015128 subepicardial layer of epicardium +UBERON_0001009 circulatory system UBERON_0015129 epicardial fat +UBERON_0001009 circulatory system UBERON_0015156 terminal branch of ophthalmic artery +UBERON_0001009 circulatory system UBERON_0015157 zygomatico-orbital artery +UBERON_0001009 circulatory system UBERON_0015158 ophthalmotemporal branch of external ophthalmic artery +UBERON_0001009 circulatory system UBERON_0015160 supraorbital artery +UBERON_0001009 circulatory system UBERON_0015161 inferior branch of oculomotor nerve +UBERON_0001009 circulatory system UBERON_0015162 superior branch of oculomotor nerve +UBERON_0001009 circulatory system UBERON_0015171 uterine spiral artery +UBERON_0001009 circulatory system UBERON_0015172 endometrial blood vessel +UBERON_0001009 circulatory system UBERON_0015173 helicine branch of uterine artery +UBERON_0001009 circulatory system UBERON_0015174 helicine artery of penis +UBERON_0001009 circulatory system UBERON_0015177 helicine artery +UBERON_0001009 circulatory system UBERON_0015189 perineural vascular plexus +UBERON_0001009 circulatory system UBERON_0015202 lymph heart +UBERON_0001009 circulatory system UBERON_0015224 interventricular foramen intermedium +UBERON_0001009 circulatory system UBERON_0015225 atrial foramen intermedium +UBERON_0001009 circulatory system UBERON_0015226 bulbar spiral septum +UBERON_0001009 circulatory system UBERON_0015227 peristaltic circulatory vessel +UBERON_0001009 circulatory system UBERON_0015228 circulatory organ +UBERON_0001009 circulatory system UBERON_0015229 accessory circulatory organ +UBERON_0001009 circulatory system UBERON_0015230 dorsal vessel heart +UBERON_0001009 circulatory system UBERON_0015231 circulatory system dorsal vessel +UBERON_0001009 circulatory system UBERON_0015350 saphenous artery +UBERON_0001009 circulatory system UBERON_0015410 heart plus pericardium +UBERON_0001009 circulatory system UBERON_0015433 blood vessel external elastic membrane +UBERON_0001009 circulatory system UBERON_0015455 accessory hepatic vein +UBERON_0001009 circulatory system UBERON_0015480 proper hepatic artery +UBERON_0001009 circulatory system UBERON_0015481 left hepatic artery +UBERON_0001009 circulatory system UBERON_0015482 right hepatic artery +UBERON_0001009 circulatory system UBERON_0015704 sagittal sinus +UBERON_0001009 circulatory system UBERON_0015796 liver blood vessel +UBERON_0001009 circulatory system UBERON_0015869 retropharyngeal lymph node +UBERON_0001009 circulatory system UBERON_0015917 superficial lymph node +UBERON_0001009 circulatory system UBERON_0015918 deep lymph node +UBERON_0001009 circulatory system UBERON_0015923 superficial parotid lymph node +UBERON_0001009 circulatory system UBERON_0015925 superficial intraparotid lymph node +UBERON_0001009 circulatory system UBERON_0016393 deep parotid lymph node +UBERON_0001009 circulatory system UBERON_0016394 anterior auricular lymph node +UBERON_0001009 circulatory system UBERON_0016395 infra-auricular lymph node +UBERON_0001009 circulatory system UBERON_0016396 intraglandular lymph node +UBERON_0001009 circulatory system UBERON_0016405 pulmonary capillary +UBERON_0001009 circulatory system UBERON_0016509 cavity of right ventricle +UBERON_0001009 circulatory system UBERON_0016513 cavity of left atrium +UBERON_0001009 circulatory system UBERON_0016514 cavity of left ventricle +UBERON_0001009 circulatory system UBERON_0016522 cavity of right atrium +UBERON_0001009 circulatory system UBERON_0016559 superficial cerebral vein +UBERON_0001009 circulatory system UBERON_0016564 deep cerebral vein +UBERON_0001009 circulatory system UBERON_0016565 cerebral blood vessel +UBERON_0001009 circulatory system UBERON_0016890 intrahepatic branch of portal vein +UBERON_0001009 circulatory system UBERON_0016920 descending trunk of arch of aorta +UBERON_0001009 circulatory system UBERON_0016923 preductal region of aortic arch +UBERON_0001009 circulatory system UBERON_0016924 postductal region of aortic arch +UBERON_0001009 circulatory system UBERON_0016925 juxtaductal region of aortic arch +UBERON_0001009 circulatory system UBERON_0017616 afferent spiracular artery +UBERON_0001009 circulatory system UBERON_0017617 efferent spiracular artery +UBERON_0001009 circulatory system UBERON_0017633 choroid plexus corpora arenacea +UBERON_0001009 circulatory system UBERON_0017635 paired venous dural sinus +UBERON_0001009 circulatory system UBERON_0017637 marginal venous sinus +UBERON_0001009 circulatory system UBERON_0017638 primitive marginal sinus +UBERON_0001009 circulatory system UBERON_0017640 unpaired venous dural sinus +UBERON_0001009 circulatory system UBERON_0017643 external thoracic vein +UBERON_0001009 circulatory system UBERON_0017646 internal mammary vein +UBERON_0001009 circulatory system UBERON_0018226 pulmonary part of lymphatic system +UBERON_0001009 circulatory system UBERON_0018227 pulmonary lymphatic vessel +UBERON_0001009 circulatory system UBERON_0018228 extrahepatic branch of portal vein +UBERON_0001009 circulatory system UBERON_0018231 labyrinthine artery +UBERON_0001009 circulatory system UBERON_0018243 thymic artery +UBERON_0001009 circulatory system UBERON_0018246 thyroid vein +UBERON_0001009 circulatory system UBERON_0018247 cervical thymic artery +UBERON_0001009 circulatory system UBERON_0018248 inferior superficial cervical thymic artery +UBERON_0001009 circulatory system UBERON_0018249 superior superficial cervical thymic artery +UBERON_0001009 circulatory system UBERON_0018250 middle thyroid artery +UBERON_0001009 circulatory system UBERON_0018251 meningeal vein +UBERON_0001009 circulatory system UBERON_0018252 internal pudendal vein +UBERON_0001009 circulatory system UBERON_0018253 external pudendal vein +UBERON_0001009 circulatory system UBERON_0018255 jejunal artery +UBERON_0001009 circulatory system UBERON_0018256 lacrimal vein +UBERON_0001009 circulatory system UBERON_0018335 lateral dorsal aorta canal +UBERON_0001009 circulatory system UBERON_0018392 arterial baroreceptor +UBERON_0001009 circulatory system UBERON_0018393 low-pressure baroreceptor +UBERON_0001009 circulatory system UBERON_0018394 vein baroreceptor +UBERON_0001009 circulatory system UBERON_0018395 cardiac baroreceptor +UBERON_0001009 circulatory system UBERON_0018396 pulmonary baroreceptor +UBERON_0001009 circulatory system UBERON_0018397 posterior superior alveolar artery +UBERON_0001009 circulatory system UBERON_0018410 lacteal +UBERON_0001009 circulatory system UBERON_0018549 ventral wall of dorsal aorta +UBERON_0001009 circulatory system UBERON_0018649 cardiac muscle tissue of ventricle +UBERON_0001009 circulatory system UBERON_0018674 heart vasculature +UBERON_0001009 circulatory system UBERON_0019189 carotid artery endothelium +UBERON_0001009 circulatory system UBERON_0019196 iliac artery endothelium +UBERON_0001009 circulatory system UBERON_0020550 auricular blood vessel +UBERON_0001009 circulatory system UBERON_0022292 splenic arteriole +UBERON_0001009 circulatory system UBERON_0022358 placenta blood vessel +UBERON_0001009 circulatory system UBERON_0034693 cremasteric artery +UBERON_0001009 circulatory system UBERON_0034697 inflow tract +UBERON_0001009 circulatory system UBERON_0034698 inflow tract of ventricle +UBERON_0001009 circulatory system UBERON_0034699 inflow tract of atrium +UBERON_0001009 circulatory system UBERON_0034703 inflow tract of right ventricle +UBERON_0001009 circulatory system UBERON_0034704 inflow tract of left ventricle +UBERON_0001009 circulatory system UBERON_0034727 vestibular bulb artery +UBERON_0001009 circulatory system UBERON_0034884 juxtaglomerular arteriole +UBERON_0001009 circulatory system UBERON_0034903 left atrium endocardium +UBERON_0001009 circulatory system UBERON_0034927 arcuate artery of foot +UBERON_0001009 circulatory system UBERON_0034940 venous sinus cavity +UBERON_0001009 circulatory system UBERON_0034949 lymphatic valve +UBERON_0001009 circulatory system UBERON_0034950 lymph sac of lymph heart +UBERON_0001009 circulatory system UBERON_0034951 subcutaneous lymph sac +UBERON_0001009 circulatory system UBERON_0034952 intrapleuroperitoneal lymph sac +UBERON_0001009 circulatory system UBERON_0034953 embryonic lymph sac +UBERON_0001009 circulatory system UBERON_0034958 retroperitoneal embryonic lymph sac +UBERON_0001009 circulatory system UBERON_0034959 right lymph heart +UBERON_0001009 circulatory system UBERON_0034960 left lymph heart +UBERON_0001009 circulatory system UBERON_0034961 embryonic lymph heart +UBERON_0001009 circulatory system UBERON_0034962 copulatory lymph heart +UBERON_0001009 circulatory system UBERON_0034964 superficial epigastric artery +UBERON_0001009 circulatory system UBERON_0034965 middle thyroid vein +UBERON_0001009 circulatory system UBERON_0034971 aortic body +UBERON_0001009 circulatory system UBERON_0034972 jugular body +UBERON_0001009 circulatory system UBERON_0034980 jugular bulb +UBERON_0001009 circulatory system UBERON_0034981 superior bulb of internal jugular vein +UBERON_0001009 circulatory system UBERON_0034982 inferior bulb of internal jugular vein +UBERON_0001009 circulatory system UBERON_0035039 rectal artery +UBERON_0001009 circulatory system UBERON_0035040 superior rectal artery +UBERON_0001009 circulatory system UBERON_0035041 deep temporal artery +UBERON_0001009 circulatory system UBERON_0035042 middle temporal artery +UBERON_0001009 circulatory system UBERON_0035043 temporal branch of lateral pretrosal artery +UBERON_0001009 circulatory system UBERON_0035150 superior cerebral vein +UBERON_0001009 circulatory system UBERON_0035151 dorsal cerebral vein +UBERON_0001009 circulatory system UBERON_0035152 internal cerebral vein +UBERON_0001009 circulatory system UBERON_0035162 infraclavicular lymph node +UBERON_0001009 circulatory system UBERON_0035180 sigmoid artery +UBERON_0001009 circulatory system UBERON_0035183 calcarine artery +UBERON_0001009 circulatory system UBERON_0035186 valve of foramen ovale +UBERON_0001009 circulatory system UBERON_0035195 plantar metatarsal artery +UBERON_0001009 circulatory system UBERON_0035198 superficial lymphatic vessel +UBERON_0001009 circulatory system UBERON_0035204 occipital lymph node +UBERON_0001009 circulatory system UBERON_0035213 basal zone of heart +UBERON_0001009 circulatory system UBERON_0035222 posterior parietal artery +UBERON_0001009 circulatory system UBERON_0035225 anterior temporal artery +UBERON_0001009 circulatory system UBERON_0035231 superficial middle cerebral vein +UBERON_0001009 circulatory system UBERON_0035234 medial circumflex femoral vein +UBERON_0001009 circulatory system UBERON_0035237 branch of internal carotid artery +UBERON_0001009 circulatory system UBERON_0035249 posterior external jugular vein +UBERON_0001009 circulatory system UBERON_0035252 left subcostal vein +UBERON_0001009 circulatory system UBERON_0035261 posterior temporal artery +UBERON_0001009 circulatory system UBERON_0035273 superior thoracic artery +UBERON_0001009 circulatory system UBERON_0035292 branch of posterior tibial artery +UBERON_0001009 circulatory system UBERON_0035304 branch of ulnar artery +UBERON_0001009 circulatory system UBERON_0035307 branch of vertebral artery +UBERON_0001009 circulatory system UBERON_0035322 right common iliac artery +UBERON_0001009 circulatory system UBERON_0035338 sphenoparietal sinus +UBERON_0001009 circulatory system UBERON_0035350 branch of middle cerebral artery +UBERON_0001009 circulatory system UBERON_0035359 branch of brachial artery +UBERON_0001009 circulatory system UBERON_0035374 small cardiac vein +UBERON_0001009 circulatory system UBERON_0035380 branch of anterior cerebral artery +UBERON_0001009 circulatory system UBERON_0035392 cystic vein +UBERON_0001009 circulatory system UBERON_0035395 branch of left coronary artery +UBERON_0001009 circulatory system UBERON_0035398 branch of external carotid artery +UBERON_0001009 circulatory system UBERON_0035403 hypophysial artery +UBERON_0001009 circulatory system UBERON_0035404 superior hypophysial artery +UBERON_0001009 circulatory system UBERON_0035422 circumflex branch of left coronary artery +UBERON_0001009 circulatory system UBERON_0035428 postcapillary venule +UBERON_0001009 circulatory system UBERON_0035435 right suprarenal vein +UBERON_0001009 circulatory system UBERON_0035462 anterior parietal artery +UBERON_0001009 circulatory system UBERON_0035474 right subcostal vein +UBERON_0001009 circulatory system UBERON_0035483 left suprarenal vein +UBERON_0001009 circulatory system UBERON_0035489 branch of basilar artery +UBERON_0001009 circulatory system UBERON_0035492 inferior hypophysial artery +UBERON_0001009 circulatory system UBERON_0035508 branch of posterior cerebral artery +UBERON_0001009 circulatory system UBERON_0035529 left common iliac artery +UBERON_0001009 circulatory system UBERON_0035530 basal vein +UBERON_0001009 circulatory system UBERON_0035532 deep middle cerebral vein +UBERON_0001009 circulatory system UBERON_0035539 esophageal artery +UBERON_0001009 circulatory system UBERON_0035545 deep lymphatic vessel +UBERON_0001009 circulatory system UBERON_0035546 uveal vein +UBERON_0001009 circulatory system UBERON_0035547 posterior ciliary vein +UBERON_0001009 circulatory system UBERON_0035548 colic artery +UBERON_0001009 circulatory system UBERON_0035549 vasculature of integument +UBERON_0001009 circulatory system UBERON_0035550 superficial vein +UBERON_0001009 circulatory system UBERON_0035551 deep vasculature +UBERON_0001009 circulatory system UBERON_0035552 deep vein +UBERON_0001009 circulatory system UBERON_0035553 left cardiac chamber +UBERON_0001009 circulatory system UBERON_0035554 right cardiac chamber +UBERON_0001009 circulatory system UBERON_0035608 dura mater lymph vessel +UBERON_0001009 circulatory system UBERON_0035640 middle vesical artery +UBERON_0001009 circulatory system UBERON_0035655 paraumbilical vein +UBERON_0001009 circulatory system UBERON_0035659 deep facial vein +UBERON_0001009 circulatory system UBERON_0035662 parotid vein +UBERON_0001009 circulatory system UBERON_0035675 anterior facial vein +UBERON_0001009 circulatory system UBERON_0035753 capillary plexus +UBERON_0001009 circulatory system UBERON_0035754 pulmonary capillary plexus +UBERON_0001009 circulatory system UBERON_0035755 systemic capillary plexus +UBERON_0001009 circulatory system UBERON_0035756 capillary network of liver +UBERON_0001009 circulatory system UBERON_0035757 embryonic capillary plexus +UBERON_0001009 circulatory system UBERON_0035758 peritubular capillary plexus of kidney +UBERON_0001009 circulatory system UBERON_0035762 capillary network of kidney +UBERON_0001009 circulatory system UBERON_0035763 cavity of cardiac chamber +UBERON_0001009 circulatory system UBERON_0035764 pulmonary lymph node +UBERON_0001009 circulatory system UBERON_0035765 subsegmental lymph node +UBERON_0001009 circulatory system UBERON_0035829 right gastroepiploic artery +UBERON_0001009 circulatory system UBERON_0035830 left gastroepiploic artery +UBERON_0001009 circulatory system UBERON_0035835 apical region of left ventricle +UBERON_0001009 circulatory system UBERON_0035836 apical region of right ventricle +UBERON_0001009 circulatory system UBERON_0035837 apical region of heart ventricle +UBERON_0001009 circulatory system UBERON_0035965 wall of blood vessel +UBERON_0001009 circulatory system UBERON_0036066 inferior endocardial cushion +UBERON_0001009 circulatory system UBERON_0036067 superior endocardial cushion +UBERON_0001009 circulatory system UBERON_0036074 vein of vestibular aqueduct +UBERON_0001009 circulatory system UBERON_0036167 Sattler's layer +UBERON_0001009 circulatory system UBERON_0036168 Haller's layer +UBERON_0001009 circulatory system UBERON_0036256 iliac lymph sac +UBERON_0001009 circulatory system UBERON_0036259 cardial lymph propulsor +UBERON_0001009 circulatory system UBERON_0036260 embryonic cisterna chyli +UBERON_0001009 circulatory system UBERON_0036267 vulval vein +UBERON_0001009 circulatory system UBERON_0036268 pelvic vein +UBERON_0001009 circulatory system UBERON_0036269 penis blood vessel +UBERON_0001009 circulatory system UBERON_0036285 wall of left ventricle +UBERON_0001009 circulatory system UBERON_0036286 wall of right ventricle +UBERON_0001009 circulatory system UBERON_0036288 anterior wall of left ventricle +UBERON_0001009 circulatory system UBERON_0036289 anterior wall of right ventricle +UBERON_0001009 circulatory system UBERON_0036290 myocardium of anterior wall of left ventricle +UBERON_0001009 circulatory system UBERON_0036291 myocardium of anterior wall of right ventricle +UBERON_0001009 circulatory system UBERON_0036300 tributary of central retinal vein +UBERON_0001009 circulatory system UBERON_0036301 vasculature of spleen +UBERON_0001009 circulatory system UBERON_0036302 vasculature of central nervous system plus retina +UBERON_0001009 circulatory system UBERON_0036303 vasculature of central nervous system +UBERON_0001009 circulatory system UBERON_0036328 wall of coronary artery +UBERON_0001009 circulatory system UBERON_0036351 wall of brachiocephalic artery +UBERON_0001009 circulatory system UBERON_0036352 wall of subclavian artery +UBERON_0001009 circulatory system UBERON_0036422 wall of pulmonary artery +UBERON_0001009 circulatory system UBERON_0037094 wall of common carotid artery +UBERON_0001009 circulatory system UBERON_0037144 wall of heart +UBERON_0001009 circulatory system UBERON_0037722 right retropharyngeal lymph node +UBERON_0001009 circulatory system UBERON_0037723 left retropharyngeal lymph node +UBERON_0001009 circulatory system UBERON_0037763 lateral superior deep cervical lymph node +UBERON_0001009 circulatory system UBERON_0037764 anterior superior deep cervical lymph node +UBERON_0001009 circulatory system UBERON_0037765 lateral inferior deep cervical lymph node +UBERON_0001009 circulatory system UBERON_0037766 anterior inferior deep cervical lymph node +UBERON_0001009 circulatory system UBERON_0037787 right occipital lymph node +UBERON_0001009 circulatory system UBERON_0037788 left occipital lymph node +UBERON_0001009 circulatory system UBERON_0038635 interlobar lymph node +UBERON_0001009 circulatory system UBERON_0038638 lobar lymph node +UBERON_0001009 circulatory system UBERON_0038641 segmental lymph node +UBERON_0001009 circulatory system UBERON_0038855 superior medial inguinal lymph node +UBERON_0001009 circulatory system UBERON_0038856 superior lateral inguinal lymph node +UBERON_0001009 circulatory system UBERON_0038857 inferior inguinal lymph node +UBERON_0001009 circulatory system UBERON_0038894 paratracheal lymph node +UBERON_0001009 circulatory system UBERON_0038929 infrahyoid lymph node +UBERON_0001009 circulatory system UBERON_0038930 prelaryngeal lymph node +UBERON_0001009 circulatory system UBERON_0038931 thyroid lymph node +UBERON_0001009 circulatory system UBERON_0038932 pretracheal lymph node +UBERON_0001009 circulatory system UBERON_0038934 superior deep lateral cervical lymph node +UBERON_0001009 circulatory system UBERON_0038935 inferior deep lateral cervical lymph node +UBERON_0001009 circulatory system UBERON_0038936 jugulodigastric lymph node +UBERON_0001009 circulatory system UBERON_0039169 anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039170 mammary branch of internal thoracic artery +UBERON_0001009 circulatory system UBERON_0039185 accessory vertebral vein +UBERON_0001009 circulatory system UBERON_0039186 anterior vertebral vein +UBERON_0001009 circulatory system UBERON_0039187 suprascapular vein +UBERON_0001009 circulatory system UBERON_0039188 superior laryngeal vein +UBERON_0001009 circulatory system UBERON_0039215 appendicular artery +UBERON_0001009 circulatory system UBERON_0039222 cystic artery +UBERON_0001009 circulatory system UBERON_0039228 sigmoid vein +UBERON_0001009 circulatory system UBERON_0039230 prepyloric vein +UBERON_0001009 circulatory system UBERON_0039232 conus artery +UBERON_0001009 circulatory system UBERON_0039256 pubic vein +UBERON_0001009 circulatory system UBERON_0039258 external vertebral venous plexus +UBERON_0001009 circulatory system UBERON_0039259 vertebral venous plexus +UBERON_0001009 circulatory system UBERON_0039260 thyrocervical artery +UBERON_0001009 circulatory system UBERON_0039261 pancreatic artery +UBERON_0001009 circulatory system UBERON_0039262 segmental pulmonary artery +UBERON_0001009 circulatory system UBERON_0039351 posterior labial artery +UBERON_0001009 circulatory system UBERON_0039355 urethral artery +UBERON_0001009 circulatory system UBERON_0039376 penile bulb vein +UBERON_0001009 circulatory system UBERON_0039377 urethral vein +UBERON_0001009 circulatory system UBERON_0039379 vestibular bulb vein +UBERON_0001009 circulatory system UBERON_0039421 superficial dorsal vein of penis +UBERON_0001009 circulatory system UBERON_0039422 dorsal vein of penis +UBERON_0001009 circulatory system UBERON_0039835 posterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039838 seventh anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039839 eighth anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039840 ninth anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039841 first anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039842 second anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039843 third anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039844 fourth anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039845 fifth anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039846 sixth anterior intercostal artery +UBERON_0001009 circulatory system UBERON_0039847 suprascapular artery +UBERON_0001009 circulatory system UBERON_0039848 anterior external vertebral venous plexus +UBERON_0001009 circulatory system UBERON_0039849 posterior external vertebral venous plexus +UBERON_0001009 circulatory system UBERON_0039851 apicoposterior segmental artery +UBERON_0001009 circulatory system UBERON_0039856 right ovarian vein +UBERON_0001009 circulatory system UBERON_0039857 left ovarian vein +UBERON_0001009 circulatory system UBERON_2000039 median axial vein +UBERON_0001009 circulatory system UBERON_2000096 cardinal system +UBERON_0001009 circulatory system UBERON_2000202 efferent portion of pharyngeal arch artery +UBERON_0001009 circulatory system UBERON_2000214 hypobranchial vessel +UBERON_0001009 circulatory system UBERON_2000484 celiacomesenteric artery +UBERON_0001009 circulatory system UBERON_2000666 filamental artery +UBERON_0001009 circulatory system UBERON_2000673 hypobranchial artery +UBERON_0001009 circulatory system UBERON_2000677 segmental intercostal artery +UBERON_0001009 circulatory system UBERON_2000716 afferent portion of pharyngeal arch artery +UBERON_0001009 circulatory system UBERON_2001051 caudal division of the internal carotid artery +UBERON_0001009 circulatory system UBERON_2001052 primordial hindbrain channel +UBERON_0001009 circulatory system UBERON_2001053 future internal carotid artery +UBERON_0001009 circulatory system UBERON_2001054 lateral dorsal aorta +UBERON_0001009 circulatory system UBERON_2001059 cranial division of the internal carotid artery +UBERON_0001009 circulatory system UBERON_2001062 presumptive mesencephalic artery +UBERON_0001009 circulatory system UBERON_2001063 posterior caudal vein +UBERON_0001009 circulatory system UBERON_2001073 axial vasculature +UBERON_0001009 circulatory system UBERON_2001286 caudal vein plexus +UBERON_0001009 circulatory system UBERON_2001857 hyoidean artery +UBERON_0001009 circulatory system UBERON_2001975 suprabranchial artery +UBERON_0001009 circulatory system UBERON_2005000 basal communicating artery +UBERON_0001009 circulatory system UBERON_2005010 mid cerebral vein +UBERON_0001009 circulatory system UBERON_2005011 pseudobranchial artery +UBERON_0001009 circulatory system UBERON_2005012 afferent filamental artery +UBERON_0001009 circulatory system UBERON_2005013 concurrent branch afferent branchial artery +UBERON_0001009 circulatory system UBERON_2005014 recurrent branch afferent branchial artery +UBERON_0001009 circulatory system UBERON_2005015 afferent lamellar arteriole +UBERON_0001009 circulatory system UBERON_2005017 primordial midbrain channel +UBERON_0001009 circulatory system UBERON_2005018 efferent filamental artery +UBERON_0001009 circulatory system UBERON_2005019 efferent lamellar arteriole +UBERON_0001009 circulatory system UBERON_2005020 central artery +UBERON_0001009 circulatory system UBERON_2005021 cerebellar central artery +UBERON_0001009 circulatory system UBERON_2005022 opercular artery +UBERON_0001009 circulatory system UBERON_2005025 dorsal longitudinal anastomotic vessel +UBERON_0001009 circulatory system UBERON_2005026 primary head sinus +UBERON_0001009 circulatory system UBERON_2005027 posterior cerebral vein +UBERON_0001009 circulatory system UBERON_2005030 dorsal ciliary vein +UBERON_0001009 circulatory system UBERON_2005031 dorsal longitudinal vein +UBERON_0001009 circulatory system UBERON_2005032 optic vein +UBERON_0001009 circulatory system UBERON_2005034 parachordal vessel +UBERON_0001009 circulatory system UBERON_2005036 supraintestinal artery +UBERON_0001009 circulatory system UBERON_2005038 supraintestinal vein +UBERON_0001009 circulatory system UBERON_2005044 optic artery +UBERON_0001009 circulatory system UBERON_2005048 primitive prosencephalic artery +UBERON_0001009 circulatory system UBERON_2005049 prosencephalic artery +UBERON_0001009 circulatory system UBERON_2005050 palatocerebral artery +UBERON_0001009 circulatory system UBERON_2005051 communicating vessel palatocerebral artery +UBERON_0001009 circulatory system UBERON_2005052 anterior mesencephalic central artery +UBERON_0001009 circulatory system UBERON_2005053 nasal ciliary artery +UBERON_0001009 circulatory system UBERON_2005054 inner optic circle +UBERON_0001009 circulatory system UBERON_2005055 median palatocerebral vein +UBERON_0001009 circulatory system UBERON_2005056 palatocerebral vein +UBERON_0001009 circulatory system UBERON_2005066 bulbus arteriosus outer layer +UBERON_0001009 circulatory system UBERON_2005067 bulbus arteriosus middle layer +UBERON_0001009 circulatory system UBERON_2005068 bulbus arteriosus inner layer +UBERON_0001009 circulatory system UBERON_2005072 endocardial ring +UBERON_0001009 circulatory system UBERON_2005073 atrioventricular ring +UBERON_0001009 circulatory system UBERON_2005074 central cardiac conduction system +UBERON_0001009 circulatory system UBERON_2005075 peripheral cardiac conduction system +UBERON_0001009 circulatory system UBERON_2005078 middle mesencephalic central artery +UBERON_0001009 circulatory system UBERON_2005079 posterior mesencephalic central artery +UBERON_0001009 circulatory system UBERON_2005080 anterior mesenteric artery +UBERON_0001009 circulatory system UBERON_2005082 dorsal branch nasal ciliary artery +UBERON_0001009 circulatory system UBERON_2005083 ventral branch nasal ciliary artery +UBERON_0001009 circulatory system UBERON_2005084 metencephalic artery +UBERON_0001009 circulatory system UBERON_2005085 nasal artery +UBERON_0001009 circulatory system UBERON_2005087 pectoral vein +UBERON_0001009 circulatory system UBERON_2005088 posterior mesenteric artery +UBERON_0001009 circulatory system UBERON_2005089 swim bladder artery +UBERON_0001009 circulatory system UBERON_2005093 nasal vein +UBERON_0001009 circulatory system UBERON_2005097 caudal fin vasculature +UBERON_0001009 circulatory system UBERON_2005098 central ray artery +UBERON_0001009 circulatory system UBERON_2005099 ray vein +UBERON_0001009 circulatory system UBERON_2005100 intervessel commissure +UBERON_0001009 circulatory system UBERON_2005101 interray vessel +UBERON_0001009 circulatory system UBERON_2005106 longitudinal lateral lymphatic vessel +UBERON_0001009 circulatory system UBERON_2005219 choroid plexus vascular circuit +UBERON_0001009 circulatory system UBERON_2005248 trans-choroid plexus branch +UBERON_0001009 circulatory system UBERON_2005259 continuous capillary +UBERON_0001009 circulatory system UBERON_2005260 fenestrated capillary +UBERON_0001009 circulatory system UBERON_2005295 axial blood vessel +UBERON_0001009 circulatory system UBERON_2005303 caudal fin lymph vessel +UBERON_0001009 circulatory system UBERON_2005304 caudal fin blood vessel +UBERON_0001009 circulatory system UBERON_2005319 intersegmental lymph vessel +UBERON_0001009 circulatory system UBERON_2005320 dorsal longitudinal lymphatic vessel +UBERON_0001009 circulatory system UBERON_3010200 vasculature of respiratory integument +UBERON_0001009 circulatory system UBERON_3010243 ventricular musculature +UBERON_0001009 circulatory system UBERON_3010404 capillary system of liver +UBERON_0001009 circulatory system UBERON_3010413 left channel of ventral aorta +UBERON_0001009 circulatory system UBERON_3010417 posterior palatine artery +UBERON_0001009 circulatory system UBERON_3010423 larval aorta +UBERON_0001009 circulatory system UBERON_3010424 right channel of ventral aorta +UBERON_0001009 circulatory system UBERON_3010489 muscular artery +UBERON_0001009 circulatory system UBERON_3010494 lateral pretrosal artery +UBERON_0001009 circulatory system UBERON_3010496 mandibular artery +UBERON_0001009 circulatory system UBERON_3010498 cutaneus artery +UBERON_0001009 circulatory system UBERON_3010499 coeliaco-mesenteric artery +UBERON_0001009 circulatory system UBERON_3010500 gastrico-linealis +UBERON_0001009 circulatory system UBERON_3010501 duodeno-pancreatic artery +UBERON_0001009 circulatory system UBERON_3010502 duodeno-hepatic artery +UBERON_0001009 circulatory system UBERON_3010503 oviduct artery +UBERON_0001009 circulatory system UBERON_3010506 postcaval vein +UBERON_0001009 circulatory system UBERON_3010507 precaval vein +UBERON_0001009 circulatory system UBERON_3010515 lateral vein +UBERON_0001009 circulatory system UBERON_3010516 cutaneus magnus +UBERON_0001009 circulatory system UBERON_3010517 ventral abdominal vein +UBERON_0001009 circulatory system UBERON_3010519 Jacobson's vein +UBERON_0001009 circulatory system UBERON_3010520 oviducal vein +UBERON_0001009 circulatory system UBERON_6001664 insect embryonic/larval circulatory system +UBERON_0001009 circulatory system UBERON_6001668 insect embryonic/larval lymph gland +UBERON_0001009 circulatory system UBERON_8000009 Purkinje fiber network +UBERON_0001009 circulatory system UBERON_8410001 small intestine venule +UBERON_0001009 circulatory system UBERON_8410002 small intestine lymphatic vessel +UBERON_0001009 circulatory system UBERON_8410004 small intestine arteriole +UBERON_0001009 circulatory system UBERON_8410008 venule of anorectum +UBERON_0001009 circulatory system UBERON_8410009 arteriole of anorectum +UBERON_0001009 circulatory system UBERON_8410013 afferent lymphatic vessel valve +UBERON_0001009 circulatory system UBERON_8410014 efferent lymphatic vessel valve +UBERON_0001009 circulatory system UBERON_8410015 arteriole of colon +UBERON_0001009 circulatory system UBERON_8410017 left colic vein +UBERON_0001009 circulatory system UBERON_8410018 right colic vein +UBERON_0001009 circulatory system UBERON_8410020 venule of appendix +UBERON_0001009 circulatory system UBERON_8410022 left colic artery +UBERON_0001009 circulatory system UBERON_8410023 right colic artery +UBERON_0001009 circulatory system UBERON_8410028 arteriole of appendix +UBERON_0001009 circulatory system UBERON_8410029 lymphatic capillary of appendix +UBERON_0001009 circulatory system UBERON_8410030 lymphatic vessel of appendix +UBERON_0001009 circulatory system UBERON_8410033 lymph node vein +UBERON_0001009 circulatory system UBERON_8410034 lymph node artery +UBERON_0001009 circulatory system UBERON_8410035 medullary arteriole of lymph node +UBERON_0001009 circulatory system UBERON_8410036 medullary venule of lymph node +UBERON_0001009 circulatory system UBERON_8410037 high endothelial venule +UBERON_0001009 circulatory system UBERON_8410038 high endothelial venule of lymph node +UBERON_0001009 circulatory system UBERON_8410039 high endothelial venule of appendix +UBERON_0001009 circulatory system UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0001009 circulatory system UBERON_8410041 venule of lymph node +UBERON_0001009 circulatory system UBERON_8410042 arteriole of lymph node +UBERON_0001009 circulatory system UBERON_8410044 vein of appendix +UBERON_0001009 circulatory system UBERON_8410045 artery of appendix +UBERON_0001009 circulatory system UBERON_8410048 venule of colon +UBERON_0001009 circulatory system UBERON_8410051 lymphatic vessel of colon +UBERON_0001009 circulatory system UBERON_8410054 lymphatic capillary of colon +UBERON_0001009 circulatory system UBERON_8410055 lymphatic capillary of anorectum +UBERON_0001009 circulatory system UBERON_8410056 capillary of anorectum +UBERON_0001009 circulatory system UBERON_8410057 capillary of colon +UBERON_0001009 circulatory system UBERON_8410068 capillary of small intestine +UBERON_0001009 circulatory system UBERON_8410078 right lymphatic duct +UBERON_0001009 circulatory system UBERON_8410081 blood microvessel +UBERON_0001009 circulatory system UBERON_8480000 iliac vein smooth muscle tissue +UBERON_0001009 circulatory system UBERON_8480001 capillary of brain +UBERON_0001009 circulatory system UBERON_8480002 thoracic aorta smooth muscle tissue +UBERON_0001009 circulatory system UBERON_8480003 iliac artery smooth muscle tissue +UBERON_0001009 circulatory system UBERON_8480004 iliac vein endothelium +UBERON_0001009 circulatory system UBERON_8480005 placental artery endothelium +UBERON_0001009 circulatory system UBERON_8480006 mesenteric lymphatic vessel +UBERON_0001009 circulatory system UBERON_8480007 placental artery +UBERON_0001009 circulatory system UBERON_8480008 placental vein +UBERON_0001016 nervous system CL_0000540 neuron +UBERON_0001016 nervous system UBERON_0000005 chemosensory organ +UBERON_0001016 nervous system UBERON_0000007 pituitary gland +UBERON_0001016 nervous system UBERON_0000010 peripheral nervous system +UBERON_0001016 nervous system UBERON_0000011 parasympathetic nervous system +UBERON_0001016 nervous system UBERON_0000012 somatic nervous system +UBERON_0001016 nervous system UBERON_0000013 sympathetic nervous system +UBERON_0001016 nervous system UBERON_0000044 dorsal root ganglion +UBERON_0001016 nervous system UBERON_0000045 ganglion +UBERON_0001016 nervous system UBERON_0000052 fornix of brain +UBERON_0001016 nervous system UBERON_0000053 macula lutea +UBERON_0001016 nervous system UBERON_0000073 regional part of nervous system +UBERON_0001016 nervous system UBERON_0000120 blood brain barrier +UBERON_0001016 nervous system UBERON_0000121 perineurium +UBERON_0001016 nervous system UBERON_0000122 neuron projection bundle +UBERON_0001016 nervous system UBERON_0000123 endoneurium +UBERON_0001016 nervous system UBERON_0000124 epineurium +UBERON_0001016 nervous system UBERON_0000125 neural nucleus +UBERON_0001016 nervous system UBERON_0000126 cranial nerve nucleus +UBERON_0001016 nervous system UBERON_0000127 facial nucleus +UBERON_0001016 nervous system UBERON_0000128 olivary body +UBERON_0001016 nervous system UBERON_0000200 gyrus +UBERON_0001016 nervous system UBERON_0000201 endothelial blood brain barrier +UBERON_0001016 nervous system UBERON_0000202 glial blood brain barrier +UBERON_0001016 nervous system UBERON_0000203 pallium +UBERON_0001016 nervous system UBERON_0000204 ventral part of telencephalon +UBERON_0001016 nervous system UBERON_0000315 subarachnoid space +UBERON_0001016 nervous system UBERON_0000345 myelin +UBERON_0001016 nervous system UBERON_0000348 ophthalmic nerve +UBERON_0001016 nervous system UBERON_0000349 limbic system +UBERON_0001016 nervous system UBERON_0000369 corpus striatum +UBERON_0001016 nervous system UBERON_0000373 tapetum of corpus callosum +UBERON_0001016 nervous system UBERON_0000375 mandibular nerve +UBERON_0001016 nervous system UBERON_0000377 maxillary nerve +UBERON_0001016 nervous system UBERON_0000391 leptomeninx +UBERON_0001016 nervous system UBERON_0000395 cochlear ganglion +UBERON_0001016 nervous system UBERON_0000407 sympathetic trunk +UBERON_0001016 nervous system UBERON_0000408 vertebral ganglion +UBERON_0001016 nervous system UBERON_0000411 visual cortex +UBERON_0001016 nervous system UBERON_0000416 subdural space +UBERON_0001016 nervous system UBERON_0000429 enteric plexus +UBERON_0001016 nervous system UBERON_0000430 ventral intermediate nucleus of thalamus +UBERON_0001016 nervous system UBERON_0000431 ventral medial complex of thalamus +UBERON_0001016 nervous system UBERON_0000432 endopeduncular nucleus +UBERON_0001016 nervous system UBERON_0000433 posterior paraventricular nucleus of thalamus +UBERON_0001016 nervous system UBERON_0000434 anterior paraventricular nucleus of thalamus +UBERON_0001016 nervous system UBERON_0000435 lateral tuberal nucleus +UBERON_0001016 nervous system UBERON_0000437 arachnoid barrier layer +UBERON_0001016 nervous system UBERON_0000439 arachnoid trabecula +UBERON_0001016 nervous system UBERON_0000445 habenular trigone +UBERON_0001016 nervous system UBERON_0000446 septum of telencephalon +UBERON_0001016 nervous system UBERON_0000451 prefrontal cortex +UBERON_0001016 nervous system UBERON_0000454 cerebral subcortex +UBERON_0001016 nervous system UBERON_0000908 hippocampal commissure +UBERON_0001016 nervous system UBERON_0000929 pharyngeal branch of vagus nerve +UBERON_0001016 nervous system UBERON_0000934 ventral nerve cord +UBERON_0001016 nervous system UBERON_0000935 anterior commissure +UBERON_0001016 nervous system UBERON_0000936 posterior commissure +UBERON_0001016 nervous system UBERON_0000941 cranial nerve II +UBERON_0001016 nervous system UBERON_0000942 frontal nerve (branch of ophthalmic) +UBERON_0001016 nervous system UBERON_0000955 brain +UBERON_0001016 nervous system UBERON_0000955 brain fragment +UBERON_0001016 nervous system UBERON_0000956 cerebral cortex +UBERON_0001016 nervous system UBERON_0000959 optic chiasma +UBERON_0001016 nervous system UBERON_0000961 thoracic ganglion +UBERON_0001016 nervous system UBERON_0000962 nerve of cervical vertebra +UBERON_0001016 nervous system UBERON_0000963 head sensillum +UBERON_0001016 nervous system UBERON_0000966 retina +UBERON_0001016 nervous system UBERON_0000971 ommatidium +UBERON_0001016 nervous system UBERON_0000988 pons +UBERON_0001016 nervous system UBERON_0001017 central nervous system +UBERON_0001016 nervous system UBERON_0001018 axon tract +UBERON_0001016 nervous system UBERON_0001019 nerve fasciculus +UBERON_0001016 nervous system UBERON_0001020 nervous system commissure +UBERON_0001016 nervous system UBERON_0001021 nerve +UBERON_0001016 nervous system UBERON_0001027 sensory nerve +UBERON_0001016 nervous system UBERON_0001031 sheath of Schwann +UBERON_0001016 nervous system UBERON_0001047 neural glomerulus +UBERON_0001016 nervous system UBERON_0001053 arthropod neurohemal organ +UBERON_0001016 nervous system UBERON_0001056 corpus cardiacum +UBERON_0001016 nervous system UBERON_0001058 mushroom body +UBERON_0001016 nervous system UBERON_0001059 pars intercerebralis +UBERON_0001016 nervous system UBERON_0001063 flocculus +UBERON_0001016 nervous system UBERON_0001148 median nerve +UBERON_0001016 nervous system UBERON_0001267 femoral nerve +UBERON_0001016 nervous system UBERON_0001322 sciatic nerve +UBERON_0001016 nervous system UBERON_0001323 tibial nerve +UBERON_0001016 nervous system UBERON_0001324 common fibular nerve +UBERON_0001016 nervous system UBERON_0001384 primary motor cortex +UBERON_0001016 nervous system UBERON_0001393 auditory cortex +UBERON_0001016 nervous system UBERON_0001492 radial nerve +UBERON_0001016 nervous system UBERON_0001493 axillary nerve +UBERON_0001016 nervous system UBERON_0001494 ulnar nerve +UBERON_0001016 nervous system UBERON_0001579 olfactory nerve +UBERON_0001016 nervous system UBERON_0001620 central retinal artery +UBERON_0001016 nervous system UBERON_0001641 transverse sinus +UBERON_0001016 nervous system UBERON_0001642 superior sagittal sinus +UBERON_0001016 nervous system UBERON_0001643 oculomotor nerve +UBERON_0001016 nervous system UBERON_0001644 trochlear nerve +UBERON_0001016 nervous system UBERON_0001645 trigeminal nerve +UBERON_0001016 nervous system UBERON_0001646 abducens nerve +UBERON_0001016 nervous system UBERON_0001647 facial nerve +UBERON_0001016 nervous system UBERON_0001648 vestibulocochlear nerve +UBERON_0001016 nervous system UBERON_0001649 glossopharyngeal nerve +UBERON_0001016 nervous system UBERON_0001650 hypoglossal nerve +UBERON_0001016 nervous system UBERON_0001663 cerebral vein +UBERON_0001016 nervous system UBERON_0001664 inferior cerebral vein +UBERON_0001016 nervous system UBERON_0001672 anterior cerebral vein +UBERON_0001016 nervous system UBERON_0001673 central retinal vein +UBERON_0001016 nervous system UBERON_0001675 trigeminal ganglion +UBERON_0001016 nervous system UBERON_0001699 sensory root of facial nerve +UBERON_0001016 nervous system UBERON_0001700 geniculate ganglion +UBERON_0001016 nervous system UBERON_0001701 glossopharyngeal ganglion +UBERON_0001016 nervous system UBERON_0001714 cranial ganglion +UBERON_0001016 nervous system UBERON_0001715 oculomotor nuclear complex +UBERON_0001016 nervous system UBERON_0001717 spinal nucleus of trigeminal nerve +UBERON_0001016 nervous system UBERON_0001718 mesencephalic nucleus of trigeminal nerve +UBERON_0001016 nervous system UBERON_0001719 nucleus ambiguus +UBERON_0001016 nervous system UBERON_0001720 cochlear nucleus +UBERON_0001016 nervous system UBERON_0001721 inferior vestibular nucleus +UBERON_0001016 nervous system UBERON_0001722 medial vestibular nucleus +UBERON_0001016 nervous system UBERON_0001727 taste bud +UBERON_0001016 nervous system UBERON_0001759 vagus nerve +UBERON_0001016 nervous system UBERON_0001780 spinal nerve +UBERON_0001016 nervous system UBERON_0001781 layer of retina +UBERON_0001016 nervous system UBERON_0001782 pigmented layer of retina +UBERON_0001016 nervous system UBERON_0001783 optic disc +UBERON_0001016 nervous system UBERON_0001785 cranial nerve +UBERON_0001016 nervous system UBERON_0001786 fovea centralis +UBERON_0001016 nervous system UBERON_0001787 photoreceptor layer of retina +UBERON_0001016 nervous system UBERON_0001788 outer limiting layer of retina +UBERON_0001016 nervous system UBERON_0001789 outer nuclear layer of retina +UBERON_0001016 nervous system UBERON_0001790 outer plexiform layer of retina +UBERON_0001016 nervous system UBERON_0001791 inner nuclear layer of retina +UBERON_0001016 nervous system UBERON_0001792 ganglionic layer of retina +UBERON_0001016 nervous system UBERON_0001793 nerve fiber layer of retina +UBERON_0001016 nervous system UBERON_0001794 inner limiting layer of retina +UBERON_0001016 nervous system UBERON_0001795 inner plexiform layer of retina +UBERON_0001016 nervous system UBERON_0001800 sensory ganglion +UBERON_0001016 nervous system UBERON_0001805 autonomic ganglion +UBERON_0001016 nervous system UBERON_0001806 sympathetic ganglion +UBERON_0001016 nervous system UBERON_0001807 paravertebral ganglion +UBERON_0001016 nervous system UBERON_0001808 parasympathetic ganglion +UBERON_0001016 nervous system UBERON_0001809 enteric ganglion +UBERON_0001016 nervous system UBERON_0001810 nerve plexus +UBERON_0001016 nervous system UBERON_0001813 spinal nerve plexus +UBERON_0001016 nervous system UBERON_0001814 brachial nerve plexus +UBERON_0001016 nervous system UBERON_0001815 lumbosacral nerve plexus +UBERON_0001016 nervous system UBERON_0001816 autonomic nerve plexus +UBERON_0001016 nervous system UBERON_0001853 utricle of membranous labyrinth +UBERON_0001016 nervous system UBERON_0001854 saccule of membranous labyrinth +UBERON_0001016 nervous system UBERON_0001869 cerebral hemisphere +UBERON_0001016 nervous system UBERON_0001870 frontal cortex +UBERON_0001016 nervous system UBERON_0001871 temporal lobe +UBERON_0001016 nervous system UBERON_0001872 parietal lobe +UBERON_0001016 nervous system UBERON_0001873 caudate nucleus +UBERON_0001016 nervous system UBERON_0001874 putamen +UBERON_0001016 nervous system UBERON_0001875 globus pallidus +UBERON_0001016 nervous system UBERON_0001876 amygdala +UBERON_0001016 nervous system UBERON_0001877 medial septal nucleus +UBERON_0001016 nervous system UBERON_0001878 septofimbrial nucleus +UBERON_0001016 nervous system UBERON_0001879 nucleus of diagonal band +UBERON_0001016 nervous system UBERON_0001880 bed nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0001881 island of Calleja +UBERON_0001016 nervous system UBERON_0001882 nucleus accumbens +UBERON_0001016 nervous system UBERON_0001883 olfactory tubercle +UBERON_0001016 nervous system UBERON_0001884 phrenic nerve +UBERON_0001016 nervous system UBERON_0001885 dentate gyrus of hippocampal formation +UBERON_0001016 nervous system UBERON_0001886 choroid plexus +UBERON_0001016 nervous system UBERON_0001887 internal capsule of telencephalon +UBERON_0001016 nervous system UBERON_0001888 lateral olfactory stria +UBERON_0001016 nervous system UBERON_0001889 trunk of phrenic nerve +UBERON_0001016 nervous system UBERON_0001890 forebrain +UBERON_0001016 nervous system UBERON_0001890 forebrain and midbrain +UBERON_0001016 nervous system UBERON_0001890 forebrain fragment +UBERON_0001016 nervous system UBERON_0001891 midbrain +UBERON_0001016 nervous system UBERON_0001892 rhombomere +UBERON_0001016 nervous system UBERON_0001893 telencephalon +UBERON_0001016 nervous system UBERON_0001894 diencephalon +UBERON_0001016 nervous system UBERON_0001894 diencephalon and midbrain +UBERON_0001016 nervous system UBERON_0001894 pituitary and diencephalon +UBERON_0001016 nervous system UBERON_0001895 metencephalon +UBERON_0001016 nervous system UBERON_0001896 medulla oblongata +UBERON_0001016 nervous system UBERON_0001897 dorsal plus ventral thalamus +UBERON_0001016 nervous system UBERON_0001898 hypothalamus +UBERON_0001016 nervous system UBERON_0001899 epithalamus +UBERON_0001016 nervous system UBERON_0001900 ventral thalamus +UBERON_0001016 nervous system UBERON_0001903 thalamic reticular nucleus +UBERON_0001016 nervous system UBERON_0001904 habenula +UBERON_0001016 nervous system UBERON_0001905 pineal body +UBERON_0001016 nervous system UBERON_0001906 subthalamic nucleus +UBERON_0001016 nervous system UBERON_0001907 zona incerta +UBERON_0001016 nervous system UBERON_0001908 optic tract +UBERON_0001016 nervous system UBERON_0001909 habenular commissure +UBERON_0001016 nervous system UBERON_0001910 medial forebrain bundle +UBERON_0001016 nervous system UBERON_0001920 paraventricular nucleus of thalamus +UBERON_0001016 nervous system UBERON_0001921 reuniens nucleus +UBERON_0001016 nervous system UBERON_0001922 parafascicular nucleus +UBERON_0001016 nervous system UBERON_0001923 central medial nucleus +UBERON_0001016 nervous system UBERON_0001924 paracentral nucleus +UBERON_0001016 nervous system UBERON_0001925 ventral lateral nucleus of thalamus +UBERON_0001016 nervous system UBERON_0001926 lateral geniculate body +UBERON_0001016 nervous system UBERON_0001927 medial geniculate body +UBERON_0001016 nervous system UBERON_0001928 preoptic area +UBERON_0001016 nervous system UBERON_0001929 supraoptic nucleus +UBERON_0001016 nervous system UBERON_0001930 paraventricular nucleus of hypothalamus +UBERON_0001016 nervous system UBERON_0001931 lateral preoptic nucleus +UBERON_0001016 nervous system UBERON_0001932 arcuate nucleus of hypothalamus +UBERON_0001016 nervous system UBERON_0001933 retrochiasmatic area +UBERON_0001016 nervous system UBERON_0001934 dorsomedial nucleus of hypothalamus +UBERON_0001016 nervous system UBERON_0001935 ventromedial nucleus of hypothalamus +UBERON_0001016 nervous system UBERON_0001936 tuberomammillary nucleus +UBERON_0001016 nervous system UBERON_0001937 lateral hypothalamic nucleus +UBERON_0001016 nervous system UBERON_0001938 lateral mammillary nucleus +UBERON_0001016 nervous system UBERON_0001939 medial mammillary nucleus +UBERON_0001016 nervous system UBERON_0001940 supramammillary nucleus +UBERON_0001016 nervous system UBERON_0001941 lateral habenular nucleus +UBERON_0001016 nervous system UBERON_0001942 medial habenular nucleus +UBERON_0001016 nervous system UBERON_0001943 midbrain tegmentum +UBERON_0001016 nervous system UBERON_0001944 pretectal region +UBERON_0001016 nervous system UBERON_0001945 superior colliculus +UBERON_0001016 nervous system UBERON_0001946 inferior colliculus +UBERON_0001016 nervous system UBERON_0001947 red nucleus +UBERON_0001016 nervous system UBERON_0001948 regional part of spinal cord +UBERON_0001016 nervous system UBERON_0001950 neocortex +UBERON_0001016 nervous system UBERON_0001953 presubiculum +UBERON_0001016 nervous system UBERON_0001954 Ammon's horn +UBERON_0001016 nervous system UBERON_0001954 hippocampus proper +UBERON_0001016 nervous system UBERON_0001964 least splanchnic nerve +UBERON_0001016 nervous system UBERON_0001965 substantia nigra pars compacta +UBERON_0001016 nervous system UBERON_0001966 substantia nigra pars reticulata +UBERON_0001016 nervous system UBERON_0001989 superior cervical ganglion +UBERON_0001016 nervous system UBERON_0001990 middle cervical ganglion +UBERON_0001016 nervous system UBERON_0001991 cervical ganglion +UBERON_0001016 nervous system UBERON_0001997 olfactory epithelium +UBERON_0001016 nervous system UBERON_0002004 trunk of sciatic nerve +UBERON_0001016 nervous system UBERON_0002005 enteric nervous system +UBERON_0001016 nervous system UBERON_0002008 cardiac nerve plexus +UBERON_0001016 nervous system UBERON_0002009 pulmonary nerve plexus +UBERON_0001016 nervous system UBERON_0002010 celiac nerve plexus +UBERON_0001016 nervous system UBERON_0002013 superior hypogastric nerve plexus +UBERON_0001016 nervous system UBERON_0002014 inferior hypogastric nerve plexus +UBERON_0001016 nervous system UBERON_0002019 accessory XI nerve +UBERON_0001016 nervous system UBERON_0002020 gray matter +UBERON_0001016 nervous system UBERON_0002021 occipital lobe +UBERON_0001016 nervous system UBERON_0002022 insula +UBERON_0001016 nervous system UBERON_0002023 claustrum of brain +UBERON_0001016 nervous system UBERON_0002024 internal carotid nerve plexus +UBERON_0001016 nervous system UBERON_0002028 hindbrain +UBERON_0001016 nervous system UBERON_0002028 hindbrain fragment +UBERON_0001016 nervous system UBERON_0002028 hindbrain without cerebellum +UBERON_0001016 nervous system UBERON_0002034 suprachiasmatic nucleus +UBERON_0001016 nervous system UBERON_0002035 medial preoptic nucleus +UBERON_0001016 nervous system UBERON_0002037 cerebellum +UBERON_0001016 nervous system UBERON_0002038 substantia nigra +UBERON_0001016 nervous system UBERON_0002043 dorsal raphe nucleus +UBERON_0001016 nervous system UBERON_0002044 ventral nucleus of posterior commissure +UBERON_0001016 nervous system UBERON_0002045 cuneate nucleus +UBERON_0001016 nervous system UBERON_0002047 pontine raphe nucleus +UBERON_0001016 nervous system UBERON_0002058 main ciliary ganglion +UBERON_0001016 nervous system UBERON_0002059 submandibular ganglion +UBERON_0001016 nervous system UBERON_0002092 brain dura mater +UBERON_0001016 nervous system UBERON_0002093 spinal dura mater +UBERON_0001016 nervous system UBERON_0002126 solitary tract nuclear complex +UBERON_0001016 nervous system UBERON_0002127 inferior olivary complex +UBERON_0001016 nervous system UBERON_0002128 superior olivary complex +UBERON_0001016 nervous system UBERON_0002129 cerebellar cortex +UBERON_0001016 nervous system UBERON_0002130 cerebellar nuclear complex +UBERON_0001016 nervous system UBERON_0002131 anterior lobe of cerebellum +UBERON_0001016 nervous system UBERON_0002132 dentate nucleus +UBERON_0001016 nervous system UBERON_0002136 hilus of dentate gyrus +UBERON_0001016 nervous system UBERON_0002138 habenulo-interpeduncular tract +UBERON_0001016 nervous system UBERON_0002139 subcommissural organ +UBERON_0001016 nervous system UBERON_0002140 parabigeminal nucleus +UBERON_0001016 nervous system UBERON_0002141 parvocellular oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002142 pedunculopontine tegmental nucleus +UBERON_0001016 nervous system UBERON_0002143 dorsal tegmental nucleus +UBERON_0001016 nervous system UBERON_0002144 peripeduncular nucleus +UBERON_0001016 nervous system UBERON_0002145 interpeduncular nucleus +UBERON_0001016 nervous system UBERON_0002147 reticulotegmental nucleus +UBERON_0001016 nervous system UBERON_0002148 locus ceruleus +UBERON_0001016 nervous system UBERON_0002149 superior salivatory nucleus +UBERON_0001016 nervous system UBERON_0002150 superior cerebellar peduncle +UBERON_0001016 nervous system UBERON_0002151 pontine nuclear group +UBERON_0001016 nervous system UBERON_0002152 middle cerebellar peduncle +UBERON_0001016 nervous system UBERON_0002153 fastigial nucleus +UBERON_0001016 nervous system UBERON_0002154 lateral reticular nucleus +UBERON_0001016 nervous system UBERON_0002155 gigantocellular nucleus +UBERON_0001016 nervous system UBERON_0002156 nucleus raphe magnus +UBERON_0001016 nervous system UBERON_0002157 nucleus raphe pallidus +UBERON_0001016 nervous system UBERON_0002158 principal inferior olivary nucleus +UBERON_0001016 nervous system UBERON_0002159 medial accessory inferior olivary nucleus +UBERON_0001016 nervous system UBERON_0002160 nucleus prepositus +UBERON_0001016 nervous system UBERON_0002161 gracile nucleus +UBERON_0001016 nervous system UBERON_0002162 area postrema +UBERON_0001016 nervous system UBERON_0002163 inferior cerebellar peduncle +UBERON_0001016 nervous system UBERON_0002164 tectobulbar tract +UBERON_0001016 nervous system UBERON_0002175 intermediolateral nucleus +UBERON_0001016 nervous system UBERON_0002176 lateral cervical nucleus +UBERON_0001016 nervous system UBERON_0002179 lateral funiculus of spinal cord +UBERON_0001016 nervous system UBERON_0002180 ventral funiculus of spinal cord +UBERON_0001016 nervous system UBERON_0002181 substantia gelatinosa +UBERON_0001016 nervous system UBERON_0002191 subiculum +UBERON_0001016 nervous system UBERON_0002192 ventricular system choroidal fissure +UBERON_0001016 nervous system UBERON_0002196 adenohypophysis +UBERON_0001016 nervous system UBERON_0002197 median eminence of neurohypophysis +UBERON_0001016 nervous system UBERON_0002198 neurohypophysis +UBERON_0001016 nervous system UBERON_0002206 mammillary body +UBERON_0001016 nervous system UBERON_0002211 nerve root +UBERON_0001016 nervous system UBERON_0002212 macula of saccule of membranous labyrinth +UBERON_0001016 nervous system UBERON_0002214 macula of utricle of membranous labyrinth +UBERON_0001016 nervous system UBERON_0002219 subfornical organ +UBERON_0001016 nervous system UBERON_0002240 spinal cord +UBERON_0001016 nervous system UBERON_0002245 cerebellar hemisphere +UBERON_0001016 nervous system UBERON_0002246 dorsal thoracic nucleus +UBERON_0001016 nervous system UBERON_0002256 dorsal horn of spinal cord +UBERON_0001016 nervous system UBERON_0002257 ventral horn of spinal cord +UBERON_0001016 nervous system UBERON_0002258 dorsal funiculus of spinal cord +UBERON_0001016 nervous system UBERON_0002259 corpora quadrigemina +UBERON_0001016 nervous system UBERON_0002260 ventral root of spinal cord +UBERON_0001016 nervous system UBERON_0002261 dorsal root of spinal cord +UBERON_0001016 nervous system UBERON_0002262 celiac ganglion +UBERON_0001016 nervous system UBERON_0002263 lentiform nucleus +UBERON_0001016 nervous system UBERON_0002264 olfactory bulb +UBERON_0001016 nervous system UBERON_0002265 olfactory tract +UBERON_0001016 nervous system UBERON_0002266 anterior olfactory nucleus +UBERON_0001016 nervous system UBERON_0002267 laterodorsal tegmental nucleus +UBERON_0001016 nervous system UBERON_0002270 hyaloid artery +UBERON_0001016 nervous system UBERON_0002271 periventricular zone of hypothalamus +UBERON_0001016 nervous system UBERON_0002272 medial zone of hypothalamus +UBERON_0001016 nervous system UBERON_0002273 lateral zone of hypothalamus +UBERON_0001016 nervous system UBERON_0002274 perifornical nucleus +UBERON_0001016 nervous system UBERON_0002275 reticular formation +UBERON_0001016 nervous system UBERON_0002280 otolith +UBERON_0001016 nervous system UBERON_0002285 telencephalic ventricle +UBERON_0001016 nervous system UBERON_0002286 third ventricle +UBERON_0001016 nervous system UBERON_0002287 optic recess of third ventricle +UBERON_0001016 nervous system UBERON_0002288 choroid plexus of third ventricle +UBERON_0001016 nervous system UBERON_0002289 midbrain cerebral aqueduct +UBERON_0001016 nervous system UBERON_0002290 choroid plexus of fourth ventricle +UBERON_0001016 nervous system UBERON_0002291 central canal of spinal cord +UBERON_0001016 nervous system UBERON_0002298 brainstem +UBERON_0001016 nervous system UBERON_0002301 layer of neocortex +UBERON_0001016 nervous system UBERON_0002304 layer of dentate gyrus +UBERON_0001016 nervous system UBERON_0002305 layer of hippocampus +UBERON_0001016 nervous system UBERON_0002307 choroid plexus of lateral ventricle +UBERON_0001016 nervous system UBERON_0002308 nucleus of brain +UBERON_0001016 nervous system UBERON_0002309 medial longitudinal fasciculus +UBERON_0001016 nervous system UBERON_0002310 hippocampus fimbria +UBERON_0001016 nervous system UBERON_0002313 hippocampus pyramidal layer +UBERON_0001016 nervous system UBERON_0002314 midbrain tectum +UBERON_0001016 nervous system UBERON_0002315 gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0002316 white matter +UBERON_0001016 nervous system UBERON_0002317 white matter of cerebellum +UBERON_0001016 nervous system UBERON_0002318 white matter of spinal cord +UBERON_0001016 nervous system UBERON_0002322 periventricular nucleus +UBERON_0001016 nervous system UBERON_0002327 trunk of intercostal nerve +UBERON_0001016 nervous system UBERON_0002336 corpus callosum +UBERON_0001016 nervous system UBERON_0002360 meninx +UBERON_0001016 nervous system UBERON_0002361 pia mater +UBERON_0001016 nervous system UBERON_0002362 arachnoid mater +UBERON_0001016 nervous system UBERON_0002363 dura mater +UBERON_0001016 nervous system UBERON_0002410 autonomic nervous system +UBERON_0001016 nervous system UBERON_0002420 basal ganglion +UBERON_0001016 nervous system UBERON_0002421 hippocampal formation +UBERON_0001016 nervous system UBERON_0002421 hippocampus +UBERON_0001016 nervous system UBERON_0002422 fourth ventricle +UBERON_0001016 nervous system UBERON_0002430 lateral hypothalamic area +UBERON_0001016 nervous system UBERON_0002432 pars intermedia of adenohypophysis +UBERON_0001016 nervous system UBERON_0002433 pars tuberalis of adenohypophysis +UBERON_0001016 nervous system UBERON_0002434 pituitary stalk +UBERON_0001016 nervous system UBERON_0002435 striatum +UBERON_0001016 nervous system UBERON_0002436 primary visual cortex +UBERON_0001016 nervous system UBERON_0002437 cerebral hemisphere white matter +UBERON_0001016 nervous system UBERON_0002438 ventral tegmental nucleus +UBERON_0001016 nervous system UBERON_0002439 myenteric nerve plexus +UBERON_0001016 nervous system UBERON_0002440 inferior cervical ganglion +UBERON_0001016 nervous system UBERON_0002441 cervicothoracic ganglion +UBERON_0001016 nervous system UBERON_0002442 axillary nerve trunk +UBERON_0001016 nervous system UBERON_0002464 nerve trunk +UBERON_0001016 nervous system UBERON_0002473 intercerebral commissure +UBERON_0001016 nervous system UBERON_0002474 cerebellar peduncular complex +UBERON_0001016 nervous system UBERON_0002475 saphenous nerve +UBERON_0001016 nervous system UBERON_0002476 lateral globus pallidus +UBERON_0001016 nervous system UBERON_0002477 medial globus pallidus +UBERON_0001016 nervous system UBERON_0002479 dorsal lateral geniculate nucleus +UBERON_0001016 nervous system UBERON_0002480 ventral lateral geniculate nucleus +UBERON_0001016 nervous system UBERON_0002518 otolith organ +UBERON_0001016 nervous system UBERON_0002519 otolithic part of statoconial membrane +UBERON_0001016 nervous system UBERON_0002536 arthropod sensillum +UBERON_0001016 nervous system UBERON_0002549 ventral trigeminal tract +UBERON_0001016 nervous system UBERON_0002550 anterior hypothalamic region +UBERON_0001016 nervous system UBERON_0002551 interstitial nucleus of Cajal +UBERON_0001016 nervous system UBERON_0002552 vestibulocerebellar tract +UBERON_0001016 nervous system UBERON_0002555 intermediate hypothalamic region +UBERON_0001016 nervous system UBERON_0002556 corticotectal tract +UBERON_0001016 nervous system UBERON_0002557 linear nucleus +UBERON_0001016 nervous system UBERON_0002559 medullary reticular formation +UBERON_0001016 nervous system UBERON_0002560 temporal operculum +UBERON_0001016 nervous system UBERON_0002561 lumen of central nervous system +UBERON_0001016 nervous system UBERON_0002562 superior frontal sulcus +UBERON_0001016 nervous system UBERON_0002563 central nucleus of inferior colliculus +UBERON_0001016 nervous system UBERON_0002564 lateral orbital gyrus +UBERON_0001016 nervous system UBERON_0002565 olivary pretectal nucleus +UBERON_0001016 nervous system UBERON_0002566 superior precentral sulcus +UBERON_0001016 nervous system UBERON_0002567 basal part of pons +UBERON_0001016 nervous system UBERON_0002568 amiculum of dentate nucleus +UBERON_0001016 nervous system UBERON_0002569 transverse temporal sulcus +UBERON_0001016 nervous system UBERON_0002570 medial orbital gyrus +UBERON_0001016 nervous system UBERON_0002571 external nucleus of inferior colliculus +UBERON_0001016 nervous system UBERON_0002572 principal pretectal nucleus +UBERON_0001016 nervous system UBERON_0002573 pontine reticular formation +UBERON_0001016 nervous system UBERON_0002575 posterior orbital gyrus +UBERON_0001016 nervous system UBERON_0002576 temporal pole +UBERON_0001016 nervous system UBERON_0002577 pericentral nucleus of inferior colliculus +UBERON_0001016 nervous system UBERON_0002578 sublentiform nucleus +UBERON_0001016 nervous system UBERON_0002580 brachium of superior colliculus +UBERON_0001016 nervous system UBERON_0002581 postcentral gyrus +UBERON_0001016 nervous system UBERON_0002582 anterior calcarine sulcus +UBERON_0001016 nervous system UBERON_0002583 commissure of superior colliculus +UBERON_0001016 nervous system UBERON_0002585 central tegmental tract of midbrain +UBERON_0001016 nervous system UBERON_0002586 calcarine sulcus +UBERON_0001016 nervous system UBERON_0002587 nucleus subceruleus +UBERON_0001016 nervous system UBERON_0002588 decussation of superior cerebellar peduncle +UBERON_0001016 nervous system UBERON_0002589 lateral corticospinal tract +UBERON_0001016 nervous system UBERON_0002590 prepyriform area +UBERON_0001016 nervous system UBERON_0002591 oral part of spinal trigeminal nucleus +UBERON_0001016 nervous system UBERON_0002592 juxtarestiform body +UBERON_0001016 nervous system UBERON_0002593 orbital operculum +UBERON_0001016 nervous system UBERON_0002594 dentatothalamic tract +UBERON_0001016 nervous system UBERON_0002595 orbital sulcus +UBERON_0001016 nervous system UBERON_0002596 ventral posterior nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002597 principal sensory nucleus of trigeminal nerve +UBERON_0001016 nervous system UBERON_0002598 paracentral sulcus +UBERON_0001016 nervous system UBERON_0002599 medial olfactory gyrus +UBERON_0001016 nervous system UBERON_0002600 limbic lobe +UBERON_0001016 nervous system UBERON_0002601 fasciolar gyrus +UBERON_0001016 nervous system UBERON_0002602 emboliform nucleus +UBERON_0001016 nervous system UBERON_0002603 paraterminal gyrus +UBERON_0001016 nervous system UBERON_0002604 ventral nucleus of lateral lemniscus +UBERON_0001016 nervous system UBERON_0002605 precentral operculum +UBERON_0001016 nervous system UBERON_0002606 neuropil +UBERON_0001016 nervous system UBERON_0002607 superior rostral sulcus +UBERON_0001016 nervous system UBERON_0002608 caudal part of ventral lateral nucleus +UBERON_0001016 nervous system UBERON_0002609 spinothalamic tract of midbrain +UBERON_0001016 nervous system UBERON_0002610 cochlear nuclear complex +UBERON_0001016 nervous system UBERON_0002612 transverse orbital sulcus +UBERON_0001016 nervous system UBERON_0002613 cerebellum globose nucleus +UBERON_0001016 nervous system UBERON_0002614 medial part of ventral lateral nucleus +UBERON_0001016 nervous system UBERON_0002615 ventral tegmental decussation +UBERON_0001016 nervous system UBERON_0002616 regional part of brain +UBERON_0001016 nervous system UBERON_0002617 pars postrema of ventral lateral nucleus +UBERON_0001016 nervous system UBERON_0002618 root of trochlear nerve +UBERON_0001016 nervous system UBERON_0002620 tuber cinereum +UBERON_0001016 nervous system UBERON_0002622 preoptic periventricular nucleus +UBERON_0001016 nervous system UBERON_0002623 cerebral peduncle +UBERON_0001016 nervous system UBERON_0002624 orbital part of inferior frontal gyrus +UBERON_0001016 nervous system UBERON_0002625 median preoptic nucleus +UBERON_0001016 nervous system UBERON_0002626 head of caudate nucleus +UBERON_0001016 nervous system UBERON_0002627 capsule of medial geniculate body +UBERON_0001016 nervous system UBERON_0002628 tail of caudate nucleus +UBERON_0001016 nervous system UBERON_0002629 triangular part of inferior frontal gyrus +UBERON_0001016 nervous system UBERON_0002630 body of caudate nucleus +UBERON_0001016 nervous system UBERON_0002631 cerebral crus +UBERON_0001016 nervous system UBERON_0002632 medial part of medial mammillary nucleus +UBERON_0001016 nervous system UBERON_0002633 motor nucleus of trigeminal nerve +UBERON_0001016 nervous system UBERON_0002634 anterior nucleus of hypothalamus +UBERON_0001016 nervous system UBERON_0002636 lateral pulvinar nucleus +UBERON_0001016 nervous system UBERON_0002637 ventral anterior nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002638 medial pulvinar nucleus +UBERON_0001016 nervous system UBERON_0002639 midbrain reticular formation +UBERON_0001016 nervous system UBERON_0002640 cuneocerebellar tract +UBERON_0001016 nervous system UBERON_0002641 oral pulvinar nucleus +UBERON_0001016 nervous system UBERON_0002642 cuneate fasciculus of medulla +UBERON_0001016 nervous system UBERON_0002643 decussation of medial lemniscus +UBERON_0001016 nervous system UBERON_0002644 intermediate orbital gyrus +UBERON_0001016 nervous system UBERON_0002645 densocellular part of medial dorsal nucleus +UBERON_0001016 nervous system UBERON_0002646 dorsal longitudinal fasciculus of medulla +UBERON_0001016 nervous system UBERON_0002647 magnocellular part of medial dorsal nucleus +UBERON_0001016 nervous system UBERON_0002648 anterior median eminence +UBERON_0001016 nervous system UBERON_0002649 dorsolateral fasciculus of medulla +UBERON_0001016 nervous system UBERON_0002650 paralaminar part of medial dorsal nucleus +UBERON_0001016 nervous system UBERON_0002651 anterior horn of lateral ventricle +UBERON_0001016 nervous system UBERON_0002652 posterior median eminence +UBERON_0001016 nervous system UBERON_0002653 gracile fasciculus of medulla +UBERON_0001016 nervous system UBERON_0002654 parvocellular part of medial dorsal nucleus +UBERON_0001016 nervous system UBERON_0002655 body of lateral ventricle +UBERON_0001016 nervous system UBERON_0002656 periamygdaloid area +UBERON_0001016 nervous system UBERON_0002657 posterior parahippocampal gyrus +UBERON_0001016 nervous system UBERON_0002658 medial lemniscus of midbrain +UBERON_0001016 nervous system UBERON_0002659 superior medullary velum +UBERON_0001016 nervous system UBERON_0002660 medial longitudinal fasciculus of midbrain +UBERON_0001016 nervous system UBERON_0002661 superior frontal gyrus +UBERON_0001016 nervous system UBERON_0002662 medial pes lemniscus +UBERON_0001016 nervous system UBERON_0002663 septal nuclear complex +UBERON_0001016 nervous system UBERON_0002664 lateral part of medial mammillary nucleus +UBERON_0001016 nervous system UBERON_0002665 supracallosal gyrus +UBERON_0001016 nervous system UBERON_0002666 mesencephalic tract of trigeminal nerve +UBERON_0001016 nervous system UBERON_0002667 lateral septal nucleus +UBERON_0001016 nervous system UBERON_0002668 oculomotor nerve root +UBERON_0001016 nervous system UBERON_0002669 anterior horizontal limb of lateral sulcus +UBERON_0001016 nervous system UBERON_0002670 anterior ascending limb of lateral sulcus +UBERON_0001016 nervous system UBERON_0002671 pallidotegmental fasciculus +UBERON_0001016 nervous system UBERON_0002672 anterior subcentral sulcus +UBERON_0001016 nervous system UBERON_0002673 vestibular nuclear complex +UBERON_0001016 nervous system UBERON_0002675 diagonal sulcus +UBERON_0001016 nervous system UBERON_0002676 ventral supraoptic decussation +UBERON_0001016 nervous system UBERON_0002679 anterodorsal nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002681 anteromedial nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002682 abducens nucleus +UBERON_0001016 nervous system UBERON_0002683 rhinal sulcus +UBERON_0001016 nervous system UBERON_0002684 nucleus raphe obscurus +UBERON_0001016 nervous system UBERON_0002685 anteroventral nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002686 angular gyrus +UBERON_0001016 nervous system UBERON_0002687 area X of ventral lateral nucleus +UBERON_0001016 nervous system UBERON_0002688 supramarginal gyrus +UBERON_0001016 nervous system UBERON_0002689 supraoptic crest +UBERON_0001016 nervous system UBERON_0002690 anteroventral periventricular nucleus +UBERON_0001016 nervous system UBERON_0002691 ventral tegmental area +UBERON_0001016 nervous system UBERON_0002692 medullary raphe nuclear complex +UBERON_0001016 nervous system UBERON_0002693 occipitotemporal sulcus +UBERON_0001016 nervous system UBERON_0002694 anterior hypothalamic commissure +UBERON_0001016 nervous system UBERON_0002695 parieto-occipital sulcus +UBERON_0001016 nervous system UBERON_0002696 cuneiform nucleus +UBERON_0001016 nervous system UBERON_0002697 dorsal supraoptic decussation +UBERON_0001016 nervous system UBERON_0002698 preoccipital notch +UBERON_0001016 nervous system UBERON_0002699 supraopticohypophysial tract +UBERON_0001016 nervous system UBERON_0002700 subcuneiform nucleus +UBERON_0001016 nervous system UBERON_0002701 anterior median oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002702 middle frontal gyrus +UBERON_0001016 nervous system UBERON_0002703 precentral gyrus +UBERON_0001016 nervous system UBERON_0002704 metathalamus +UBERON_0001016 nervous system UBERON_0002705 midline nuclear group +UBERON_0001016 nervous system UBERON_0002706 posterior nucleus of hypothalamus +UBERON_0001016 nervous system UBERON_0002707 corticospinal tract +UBERON_0001016 nervous system UBERON_0002708 posterior periventricular nucleus +UBERON_0001016 nervous system UBERON_0002709 posterior nuclear complex of thalamus +UBERON_0001016 nervous system UBERON_0002710 cingulate sulcus +UBERON_0001016 nervous system UBERON_0002711 nucleus of posterior commissure +UBERON_0001016 nervous system UBERON_0002712 premammillary nucleus +UBERON_0001016 nervous system UBERON_0002713 circular sulcus of insula +UBERON_0001016 nervous system UBERON_0002714 rubrospinal tract +UBERON_0001016 nervous system UBERON_0002715 spinal trigeminal tract of medulla +UBERON_0001016 nervous system UBERON_0002716 collateral sulcus +UBERON_0001016 nervous system UBERON_0002717 rostral interstitial nucleus of medial longitudinal fasciculus +UBERON_0001016 nervous system UBERON_0002718 solitary tract +UBERON_0001016 nervous system UBERON_0002719 spino-olivary tract +UBERON_0001016 nervous system UBERON_0002720 mammillary peduncle +UBERON_0001016 nervous system UBERON_0002721 lateral sulcus +UBERON_0001016 nervous system UBERON_0002722 trochlear nucleus +UBERON_0001016 nervous system UBERON_0002723 mammillary princeps fasciculus +UBERON_0001016 nervous system UBERON_0002724 limen of insula +UBERON_0001016 nervous system UBERON_0002726 cervical spinal cord +UBERON_0001016 nervous system UBERON_0002727 medial medullary lamina of globus pallidus +UBERON_0001016 nervous system UBERON_0002728 entorhinal cortex +UBERON_0001016 nervous system UBERON_0002729 claustral amygdaloid area +UBERON_0001016 nervous system UBERON_0002731 vestibulocochlear nerve root +UBERON_0001016 nervous system UBERON_0002732 longitudinal pontine fibers +UBERON_0001016 nervous system UBERON_0002733 intralaminar nuclear group +UBERON_0001016 nervous system UBERON_0002734 superior temporal sulcus +UBERON_0001016 nervous system UBERON_0002735 transverse pontine fibers +UBERON_0001016 nervous system UBERON_0002736 lateral nuclear group of thalamus +UBERON_0001016 nervous system UBERON_0002737 lateral inferior limiting sulcus +UBERON_0001016 nervous system UBERON_0002738 isthmus of cingulate gyrus +UBERON_0001016 nervous system UBERON_0002739 medial dorsal nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002740 posterior cingulate gyrus +UBERON_0001016 nervous system UBERON_0002741 diagonal band of Broca +UBERON_0001016 nervous system UBERON_0002742 lamina of septum pellucidum +UBERON_0001016 nervous system UBERON_0002743 basal forebrain +UBERON_0001016 nervous system UBERON_0002744 hilum of dentate nucleus +UBERON_0001016 nervous system UBERON_0002745 ventral amygdalofugal projection +UBERON_0001016 nervous system UBERON_0002746 intermediate periventricular nucleus +UBERON_0001016 nervous system UBERON_0002747 neodentate part of dentate nucleus +UBERON_0001016 nervous system UBERON_0002748 medial lemniscus of medulla +UBERON_0001016 nervous system UBERON_0002749 regional part of cerebellar cortex +UBERON_0001016 nervous system UBERON_0002750 medial longitudinal fasciculus of medulla +UBERON_0001016 nervous system UBERON_0002751 inferior temporal gyrus +UBERON_0001016 nervous system UBERON_0002752 olivocerebellar tract +UBERON_0001016 nervous system UBERON_0002753 posterior spinocerebellar tract +UBERON_0001016 nervous system UBERON_0002754 predorsal bundle +UBERON_0001016 nervous system UBERON_0002755 pyramidal decussation +UBERON_0001016 nervous system UBERON_0002756 anterior cingulate gyrus +UBERON_0001016 nervous system UBERON_0002758 dorsal nucleus of medial geniculate body +UBERON_0001016 nervous system UBERON_0002759 magnocellular nucleus of medial geniculate body +UBERON_0001016 nervous system UBERON_0002760 ventral corticospinal tract +UBERON_0001016 nervous system UBERON_0002761 inferior frontal sulcus +UBERON_0001016 nervous system UBERON_0002762 internal medullary lamina of thalamus +UBERON_0001016 nervous system UBERON_0002763 accessory medullary lamina of globus pallidus +UBERON_0001016 nervous system UBERON_0002764 inferior precentral sulcus +UBERON_0001016 nervous system UBERON_0002765 lateral medullary lamina of globus pallidus +UBERON_0001016 nervous system UBERON_0002766 fusiform gyrus +UBERON_0001016 nervous system UBERON_0002767 inferior rostral sulcus +UBERON_0001016 nervous system UBERON_0002768 vestibulospinal tract +UBERON_0001016 nervous system UBERON_0002769 superior temporal gyrus +UBERON_0001016 nervous system UBERON_0002770 posterior hypothalamic region +UBERON_0001016 nervous system UBERON_0002771 middle temporal gyrus +UBERON_0001016 nervous system UBERON_0002772 olfactory sulcus +UBERON_0001016 nervous system UBERON_0002773 anterior transverse temporal gyrus +UBERON_0001016 nervous system UBERON_0002774 posterior transverse temporal gyrus +UBERON_0001016 nervous system UBERON_0002775 olivocochlear bundle +UBERON_0001016 nervous system UBERON_0002776 ventral nuclear group +UBERON_0001016 nervous system UBERON_0002778 ventral pallidum +UBERON_0001016 nervous system UBERON_0002779 lateral superior olivary nucleus +UBERON_0001016 nervous system UBERON_0002781 caudal part of ventral posterolateral nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002782 medial superior olivary nucleus +UBERON_0001016 nervous system UBERON_0002783 central tegmental tract of pons +UBERON_0001016 nervous system UBERON_0002786 root of abducens nerve +UBERON_0001016 nervous system UBERON_0002787 decussation of trochlear nerve +UBERON_0001016 nervous system UBERON_0002788 anterior nuclear group +UBERON_0001016 nervous system UBERON_0002790 dorsal acoustic stria +UBERON_0001016 nervous system UBERON_0002792 lumbar spinal cord +UBERON_0001016 nervous system UBERON_0002793 dorsal longitudinal fasciculus of pons +UBERON_0001016 nervous system UBERON_0002794 medial longitudinal fasciculus of pons +UBERON_0001016 nervous system UBERON_0002795 frontal pole +UBERON_0001016 nervous system UBERON_0002796 motor root of trigeminal nerve +UBERON_0001016 nervous system UBERON_0002797 dorsal trigeminal tract +UBERON_0001016 nervous system UBERON_0002798 spinothalamic tract of pons +UBERON_0001016 nervous system UBERON_0002799 fronto-orbital sulcus +UBERON_0001016 nervous system UBERON_0002800 spinal trigeminal tract of pons +UBERON_0001016 nervous system UBERON_0002801 stratum zonale of thalamus +UBERON_0001016 nervous system UBERON_0002802 left parietal lobe +UBERON_0001016 nervous system UBERON_0002803 right parietal lobe +UBERON_0001016 nervous system UBERON_0002804 left limbic lobe +UBERON_0001016 nervous system UBERON_0002805 right limbic lobe +UBERON_0001016 nervous system UBERON_0002806 left occipital lobe +UBERON_0001016 nervous system UBERON_0002807 right occipital lobe +UBERON_0001016 nervous system UBERON_0002808 left temporal lobe +UBERON_0001016 nervous system UBERON_0002809 right temporal lobe +UBERON_0001016 nervous system UBERON_0002810 right frontal lobe +UBERON_0001016 nervous system UBERON_0002811 left frontal lobe +UBERON_0001016 nervous system UBERON_0002812 left cerebral hemisphere +UBERON_0001016 nervous system UBERON_0002813 right cerebral hemisphere +UBERON_0001016 nervous system UBERON_0002814 posterior superior fissure of cerebellum +UBERON_0001016 nervous system UBERON_0002815 horizontal fissure of cerebellum +UBERON_0001016 nervous system UBERON_0002816 prepyramidal fissure of cerebellum +UBERON_0001016 nervous system UBERON_0002817 secondary fissure of cerebellum +UBERON_0001016 nervous system UBERON_0002818 posterolateral fissure of cerebellum +UBERON_0001016 nervous system UBERON_0002822 macula lutea proper +UBERON_0001016 nervous system UBERON_0002823 clivus of fovea centralis +UBERON_0001016 nervous system UBERON_0002824 vestibular ganglion +UBERON_0001016 nervous system UBERON_0002825 superior part of vestibular ganglion +UBERON_0001016 nervous system UBERON_0002826 inferior part of vestibular ganglion +UBERON_0001016 nervous system UBERON_0002827 vestibulocochlear ganglion +UBERON_0001016 nervous system UBERON_0002828 ventral cochlear nucleus +UBERON_0001016 nervous system UBERON_0002829 dorsal cochlear nucleus +UBERON_0001016 nervous system UBERON_0002830 anteroventral cochlear nucleus +UBERON_0001016 nervous system UBERON_0002831 posteroventral cochlear nucleus +UBERON_0001016 nervous system UBERON_0002832 ventral nucleus of trapezoid body +UBERON_0001016 nervous system UBERON_0002833 medial nucleus of trapezoid body +UBERON_0001016 nervous system UBERON_0002834 cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002835 thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002836 lumbar dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002837 sacral dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002838 first cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002839 second cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002840 third cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002841 fourth cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002842 fifth cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002843 seventh cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002844 eighth cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002845 first thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002846 second thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002847 third thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002848 fifth thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002849 sixth thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002850 seventh thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002851 eighth thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002852 ninth thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002853 tenth thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002854 eleventh thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002855 twelfth thoracic dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002856 second lumbar dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002857 first lumbar dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002858 third lumbar dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002859 fifth lumbar dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002860 first sacral dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002861 second sacral dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002862 third sacral dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002863 fifth sacral dorsal root ganglion +UBERON_0001016 nervous system UBERON_0002864 accessory cuneate nucleus +UBERON_0001016 nervous system UBERON_0002865 arcuate nucleus of medulla +UBERON_0001016 nervous system UBERON_0002866 caudal part of spinal trigeminal nucleus +UBERON_0001016 nervous system UBERON_0002867 central gray substance of medulla +UBERON_0001016 nervous system UBERON_0002868 commissural nucleus of vagus nerve +UBERON_0001016 nervous system UBERON_0002869 diffuse reticular nucleus +UBERON_0001016 nervous system UBERON_0002870 dorsal motor nucleus of vagus nerve +UBERON_0001016 nervous system UBERON_0002871 hypoglossal nucleus +UBERON_0001016 nervous system UBERON_0002872 inferior salivatory nucleus +UBERON_0001016 nervous system UBERON_0002873 interpolar part of spinal trigeminal nucleus +UBERON_0001016 nervous system UBERON_0002874 lateral pericuneate nucleus +UBERON_0001016 nervous system UBERON_0002875 medial pericuneate nucleus +UBERON_0001016 nervous system UBERON_0002876 nucleus intercalatus +UBERON_0001016 nervous system UBERON_0002877 parasolitary nucleus +UBERON_0001016 nervous system UBERON_0002879 peritrigeminal nucleus +UBERON_0001016 nervous system UBERON_0002880 pontobulbar nucleus +UBERON_0001016 nervous system UBERON_0002881 sublingual nucleus +UBERON_0001016 nervous system UBERON_0002882 supraspinal nucleus +UBERON_0001016 nervous system UBERON_0002883 central amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002884 intercalated amygdaloid nuclei +UBERON_0001016 nervous system UBERON_0002885 accessory basal amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002886 lateral amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002887 basal amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002888 lateral part of basal amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002889 medial part of basal amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002890 anterior amygdaloid area +UBERON_0001016 nervous system UBERON_0002891 cortical amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002892 medial amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0002893 nucleus of lateral olfactory tract +UBERON_0001016 nervous system UBERON_0002894 olfactory cortex +UBERON_0001016 nervous system UBERON_0002895 secondary olfactory cortex +UBERON_0001016 nervous system UBERON_0002896 telodiencephalic fissure +UBERON_0001016 nervous system UBERON_0002897 cistern of lamina terminalis +UBERON_0001016 nervous system UBERON_0002898 chiasmatic cistern +UBERON_0001016 nervous system UBERON_0002899 hippocampal sulcus +UBERON_0001016 nervous system UBERON_0002900 transverse occipital sulcus +UBERON_0001016 nervous system UBERON_0002901 posterior calcarine sulcus +UBERON_0001016 nervous system UBERON_0002902 occipital pole +UBERON_0001016 nervous system UBERON_0002903 lunate sulcus +UBERON_0001016 nervous system UBERON_0002904 lateral occipital sulcus +UBERON_0001016 nervous system UBERON_0002905 intralingual sulcus +UBERON_0001016 nervous system UBERON_0002906 anterior occipital sulcus +UBERON_0001016 nervous system UBERON_0002907 superior postcentral sulcus +UBERON_0001016 nervous system UBERON_0002908 subparietal sulcus +UBERON_0001016 nervous system UBERON_0002909 posterior subcentral sulcus +UBERON_0001016 nervous system UBERON_0002910 posterior ascending limb of lateral sulcus +UBERON_0001016 nervous system UBERON_0002911 parietal operculum +UBERON_0001016 nervous system UBERON_0002912 marginal sulcus +UBERON_0001016 nervous system UBERON_0002913 intraparietal sulcus +UBERON_0001016 nervous system UBERON_0002914 inferior postcentral sulcus +UBERON_0001016 nervous system UBERON_0002915 postcentral sulcus of parietal lobe +UBERON_0001016 nervous system UBERON_0002916 central sulcus +UBERON_0001016 nervous system UBERON_0002918 medial parabrachial nucleus +UBERON_0001016 nervous system UBERON_0002919 anterior parolfactory sulcus +UBERON_0001016 nervous system UBERON_0002920 callosal sulcus +UBERON_0001016 nervous system UBERON_0002921 longitudinal fissure +UBERON_0001016 nervous system UBERON_0002922 olfactory trigone +UBERON_0001016 nervous system UBERON_0002923 posterior parolfactory sulcus +UBERON_0001016 nervous system UBERON_0002924 terminal nerve +UBERON_0001016 nervous system UBERON_0002925 trigeminal nucleus +UBERON_0001016 nervous system UBERON_0002926 gustatory epithelium +UBERON_0001016 nervous system UBERON_0002928 dentate gyrus polymorphic layer +UBERON_0001016 nervous system UBERON_0002929 dentate gyrus pyramidal layer +UBERON_0001016 nervous system UBERON_0002930 tectopontine tract +UBERON_0001016 nervous system UBERON_0002931 dorsal septal nucleus +UBERON_0001016 nervous system UBERON_0002932 trapezoid body +UBERON_0001016 nervous system UBERON_0002933 nucleus of anterior commissure +UBERON_0001016 nervous system UBERON_0002934 ventral oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002935 magnocellular part of ventral anterior nucleus +UBERON_0001016 nervous system UBERON_0002936 magnocellular part of red nucleus +UBERON_0001016 nervous system UBERON_0002937 parvocellular part of ventral anterior nucleus +UBERON_0001016 nervous system UBERON_0002938 parvocellular part of red nucleus +UBERON_0001016 nervous system UBERON_0002939 ventral posteroinferior nucleus +UBERON_0001016 nervous system UBERON_0002940 anterior column of fornix +UBERON_0001016 nervous system UBERON_0002941 capsule of red nucleus +UBERON_0001016 nervous system UBERON_0002942 ventral posterolateral nucleus +UBERON_0001016 nervous system UBERON_0002943 lingual gyrus +UBERON_0001016 nervous system UBERON_0002944 spinothalamic tract of medulla +UBERON_0001016 nervous system UBERON_0002945 ventral posteromedial nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002947 frontal operculum +UBERON_0001016 nervous system UBERON_0002948 superior occipital gyrus +UBERON_0001016 nervous system UBERON_0002949 tectospinal tract +UBERON_0001016 nervous system UBERON_0002952 intermediate acoustic stria +UBERON_0001016 nervous system UBERON_0002953 lateral lemniscus +UBERON_0001016 nervous system UBERON_0002954 dorsal hypothalamic area +UBERON_0001016 nervous system UBERON_0002955 rhomboidal nucleus +UBERON_0001016 nervous system UBERON_0002956 granular layer of cerebellar cortex +UBERON_0001016 nervous system UBERON_0002957 caudal central oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002958 medial lemniscus of pons +UBERON_0001016 nervous system UBERON_0002959 subfascicular nucleus +UBERON_0001016 nervous system UBERON_0002960 central oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002961 archicortex +UBERON_0001016 nervous system UBERON_0002963 caudal pontine reticular nucleus +UBERON_0001016 nervous system UBERON_0002964 dorsal oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002965 rostral intralaminar nuclear group +UBERON_0001016 nervous system UBERON_0002967 cingulate gyrus +UBERON_0001016 nervous system UBERON_0002968 central gray substance of pons +UBERON_0001016 nervous system UBERON_0002969 inferior temporal sulcus +UBERON_0001016 nervous system UBERON_0002970 intermediate oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002971 periolivary nucleus +UBERON_0001016 nervous system UBERON_0002972 centromedian nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002973 parahippocampal gyrus +UBERON_0001016 nervous system UBERON_0002974 molecular layer of cerebellar cortex +UBERON_0001016 nervous system UBERON_0002975 medial oculomotor nucleus +UBERON_0001016 nervous system UBERON_0002976 preolivary nucleus +UBERON_0001016 nervous system UBERON_0002977 triangular septal nucleus +UBERON_0001016 nervous system UBERON_0002978 oral part of ventral lateral nucleus +UBERON_0001016 nervous system UBERON_0002979 Purkinje cell layer of cerebellar cortex +UBERON_0001016 nervous system UBERON_0002980 opercular part of inferior frontal gyrus +UBERON_0001016 nervous system UBERON_0002981 pulvinar nucleus +UBERON_0001016 nervous system UBERON_0002982 inferior pulvinar nucleus +UBERON_0001016 nervous system UBERON_0002983 lateral posterior nucleus of thalamus +UBERON_0001016 nervous system UBERON_0002984 lateral dorsal nucleus +UBERON_0001016 nervous system UBERON_0002985 ventral nucleus of medial geniculate body +UBERON_0001016 nervous system UBERON_0002987 anterior spinocerebellar tract +UBERON_0001016 nervous system UBERON_0002990 mammillothalamic tract of hypothalamus +UBERON_0001016 nervous system UBERON_0002991 supramammillary commissure +UBERON_0001016 nervous system UBERON_0002992 paratenial nucleus +UBERON_0001016 nervous system UBERON_0002993 inferior central nucleus +UBERON_0001016 nervous system UBERON_0002995 substantia nigra pars lateralis +UBERON_0001016 nervous system UBERON_0002996 nucleus of optic tract +UBERON_0001016 nervous system UBERON_0002997 nucleus of medial eminence +UBERON_0001016 nervous system UBERON_0002998 inferior frontal gyrus +UBERON_0001016 nervous system UBERON_0002999 oral pontine reticular nucleus +UBERON_0001016 nervous system UBERON_0003001 nervous system lemniscus +UBERON_0001016 nervous system UBERON_0003002 medial lemniscus +UBERON_0001016 nervous system UBERON_0003004 median raphe nucleus +UBERON_0001016 nervous system UBERON_0003005 dorsal longitudinal fasciculus of midbrain +UBERON_0001016 nervous system UBERON_0003006 dorsal nucleus of lateral lemniscus +UBERON_0001016 nervous system UBERON_0003007 lateral parabrachial nucleus +UBERON_0001016 nervous system UBERON_0003008 dorsal longitudinal fasciculus of hypothalamus +UBERON_0001016 nervous system UBERON_0003009 dorsal tegmental decussation +UBERON_0001016 nervous system UBERON_0003010 lateral pes lemniscus +UBERON_0001016 nervous system UBERON_0003011 facial motor nucleus +UBERON_0001016 nervous system UBERON_0003012 flocculonodular lobe +UBERON_0001016 nervous system UBERON_0003013 alar central lobule +UBERON_0001016 nervous system UBERON_0003015 anterior quadrangular lobule +UBERON_0001016 nervous system UBERON_0003016 postcommissural fornix of brain +UBERON_0001016 nervous system UBERON_0003017 substantia innominata +UBERON_0001016 nervous system UBERON_0003018 parvocellular part of ventral posteromedial nucleus +UBERON_0001016 nervous system UBERON_0003019 oral part of ventral posterolateral nucleus +UBERON_0001016 nervous system UBERON_0003020 subcallosal area +UBERON_0001016 nervous system UBERON_0003021 central lobule +UBERON_0001016 nervous system UBERON_0003023 pontine tegmentum +UBERON_0001016 nervous system UBERON_0003024 principal part of ventral posteromedial nucleus +UBERON_0001016 nervous system UBERON_0003025 brachium of inferior colliculus +UBERON_0001016 nervous system UBERON_0003026 limitans nucleus +UBERON_0001016 nervous system UBERON_0003027 cingulate cortex +UBERON_0001016 nervous system UBERON_0003028 commissure of inferior colliculus +UBERON_0001016 nervous system UBERON_0003029 stria terminalis +UBERON_0001016 nervous system UBERON_0003030 posterior nucleus of thalamus +UBERON_0001016 nervous system UBERON_0003031 submedial nucleus of thalamus +UBERON_0001016 nervous system UBERON_0003033 suprageniculate nucleus of thalamus +UBERON_0001016 nervous system UBERON_0003034 central dorsal nucleus of thalamus +UBERON_0001016 nervous system UBERON_0003036 central lateral nucleus +UBERON_0001016 nervous system UBERON_0003038 thoracic spinal cord +UBERON_0001016 nervous system UBERON_0003039 anterior commissure anterior part +UBERON_0001016 nervous system UBERON_0003040 central gray substance of midbrain +UBERON_0001016 nervous system UBERON_0003041 trigeminal nerve fibers +UBERON_0001016 nervous system UBERON_0003043 posterior part of anterior commissure +UBERON_0001016 nervous system UBERON_0003044 uncinate fasciculus +UBERON_0001016 nervous system UBERON_0003045 dorsal longitudinal fasciculus +UBERON_0001016 nervous system UBERON_0003046 ventral acoustic stria +UBERON_0001016 nervous system UBERON_0003052 midbrain-hindbrain boundary +UBERON_0001016 nervous system UBERON_0003053 ventricular zone +UBERON_0001016 nervous system UBERON_0003065 ciliary marginal zone +UBERON_0001016 nervous system UBERON_0003078 epibranchial placode +UBERON_0001016 nervous system UBERON_0003098 optic stalk +UBERON_0001016 nervous system UBERON_0003161 dorsal ocellus +UBERON_0001016 nervous system UBERON_0003162 lateral ocellus +UBERON_0001016 nervous system UBERON_0003209 blood nerve barrier +UBERON_0001016 nervous system UBERON_0003210 blood-cerebrospinal fluid barrier +UBERON_0001016 nervous system UBERON_0003212 gustatory organ +UBERON_0001016 nervous system UBERON_0003217 neural lobe of neurohypophysis +UBERON_0001016 nervous system UBERON_0003241 epithelium of utricle +UBERON_0001016 nervous system UBERON_0003242 epithelium of saccule +UBERON_0001016 nervous system UBERON_0003288 meninx of midbrain +UBERON_0001016 nervous system UBERON_0003289 meninx of telencephalon +UBERON_0001016 nervous system UBERON_0003290 meninx of diencephalon +UBERON_0001016 nervous system UBERON_0003291 meninx of hindbrain +UBERON_0001016 nervous system UBERON_0003292 meninx of spinal cord +UBERON_0001016 nervous system UBERON_0003296 gland of diencephalon +UBERON_0001016 nervous system UBERON_0003299 roof plate of midbrain +UBERON_0001016 nervous system UBERON_0003300 roof plate of telencephalon +UBERON_0001016 nervous system UBERON_0003301 roof plate of diencephalon +UBERON_0001016 nervous system UBERON_0003302 roof plate of metencephalon +UBERON_0001016 nervous system UBERON_0003303 roof plate of medulla oblongata +UBERON_0001016 nervous system UBERON_0003307 floor plate of midbrain +UBERON_0001016 nervous system UBERON_0003308 floor plate of telencephalon +UBERON_0001016 nervous system UBERON_0003309 floor plate of diencephalon +UBERON_0001016 nervous system UBERON_0003310 floor plate of metencephalon +UBERON_0001016 nervous system UBERON_0003311 floor plate of medulla oblongata +UBERON_0001016 nervous system UBERON_0003338 ganglion of peripheral nervous system +UBERON_0001016 nervous system UBERON_0003339 ganglion of central nervous system +UBERON_0001016 nervous system UBERON_0003363 epithelium of ductus reuniens +UBERON_0001016 nervous system UBERON_0003429 abdomen nerve +UBERON_0001016 nervous system UBERON_0003430 neck nerve +UBERON_0001016 nervous system UBERON_0003431 leg nerve +UBERON_0001016 nervous system UBERON_0003432 chest nerve +UBERON_0001016 nervous system UBERON_0003433 arm nerve +UBERON_0001016 nervous system UBERON_0003434 wrist nerve +UBERON_0001016 nervous system UBERON_0003435 pedal digit nerve +UBERON_0001016 nervous system UBERON_0003436 shoulder nerve +UBERON_0001016 nervous system UBERON_0003437 eyelid nerve +UBERON_0001016 nervous system UBERON_0003438 iris nerve +UBERON_0001016 nervous system UBERON_0003439 nerve of trunk region +UBERON_0001016 nervous system UBERON_0003440 limb nerve +UBERON_0001016 nervous system UBERON_0003441 forelimb nerve +UBERON_0001016 nervous system UBERON_0003442 hindlimb nerve +UBERON_0001016 nervous system UBERON_0003443 thoracic cavity nerve +UBERON_0001016 nervous system UBERON_0003444 pelvis nerve +UBERON_0001016 nervous system UBERON_0003445 pes nerve +UBERON_0001016 nervous system UBERON_0003446 ankle nerve +UBERON_0001016 nervous system UBERON_0003447 digit nerve of manus +UBERON_0001016 nervous system UBERON_0003448 manus nerve +UBERON_0001016 nervous system UBERON_0003499 brain blood vessel +UBERON_0001016 nervous system UBERON_0003501 retina blood vessel +UBERON_0001016 nervous system UBERON_0003528 brain gray matter +UBERON_0001016 nervous system UBERON_0003535 vagus X nerve trunk +UBERON_0001016 nervous system UBERON_0003544 brain white matter +UBERON_0001016 nervous system UBERON_0003547 brain meninx +UBERON_0001016 nervous system UBERON_0003548 forebrain meninges +UBERON_0001016 nervous system UBERON_0003549 brain pia mater +UBERON_0001016 nervous system UBERON_0003550 forebrain pia mater +UBERON_0001016 nervous system UBERON_0003551 midbrain pia mater +UBERON_0001016 nervous system UBERON_0003552 telencephalon pia mater +UBERON_0001016 nervous system UBERON_0003553 diencephalon pia mater +UBERON_0001016 nervous system UBERON_0003554 hindbrain pia mater +UBERON_0001016 nervous system UBERON_0003555 spinal cord pia mater +UBERON_0001016 nervous system UBERON_0003556 forebrain arachnoid mater +UBERON_0001016 nervous system UBERON_0003557 midbrain arachnoid mater +UBERON_0001016 nervous system UBERON_0003558 diencephalon arachnoid mater +UBERON_0001016 nervous system UBERON_0003559 hindbrain arachnoid mater +UBERON_0001016 nervous system UBERON_0003560 spinal cord arachnoid mater +UBERON_0001016 nervous system UBERON_0003561 forebrain dura mater +UBERON_0001016 nervous system UBERON_0003562 midbrain dura mater +UBERON_0001016 nervous system UBERON_0003563 telencephalon dura mater +UBERON_0001016 nervous system UBERON_0003564 diencephalon dura mater +UBERON_0001016 nervous system UBERON_0003565 hindbrain dura mater +UBERON_0001016 nervous system UBERON_0003712 cavernous sinus +UBERON_0001016 nervous system UBERON_0003714 neural tissue +UBERON_0001016 nervous system UBERON_0003715 splanchnic nerve +UBERON_0001016 nervous system UBERON_0003716 recurrent laryngeal nerve +UBERON_0001016 nervous system UBERON_0003718 muscle spindle +UBERON_0001016 nervous system UBERON_0003719 Pacinian corpuscle +UBERON_0001016 nervous system UBERON_0003721 lingual nerve +UBERON_0001016 nervous system UBERON_0003723 vestibular nerve +UBERON_0001016 nervous system UBERON_0003724 musculocutaneous nerve +UBERON_0001016 nervous system UBERON_0003725 cervical nerve plexus +UBERON_0001016 nervous system UBERON_0003726 thoracic nerve +UBERON_0001016 nervous system UBERON_0003727 intercostal nerve +UBERON_0001016 nervous system UBERON_0003824 nerve of thoracic segment +UBERON_0001016 nervous system UBERON_0003825 nerve of abdominal segment +UBERON_0001016 nervous system UBERON_0003876 hippocampal field +UBERON_0001016 nervous system UBERON_0003881 CA1 field of hippocampus +UBERON_0001016 nervous system UBERON_0003882 CA2 field of hippocampus +UBERON_0001016 nervous system UBERON_0003883 CA3 field of hippocampus +UBERON_0001016 nervous system UBERON_0003884 CA4 field of hippocampus +UBERON_0001016 nervous system UBERON_0003902 retinal neural layer +UBERON_0001016 nervous system UBERON_0003911 choroid plexus epithelium +UBERON_0001016 nervous system UBERON_0003925 photoreceptor inner segment layer +UBERON_0001016 nervous system UBERON_0003926 photoreceptor outer segment layer +UBERON_0001016 nervous system UBERON_0003931 diencephalic white matter +UBERON_0001016 nervous system UBERON_0003936 postoptic commissure +UBERON_0001016 nervous system UBERON_0003938 sensory dissociation area +UBERON_0001016 nervous system UBERON_0003939 transverse gyrus of Heschl +UBERON_0001016 nervous system UBERON_0003941 cerebellum anterior vermis +UBERON_0001016 nervous system UBERON_0003942 somatic sensory system +UBERON_0001016 nervous system UBERON_0003943 fourth lumbar dorsal root ganglion +UBERON_0001016 nervous system UBERON_0003945 somatic motor system +UBERON_0001016 nervous system UBERON_0003947 brain ventricle/choroid plexus +UBERON_0001016 nervous system UBERON_0003961 cingulum of brain +UBERON_0001016 nervous system UBERON_0003962 pterygopalatine ganglion +UBERON_0001016 nervous system UBERON_0003963 otic ganglion +UBERON_0001016 nervous system UBERON_0003964 prevertebral ganglion +UBERON_0001016 nervous system UBERON_0003965 sympathetic afferent fiber +UBERON_0001016 nervous system UBERON_0003979 utricle valve +UBERON_0001016 nervous system UBERON_0003980 cerebellum fissure +UBERON_0001016 nervous system UBERON_0003989 medulla oblongata anterior median fissure +UBERON_0001016 nervous system UBERON_0003990 spinal cord motor column +UBERON_0001016 nervous system UBERON_0003991 fourth ventricle median aperture +UBERON_0001016 nervous system UBERON_0003992 fourth ventricle lateral aperture +UBERON_0001016 nervous system UBERON_0003993 interventricular foramen of CNS +UBERON_0001016 nervous system UBERON_0004001 olfactory bulb layer +UBERON_0001016 nervous system UBERON_0004002 posterior lobe of cerebellum +UBERON_0001016 nervous system UBERON_0004003 cerebellum hemisphere lobule +UBERON_0001016 nervous system UBERON_0004004 cerebellum lobule +UBERON_0001016 nervous system UBERON_0004006 cerebellum intermediate zone +UBERON_0001016 nervous system UBERON_0004008 cerebellar plate +UBERON_0001016 nervous system UBERON_0004009 cerebellum posterior vermis +UBERON_0001016 nervous system UBERON_0004010 primary muscle spindle +UBERON_0001016 nervous system UBERON_0004011 secondary muscle spindle +UBERON_0001016 nervous system UBERON_0004019 baroreceptor +UBERON_0001016 nervous system UBERON_0004022 germinal neuroepithelium +UBERON_0001016 nervous system UBERON_0004023 ganglionic eminence +UBERON_0001016 nervous system UBERON_0004024 medial ganglionic eminence +UBERON_0001016 nervous system UBERON_0004025 lateral ganglionic eminence +UBERON_0001016 nervous system UBERON_0004026 caudal ganglionic eminence +UBERON_0001016 nervous system UBERON_0004029 canal of Schlemm +UBERON_0001016 nervous system UBERON_0004035 cortical subplate +UBERON_0001016 nervous system UBERON_0004040 cortical intermediate zone +UBERON_0001016 nervous system UBERON_0004047 basal cistern +UBERON_0001016 nervous system UBERON_0004048 pontine cistern +UBERON_0001016 nervous system UBERON_0004049 cerebellomedullary cistern +UBERON_0001016 nervous system UBERON_0004050 subarachnoid cistern +UBERON_0001016 nervous system UBERON_0004051 lateral cerebellomedullary cistern +UBERON_0001016 nervous system UBERON_0004052 quadrigeminal cistern +UBERON_0001016 nervous system UBERON_0004059 spinal cord medial motor column +UBERON_0001016 nervous system UBERON_0004060 neural tube ventricular layer +UBERON_0001016 nervous system UBERON_0004061 neural tube mantle layer +UBERON_0001016 nervous system UBERON_0004063 spinal cord alar plate +UBERON_0001016 nervous system UBERON_0004064 neural tube basal plate +UBERON_0001016 nervous system UBERON_0004069 accessory olfactory bulb +UBERON_0001016 nervous system UBERON_0004070 cerebellum vermis lobule +UBERON_0001016 nervous system UBERON_0004073 cerebellum interpositus nucleus +UBERON_0001016 nervous system UBERON_0004074 cerebellum vermis lobule I +UBERON_0001016 nervous system UBERON_0004075 cerebellum vermis lobule II +UBERON_0001016 nervous system UBERON_0004076 cerebellum vermis lobule III +UBERON_0001016 nervous system UBERON_0004077 cerebellum vermis lobule IV +UBERON_0001016 nervous system UBERON_0004078 cerebellum vermis lobule IX +UBERON_0001016 nervous system UBERON_0004079 cerebellum vermis lobule V +UBERON_0001016 nervous system UBERON_0004080 cerebellum vermis lobule VI +UBERON_0001016 nervous system UBERON_0004081 cerebellum vermis lobule VII +UBERON_0001016 nervous system UBERON_0004082 cerebellum vermis lobule VIII +UBERON_0001016 nervous system UBERON_0004083 cerebellum vermis lobule X +UBERON_0001016 nervous system UBERON_0004086 brain ventricle +UBERON_0001016 nervous system UBERON_0004116 nerve of tympanic cavity +UBERON_0001016 nervous system UBERON_0004130 cerebellar layer +UBERON_0001016 nervous system UBERON_0004132 trigeminal sensory nucleus +UBERON_0001016 nervous system UBERON_0004133 salivatory nucleus +UBERON_0001016 nervous system UBERON_0004166 superior reticular formation +UBERON_0001016 nervous system UBERON_0004167 orbitofrontal cortex +UBERON_0001016 nervous system UBERON_0004170 spinal cord ventral commissure +UBERON_0001016 nervous system UBERON_0004171 trigeminothalamic tract +UBERON_0001016 nervous system UBERON_0004172 pons reticulospinal tract +UBERON_0001016 nervous system UBERON_0004173 medulla reticulospinal tract +UBERON_0001016 nervous system UBERON_0004186 olfactory bulb mitral cell layer +UBERON_0001016 nervous system UBERON_0004214 upper leg nerve +UBERON_0001016 nervous system UBERON_0004215 back nerve +UBERON_0001016 nervous system UBERON_0004216 lower arm nerve +UBERON_0001016 nervous system UBERON_0004217 upper arm nerve +UBERON_0001016 nervous system UBERON_0004218 lower leg nerve +UBERON_0001016 nervous system UBERON_0004274 lateral ventricle choroid plexus epithelium +UBERON_0001016 nervous system UBERON_0004275 third ventricle choroid plexus epithelium +UBERON_0001016 nervous system UBERON_0004276 fourth ventricle choroid plexus epithelium +UBERON_0001016 nervous system UBERON_0004293 parasympathetic nerve +UBERON_0001016 nervous system UBERON_0004295 sympathetic nerve trunk +UBERON_0001016 nervous system UBERON_0004545 external capsule of telencephalon +UBERON_0001016 nervous system UBERON_0004642 third ventricle ependyma +UBERON_0001016 nervous system UBERON_0004643 lateral ventricle ependyma +UBERON_0001016 nervous system UBERON_0004644 fourth ventricle ependyma +UBERON_0001016 nervous system UBERON_0004668 fourth ventricle aperture +UBERON_0001016 nervous system UBERON_0004670 ependyma +UBERON_0001016 nervous system UBERON_0004671 gyrus rectus +UBERON_0001016 nervous system UBERON_0004672 posterior horn lateral ventricle +UBERON_0001016 nervous system UBERON_0004673 trigeminal nerve root +UBERON_0001016 nervous system UBERON_0004674 facial nerve root +UBERON_0001016 nervous system UBERON_0004675 hypoglossal nerve root +UBERON_0001016 nervous system UBERON_0004676 spinal cord lateral horn +UBERON_0001016 nervous system UBERON_0004677 spinal cord gray commissure +UBERON_0001016 nervous system UBERON_0004678 apex of spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0004679 dentate gyrus molecular layer +UBERON_0001016 nervous system UBERON_0004680 body of fornix +UBERON_0001016 nervous system UBERON_0004682 corona radiata of neuraxis +UBERON_0001016 nervous system UBERON_0004683 parasubiculum +UBERON_0001016 nervous system UBERON_0004684 raphe nuclei +UBERON_0001016 nervous system UBERON_0004689 naso-frontal vein +UBERON_0001016 nervous system UBERON_0004703 dorsal thalamus +UBERON_0001016 nervous system UBERON_0004714 septum pellucidum +UBERON_0001016 nervous system UBERON_0004717 Brodmann (1909) area 29 +UBERON_0001016 nervous system UBERON_0004718 Brodmann (1909) area 26 +UBERON_0001016 nervous system UBERON_0004720 cerebellar vermis +UBERON_0001016 nervous system UBERON_0004725 piriform cortex +UBERON_0001016 nervous system UBERON_0004727 cochlear nerve +UBERON_0001016 nervous system UBERON_0004731 neuromere +UBERON_0001016 nervous system UBERON_0004732 segmental subdivision of nervous system +UBERON_0001016 nervous system UBERON_0004733 segmental subdivision of hindbrain +UBERON_0001016 nervous system UBERON_0004863 thoracic sympathetic nerve trunk +UBERON_0001016 nervous system UBERON_0004864 vasculature of retina +UBERON_0001016 nervous system UBERON_0004869 parietal organ +UBERON_0001016 nervous system UBERON_0004904 neuron projection bundle connecting eye with brain +UBERON_0001016 nervous system UBERON_0004922 postnatal subventricular zone +UBERON_0001016 nervous system UBERON_0005053 primary nerve cord +UBERON_0001016 nervous system UBERON_0005054 primary dorsal nerve cord +UBERON_0001016 nervous system UBERON_0005075 forebrain-midbrain boundary +UBERON_0001016 nervous system UBERON_0005076 hindbrain-spinal cord boundary +UBERON_0001016 nervous system UBERON_0005158 parenchyma of central nervous system +UBERON_0001016 nervous system UBERON_0005159 pyramid of medulla oblongata +UBERON_0001016 nervous system UBERON_0005197 segmental spinal nerve +UBERON_0001016 nervous system UBERON_0005206 choroid plexus stroma +UBERON_0001016 nervous system UBERON_0005217 midbrain subarachnoid space +UBERON_0001016 nervous system UBERON_0005218 diencephalon subarachnoid space +UBERON_0001016 nervous system UBERON_0005219 hindbrain subarachnoid space +UBERON_0001016 nervous system UBERON_0005239 basal plate metencephalon +UBERON_0001016 nervous system UBERON_0005240 basal plate medulla oblongata +UBERON_0001016 nervous system UBERON_0005281 ventricular system of central nervous system +UBERON_0001016 nervous system UBERON_0005282 ventricular system of brain +UBERON_0001016 nervous system UBERON_0005283 tela choroidea +UBERON_0001016 nervous system UBERON_0005286 tela choroidea of midbrain cerebral aqueduct +UBERON_0001016 nervous system UBERON_0005287 tela choroidea of fourth ventricle +UBERON_0001016 nervous system UBERON_0005288 tela choroidea of third ventricle +UBERON_0001016 nervous system UBERON_0005289 tela choroidea of telencephalic ventricle +UBERON_0001016 nervous system UBERON_0005290 myelencephalon +UBERON_0001016 nervous system UBERON_0005293 cerebellum lobe +UBERON_0001016 nervous system UBERON_0005303 hypogastric nerve +UBERON_0001016 nervous system UBERON_0005304 submucous nerve plexus +UBERON_0001016 nervous system UBERON_0005340 dorsal telencephalic commissure +UBERON_0001016 nervous system UBERON_0005341 ventral commissure +UBERON_0001016 nervous system UBERON_0005343 cortical plate +UBERON_0001016 nervous system UBERON_0005345 cerebellum vermis lobule VIIA +UBERON_0001016 nervous system UBERON_0005346 cerebellum vermis lobule VIIB +UBERON_0001016 nervous system UBERON_0005347 copula pyramidis +UBERON_0001016 nervous system UBERON_0005348 ansiform lobule +UBERON_0001016 nervous system UBERON_0005349 paramedian lobule +UBERON_0001016 nervous system UBERON_0005350 lobule simplex +UBERON_0001016 nervous system UBERON_0005351 paraflocculus +UBERON_0001016 nervous system UBERON_0005357 brain ependyma +UBERON_0001016 nervous system UBERON_0005358 ventricle of nervous system +UBERON_0001016 nervous system UBERON_0005359 spinal cord ependyma +UBERON_0001016 nervous system UBERON_0005360 inferior glossopharyngeal IX ganglion +UBERON_0001016 nervous system UBERON_0005361 superior glossopharyngeal IX ganglion +UBERON_0001016 nervous system UBERON_0005362 vagus X ganglion +UBERON_0001016 nervous system UBERON_0005363 inferior vagus X ganglion +UBERON_0001016 nervous system UBERON_0005364 superior vagus X ganglion +UBERON_0001016 nervous system UBERON_0005366 olfactory lobe +UBERON_0001016 nervous system UBERON_0005367 hippocampus granule cell layer +UBERON_0001016 nervous system UBERON_0005368 hippocampus molecular layer +UBERON_0001016 nervous system UBERON_0005370 hippocampus stratum lacunosum +UBERON_0001016 nervous system UBERON_0005371 hippocampus stratum oriens +UBERON_0001016 nervous system UBERON_0005372 hippocampus stratum radiatum +UBERON_0001016 nervous system UBERON_0005373 spinal cord dorsal column +UBERON_0001016 nervous system UBERON_0005374 spinal cord lateral column +UBERON_0001016 nervous system UBERON_0005375 spinal cord ventral column +UBERON_0001016 nervous system UBERON_0005376 olfactory bulb external plexiform layer +UBERON_0001016 nervous system UBERON_0005377 olfactory bulb glomerular layer +UBERON_0001016 nervous system UBERON_0005378 olfactory bulb granule cell layer +UBERON_0001016 nervous system UBERON_0005379 olfactory bulb internal plexiform layer +UBERON_0001016 nervous system UBERON_0005380 olfactory bulb subependymal zone +UBERON_0001016 nervous system UBERON_0005381 dentate gyrus granule cell layer +UBERON_0001016 nervous system UBERON_0005382 dorsal striatum +UBERON_0001016 nervous system UBERON_0005383 caudate-putamen +UBERON_0001016 nervous system UBERON_0005387 olfactory glomerulus +UBERON_0001016 nervous system UBERON_0005388 photoreceptor array +UBERON_0001016 nervous system UBERON_0005390 cortical layer I +UBERON_0001016 nervous system UBERON_0005391 cortical layer II +UBERON_0001016 nervous system UBERON_0005392 cortical layer III +UBERON_0001016 nervous system UBERON_0005393 cortical layer IV +UBERON_0001016 nervous system UBERON_0005394 cortical layer V +UBERON_0001016 nervous system UBERON_0005395 cortical layer VI +UBERON_0001016 nervous system UBERON_0005397 brain arachnoid mater +UBERON_0001016 nervous system UBERON_0005400 telencephalon arachnoid mater +UBERON_0001016 nervous system UBERON_0005401 cerebral hemisphere gray matter +UBERON_0001016 nervous system UBERON_0005403 ventral striatum +UBERON_0001016 nervous system UBERON_0005407 sublingual ganglion +UBERON_0001016 nervous system UBERON_0005408 circumventricular organ +UBERON_0001016 nervous system UBERON_0005413 spinocerebellar tract +UBERON_0001016 nervous system UBERON_0005430 ansa cervicalis +UBERON_0001016 nervous system UBERON_0005437 conus medullaris +UBERON_0001016 nervous system UBERON_0005443 filum terminale +UBERON_0001016 nervous system UBERON_0005453 inferior mesenteric ganglion +UBERON_0001016 nervous system UBERON_0005465 obturator nerve +UBERON_0001016 nervous system UBERON_0005475 sigmoid sinus +UBERON_0001016 nervous system UBERON_0005476 spinal nerve trunk +UBERON_0001016 nervous system UBERON_0005479 superior mesenteric ganglion +UBERON_0001016 nervous system UBERON_0005481 tentorial sinus +UBERON_0001016 nervous system UBERON_0005486 venous dural sinus +UBERON_0001016 nervous system UBERON_0005488 superior mesenteric plexus +UBERON_0001016 nervous system UBERON_0005495 midbrain lateral wall +UBERON_0001016 nervous system UBERON_0005499 rhombomere 1 +UBERON_0001016 nervous system UBERON_0005500 rhombomere floor plate +UBERON_0001016 nervous system UBERON_0005501 rhombomere lateral wall +UBERON_0001016 nervous system UBERON_0005502 rhombomere roof plate +UBERON_0001016 nervous system UBERON_0005507 rhombomere 3 +UBERON_0001016 nervous system UBERON_0005511 rhombomere 4 +UBERON_0001016 nervous system UBERON_0005515 rhombomere 5 +UBERON_0001016 nervous system UBERON_0005519 rhombomere 6 +UBERON_0001016 nervous system UBERON_0005523 rhombomere 7 +UBERON_0001016 nervous system UBERON_0005527 rhombomere 8 +UBERON_0001016 nervous system UBERON_0005561 telencephalon lateral wall +UBERON_0001016 nervous system UBERON_0005566 rhombomere 1 floor plate +UBERON_0001016 nervous system UBERON_0005567 rhombomere 1 lateral wall +UBERON_0001016 nervous system UBERON_0005568 rhombomere 1 roof plate +UBERON_0001016 nervous system UBERON_0005569 rhombomere 2 +UBERON_0001016 nervous system UBERON_0005570 rhombomere 2 floor plate +UBERON_0001016 nervous system UBERON_0005571 rhombomere 2 lateral wall +UBERON_0001016 nervous system UBERON_0005572 rhombomere 2 roof plate +UBERON_0001016 nervous system UBERON_0005573 rhombomere 3 floor plate +UBERON_0001016 nervous system UBERON_0005574 rhombomere 3 lateral wall +UBERON_0001016 nervous system UBERON_0005575 rhombomere 3 roof plate +UBERON_0001016 nervous system UBERON_0005576 rhombomere 4 floor plate +UBERON_0001016 nervous system UBERON_0005577 rhombomere 4 lateral wall +UBERON_0001016 nervous system UBERON_0005578 rhombomere 4 roof plate +UBERON_0001016 nervous system UBERON_0005579 rhombomere 5 floor plate +UBERON_0001016 nervous system UBERON_0005580 rhombomere 5 lateral wall +UBERON_0001016 nervous system UBERON_0005581 rhombomere 5 roof plate +UBERON_0001016 nervous system UBERON_0005582 rhombomere 6 floor plate +UBERON_0001016 nervous system UBERON_0005583 rhombomere 6 lateral wall +UBERON_0001016 nervous system UBERON_0005584 rhombomere 6 roof plate +UBERON_0001016 nervous system UBERON_0005585 rhombomere 7 floor plate +UBERON_0001016 nervous system UBERON_0005586 rhombomere 7 lateral wall +UBERON_0001016 nervous system UBERON_0005587 rhombomere 7 roof plate +UBERON_0001016 nervous system UBERON_0005588 rhombomere 8 floor plate +UBERON_0001016 nervous system UBERON_0005589 rhombomere 8 lateral wall +UBERON_0001016 nervous system UBERON_0005590 rhombomere 8 roof plate +UBERON_0001016 nervous system UBERON_0005591 diencephalon lateral wall +UBERON_0001016 nervous system UBERON_0005657 crus commune epithelium +UBERON_0001016 nervous system UBERON_0005720 hindbrain venous system +UBERON_0001016 nervous system UBERON_0005723 floor plate spinal cord region +UBERON_0001016 nervous system UBERON_0005724 roof plate spinal cord region +UBERON_0001016 nervous system UBERON_0005807 rostral ventrolateral medulla +UBERON_0001016 nervous system UBERON_0005821 gracile fasciculus +UBERON_0001016 nervous system UBERON_0005826 gracile fasciculus of spinal cord +UBERON_0001016 nervous system UBERON_0005832 cuneate fasciculus +UBERON_0001016 nervous system UBERON_0005835 cuneate fasciculus of spinal cord +UBERON_0001016 nervous system UBERON_0005837 fasciculus of spinal cord +UBERON_0001016 nervous system UBERON_0005838 fasciculus of brain +UBERON_0001016 nervous system UBERON_0005839 thoracic spinal cord dorsal column +UBERON_0001016 nervous system UBERON_0005840 sacral spinal cord dorsal column +UBERON_0001016 nervous system UBERON_0005841 cervical spinal cord dorsal column +UBERON_0001016 nervous system UBERON_0005842 lumbar spinal cord dorsal column +UBERON_0001016 nervous system UBERON_0005843 sacral spinal cord +UBERON_0001016 nervous system UBERON_0005844 spinal cord segment +UBERON_0001016 nervous system UBERON_0005845 caudal segment of spinal cord +UBERON_0001016 nervous system UBERON_0005847 thoracic spinal cord lateral column +UBERON_0001016 nervous system UBERON_0005848 sacral spinal cord lateral column +UBERON_0001016 nervous system UBERON_0005849 cervical spinal cord lateral column +UBERON_0001016 nervous system UBERON_0005850 lumbar spinal cord lateral column +UBERON_0001016 nervous system UBERON_0005852 thoracic spinal cord ventral column +UBERON_0001016 nervous system UBERON_0005853 sacral spinal cord ventral column +UBERON_0001016 nervous system UBERON_0005854 cervical spinal cord ventral column +UBERON_0001016 nervous system UBERON_0005855 lumbar spinal cord ventral column +UBERON_0001016 nervous system UBERON_0005882 neural tube alar plate +UBERON_0001016 nervous system UBERON_0005883 neural tube lateral wall mantle layer +UBERON_0001016 nervous system UBERON_0005970 brain commissure +UBERON_0001016 nervous system UBERON_0005974 posterior cerebellomedullary cistern +UBERON_0001016 nervous system UBERON_0005976 ansiform lobule crus I +UBERON_0001016 nervous system UBERON_0005977 ansiform lobule crus II +UBERON_0001016 nervous system UBERON_0005978 olfactory bulb outer nerve layer +UBERON_0001016 nervous system UBERON_0006007 pre-Botzinger complex +UBERON_0001016 nervous system UBERON_0006059 falx cerebri +UBERON_0001016 nervous system UBERON_0006078 subdivision of spinal cord lateral column +UBERON_0001016 nervous system UBERON_0006079 subdivision of spinal cord dorsal column +UBERON_0001016 nervous system UBERON_0006083 perirhinal cortex +UBERON_0001016 nervous system UBERON_0006086 stria medullaris +UBERON_0001016 nervous system UBERON_0006087 internal arcuate fiber bundle +UBERON_0001016 nervous system UBERON_0006088 inferior parietal cortex +UBERON_0001016 nervous system UBERON_0006089 dorsal external arcuate fiber bundle +UBERON_0001016 nervous system UBERON_0006090 glossopharyngeal nerve fiber bundle +UBERON_0001016 nervous system UBERON_0006091 inferior horn of the lateral ventricle +UBERON_0001016 nervous system UBERON_0006092 cuneus cortex +UBERON_0001016 nervous system UBERON_0006093 precuneus cortex +UBERON_0001016 nervous system UBERON_0006094 superior parietal cortex +UBERON_0001016 nervous system UBERON_0006095 anterior transverse temporal area 41 +UBERON_0001016 nervous system UBERON_0006096 posterior transverse temporal area 42 +UBERON_0001016 nervous system UBERON_0006097 ventral external arcuate fiber bundle +UBERON_0001016 nervous system UBERON_0006098 basal nuclear complex +UBERON_0001016 nervous system UBERON_0006099 Brodmann (1909) area 1 +UBERON_0001016 nervous system UBERON_0006100 Brodmann (1909) area 3 +UBERON_0001016 nervous system UBERON_0006101 Brodmann (1909) area 24 +UBERON_0001016 nervous system UBERON_0006102 Brodmann (1909) area 35 +UBERON_0001016 nervous system UBERON_0006104 Brodmann (1909) area 36 +UBERON_0001016 nervous system UBERON_0006107 basolateral amygdaloid nuclear complex +UBERON_0001016 nervous system UBERON_0006108 corticomedial nuclear complex +UBERON_0001016 nervous system UBERON_0006114 lateral occipital cortex +UBERON_0001016 nervous system UBERON_0006115 posterior column of fornix +UBERON_0001016 nervous system UBERON_0006116 vagal nerve fiber bundle +UBERON_0001016 nervous system UBERON_0006117 accessory nerve fiber bundle +UBERON_0001016 nervous system UBERON_0006118 lamina I of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0006119 subbrachial nucleus +UBERON_0001016 nervous system UBERON_0006120 superior colliculus superficial gray layer +UBERON_0001016 nervous system UBERON_0006121 hemispheric lobule VIII +UBERON_0001016 nervous system UBERON_0006123 horizontal limb of the diagonal band +UBERON_0001016 nervous system UBERON_0006124 vertical limb of the diagonal band +UBERON_0001016 nervous system UBERON_0006125 subdivision of diagonal band +UBERON_0001016 nervous system UBERON_0006127 funiculus of spinal cord +UBERON_0001016 nervous system UBERON_0006133 funiculus of neuraxis +UBERON_0001016 nervous system UBERON_0006134 nerve fiber +UBERON_0001016 nervous system UBERON_0006135 myelinated nerve fiber +UBERON_0001016 nervous system UBERON_0006136 unmyelinated nerve fiber +UBERON_0001016 nervous system UBERON_0006215 rhombic lip +UBERON_0001016 nervous system UBERON_0006220 diencephalic part of interventricular foramen +UBERON_0001016 nervous system UBERON_0006232 facio-acoustic VII-VIII preganglion complex +UBERON_0001016 nervous system UBERON_0006241 future spinal cord +UBERON_0001016 nervous system UBERON_0006243 glossopharyngeal IX preganglion +UBERON_0001016 nervous system UBERON_0006250 infundibular recess of 3rd ventricle +UBERON_0001016 nervous system UBERON_0006253 embryonic intraretinal space +UBERON_0001016 nervous system UBERON_0006284 early prosencephalic vesicle +UBERON_0001016 nervous system UBERON_0006301 telencephalic part of interventricular foramen +UBERON_0001016 nervous system UBERON_0006319 spinal cord reticular nucleus +UBERON_0001016 nervous system UBERON_0006331 brainstem nucleus +UBERON_0001016 nervous system UBERON_0006338 lateral ventricle choroid plexus stroma +UBERON_0001016 nervous system UBERON_0006339 third ventricle choroid plexus stroma +UBERON_0001016 nervous system UBERON_0006340 fourth ventricle choroid plexus stroma +UBERON_0001016 nervous system UBERON_0006377 remnant of Rathke's pouch +UBERON_0001016 nervous system UBERON_0006445 caudal middle frontal gyrus +UBERON_0001016 nervous system UBERON_0006446 rostral middle frontal gyrus +UBERON_0001016 nervous system UBERON_0006447 fifth lumbar spinal cord segment +UBERON_0001016 nervous system UBERON_0006448 first lumbar spinal cord segment +UBERON_0001016 nervous system UBERON_0006449 third lumbar spinal cord segment +UBERON_0001016 nervous system UBERON_0006450 second lumbar spinal cord segment +UBERON_0001016 nervous system UBERON_0006451 fourth lumbar spinal cord segment +UBERON_0001016 nervous system UBERON_0006452 fourth thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006453 fifth thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006454 sixth thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006455 seventh thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006456 eighth thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006457 first thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006458 second thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006459 third thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006460 first sacral spinal cord segment +UBERON_0001016 nervous system UBERON_0006461 second sacral spinal cord segment +UBERON_0001016 nervous system UBERON_0006462 third sacral spinal cord segment +UBERON_0001016 nervous system UBERON_0006463 fourth sacral spinal cord segment +UBERON_0001016 nervous system UBERON_0006464 fifth sacral spinal cord segment +UBERON_0001016 nervous system UBERON_0006465 ninth thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006466 tenth thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006467 eleventh thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006468 twelfth thoracic spinal cord segment +UBERON_0001016 nervous system UBERON_0006469 C1 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006470 C8 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006471 Brodmann (1909) area 5 +UBERON_0001016 nervous system UBERON_0006472 Brodmann (1909) area 6 +UBERON_0001016 nervous system UBERON_0006473 Brodmann (1909) area 18 +UBERON_0001016 nervous system UBERON_0006474 Brodmann (1909) area 30 +UBERON_0001016 nervous system UBERON_0006475 Brodmann (1909) area 31 +UBERON_0001016 nervous system UBERON_0006476 Brodmann (1909) area 33 +UBERON_0001016 nervous system UBERON_0006477 Brodmann (1909) area 34 +UBERON_0001016 nervous system UBERON_0006478 Brodmann (1909) area 37 +UBERON_0001016 nervous system UBERON_0006479 Brodmann (1909) area 38 +UBERON_0001016 nervous system UBERON_0006480 Brodmann (1909) area 39 +UBERON_0001016 nervous system UBERON_0006481 Brodmann (1909) area 44 +UBERON_0001016 nervous system UBERON_0006482 Brodmann (1909) area 45 +UBERON_0001016 nervous system UBERON_0006483 Brodmann (1909) area 46 +UBERON_0001016 nervous system UBERON_0006484 Brodmann (1909) area 47 +UBERON_0001016 nervous system UBERON_0006485 Brodmann (1909) area 48 +UBERON_0001016 nervous system UBERON_0006486 Brodmann (1909) area 52 +UBERON_0001016 nervous system UBERON_0006487 Hadjikhani et al. (1998) visuotopic area V2d +UBERON_0001016 nervous system UBERON_0006488 C3 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006489 C2 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006490 C4 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006491 C5 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006492 C6 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006493 C7 segment of cervical spinal cord +UBERON_0001016 nervous system UBERON_0006514 pallidum +UBERON_0001016 nervous system UBERON_0006516 dorsal pallidum +UBERON_0001016 nervous system UBERON_0006568 hypothalamic nucleus +UBERON_0001016 nervous system UBERON_0006569 diencephalic nucleus +UBERON_0001016 nervous system UBERON_0006585 vestibular organ +UBERON_0001016 nervous system UBERON_0006666 great cerebral vein +UBERON_0001016 nervous system UBERON_0006681 interthalamic adhesion +UBERON_0001016 nervous system UBERON_0006691 tentorium cerebelli +UBERON_0001016 nervous system UBERON_0006694 cerebellum vasculature +UBERON_0001016 nervous system UBERON_0006695 mammillary axonal complex +UBERON_0001016 nervous system UBERON_0006696 mammillothalamic axonal tract +UBERON_0001016 nervous system UBERON_0006697 mammillotectal axonal tract +UBERON_0001016 nervous system UBERON_0006698 mammillotegmental axonal tract +UBERON_0001016 nervous system UBERON_0006743 paleodentate of dentate nucleus +UBERON_0001016 nervous system UBERON_0006779 superficial white layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006780 zonal layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006782 stratum lemnisci of superior colliculus +UBERON_0001016 nervous system UBERON_0006783 layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006785 gray matter layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006786 white matter of superior colliculus +UBERON_0001016 nervous system UBERON_0006787 middle white layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006788 middle gray layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006789 deep gray layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006790 deep white layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006791 superficial layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006792 intermediate layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006793 deep layer of superior colliculus +UBERON_0001016 nervous system UBERON_0006794 visual processing part of nervous system +UBERON_0001016 nervous system UBERON_0006795 arthropod optic lobe +UBERON_0001016 nervous system UBERON_0006796 cephalopod optic lobe +UBERON_0001016 nervous system UBERON_0006798 efferent nerve +UBERON_0001016 nervous system UBERON_0006838 ventral ramus of spinal nerve +UBERON_0001016 nervous system UBERON_0006839 dorsal ramus of spinal nerve +UBERON_0001016 nervous system UBERON_0006840 nucleus of lateral lemniscus +UBERON_0001016 nervous system UBERON_0006843 root of cranial nerve +UBERON_0001016 nervous system UBERON_0006847 cerebellar commissure +UBERON_0001016 nervous system UBERON_0006848 posterior pretectal nucleus +UBERON_0001016 nervous system UBERON_0006932 vestibular epithelium +UBERON_0001016 nervous system UBERON_0006934 sensory epithelium +UBERON_0001016 nervous system UBERON_0006935 crista ampullaris neuroepithelium +UBERON_0001016 nervous system UBERON_0006964 pars distalis of adenohypophysis +UBERON_0001016 nervous system UBERON_0007134 trunk ganglion +UBERON_0001016 nervous system UBERON_0007152 inferior sagittal sinus +UBERON_0001016 nervous system UBERON_0007160 inferior petrosal sinus +UBERON_0001016 nervous system UBERON_0007190 paracentral gyrus +UBERON_0001016 nervous system UBERON_0007191 anterior paracentral gyrus +UBERON_0001016 nervous system UBERON_0007192 posterior paracentral gyrus +UBERON_0001016 nervous system UBERON_0007193 orbital gyrus +UBERON_0001016 nervous system UBERON_0007224 medial entorhinal cortex +UBERON_0001016 nervous system UBERON_0007225 lateral entorhinal cortex +UBERON_0001016 nervous system UBERON_0007227 superior vestibular nucleus +UBERON_0001016 nervous system UBERON_0007228 vestibular nucleus +UBERON_0001016 nervous system UBERON_0007230 lateral vestibular nucleus +UBERON_0001016 nervous system UBERON_0007244 inferior olivary nucleus +UBERON_0001016 nervous system UBERON_0007245 nuclear complex of neuraxis +UBERON_0001016 nervous system UBERON_0007247 nucleus of superior olivary complex +UBERON_0001016 nervous system UBERON_0007249 dorsal accessory inferior olivary nucleus +UBERON_0001016 nervous system UBERON_0007251 preoptic nucleus +UBERON_0001016 nervous system UBERON_0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth +UBERON_0001016 nervous system UBERON_0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth +UBERON_0001016 nervous system UBERON_0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth +UBERON_0001016 nervous system UBERON_0007299 choroid plexus of tectal ventricle +UBERON_0001016 nervous system UBERON_0007334 nidopallium +UBERON_0001016 nervous system UBERON_0007347 hyperpallium +UBERON_0001016 nervous system UBERON_0007349 mesopallium +UBERON_0001016 nervous system UBERON_0007350 arcopallium +UBERON_0001016 nervous system UBERON_0007351 nucleus isthmo-opticus +UBERON_0001016 nervous system UBERON_0007412 midbrain raphe nuclei +UBERON_0001016 nervous system UBERON_0007413 nucleus of pontine reticular formation +UBERON_0001016 nervous system UBERON_0007414 nucleus of midbrain tegmentum +UBERON_0001016 nervous system UBERON_0007415 nucleus of midbrain reticular formation +UBERON_0001016 nervous system UBERON_0007416 cerebellar peduncle +UBERON_0001016 nervous system UBERON_0007417 peduncle of neuraxis +UBERON_0001016 nervous system UBERON_0007418 neural decussation +UBERON_0001016 nervous system UBERON_0007425 decussation of diencephalon +UBERON_0001016 nervous system UBERON_0007619 limiting membrane of retina +UBERON_0001016 nervous system UBERON_0007626 subparaventricular zone +UBERON_0001016 nervous system UBERON_0007627 magnocellular nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0007628 lateral septal complex +UBERON_0001016 nervous system UBERON_0007629 medial septal complex +UBERON_0001016 nervous system UBERON_0007630 septohippocampal nucleus +UBERON_0001016 nervous system UBERON_0007631 accessory olfactory bulb glomerular layer +UBERON_0001016 nervous system UBERON_0007632 Barrington's nucleus +UBERON_0001016 nervous system UBERON_0007633 nucleus of trapezoid body +UBERON_0001016 nervous system UBERON_0007634 parabrachial nucleus +UBERON_0001016 nervous system UBERON_0007635 nucleus of medulla oblongata +UBERON_0001016 nervous system UBERON_0007637 hippocampus stratum lucidum +UBERON_0001016 nervous system UBERON_0007639 hippocampus alveus +UBERON_0001016 nervous system UBERON_0007640 hippocampus stratum lacunosum moleculare +UBERON_0001016 nervous system UBERON_0007641 trigeminal nuclear complex +UBERON_0001016 nervous system UBERON_0007645 future meninx +UBERON_0001016 nervous system UBERON_0007646 endomeninx +UBERON_0001016 nervous system UBERON_0007647 ectomeninx +UBERON_0001016 nervous system UBERON_0007656 lateral recess of fourth ventricle +UBERON_0001016 nervous system UBERON_0007691 gustatory pore +UBERON_0001016 nervous system UBERON_0007692 nucleus of thalamus +UBERON_0001016 nervous system UBERON_0007699 tract of spinal cord +UBERON_0001016 nervous system UBERON_0007702 tract of brain +UBERON_0001016 nervous system UBERON_0007703 spinothalamic tract +UBERON_0001016 nervous system UBERON_0007707 superior cerebellar peduncle of midbrain +UBERON_0001016 nervous system UBERON_0007709 superior cerebellar peduncle of pons +UBERON_0001016 nervous system UBERON_0007710 intermediate nucleus of lateral lemniscus +UBERON_0001016 nervous system UBERON_0007711 sixth cervical dorsal root ganglion +UBERON_0001016 nervous system UBERON_0007712 fourth thoracic spinal ganglion +UBERON_0001016 nervous system UBERON_0007713 fourth sacral spinal ganglion +UBERON_0001016 nervous system UBERON_0007714 cervical subsegment of spinal cord +UBERON_0001016 nervous system UBERON_0007715 thoracic subsegment of spinal cord +UBERON_0001016 nervous system UBERON_0007716 lumbar subsegment of spinal cord +UBERON_0001016 nervous system UBERON_0007717 sacral subsegment of spinal cord +UBERON_0001016 nervous system UBERON_0007763 cerebellum vermis culmen +UBERON_0001016 nervous system UBERON_0007764 paramedian reticular nucleus +UBERON_0001016 nervous system UBERON_0007767 dorsal premammillary nucleus +UBERON_0001016 nervous system UBERON_0007768 ventral premammillary nucleus +UBERON_0001016 nervous system UBERON_0007769 medial preoptic region +UBERON_0001016 nervous system UBERON_0007834 lumbar spinal cord ventral commissure +UBERON_0001016 nervous system UBERON_0007835 sacral spinal cord ventral commissure +UBERON_0001016 nervous system UBERON_0007836 cervical spinal cord ventral commissure +UBERON_0001016 nervous system UBERON_0007837 thoracic spinal cord ventral commissure +UBERON_0001016 nervous system UBERON_0007838 spinal cord white commissure +UBERON_0001016 nervous system UBERON_0007840 spinal cord dorsal white commissure +UBERON_0001016 nervous system UBERON_0008332 hilum of neuraxis +UBERON_0001016 nervous system UBERON_0008333 hilum of inferior olivary complex +UBERON_0001016 nervous system UBERON_0008334 subarachnoid sulcus +UBERON_0001016 nervous system UBERON_0008335 ventrolateral sulcus of medulla oblongata +UBERON_0001016 nervous system UBERON_0008810 nasopalatine nerve +UBERON_0001016 nervous system UBERON_0008823 neural tube derived brain +UBERON_0001016 nervous system UBERON_0008829 cerebellum external granule cell layer +UBERON_0001016 nervous system UBERON_0008830 cerebellum internal granule cell layer +UBERON_0001016 nervous system UBERON_0008833 great auricular nerve +UBERON_0001016 nervous system UBERON_0008881 rostral migratory stream +UBERON_0001016 nervous system UBERON_0008882 spinal cord commissure +UBERON_0001016 nervous system UBERON_0008884 left putamen +UBERON_0001016 nervous system UBERON_0008885 right putamen +UBERON_0001016 nervous system UBERON_0008902 lateral recess of third ventricle +UBERON_0001016 nervous system UBERON_0008906 lateral line nerve +UBERON_0001016 nervous system UBERON_0008921 substratum of layer of retina +UBERON_0001016 nervous system UBERON_0008922 sublaminar layer S1 +UBERON_0001016 nervous system UBERON_0008923 sublaminar layer S2 +UBERON_0001016 nervous system UBERON_0008924 sublaminar layer S3 +UBERON_0001016 nervous system UBERON_0008925 sublaminar layer S4 +UBERON_0001016 nervous system UBERON_0008926 sublaminar layer S5 +UBERON_0001016 nervous system UBERON_0008927 sublaminar layers S1 or S2 +UBERON_0001016 nervous system UBERON_0008928 sublaminar layers S2 or S3 +UBERON_0001016 nervous system UBERON_0008929 sublaminar layers S4 or S5 +UBERON_0001016 nervous system UBERON_0008930 somatosensory cortex +UBERON_0001016 nervous system UBERON_0008933 primary somatosensory cortex +UBERON_0001016 nervous system UBERON_0008934 secondary somatosensory cortex +UBERON_0001016 nervous system UBERON_0008939 pedal ganglion +UBERON_0001016 nervous system UBERON_0008940 parietal ganglion +UBERON_0001016 nervous system UBERON_0008941 pleural ganglion +UBERON_0001016 nervous system UBERON_0008942 gastropod cerebral ganglion +UBERON_0001016 nervous system UBERON_0008964 abdominal ganglion of visceral hump +UBERON_0001016 nervous system UBERON_0008967 centrum semiovale +UBERON_0001016 nervous system UBERON_0008993 habenular nucleus +UBERON_0001016 nervous system UBERON_0008995 nucleus of cerebellar nuclear complex +UBERON_0001016 nervous system UBERON_0008998 vasculature of brain +UBERON_0001016 nervous system UBERON_0009009 carotid sinus nerve +UBERON_0001016 nervous system UBERON_0009050 nucleus of solitary tract +UBERON_0001016 nervous system UBERON_0009051 gelatinous nucleus of solitary tract +UBERON_0001016 nervous system UBERON_0009052 medial nucleus of solitary tract +UBERON_0001016 nervous system UBERON_0009053 dorsal nucleus of trapezoid body +UBERON_0001016 nervous system UBERON_0009121 vomeronasal nerve +UBERON_0001016 nervous system UBERON_0009124 geniculate placode +UBERON_0001016 nervous system UBERON_0009125 petrosal placode +UBERON_0001016 nervous system UBERON_0009126 nodosal placode +UBERON_0001016 nervous system UBERON_0009127 epibranchial ganglion +UBERON_0001016 nervous system UBERON_0009570 spinal cord sulcus limitans +UBERON_0001016 nervous system UBERON_0009571 ventral midline +UBERON_0001016 nervous system UBERON_0009572 lumen of central canal of spinal cord +UBERON_0001016 nervous system UBERON_0009573 sulcus limitans of fourth ventricle +UBERON_0001016 nervous system UBERON_0009576 medulla oblongata sulcus limitans +UBERON_0001016 nervous system UBERON_0009577 metencephalon sulcus limitans +UBERON_0001016 nervous system UBERON_0009578 myelencephalon sulcus limitans +UBERON_0001016 nervous system UBERON_0009579 myelencephalon basal plate +UBERON_0001016 nervous system UBERON_0009580 diencephalon mantle layer +UBERON_0001016 nervous system UBERON_0009581 midbrain mantle layer +UBERON_0001016 nervous system UBERON_0009582 spinal cord lateral wall +UBERON_0001016 nervous system UBERON_0009583 spinal cord mantle layer +UBERON_0001016 nervous system UBERON_0009623 spinal nerve root +UBERON_0001016 nervous system UBERON_0009624 lumbar nerve +UBERON_0001016 nervous system UBERON_0009625 sacral nerve +UBERON_0001016 nervous system UBERON_0009629 coccygeal nerve +UBERON_0001016 nervous system UBERON_0009630 root of thoracic nerve +UBERON_0001016 nervous system UBERON_0009631 root of lumbar spinal nerve +UBERON_0001016 nervous system UBERON_0009632 root of cervical nerve +UBERON_0001016 nervous system UBERON_0009633 root of sacral nerve +UBERON_0001016 nervous system UBERON_0009634 root of coccygeal nerve +UBERON_0001016 nervous system UBERON_0009641 ansa lenticularis +UBERON_0001016 nervous system UBERON_0009643 central tegmental tract +UBERON_0001016 nervous system UBERON_0009646 lumbar sympathetic nerve trunk +UBERON_0001016 nervous system UBERON_0009661 midbrain nucleus +UBERON_0001016 nervous system UBERON_0009662 hindbrain nucleus +UBERON_0001016 nervous system UBERON_0009663 telencephalic nucleus +UBERON_0001016 nervous system UBERON_0009673 accessory XI nerve cranial component +UBERON_0001016 nervous system UBERON_0009674 accessory XI nerve spinal component +UBERON_0001016 nervous system UBERON_0009675 chorda tympani branch of facial nerve +UBERON_0001016 nervous system UBERON_0009676 early telencephalic vesicle +UBERON_0001016 nervous system UBERON_0009731 sublaminar layers S3 or S4 +UBERON_0001016 nervous system UBERON_0009732 sublaminar layers S1 or S2 or S5 +UBERON_0001016 nervous system UBERON_0009733 sublaminar layers S1 or S2 or S3 +UBERON_0001016 nervous system UBERON_0009734 sublaminar layers S2 or S3 or S4 +UBERON_0001016 nervous system UBERON_0009735 sublaminar layers S1 or S3 or S4 +UBERON_0001016 nervous system UBERON_0009736 sublaminar layers S3 or S4 or S5 +UBERON_0001016 nervous system UBERON_0009737 sublaminar layers S1 or S2 or S3 or S4 +UBERON_0001016 nervous system UBERON_0009738 border of sublaminar layers S1 and S2 +UBERON_0001016 nervous system UBERON_0009739 border of sublaminar layers S3 and S4 +UBERON_0001016 nervous system UBERON_0009740 border between sublaminar layers +UBERON_0001016 nervous system UBERON_0009758 abdominal ganglion +UBERON_0001016 nervous system UBERON_0009775 lateral medullary reticular complex +UBERON_0001016 nervous system UBERON_0009776 intermediate reticular formation +UBERON_0001016 nervous system UBERON_0009777 intermediate reticular nucleus +UBERON_0001016 nervous system UBERON_0009834 dorsolateral prefrontal cortex +UBERON_0001016 nervous system UBERON_0009835 anterior cingulate cortex +UBERON_0001016 nervous system UBERON_0009836 fronto-orbital gyrus +UBERON_0001016 nervous system UBERON_0009840 lower rhombic lip +UBERON_0001016 nervous system UBERON_0009841 upper rhombic lip +UBERON_0001016 nervous system UBERON_0009848 zona limitans intrathalamica +UBERON_0001016 nervous system UBERON_0009851 border of sublaminar layers S4 and S5 +UBERON_0001016 nervous system UBERON_0009852 border of sublaminar layers S2 and S3 +UBERON_0001016 nervous system UBERON_0009857 cavum septum pellucidum +UBERON_0001016 nervous system UBERON_0009897 right auditory cortex +UBERON_0001016 nervous system UBERON_0009898 left auditory cortex +UBERON_0001016 nervous system UBERON_0009899 pole of cerebral hemisphere +UBERON_0001016 nervous system UBERON_0009906 root of optic nerve +UBERON_0001016 nervous system UBERON_0009907 sensory root of trigeminal nerve +UBERON_0001016 nervous system UBERON_0009908 caudal root of abducens nerve +UBERON_0001016 nervous system UBERON_0009909 rostral root of abducens nerve +UBERON_0001016 nervous system UBERON_0009918 retrotrapezoid nucleus +UBERON_0001016 nervous system UBERON_0009950 olfactory bulb plexiform layer +UBERON_0001016 nervous system UBERON_0009951 main olfactory bulb +UBERON_0001016 nervous system UBERON_0009952 dentate gyrus subgranular zone +UBERON_0001016 nervous system UBERON_0009968 primitive superior sagittal sinus +UBERON_0001016 nervous system UBERON_0009969 statoacoustic epithelium +UBERON_0001016 nervous system UBERON_0009975 remnant of lumen of Rathke's pouch +UBERON_0001016 nervous system UBERON_0009992 cranial sensory ganglion +UBERON_0001016 nervous system UBERON_0010009 aggregate regional part of brain +UBERON_0001016 nervous system UBERON_0010010 basal nucleus of telencephalon +UBERON_0001016 nervous system UBERON_0010011 collection of basal ganglia +UBERON_0001016 nervous system UBERON_0010036 anterior tegmental nucleus +UBERON_0001016 nervous system UBERON_0010091 future hindbrain meninx +UBERON_0001016 nervous system UBERON_0010092 future metencephalon +UBERON_0001016 nervous system UBERON_0010096 future myelencephalon +UBERON_0001016 nervous system UBERON_0010123 future facial nucleus +UBERON_0001016 nervous system UBERON_0010124 future inferior salivatory nucleus +UBERON_0001016 nervous system UBERON_0010125 future superior salivatory nucleus +UBERON_0001016 nervous system UBERON_0010126 future nucleus ambiguus +UBERON_0001016 nervous system UBERON_0010128 future pterygopalatine ganglion +UBERON_0001016 nervous system UBERON_0010133 neuroendocrine gland +UBERON_0001016 nervous system UBERON_0010134 secretory circumventricular organ +UBERON_0001016 nervous system UBERON_0010135 sensory circumventricular organ +UBERON_0001016 nervous system UBERON_0010225 thalamic complex +UBERON_0001016 nervous system UBERON_0010245 retinal tapetum lucidum +UBERON_0001016 nervous system UBERON_0010262 operculum of brain +UBERON_0001016 nervous system UBERON_0010269 filum terminale internum +UBERON_0001016 nervous system UBERON_0010270 filum terminale externum +UBERON_0001016 nervous system UBERON_0010285 midbrain basal plate +UBERON_0001016 nervous system UBERON_0010287 motor root of facial nerve +UBERON_0001016 nervous system UBERON_0010380 enteric nerve +UBERON_0001016 nervous system UBERON_0010403 brain marginal zone +UBERON_0001016 nervous system UBERON_0010404 lateral ventricle subependymal layer +UBERON_0001016 nervous system UBERON_0010405 spinal cord lateral motor column +UBERON_0001016 nervous system UBERON_0010406 cholinergic enteric nerve +UBERON_0001016 nervous system UBERON_0010415 barrel cortex +UBERON_0001016 nervous system UBERON_0010505 periosteal dura mater +UBERON_0001016 nervous system UBERON_0010506 meningeal dura mater +UBERON_0001016 nervous system UBERON_0010507 layer of dura mater +UBERON_0001016 nervous system UBERON_0010743 meningeal cluster +UBERON_0001016 nervous system UBERON_0011096 lacrimal nerve +UBERON_0001016 nervous system UBERON_0011155 Sylvian cistern +UBERON_0001016 nervous system UBERON_0011172 retrorubral area of midbrain reticular nucleus +UBERON_0001016 nervous system UBERON_0011173 anterior division of bed nuclei of stria terminalis +UBERON_0001016 nervous system UBERON_0011175 fusiform nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0011176 oval nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0011177 posterior division of bed nuclei of stria terminalis +UBERON_0001016 nervous system UBERON_0011178 principal nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0011179 transverse nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0011194 ophthalmic plexus +UBERON_0001016 nervous system UBERON_0011213 root of vagus nerve +UBERON_0001016 nervous system UBERON_0011214 nucleus of midbrain tectum +UBERON_0001016 nervous system UBERON_0011215 central nervous system cell part cluster +UBERON_0001016 nervous system UBERON_0011299 white matter of telencephalon +UBERON_0001016 nervous system UBERON_0011300 gray matter of telencephalon +UBERON_0001016 nervous system UBERON_0011315 digastric branch of facial nerve +UBERON_0001016 nervous system UBERON_0011316 nerve to stylohyoid from facial nerve +UBERON_0001016 nervous system UBERON_0011317 nerve to stylopharyngeus from glossopharyngeal nerve +UBERON_0001016 nervous system UBERON_0011321 masseteric nerve +UBERON_0001016 nervous system UBERON_0011322 mylohyoid nerve +UBERON_0001016 nervous system UBERON_0011325 pharyngeal nerve plexus +UBERON_0001016 nervous system UBERON_0011326 superior laryngeal nerve +UBERON_0001016 nervous system UBERON_0011327 deep temporal nerve +UBERON_0001016 nervous system UBERON_0011357 Reissner's fiber +UBERON_0001016 nervous system UBERON_0011358 infundibular organ +UBERON_0001016 nervous system UBERON_0011359 urophysis +UBERON_0001016 nervous system UBERON_0011360 ampulla caudalis +UBERON_0001016 nervous system UBERON_0011390 pudendal nerve +UBERON_0001016 nervous system UBERON_0011391 perineal nerve +UBERON_0001016 nervous system UBERON_0011590 commissure of diencephalon +UBERON_0001016 nervous system UBERON_0011591 tract of diencephalon +UBERON_0001016 nervous system UBERON_0011766 left recurrent laryngeal nerve +UBERON_0001016 nervous system UBERON_0011767 right recurrent laryngeal nerve +UBERON_0001016 nervous system UBERON_0011768 pineal gland stalk +UBERON_0001016 nervous system UBERON_0011775 vagus nerve nucleus +UBERON_0001016 nervous system UBERON_0011776 dorsal commissural nucleus of spinal cord +UBERON_0001016 nervous system UBERON_0011777 nucleus of spinal cord +UBERON_0001016 nervous system UBERON_0011778 motor nucleus of vagal nerve +UBERON_0001016 nervous system UBERON_0011779 nerve of head region +UBERON_0001016 nervous system UBERON_0011893 endoneurial fluid +UBERON_0001016 nervous system UBERON_0011915 cerebellar glomerulus +UBERON_0001016 nervous system UBERON_0011917 thalamic glomerulus +UBERON_0001016 nervous system UBERON_0011924 postganglionic autonomic fiber +UBERON_0001016 nervous system UBERON_0011925 preganglionic autonomic fiber +UBERON_0001016 nervous system UBERON_0011926 postganglionic sympathetic fiber +UBERON_0001016 nervous system UBERON_0011927 preganglionic sympathetic fiber +UBERON_0001016 nervous system UBERON_0011929 postganglionic parasympathetic fiber +UBERON_0001016 nervous system UBERON_0011930 preganglionic parasympathetic fiber +UBERON_0001016 nervous system UBERON_0012170 core of nucleus accumbens +UBERON_0001016 nervous system UBERON_0012171 shell of nucleus accumbens +UBERON_0001016 nervous system UBERON_0012175 acoustico-facial VII-VIII ganglion complex +UBERON_0001016 nervous system UBERON_0012337 cauda equina +UBERON_0001016 nervous system UBERON_0012373 sympathetic nerve plexus +UBERON_0001016 nervous system UBERON_0012374 subserosal plexus +UBERON_0001016 nervous system UBERON_0012448 Herbst's corpuscle +UBERON_0001016 nervous system UBERON_0012449 mechanoreceptor +UBERON_0001016 nervous system UBERON_0012450 Meissner's corpuscle +UBERON_0001016 nervous system UBERON_0012451 sensory receptor +UBERON_0001016 nervous system UBERON_0012453 nerve ending +UBERON_0001016 nervous system UBERON_0012456 Merkel nerve ending +UBERON_0001016 nervous system UBERON_0012457 Ruffini nerve ending +UBERON_0001016 nervous system UBERON_0013118 sulcus of brain +UBERON_0001016 nervous system UBERON_0013146 venous system of brain +UBERON_0001016 nervous system UBERON_0013147 early mesencephalic vesicle +UBERON_0001016 nervous system UBERON_0013148 early midbrain vesicle +UBERON_0001016 nervous system UBERON_0013149 hindbrain vesicle +UBERON_0001016 nervous system UBERON_0013150 future brain vesicle +UBERON_0001016 nervous system UBERON_0013153 arachnoid villus +UBERON_0001016 nervous system UBERON_0013159 epithalamus mantle layer +UBERON_0001016 nervous system UBERON_0013160 epithalamus ventricular layer +UBERON_0001016 nervous system UBERON_0013161 left lateral ventricle +UBERON_0001016 nervous system UBERON_0013162 right lateral ventricle +UBERON_0001016 nervous system UBERON_0013166 vallecula of cerebellum +UBERON_0001016 nervous system UBERON_0013199 stria of neuraxis +UBERON_0001016 nervous system UBERON_0013201 olfactory pathway +UBERON_0001016 nervous system UBERON_0013208 Grueneberg ganglion +UBERON_0001016 nervous system UBERON_0013498 vestibulo-cochlear VIII ganglion complex +UBERON_0001016 nervous system UBERON_0013499 glossopharyngeal-vagus IX-X preganglion complex +UBERON_0001016 nervous system UBERON_0013500 glossopharyngeal-vagus IX-X ganglion complex +UBERON_0001016 nervous system UBERON_0013528 Brodmann (1909) area 11 +UBERON_0001016 nervous system UBERON_0013529 Brodmann area +UBERON_0001016 nervous system UBERON_0013531 retrosplenial region +UBERON_0001016 nervous system UBERON_0013533 Brodmann (1909) area 2 +UBERON_0001016 nervous system UBERON_0013535 Brodmann (1909) area 4 +UBERON_0001016 nervous system UBERON_0013538 Brodmann (1909) area 7 +UBERON_0001016 nervous system UBERON_0013539 Brodmann (1909) area 8 +UBERON_0001016 nervous system UBERON_0013540 Brodmann (1909) area 9 +UBERON_0001016 nervous system UBERON_0013541 Brodmann (1909) area 10 +UBERON_0001016 nervous system UBERON_0013543 Brodmann (1909) area 12 +UBERON_0001016 nervous system UBERON_0013544 Brodmann (1909) area 13 +UBERON_0001016 nervous system UBERON_0013545 Brodmann (1909) area 14 +UBERON_0001016 nervous system UBERON_0013546 Brodmann (1909) area 15 +UBERON_0001016 nervous system UBERON_0013547 Brodmann (1909) area 16 +UBERON_0001016 nervous system UBERON_0013550 Brodmann (1909) area 19 +UBERON_0001016 nervous system UBERON_0013551 Brodmann (1909) area 20 +UBERON_0001016 nervous system UBERON_0013552 Brodmann (1909) area 21 +UBERON_0001016 nervous system UBERON_0013553 Brodmann (1909) area 22 +UBERON_0001016 nervous system UBERON_0013554 Brodmann (1909) area 23 +UBERON_0001016 nervous system UBERON_0013556 Brodmann (1909) area 25 +UBERON_0001016 nervous system UBERON_0013558 Brodmann (1909) area 27 +UBERON_0001016 nervous system UBERON_0013559 Brodmann (1909) area 28 +UBERON_0001016 nervous system UBERON_0013560 Brodmann (1909) area 32 +UBERON_0001016 nervous system UBERON_0013561 Brodmann (1909) area 43 +UBERON_0001016 nervous system UBERON_0013562 Brodmann (1909) area 8a +UBERON_0001016 nervous system UBERON_0013573 Brodmann (1909) area 40 +UBERON_0001016 nervous system UBERON_0013589 koniocortex +UBERON_0001016 nervous system UBERON_0013590 cruciate sulcus +UBERON_0001016 nervous system UBERON_0013591 postsylvian sulcus +UBERON_0001016 nervous system UBERON_0013592 presylvian sulcus +UBERON_0001016 nervous system UBERON_0013593 suprasylvian sulcus +UBERON_0001016 nervous system UBERON_0013594 ectosylvian sulcus +UBERON_0001016 nervous system UBERON_0013595 postlateral sulcus +UBERON_0001016 nervous system UBERON_0013596 brain coronal sulcus +UBERON_0001016 nervous system UBERON_0013598 accessory nucleus of optic tract +UBERON_0001016 nervous system UBERON_0013599 dorsal accessory nucleus of optic tract +UBERON_0001016 nervous system UBERON_0013600 lateral accessory nucleus of optic tract +UBERON_0001016 nervous system UBERON_0013601 medial accessory nucleus of optic tract +UBERON_0001016 nervous system UBERON_0013605 layer of lateral geniculate body +UBERON_0001016 nervous system UBERON_0013606 magnocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0001016 nervous system UBERON_0013607 parvocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0001016 nervous system UBERON_0013608 inferior olive dorsal accessory nucleus +UBERON_0001016 nervous system UBERON_0013609 inferior olive medial accessory nucleus +UBERON_0001016 nervous system UBERON_0013610 inferior olive ventral accessory nucleus +UBERON_0001016 nervous system UBERON_0013614 fasciculus aberans +UBERON_0001016 nervous system UBERON_0013615 koniocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0001016 nervous system UBERON_0013646 buccal nerve +UBERON_0001016 nervous system UBERON_0013647 lateral pterygoid nerve +UBERON_0001016 nervous system UBERON_0013671 nerve ending of of corpus cavernosum maxillaris +UBERON_0001016 nervous system UBERON_0013682 peripheral region of retina +UBERON_0001016 nervous system UBERON_0013683 left dorsal thalamus +UBERON_0001016 nervous system UBERON_0013684 right dorsal thalamus +UBERON_0001016 nervous system UBERON_0013693 cerebral cortex neuropil +UBERON_0001016 nervous system UBERON_0013694 brain endothelium +UBERON_0001016 nervous system UBERON_0013733 caudal linear nucleus +UBERON_0001016 nervous system UBERON_0013734 rostral linear nucleus +UBERON_0001016 nervous system UBERON_0013736 interfascicular linear nucleus +UBERON_0001016 nervous system UBERON_0013737 paranigral nucleus +UBERON_0001016 nervous system UBERON_0013738 parabrachial pigmental nucleus +UBERON_0001016 nervous system UBERON_0014169 nigrostriatal tract +UBERON_0001016 nervous system UBERON_0014277 piriform cortex layer 1 +UBERON_0001016 nervous system UBERON_0014280 piriform cortex layer 2 +UBERON_0001016 nervous system UBERON_0014283 piriform cortex layer 3 +UBERON_0001016 nervous system UBERON_0014284 endopiriform nucleus +UBERON_0001016 nervous system UBERON_0014286 dorsal cap of Kooy +UBERON_0001016 nervous system UBERON_0014287 medial accessory olive +UBERON_0001016 nervous system UBERON_0014370 extrastriate cortex +UBERON_0001016 nervous system UBERON_0014450 pretectal nucleus +UBERON_0001016 nervous system UBERON_0014451 tongue taste bud +UBERON_0001016 nervous system UBERON_0014452 gustatory epithelium of tongue +UBERON_0001016 nervous system UBERON_0014453 gustatory epithelium of palate +UBERON_0001016 nervous system UBERON_0014463 cardiac ganglion +UBERON_0001016 nervous system UBERON_0014466 subarachnoid fissure +UBERON_0001016 nervous system UBERON_0014468 ansoparamedian fissure of cerebellum +UBERON_0001016 nervous system UBERON_0014471 primary fissure of cerebellum +UBERON_0001016 nervous system UBERON_0014473 precentral fissure of cerebellum +UBERON_0001016 nervous system UBERON_0014474 postcentral fissure of cerebellum +UBERON_0001016 nervous system UBERON_0014521 anterodorsal nucleus of medial geniculate body +UBERON_0001016 nervous system UBERON_0014522 dorsolateral oculomotor nucleus +UBERON_0001016 nervous system UBERON_0014523 oculomotor division of oculomotor nuclear complex +UBERON_0001016 nervous system UBERON_0014524 electromotor division of oculomotor nuclear complex +UBERON_0001016 nervous system UBERON_0014525 limb of internal capsule of telencephalon +UBERON_0001016 nervous system UBERON_0014526 anterior limb of internal capsule +UBERON_0001016 nervous system UBERON_0014527 posterior limb of internal capsule +UBERON_0001016 nervous system UBERON_0014528 extreme capsule +UBERON_0001016 nervous system UBERON_0014529 lenticular fasciculus +UBERON_0001016 nervous system UBERON_0014530 white matter lamina of neuraxis +UBERON_0001016 nervous system UBERON_0014531 white matter lamina of diencephalon +UBERON_0001016 nervous system UBERON_0014532 white matter lamina of cerebral hemisphere +UBERON_0001016 nervous system UBERON_0014533 medullary lamina of thalamus +UBERON_0001016 nervous system UBERON_0014534 external medullary lamina of thalamus +UBERON_0001016 nervous system UBERON_0014537 periamygdaloid cortex +UBERON_0001016 nervous system UBERON_0014538 subdivision of spinal cord central canal +UBERON_0001016 nervous system UBERON_0014539 precommissural fornix of forebrain +UBERON_0001016 nervous system UBERON_0014540 white matter lamina of cerebellum +UBERON_0001016 nervous system UBERON_0014541 thoracic division of spinal cord central canal +UBERON_0001016 nervous system UBERON_0014542 cervical division of cord spinal central canal +UBERON_0001016 nervous system UBERON_0014543 lumbar division of spinal cord central canal +UBERON_0001016 nervous system UBERON_0014544 frontomarginal sulcus +UBERON_0001016 nervous system UBERON_0014547 sacral division of spinal cord central canal +UBERON_0001016 nervous system UBERON_0014548 pyramidal layer of CA1 +UBERON_0001016 nervous system UBERON_0014549 pyramidal layer of CA2 +UBERON_0001016 nervous system UBERON_0014550 pyramidal layer of CA3 +UBERON_0001016 nervous system UBERON_0014551 CA2 stratum oriens +UBERON_0001016 nervous system UBERON_0014552 CA1 stratum oriens +UBERON_0001016 nervous system UBERON_0014553 CA3 stratum oriens +UBERON_0001016 nervous system UBERON_0014554 CA1 stratum radiatum +UBERON_0001016 nervous system UBERON_0014555 CA2 stratum radiatum +UBERON_0001016 nervous system UBERON_0014556 CA3 stratum radiatum +UBERON_0001016 nervous system UBERON_0014557 CA1 stratum lacunosum moleculare +UBERON_0001016 nervous system UBERON_0014558 CA2 stratum lacunosum moleculare +UBERON_0001016 nervous system UBERON_0014559 CA3 stratum lacunosum moleculare +UBERON_0001016 nervous system UBERON_0014560 CA3 stratum lucidum +UBERON_0001016 nervous system UBERON_0014567 layer of hippocampal field +UBERON_0001016 nervous system UBERON_0014568 dorsal tegmental nucleus pars dorsalis +UBERON_0001016 nervous system UBERON_0014569 dorsal tegmental nucleus pars ventralis +UBERON_0001016 nervous system UBERON_0014570 CA1 alveus +UBERON_0001016 nervous system UBERON_0014571 CA3 alveus +UBERON_0001016 nervous system UBERON_0014589 anterior nucleus of hypothalamus anterior part +UBERON_0001016 nervous system UBERON_0014590 anterior nucleus of hypothalamus central part +UBERON_0001016 nervous system UBERON_0014591 anterior nucleus of hypothalamus posterior part +UBERON_0001016 nervous system UBERON_0014592 anterior nucleus of hypothalamus dorsal part +UBERON_0001016 nervous system UBERON_0014593 tuberomammillary nucleus dorsal part +UBERON_0001016 nervous system UBERON_0014594 tuberomammillary nucleus ventral part +UBERON_0001016 nervous system UBERON_0014595 paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone +UBERON_0001016 nervous system UBERON_0014596 paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part +UBERON_0001016 nervous system UBERON_0014597 paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part +UBERON_0001016 nervous system UBERON_0014598 paraventricular nucleus of the hypothalamus descending division - forniceal part +UBERON_0001016 nervous system UBERON_0014599 paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part +UBERON_0001016 nervous system UBERON_0014600 paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part +UBERON_0001016 nervous system UBERON_0014601 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part +UBERON_0001016 nervous system UBERON_0014602 paraventricular nucleus of the hypothalamus descending division +UBERON_0001016 nervous system UBERON_0014603 paraventricular nucleus of the hypothalamus magnocellular division +UBERON_0001016 nervous system UBERON_0014604 paraventricular nucleus of the hypothalamus parvocellular division +UBERON_0001016 nervous system UBERON_0014605 fundus striati +UBERON_0001016 nervous system UBERON_0014607 thoracic spinal cord lateral horn +UBERON_0001016 nervous system UBERON_0014608 inferior occipital gyrus +UBERON_0001016 nervous system UBERON_0014609 thoracic spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014610 thoracic spinal cord ventral horn +UBERON_0001016 nervous system UBERON_0014611 apex of thoracic spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014612 substantia gelatinosa of thoracic spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014613 cervical spinal cord gray matter +UBERON_0001016 nervous system UBERON_0014614 cervical spinal cord white matter +UBERON_0001016 nervous system UBERON_0014615 accessory nerve root +UBERON_0001016 nervous system UBERON_0014616 dorsal nerve root of thoracic spinal cord +UBERON_0001016 nervous system UBERON_0014617 ventral nerve root of thoracic spinal cord +UBERON_0001016 nervous system UBERON_0014618 middle frontal sulcus +UBERON_0001016 nervous system UBERON_0014619 cervical spinal cord lateral horn +UBERON_0001016 nervous system UBERON_0014620 cervical spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014621 cervical spinal cord ventral horn +UBERON_0001016 nervous system UBERON_0014622 apex of cervical spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014623 substantia gelatinosa of cervical spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014630 ventral gray commissure of spinal cord +UBERON_0001016 nervous system UBERON_0014631 dorsal gray commissure of spinal cord +UBERON_0001016 nervous system UBERON_0014632 apex of lumbar spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014633 substantia gelatinosa of lumbar spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014634 ventral nerve root of cervical spinal cord +UBERON_0001016 nervous system UBERON_0014635 dorsal nerve root of cervical spinal cord +UBERON_0001016 nervous system UBERON_0014636 thoracic spinal cord gray matter +UBERON_0001016 nervous system UBERON_0014637 thoracic spinal cord white matter +UBERON_0001016 nervous system UBERON_0014638 lumbar spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0014639 frontal sulcus +UBERON_0001016 nervous system UBERON_0014640 occipital gyrus +UBERON_0001016 nervous system UBERON_0014641 terminal nerve root +UBERON_0001016 nervous system UBERON_0014642 vestibulocerebellum +UBERON_0001016 nervous system UBERON_0014643 spinocerebellum +UBERON_0001016 nervous system UBERON_0014644 cerebrocerebellum +UBERON_0001016 nervous system UBERON_0014645 nucleus H of ventral tegmentum +UBERON_0001016 nervous system UBERON_0014646 nucleus K of ventral tegmentum +UBERON_0001016 nervous system UBERON_0014647 hemisphere part of cerebellar anterior lobe +UBERON_0001016 nervous system UBERON_0014648 hemisphere part of cerebellar posterior lobe +UBERON_0001016 nervous system UBERON_0014649 white matter of medulla oblongata +UBERON_0001016 nervous system UBERON_0014650 dorsal hypothalamic nucleus +UBERON_0001016 nervous system UBERON_0014663 nucleus recessus lateralis +UBERON_0001016 nervous system UBERON_0014664 nucleus recessus posterioris +UBERON_0001016 nervous system UBERON_0014665 nucleus preopticus +UBERON_0001016 nervous system UBERON_0014666 nucleus recessus preopticus +UBERON_0001016 nervous system UBERON_0014667 periventricular nucleus of hypothalamus +UBERON_0001016 nervous system UBERON_0014687 temporal sulcus +UBERON_0001016 nervous system UBERON_0014689 middle temporal sulcus +UBERON_0001016 nervous system UBERON_0014733 dorsal ventricular ridge of pallium +UBERON_0001016 nervous system UBERON_0014734 allocortex +UBERON_0001016 nervous system UBERON_0014735 paleocortex +UBERON_0001016 nervous system UBERON_0014736 periallocortex +UBERON_0001016 nervous system UBERON_0014738 medial pallium +UBERON_0001016 nervous system UBERON_0014740 dorsal pallium +UBERON_0001016 nervous system UBERON_0014741 lateral pallium +UBERON_0001016 nervous system UBERON_0014742 central nucleus of pallium +UBERON_0001016 nervous system UBERON_0014751 P1 area of pallium (Myxiniformes) +UBERON_0001016 nervous system UBERON_0014752 P2 area of pallium (Myxiniformes) +UBERON_0001016 nervous system UBERON_0014753 P3 area of pallium (Myxiniformes) +UBERON_0001016 nervous system UBERON_0014754 P4 area of pallium (Myxiniformes) +UBERON_0001016 nervous system UBERON_0014755 P5 area of pallium (Myxiniformes) +UBERON_0001016 nervous system UBERON_0014756 Wulst +UBERON_0001016 nervous system UBERON_0014757 hyperpallium apicale +UBERON_0001016 nervous system UBERON_0014758 interstitial part of hyperpallium apicale +UBERON_0001016 nervous system UBERON_0014759 entopallium +UBERON_0001016 nervous system UBERON_0014760 gustatory nucleus +UBERON_0001016 nervous system UBERON_0014761 spinal trigeminal tract +UBERON_0001016 nervous system UBERON_0014775 prosomere +UBERON_0001016 nervous system UBERON_0014776 midbrain neuromere +UBERON_0001016 nervous system UBERON_0014777 spinal neuromere +UBERON_0001016 nervous system UBERON_0014889 left hemisphere of cerebellum +UBERON_0001016 nervous system UBERON_0014890 right hemisphere of cerebellum +UBERON_0001016 nervous system UBERON_0014891 brainstem white matter +UBERON_0001016 nervous system UBERON_0014908 cerebellopontine angle +UBERON_0001016 nervous system UBERON_0014912 thalamic eminence +UBERON_0001016 nervous system UBERON_0014913 ventral pallium +UBERON_0001016 nervous system UBERON_0014915 genu of facial nerve +UBERON_0001016 nervous system UBERON_0014918 retrosplenial granular cortex +UBERON_0001016 nervous system UBERON_0014930 perivascular space +UBERON_0001016 nervous system UBERON_0014932 periventricular white matter +UBERON_0001016 nervous system UBERON_0014933 periventricular gray matter +UBERON_0001016 nervous system UBERON_0014935 cerebral cortex marginal layer +UBERON_0001016 nervous system UBERON_0014936 cerebral cortex ventricular layer +UBERON_0001016 nervous system UBERON_0014940 cerebral cortex subventricular zone +UBERON_0001016 nervous system UBERON_0014950 layer of developing cerebral cortex +UBERON_0001016 nervous system UBERON_0014951 proisocortex +UBERON_0001016 nervous system UBERON_0015117 lamina terminalis of cerebral hemisphere +UBERON_0001016 nervous system UBERON_0015161 inferior branch of oculomotor nerve +UBERON_0001016 nervous system UBERON_0015162 superior branch of oculomotor nerve +UBERON_0001016 nervous system UBERON_0015189 perineural vascular plexus +UBERON_0001016 nervous system UBERON_0015233 nucleus of dorsal thalamus +UBERON_0001016 nervous system UBERON_0015234 nucleus of ventral thalamus +UBERON_0001016 nervous system UBERON_0015238 pineal complex +UBERON_0001016 nervous system UBERON_0015241 parapineal organ +UBERON_0001016 nervous system UBERON_0015244 accessory olfactory bulb granule cell layer +UBERON_0001016 nervous system UBERON_0015246 septal organ of Masera +UBERON_0001016 nervous system UBERON_0015250 inferior olivary commissure +UBERON_0001016 nervous system UBERON_0015432 accessory olfactory bulb mitral cell layer +UBERON_0001016 nervous system UBERON_0015488 sural nerve +UBERON_0001016 nervous system UBERON_0015510 body of corpus callosum +UBERON_0001016 nervous system UBERON_0015593 frontal gyrus +UBERON_0001016 nervous system UBERON_0015599 genu of corpus callosum +UBERON_0001016 nervous system UBERON_0015703 rostrum of corpus callosum +UBERON_0001016 nervous system UBERON_0015704 sagittal sinus +UBERON_0001016 nervous system UBERON_0015708 splenium of the corpus callosum +UBERON_0001016 nervous system UBERON_0015793 induseum griseum +UBERON_0001016 nervous system UBERON_0015800 taenia tectum of brain +UBERON_0001016 nervous system UBERON_0015828 cerebellum ventricular layer +UBERON_0001016 nervous system UBERON_0015829 forebrain ventricular layer +UBERON_0001016 nervous system UBERON_0016430 palmar branch of median nerve +UBERON_0001016 nervous system UBERON_0016508 pelvic ganglion +UBERON_0001016 nervous system UBERON_0016525 frontal lobe +UBERON_0001016 nervous system UBERON_0016526 lobe of cerebral hemisphere +UBERON_0001016 nervous system UBERON_0016527 white matter of cerebral lobe +UBERON_0001016 nervous system UBERON_0016528 white matter of frontal lobe +UBERON_0001016 nervous system UBERON_0016529 cortex of cerebral lobe +UBERON_0001016 nervous system UBERON_0016530 parietal cortex +UBERON_0001016 nervous system UBERON_0016531 white matter of parietal lobe +UBERON_0001016 nervous system UBERON_0016534 white matter of temporal lobe +UBERON_0001016 nervous system UBERON_0016535 white matter of occipital lobe +UBERON_0001016 nervous system UBERON_0016536 white matter of limbic lobe +UBERON_0001016 nervous system UBERON_0016538 temporal cortex +UBERON_0001016 nervous system UBERON_0016540 occipital cortex +UBERON_0001016 nervous system UBERON_0016542 limbic cortex +UBERON_0001016 nervous system UBERON_0016548 central nervous system gray matter layer +UBERON_0001016 nervous system UBERON_0016549 central nervous system white matter layer +UBERON_0001016 nervous system UBERON_0016550 spinal cord column +UBERON_0001016 nervous system UBERON_0016551 subdivision of spinal cord ventral column +UBERON_0001016 nervous system UBERON_0016554 white matter of midbrain +UBERON_0001016 nervous system UBERON_0016555 stria of telencephalon +UBERON_0001016 nervous system UBERON_0016559 superficial cerebral vein +UBERON_0001016 nervous system UBERON_0016564 deep cerebral vein +UBERON_0001016 nervous system UBERON_0016565 cerebral blood vessel +UBERON_0001016 nervous system UBERON_0016567 statoconial membrane +UBERON_0001016 nervous system UBERON_0016568 gelatinous layer of statoconial membrane +UBERON_0001016 nervous system UBERON_0016569 subcupular meshwork of statoconial membrane +UBERON_0001016 nervous system UBERON_0016570 lamina of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016574 lamina III of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016575 lamina IV of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016576 lamina V of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016577 lamina VI of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016578 lamina VII of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016579 lamina VIII of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016580 lamina IX of gray matter of spinal cord +UBERON_0001016 nervous system UBERON_0016610 nucleus proprius of spinal cord +UBERON_0001016 nervous system UBERON_0016633 parvocellular reticular nucleus +UBERON_0001016 nervous system UBERON_0016634 premotor cortex +UBERON_0001016 nervous system UBERON_0016635 paragigantocellular nucleus +UBERON_0001016 nervous system UBERON_0016636 supplemental motor cortex +UBERON_0001016 nervous system UBERON_0016637 lateral periolivary nucleus +UBERON_0001016 nervous system UBERON_0016641 subparafascicular nucleus +UBERON_0001016 nervous system UBERON_0016824 lateral paragigantocellular nucleus +UBERON_0001016 nervous system UBERON_0016825 dorsal paragigantocellular nucleus +UBERON_0001016 nervous system UBERON_0016826 paramedian medullary reticular complex +UBERON_0001016 nervous system UBERON_0016827 dorsal paramedian reticular nucleus +UBERON_0001016 nervous system UBERON_0016832 paratrigeminal nucleus +UBERON_0001016 nervous system UBERON_0016843 lateral nucleus of trapezoid body +UBERON_0001016 nervous system UBERON_0016848 retroambiguus nucleus +UBERON_0001016 nervous system UBERON_0016850 nucleus of phrenic nerve +UBERON_0001016 nervous system UBERON_0017631 calcified structure of brain +UBERON_0001016 nervous system UBERON_0017632 pineal corpora arenacea +UBERON_0001016 nervous system UBERON_0017633 choroid plexus corpora arenacea +UBERON_0001016 nervous system UBERON_0017635 paired venous dural sinus +UBERON_0001016 nervous system UBERON_0017637 marginal venous sinus +UBERON_0001016 nervous system UBERON_0017638 primitive marginal sinus +UBERON_0001016 nervous system UBERON_0017640 unpaired venous dural sinus +UBERON_0001016 nervous system UBERON_0017641 meningeal branch of spinal nerve +UBERON_0001016 nervous system UBERON_0017642 communicating branch of spinal nerve +UBERON_0001016 nervous system UBERON_0018104 parafoveal part of retina +UBERON_0001016 nervous system UBERON_0018105 perifoveal part of retina +UBERON_0001016 nervous system UBERON_0018107 foveola of retina +UBERON_0001016 nervous system UBERON_0018141 anterior perforated substance +UBERON_0001016 nervous system UBERON_0018236 nucleus of Bischoff +UBERON_0001016 nervous system UBERON_0018237 dorsal column-medial lemniscus pathway +UBERON_0001016 nervous system UBERON_0018238 dorsal column nucleus +UBERON_0001016 nervous system UBERON_0018262 dorsal zone of medial entorhinal cortex +UBERON_0001016 nervous system UBERON_0018263 ventral zone of medial entorhinal cortex +UBERON_0001016 nervous system UBERON_0018264 dorsal lateral ganglionic eminence +UBERON_0001016 nervous system UBERON_0018389 interoceptor +UBERON_0001016 nervous system UBERON_0018391 chemoreceptor +UBERON_0001016 nervous system UBERON_0018392 arterial baroreceptor +UBERON_0001016 nervous system UBERON_0018393 low-pressure baroreceptor +UBERON_0001016 nervous system UBERON_0018394 vein baroreceptor +UBERON_0001016 nervous system UBERON_0018395 cardiac baroreceptor +UBERON_0001016 nervous system UBERON_0018396 pulmonary baroreceptor +UBERON_0001016 nervous system UBERON_0018398 superior alveolar nerve +UBERON_0001016 nervous system UBERON_0018401 posterior superior alveolar nerve +UBERON_0001016 nervous system UBERON_0018405 inferior alveolar nerve +UBERON_0001016 nervous system UBERON_0018406 mental nerve +UBERON_0001016 nervous system UBERON_0018408 infra-orbital nerve +UBERON_0001016 nervous system UBERON_0018412 vidian nerve +UBERON_0001016 nervous system UBERON_0018545 nucleus of the bulbocavernosus +UBERON_0001016 nervous system UBERON_0018675 pelvic splanchnic nerve +UBERON_0001016 nervous system UBERON_0018676 renal nerve plexus +UBERON_0001016 nervous system UBERON_0018679 thoracic splanchnic nerve +UBERON_0001016 nervous system UBERON_0018680 greater splanchnic nerve +UBERON_0001016 nervous system UBERON_0018681 lesser splanchnic nerve +UBERON_0001016 nervous system UBERON_0018683 lumbar splanchnic nerve +UBERON_0001016 nervous system UBERON_0018684 sacral splanchnic nerve +UBERON_0001016 nervous system UBERON_0018687 glial limiting membrane +UBERON_0001016 nervous system UBERON_0019197 dorsal nerve of penis +UBERON_0001016 nervous system UBERON_0019198 dorsal nerve of clitoris +UBERON_0001016 nervous system UBERON_0019258 white matter of hindbrain +UBERON_0001016 nervous system UBERON_0019261 white matter of forebrain +UBERON_0001016 nervous system UBERON_0019262 white matter of myelencephalon +UBERON_0001016 nervous system UBERON_0019263 gray matter of hindbrain +UBERON_0001016 nervous system UBERON_0019264 gray matter of forebrain +UBERON_0001016 nervous system UBERON_0019267 gray matter of midbrain +UBERON_0001016 nervous system UBERON_0019269 gray matter of diencephalon +UBERON_0001016 nervous system UBERON_0019272 mesomere 1 +UBERON_0001016 nervous system UBERON_0019274 mesomere 2 +UBERON_0001016 nervous system UBERON_0019275 uncinate fasciculus of the forebrain +UBERON_0001016 nervous system UBERON_0019278 inferior rostral gyrus +UBERON_0001016 nervous system UBERON_0019279 superior rostral gyrus +UBERON_0001016 nervous system UBERON_0019280 rostral gyrus +UBERON_0001016 nervous system UBERON_0019283 lateral longitudinal stria +UBERON_0001016 nervous system UBERON_0019284 rhombomere 9 +UBERON_0001016 nervous system UBERON_0019285 rhombomere 10 +UBERON_0001016 nervous system UBERON_0019286 rhombomere 11 +UBERON_0001016 nervous system UBERON_0019289 accessory olfactory bulb external plexiform layer +UBERON_0001016 nervous system UBERON_0019290 accessory olfactory bulb internal plexiform layer +UBERON_0001016 nervous system UBERON_0019291 white matter of metencephalon +UBERON_0001016 nervous system UBERON_0019292 white matter of pons +UBERON_0001016 nervous system UBERON_0019293 white matter of pontine tegmentum +UBERON_0001016 nervous system UBERON_0019294 commissure of telencephalon +UBERON_0001016 nervous system UBERON_0019295 caudal intralaminar nuclear group +UBERON_0001016 nervous system UBERON_0019303 occipital sulcus +UBERON_0001016 nervous system UBERON_0019308 septohypothalamic nucleus +UBERON_0001016 nervous system UBERON_0019310 glossopharyngeal nerve root +UBERON_0001016 nervous system UBERON_0019311 root of olfactory nerve +UBERON_0001016 nervous system UBERON_0019312 ventrolateral nucleus of solitary tract +UBERON_0001016 nervous system UBERON_0019314 epifascicular nucleus +UBERON_0001016 nervous system UBERON_0020358 accessory XI nerve nucleus +UBERON_0001016 nervous system UBERON_0022229 posterior amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0022230 retrohippocampal region +UBERON_0001016 nervous system UBERON_0022232 secondary visual cortex +UBERON_0001016 nervous system UBERON_0022234 medial longitudinal stria +UBERON_0001016 nervous system UBERON_0022235 peduncle of diencephalon +UBERON_0001016 nervous system UBERON_0022236 peduncle of thalamus +UBERON_0001016 nervous system UBERON_0022237 anterior thalamic peduncle +UBERON_0001016 nervous system UBERON_0022241 superior thalamic peduncle +UBERON_0001016 nervous system UBERON_0022242 inferior thalamic peduncle +UBERON_0001016 nervous system UBERON_0022243 posterior thalamic peduncle +UBERON_0001016 nervous system UBERON_0022244 anterior orbital gyrus +UBERON_0001016 nervous system UBERON_0022246 superior longitudinal fasciculus +UBERON_0001016 nervous system UBERON_0022247 forebrain ipsilateral fiber tracts +UBERON_0001016 nervous system UBERON_0022248 cerebral nerve fasciculus +UBERON_0001016 nervous system UBERON_0022250 subcallosal fasciculus +UBERON_0001016 nervous system UBERON_0022252 precentral sulcus +UBERON_0001016 nervous system UBERON_0022254 ventral thalamic fasciculus +UBERON_0001016 nervous system UBERON_0022256 subthalamic fasciculus +UBERON_0001016 nervous system UBERON_0022258 endolemniscal nucleus +UBERON_0001016 nervous system UBERON_0022259 white matter radiation +UBERON_0001016 nervous system UBERON_0022260 radiation of cerebral hemisphere +UBERON_0001016 nervous system UBERON_0022262 auditory radiation +UBERON_0001016 nervous system UBERON_0022264 optic radiation +UBERON_0001016 nervous system UBERON_0022268 planum temporale +UBERON_0001016 nervous system UBERON_0022271 corticopontine fibers +UBERON_0001016 nervous system UBERON_0022272 corticobulbar tract +UBERON_0001016 nervous system UBERON_0022278 nucleus of pudendal nerve +UBERON_0001016 nervous system UBERON_0022283 pineal recess of third ventricle +UBERON_0001016 nervous system UBERON_0022296 inferior palpebral branch of infra-orbital nerve +UBERON_0001016 nervous system UBERON_0022297 palpebral branch of infra-orbital nerve +UBERON_0001016 nervous system UBERON_0022298 lower eyelid nerve +UBERON_0001016 nervous system UBERON_0022299 upper eyelid nerve +UBERON_0001016 nervous system UBERON_0022300 nasociliary nerve +UBERON_0001016 nervous system UBERON_0022301 long ciliary nerve +UBERON_0001016 nervous system UBERON_0022302 short ciliary nerve +UBERON_0001016 nervous system UBERON_0022303 nervous system cell part layer +UBERON_0001016 nervous system UBERON_0022314 superior colliculus stratum zonale +UBERON_0001016 nervous system UBERON_0022315 primary motor cortex layer 5 +UBERON_0001016 nervous system UBERON_0022316 primary motor cortex layer 6 +UBERON_0001016 nervous system UBERON_0022317 olfactory cortex layer 1 +UBERON_0001016 nervous system UBERON_0022318 olfactory cortex layer 2 +UBERON_0001016 nervous system UBERON_0022319 lateral geniculate nucleus parvocellular layer +UBERON_0001016 nervous system UBERON_0022320 dorsal cochlear nucleus pyramidal cell layer +UBERON_0001016 nervous system UBERON_0022323 entorhinal cortex layer 4 +UBERON_0001016 nervous system UBERON_0022325 entorhinal cortex layer 5 +UBERON_0001016 nervous system UBERON_0022326 molecular layer of dorsal cochlear nucleus +UBERON_0001016 nervous system UBERON_0022327 entorhinal cortex layer 3 +UBERON_0001016 nervous system UBERON_0022329 entorhinal cortex layer 6 +UBERON_0001016 nervous system UBERON_0022336 entorhinal cortex layer 1 +UBERON_0001016 nervous system UBERON_0022337 entorhinal cortex layer 2 +UBERON_0001016 nervous system UBERON_0022340 piriform cortex layer 2a +UBERON_0001016 nervous system UBERON_0022341 piriform cortex layer 2b +UBERON_0001016 nervous system UBERON_0022346 dentate gyrus molecular layer middle +UBERON_0001016 nervous system UBERON_0022347 dentate gyrus molecular layer inner +UBERON_0001016 nervous system UBERON_0022348 dentate gyrus granule cell layer inner blade +UBERON_0001016 nervous system UBERON_0022349 dentate gyrus granule cell layer outer blade +UBERON_0001016 nervous system UBERON_0022352 medial orbital frontal cortex +UBERON_0001016 nervous system UBERON_0022353 posterior cingulate cortex +UBERON_0001016 nervous system UBERON_0022364 occipital fusiform gyrus +UBERON_0001016 nervous system UBERON_0022367 inferior lateral occipital cortex +UBERON_0001016 nervous system UBERON_0022368 superior lateral occipital cortex +UBERON_0001016 nervous system UBERON_0022383 anterior parahippocampal gyrus +UBERON_0001016 nervous system UBERON_0022394 posterior parahippocampal white matter +UBERON_0001016 nervous system UBERON_0022395 temporal fusiform gyrus +UBERON_0001016 nervous system UBERON_0022396 anterior temporal fusiform gyrus +UBERON_0001016 nervous system UBERON_0022397 posterior temporal fusiform gyrus +UBERON_0001016 nervous system UBERON_0022398 paracingulate gyrus +UBERON_0001016 nervous system UBERON_0022420 temporal part of superior longitudinal fasciculus +UBERON_0001016 nervous system UBERON_0022421 pontocerebellar tract +UBERON_0001016 nervous system UBERON_0022423 sagulum nucleus +UBERON_0001016 nervous system UBERON_0022424 supragenual nucleus of pontine tegmentum +UBERON_0001016 nervous system UBERON_0022425 anterior corona radiata +UBERON_0001016 nervous system UBERON_0022426 superior corona radiata +UBERON_0001016 nervous system UBERON_0022427 posterior corona radiata +UBERON_0001016 nervous system UBERON_0022428 cingulate cortex cingulum +UBERON_0001016 nervous system UBERON_0022429 temporal cortex cingulum +UBERON_0001016 nervous system UBERON_0022430 hippocampus cortex cingulum +UBERON_0001016 nervous system UBERON_0022434 primary superior olive +UBERON_0001016 nervous system UBERON_0022437 dorsal periolivary nucleus +UBERON_0001016 nervous system UBERON_0022438 rostral anterior cingulate cortex +UBERON_0001016 nervous system UBERON_0022453 olfactory entorhinal cortex +UBERON_0001016 nervous system UBERON_0022469 primary olfactory cortex +UBERON_0001016 nervous system UBERON_0022534 pericalcarine cortex +UBERON_0001016 nervous system UBERON_0022649 habenulo-interpeduncular tract of diencephalon +UBERON_0001016 nervous system UBERON_0022695 orbital gyri complex +UBERON_0001016 nervous system UBERON_0022716 lateral orbital frontal cortex +UBERON_0001016 nervous system UBERON_0022730 transverse frontopolar gyri complex +UBERON_0001016 nervous system UBERON_0022776 composite part spanning multiple base regional parts of brain +UBERON_0001016 nervous system UBERON_0022783 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone +UBERON_0001016 nervous system UBERON_0022791 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone +UBERON_0001016 nervous system UBERON_0022941 dorsal nerve root of sacral spinal cord +UBERON_0001016 nervous system UBERON_0022943 reticulospinal tract +UBERON_0001016 nervous system UBERON_0023094 posterodorsal nucleus of medial geniculate body +UBERON_0001016 nervous system UBERON_0023255 sub-lobar region +UBERON_0001016 nervous system UBERON_0023378 medullary anterior horn +UBERON_0001016 nervous system UBERON_0023390 medial subnucleus of solitary tract +UBERON_0001016 nervous system UBERON_0023415 lateral amygdaloid nucleus, dorsolateral part +UBERON_0001016 nervous system UBERON_0023416 lateral amygdaloid nucleus, ventrolateral part +UBERON_0001016 nervous system UBERON_0023417 lateral amygdaloid nucleus, ventromedial part +UBERON_0001016 nervous system UBERON_0023443 superficial feature part of forebrain +UBERON_0001016 nervous system UBERON_0023462 superficial feature part of occipital lobe +UBERON_0001016 nervous system UBERON_0023564 cytoarchitectural part of dentate gyrus +UBERON_0001016 nervous system UBERON_0023623 ventral nerve root of sacral spinal cord +UBERON_0001016 nervous system UBERON_0023740 habenulo-interpeduncular tract of midbrain +UBERON_0001016 nervous system UBERON_0023752 intermediate part of hypophysis +UBERON_0001016 nervous system UBERON_0023787 subicular complex +UBERON_0001016 nervous system UBERON_0023836 gross anatomical parts of the cerebellum +UBERON_0001016 nervous system UBERON_0023852 temporoparietal junction +UBERON_0001016 nervous system UBERON_0023855 commissural nucleus of the solitary tract +UBERON_0001016 nervous system UBERON_0023859 primary somatosensory cortex layer 6 +UBERON_0001016 nervous system UBERON_0023861 planum polare +UBERON_0001016 nervous system UBERON_0023862 hippocampal formation of GP94 +UBERON_0001016 nervous system UBERON_0023865 medial ventral tegmental area +UBERON_0001016 nervous system UBERON_0023867 islands of Calleja of olfactory tubercle +UBERON_0001016 nervous system UBERON_0023868 isla magna of Calleja +UBERON_0001016 nervous system UBERON_0023879 neural system +UBERON_0001016 nervous system UBERON_0023900 piriform cortex layer 1a +UBERON_0001016 nervous system UBERON_0023901 piriform cortex layer 1b +UBERON_0001016 nervous system UBERON_0023920 basal ganglia of rodent +UBERON_0001016 nervous system UBERON_0023927 subbrachial nucleus of mouse of Franklin and Paxinos 2008 +UBERON_0001016 nervous system UBERON_0023928 postrhinal cortex of rodent of Burwell et al 1995 +UBERON_0001016 nervous system UBERON_0023932 Sommer's sector +UBERON_0001016 nervous system UBERON_0023934 olfactory bulb main glomerular layer +UBERON_0001016 nervous system UBERON_0023936 perirhinal cortex of Burwell et al 1995 +UBERON_0001016 nervous system UBERON_0023958 bed nuclei of the stria terminalis oval nucleus +UBERON_0001016 nervous system UBERON_0023983 central cervical spinocerebellar tract +UBERON_0001016 nervous system UBERON_0023984 rostral spinocerebellar tract +UBERON_0001016 nervous system UBERON_0023998 cerebellum hemispheric lobule II +UBERON_0001016 nervous system UBERON_0023999 cerebellum hemispheric lobule III +UBERON_0001016 nervous system UBERON_0024000 cerebellum hemispheric lobule IV +UBERON_0001016 nervous system UBERON_0024001 cerebellum hemispheric lobule V +UBERON_0001016 nervous system UBERON_0024003 cerebellum hemispheric lobule VII +UBERON_0001016 nervous system UBERON_0024009 cerebellum hemispheric lobule X +UBERON_0001016 nervous system UBERON_0024037 vermis of the flocculonodular lobe of the cerebellum +UBERON_0001016 nervous system UBERON_0024043 rostral portion of the medial accessory olive +UBERON_0001016 nervous system UBERON_0024045 white matter of the cerebellar cortex +UBERON_0001016 nervous system UBERON_0024046 superficial feature part of the cerebellum +UBERON_0001016 nervous system UBERON_0024078 principal anterior division of supraoptic nucleus +UBERON_0001016 nervous system UBERON_0024079 tuberal supraoptic nucleus +UBERON_0001016 nervous system UBERON_0024090 chemoarchitectural part of brain +UBERON_0001016 nervous system UBERON_0024110 basis pontis +UBERON_0001016 nervous system UBERON_0024151 tegmentum +UBERON_0001016 nervous system UBERON_0024183 inferior transverse frontopolar gyrus +UBERON_0001016 nervous system UBERON_0024193 medial transverse frontopolar gyrus +UBERON_0001016 nervous system UBERON_0024201 superior transverse frontopolar gyrus +UBERON_0001016 nervous system UBERON_0024382 ventral nerve root of lumbar spinal cord +UBERON_0001016 nervous system UBERON_0024900 left sub-lobar region +UBERON_0001016 nervous system UBERON_0024901 right sub-lobar region +UBERON_0001016 nervous system UBERON_0024914 circuit part of central nervous system +UBERON_0001016 nervous system UBERON_0024940 ganglion part of peripheral nervous system +UBERON_0001016 nervous system UBERON_0025096 superior calcarine sulcus +UBERON_0001016 nervous system UBERON_0025102 inferior occipital sulcus +UBERON_0001016 nervous system UBERON_0025103 inferior calcarine sulcus +UBERON_0001016 nervous system UBERON_0025104 ectocalcarine sulcus +UBERON_0001016 nervous system UBERON_0025261 thalamic fiber tract +UBERON_0001016 nervous system UBERON_0025525 motor system +UBERON_0001016 nervous system UBERON_0025533 proprioceptive system +UBERON_0001016 nervous system UBERON_0025534 sensorimotor system +UBERON_0001016 nervous system UBERON_0025581 perirhinal cortex of primate of Burwell et al 1995 +UBERON_0001016 nervous system UBERON_0025584 perirhinal cortex of rodent of Burwell et al 1995 +UBERON_0001016 nervous system UBERON_0025677 paravermis parts of the cerebellar cortex +UBERON_0001016 nervous system UBERON_0025736 chemoarchitectural part of striatum +UBERON_0001016 nervous system UBERON_0025763 rostral sulcus +UBERON_0001016 nervous system UBERON_0025768 posterior middle temporal sulcus +UBERON_0001016 nervous system UBERON_0025772 spur of arcuate sulcus +UBERON_0001016 nervous system UBERON_0025829 anterior parieto-occipital sulcus +UBERON_0001016 nervous system UBERON_0025883 superior ramus of arcuate sulcus +UBERON_0001016 nervous system UBERON_0025903 principal sulcus +UBERON_0001016 nervous system UBERON_0026006 dorsal nerve root of lumbar spinal cord +UBERON_0001016 nervous system UBERON_0026137 annectant gyrus +UBERON_0001016 nervous system UBERON_0026246 sacral spinal cord white matter +UBERON_0001016 nervous system UBERON_0026293 thoracic spinal cord gray commissure +UBERON_0001016 nervous system UBERON_0026382 inferior ramus of arcuate sulcus +UBERON_0001016 nervous system UBERON_0026384 lateral orbital sulcus +UBERON_0001016 nervous system UBERON_0026386 lumbar spinal cord white matter +UBERON_0001016 nervous system UBERON_0026391 medial orbital sulcus +UBERON_0001016 nervous system UBERON_0026541 dorsomedial subnucleus of solitary tract +UBERON_0001016 nervous system UBERON_0026546 principal neuronal circuit +UBERON_0001016 nervous system UBERON_0026547 intrinsic neuronal circuit +UBERON_0001016 nervous system UBERON_0026663 dorsolateral subnucleus of solitary tract +UBERON_0001016 nervous system UBERON_0026666 parvocellular subnucleus of solitary tract +UBERON_0001016 nervous system UBERON_0026719 intermediate frontal sulcus +UBERON_0001016 nervous system UBERON_0026721 medial precentral sulcus +UBERON_0001016 nervous system UBERON_0026722 transverse parietal sulcus +UBERON_0001016 nervous system UBERON_0026723 inferior parietal sulcus +UBERON_0001016 nervous system UBERON_0026724 superior parietal sulcus +UBERON_0001016 nervous system UBERON_0026725 angular sulcus +UBERON_0001016 nervous system UBERON_0026760 inferior sagittal sulcus +UBERON_0001016 nervous system UBERON_0026761 superior sagittal sulcus +UBERON_0001016 nervous system UBERON_0026765 Hadjikhani et al. (1998) visuotopic partition scheme region +UBERON_0001016 nervous system UBERON_0026775 Tootell and Hadjikhani (2001) LOC/LOP complex +UBERON_0001016 nervous system UBERON_0026776 Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7 +UBERON_0001016 nervous system UBERON_0026777 Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region +UBERON_0001016 nervous system UBERON_0027061 isthmus of cingulate cortex +UBERON_0001016 nervous system UBERON_0027109 lateral eminence of hypophysis +UBERON_0001016 nervous system UBERON_0027113 anterior middle temporal sulcus +UBERON_0001016 nervous system UBERON_0027244 striosomal part of body of caudate nucleus +UBERON_0001016 nervous system UBERON_0027245 matrix part of head of caudate nucleus +UBERON_0001016 nervous system UBERON_0027246 matrix part of tail of caudate nucleus +UBERON_0001016 nervous system UBERON_0027285 paravermis lobule area +UBERON_0001016 nervous system UBERON_0027309 paravermis of the posterior lobe of the cerebellum +UBERON_0001016 nervous system UBERON_0027310 paravermis of the anterior lobe of the cerebellum +UBERON_0001016 nervous system UBERON_0027331 flocculonodular lobe, hemisphere portion +UBERON_0001016 nervous system UBERON_0027333 arbor vitae +UBERON_0001016 nervous system UBERON_0027368 matrix compartment +UBERON_0001016 nervous system UBERON_0027371 striosome +UBERON_0001016 nervous system UBERON_0027513 posterior superior frontal sulcus +UBERON_0001016 nervous system UBERON_0027716 anterior superior frontal sulcus +UBERON_0001016 nervous system UBERON_0027768 suprachiasmatic nucleus dorsomedial part +UBERON_0001016 nervous system UBERON_0027771 suprachiasmatic nucleus ventrolateral part +UBERON_0001016 nervous system UBERON_0028395 calcarine sulcus (dorsal) +UBERON_0001016 nervous system UBERON_0028396 calcarine sulcus (ventral) +UBERON_0001016 nervous system UBERON_0028398 Hadjikhani et al. (1998) visuotopic area V1d +UBERON_0001016 nervous system UBERON_0028399 Hadjikhani et al. (1998) visuotopic area V1v +UBERON_0001016 nervous system UBERON_0028401 Hadjikhani et al. (1998) visuotopic area V2v +UBERON_0001016 nervous system UBERON_0028402 Hadjikhani et al. (1998) visuotopic area V3 +UBERON_0001016 nervous system UBERON_0028403 Hadjikhani et al. (1998) visuotopic area V3A +UBERON_0001016 nervous system UBERON_0028404 Hadjikhani et al. (1998) visuotopic area VP +UBERON_0001016 nervous system UBERON_0028405 Hadjikhani et al. (1998) visuotopic area V4v +UBERON_0001016 nervous system UBERON_0028406 Hadjikhani et al. (1998) visuotopic area V8 +UBERON_0001016 nervous system UBERON_0028412 Ongur, Price, and Ferry (2003) area 10p +UBERON_0001016 nervous system UBERON_0028413 Ongur, Price, and Ferry (2003) area 10r +UBERON_0001016 nervous system UBERON_0028414 Ongur, Price, and Ferry (2003) area 10o +UBERON_0001016 nervous system UBERON_0028415 Ongur, Price, and Ferry (2003) area 10m +UBERON_0001016 nervous system UBERON_0028416 Ongur, Price, and Ferry (2003) area 11m +UBERON_0001016 nervous system UBERON_0028417 Ongur, Price, and Ferry (2003) area 47s +UBERON_0001016 nervous system UBERON_0028418 Ongur, Price, and Ferry (2003) area 13b +UBERON_0001016 nervous system UBERON_0028419 Ongur, Price, and Ferry (2003) area 13a +UBERON_0001016 nervous system UBERON_0028420 Ongur, Price, and Ferry (2003) area 14r +UBERON_0001016 nervous system UBERON_0028421 Ongur, Price, and Ferry (2003) area 14c +UBERON_0001016 nervous system UBERON_0028422 Ongur, Price, and Ferry (2003) area 24 +UBERON_0001016 nervous system UBERON_0028423 Ongur, Price, and Ferry (2003) area 25 +UBERON_0001016 nervous system UBERON_0028424 Ongur, Price, and Ferry (2003) area 32 +UBERON_0001016 nervous system UBERON_0028425 Ongur, Price, and Ferry (2003) area G +UBERON_0001016 nervous system UBERON_0028426 Ongur, Price, and Ferry (2003) area PrCO +UBERON_0001016 nervous system UBERON_0028427 Ongur, Price, and Ferry (2003) area 11l +UBERON_0001016 nervous system UBERON_0028428 Ongur, Price, and Ferry (2003) area 13m +UBERON_0001016 nervous system UBERON_0028429 Ongur, Price, and Ferry (2003) area 13l +UBERON_0001016 nervous system UBERON_0028430 Ongur, Price, and Ferry (2003) area 47l +UBERON_0001016 nervous system UBERON_0028431 Ongur, Price, and Ferry (2003) area 47m +UBERON_0001016 nervous system UBERON_0028432 Ongur, Price, and Ferry (2003) area 47r +UBERON_0001016 nervous system UBERON_0028433 Ongur, Price, and Ferry (2003) area Iam +UBERON_0001016 nervous system UBERON_0028434 Ongur, Price, and Ferry (2003) area Ial +UBERON_0001016 nervous system UBERON_0028435 Ongur, Price, and Ferry (2003) area Iai +UBERON_0001016 nervous system UBERON_0028436 Ongur, Price, and Ferry (2003) area 9 +UBERON_0001016 nervous system UBERON_0028437 Ongur, Price, and Ferry (2003) area 10l +UBERON_0001016 nervous system UBERON_0028439 Ongur, Price, and Ferry (2003) area Iapm +UBERON_0001016 nervous system UBERON_0028440 Ongur, Price, and Ferry (2003) area AON +UBERON_0001016 nervous system UBERON_0028622 banks of superior temporal sulcus +UBERON_0001016 nervous system UBERON_0028715 caudal anterior cingulate cortex +UBERON_0001016 nervous system UBERON_0028918 paravermic lobule II +UBERON_0001016 nervous system UBERON_0028919 paravermic lobule III +UBERON_0001016 nervous system UBERON_0028920 paravermic lobule IV +UBERON_0001016 nervous system UBERON_0028921 paravermic lobule IX +UBERON_0001016 nervous system UBERON_0028922 paravermic lobule V +UBERON_0001016 nervous system UBERON_0028923 paravermic lobule VI +UBERON_0001016 nervous system UBERON_0028924 paravermic lobule VII +UBERON_0001016 nervous system UBERON_0028925 paravermic lobule VIII +UBERON_0001016 nervous system UBERON_0029001 matrix compartment of caudate nucleus +UBERON_0001016 nervous system UBERON_0029002 matrix compartment of putamen +UBERON_0001016 nervous system UBERON_0029004 striosomal part of caudate nucleus +UBERON_0001016 nervous system UBERON_0029005 striosomal part of putamen +UBERON_0001016 nervous system UBERON_0029009 granular cell layer of dorsal cochlear nucleus +UBERON_0001016 nervous system UBERON_0029503 sacral spinal cord gray matter +UBERON_0001016 nervous system UBERON_0029538 sacral spinal cord lateral horn +UBERON_0001016 nervous system UBERON_0029626 cervical spinal cord gray commissure +UBERON_0001016 nervous system UBERON_0029636 lumbar spinal cord gray matter +UBERON_0001016 nervous system UBERON_0030276 lumbar spinal cord ventral horn +UBERON_0001016 nervous system UBERON_0030649 cytoarchitecture of entorhinal cortex +UBERON_0001016 nervous system UBERON_0031111 sacral spinal cord gray commissure +UBERON_0001016 nervous system UBERON_0031906 lumbar spinal cord lateral horn +UBERON_0001016 nervous system UBERON_0032748 sacral spinal cord ventral horn +UBERON_0001016 nervous system UBERON_0033483 lumbar spinal cord gray commissure +UBERON_0001016 nervous system UBERON_0033939 sacral spinal cord dorsal horn +UBERON_0001016 nervous system UBERON_0034670 palatal taste bud +UBERON_0001016 nervous system UBERON_0034671 arcuate sulcus +UBERON_0001016 nervous system UBERON_0034672 lateral eminence of fourth ventricle +UBERON_0001016 nervous system UBERON_0034673 amygdalohippocampal area +UBERON_0001016 nervous system UBERON_0034674 sulcus of limbic lobe +UBERON_0001016 nervous system UBERON_0034676 forceps major of corpus callosum +UBERON_0001016 nervous system UBERON_0034678 forceps minor of corpus callosum +UBERON_0001016 nervous system UBERON_0034705 developing neuroepithelium +UBERON_0001016 nervous system UBERON_0034706 proliferating neuroepithelium +UBERON_0001016 nervous system UBERON_0034707 differentiating neuroepithelium +UBERON_0001016 nervous system UBERON_0034708 cerebellum marginal layer +UBERON_0001016 nervous system UBERON_0034709 hindbrain marginal layer +UBERON_0001016 nervous system UBERON_0034710 spinal cord ventricular layer +UBERON_0001016 nervous system UBERON_0034711 cortical preplate +UBERON_0001016 nervous system UBERON_0034713 cranial neuron projection bundle +UBERON_0001016 nervous system UBERON_0034714 epiphyseal tract +UBERON_0001016 nervous system UBERON_0034715 pineal tract +UBERON_0001016 nervous system UBERON_0034716 rostral epiphyseal tract +UBERON_0001016 nervous system UBERON_0034717 integumental taste bud +UBERON_0001016 nervous system UBERON_0034718 barbel taste bud +UBERON_0001016 nervous system UBERON_0034719 lip taste bud +UBERON_0001016 nervous system UBERON_0034720 head taste bud +UBERON_0001016 nervous system UBERON_0034721 pharyngeal taste bud +UBERON_0001016 nervous system UBERON_0034722 mouth roof taste bud +UBERON_0001016 nervous system UBERON_0034723 fin taste bud +UBERON_0001016 nervous system UBERON_0034724 esophageal taste bud +UBERON_0001016 nervous system UBERON_0034725 pterygopalatine nerve +UBERON_0001016 nervous system UBERON_0034726 trunk taste bud +UBERON_0001016 nervous system UBERON_0034728 autonomic nerve +UBERON_0001016 nervous system UBERON_0034729 sympathetic nerve +UBERON_0001016 nervous system UBERON_0034730 olfactory tract linking bulb to ipsilateral dorsal telencephalon +UBERON_0001016 nervous system UBERON_0034734 medial olfactory stria +UBERON_0001016 nervous system UBERON_0034743 inferior longitudinal fasciculus +UBERON_0001016 nervous system UBERON_0034745 radiation of thalamus +UBERON_0001016 nervous system UBERON_0034746 anterior thalamic radiation +UBERON_0001016 nervous system UBERON_0034747 posterior thalamic radiation +UBERON_0001016 nervous system UBERON_0034749 retrolenticular part of internal capsule +UBERON_0001016 nervous system UBERON_0034750 visual association cortex +UBERON_0001016 nervous system UBERON_0034751 primary auditory cortex +UBERON_0001016 nervous system UBERON_0034752 secondary auditory cortex +UBERON_0001016 nervous system UBERON_0034753 inferior occipitofrontal fasciculus +UBERON_0001016 nervous system UBERON_0034754 occipitofrontal fasciculus +UBERON_0001016 nervous system UBERON_0034763 hindbrain commissure +UBERON_0001016 nervous system UBERON_0034771 ventral commissural nucleus of spinal cord +UBERON_0001016 nervous system UBERON_0034773 uncus of parahippocampal gyrus +UBERON_0001016 nervous system UBERON_0034774 uncal CA1 +UBERON_0001016 nervous system UBERON_0034775 uncal CA2 +UBERON_0001016 nervous system UBERON_0034776 uncal CA3 +UBERON_0001016 nervous system UBERON_0034777 rostral CA1 +UBERON_0001016 nervous system UBERON_0034778 rostral CA2 +UBERON_0001016 nervous system UBERON_0034779 rostral CA3 +UBERON_0001016 nervous system UBERON_0034780 caudal CA1 +UBERON_0001016 nervous system UBERON_0034781 caudal CA2 +UBERON_0001016 nervous system UBERON_0034782 caudal CA3 +UBERON_0001016 nervous system UBERON_0034798 stratum lacunosum-moleculare of caudal CA1 +UBERON_0001016 nervous system UBERON_0034799 stratum radiatum of caudal CA1 +UBERON_0001016 nervous system UBERON_0034800 stratum pyramidale of caudal CA1 +UBERON_0001016 nervous system UBERON_0034801 stratum oriens of caudal CA1 +UBERON_0001016 nervous system UBERON_0034803 stratum lacunosum-moleculare of caudal CA2 +UBERON_0001016 nervous system UBERON_0034804 stratum radiatum of caudal CA2 +UBERON_0001016 nervous system UBERON_0034805 stratum pyramidale of caudal CA2 +UBERON_0001016 nervous system UBERON_0034806 stratum oriens of caudal CA2 +UBERON_0001016 nervous system UBERON_0034808 stratum lacunosum-moleculare of caudal CA3 +UBERON_0001016 nervous system UBERON_0034809 stratum radiatum of caudal CA3 +UBERON_0001016 nervous system UBERON_0034810 stratum lucidum of caudal CA3 +UBERON_0001016 nervous system UBERON_0034811 stratum pyramidale of caudal CA3 +UBERON_0001016 nervous system UBERON_0034812 stratum oriens of caudal CA3 +UBERON_0001016 nervous system UBERON_0034828 stratum lacunosum-moleculare of rostral CA1 +UBERON_0001016 nervous system UBERON_0034829 stratum radiatum of rostral CA1 +UBERON_0001016 nervous system UBERON_0034830 stratum pyramidale of rostral CA1 +UBERON_0001016 nervous system UBERON_0034831 stratum oriens of rostral CA1 +UBERON_0001016 nervous system UBERON_0034833 stratum lacunosum-moleculare of rostral CA2 +UBERON_0001016 nervous system UBERON_0034834 stratum radiatum of rostral CA2 +UBERON_0001016 nervous system UBERON_0034835 stratum pyramidale of rostral CA2 +UBERON_0001016 nervous system UBERON_0034836 stratum oriens of rostral CA2 +UBERON_0001016 nervous system UBERON_0034838 stratum lacunosum-moleculare of rostral CA3 +UBERON_0001016 nervous system UBERON_0034839 stratum radiatum of rostral CA3 +UBERON_0001016 nervous system UBERON_0034840 stratum lucidum of rostral CA3 +UBERON_0001016 nervous system UBERON_0034841 stratum pyramidale of rostral CA3 +UBERON_0001016 nervous system UBERON_0034842 stratum oriens of rostral CA3 +UBERON_0001016 nervous system UBERON_0034858 stratum lacunosum-moleculare of uncal CA1 +UBERON_0001016 nervous system UBERON_0034859 stratum radiatum of uncal CA1 +UBERON_0001016 nervous system UBERON_0034860 stratum pyramidale of uncal CA1 +UBERON_0001016 nervous system UBERON_0034861 stratum oriens of uncal CA1 +UBERON_0001016 nervous system UBERON_0034863 stratum lacunosum-moleculare of uncal CA2 +UBERON_0001016 nervous system UBERON_0034864 stratum radiatum of uncal CA2 +UBERON_0001016 nervous system UBERON_0034865 stratum pyramidale of uncal CA2 +UBERON_0001016 nervous system UBERON_0034866 stratum oriens of uncal CA2 +UBERON_0001016 nervous system UBERON_0034868 stratum lacunosum-moleculare of uncal CA3 +UBERON_0001016 nervous system UBERON_0034869 stratum radiatum of uncal CA3 +UBERON_0001016 nervous system UBERON_0034870 stratum lucidum of uncal CA3 +UBERON_0001016 nervous system UBERON_0034871 stratum pyramidale of uncal CA3 +UBERON_0001016 nervous system UBERON_0034872 stratum oriens of uncal CA3 +UBERON_0001016 nervous system UBERON_0034876 future neurohypophysis +UBERON_0001016 nervous system UBERON_0034888 primary motor cortex layer 1 +UBERON_0001016 nervous system UBERON_0034889 posterior parietal cortex +UBERON_0001016 nervous system UBERON_0034891 insular cortex +UBERON_0001016 nervous system UBERON_0034892 granular insular cortex +UBERON_0001016 nervous system UBERON_0034893 agranular insular cortex +UBERON_0001016 nervous system UBERON_0034894 lateral nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0034895 medial nucleus of stria terminalis +UBERON_0001016 nervous system UBERON_0034896 ansa peduncularis +UBERON_0001016 nervous system UBERON_0034901 cervical sympathetic nerve trunk +UBERON_0001016 nervous system UBERON_0034902 sacral sympathetic nerve trunk +UBERON_0001016 nervous system UBERON_0034907 pineal parenchyma +UBERON_0001016 nervous system UBERON_0034910 medial pretectal nucleus +UBERON_0001016 nervous system UBERON_0034918 anterior pretectal nucleus +UBERON_0001016 nervous system UBERON_0034931 perforant path +UBERON_0001016 nervous system UBERON_0034942 vibrissal follicle-sinus complex +UBERON_0001016 nervous system UBERON_0034943 saccus vasculosus +UBERON_0001016 nervous system UBERON_0034968 sagittal sulcus +UBERON_0001016 nervous system UBERON_0034984 nerve to quadratus femoris +UBERON_0001016 nervous system UBERON_0034986 sacral nerve plexus +UBERON_0001016 nervous system UBERON_0034987 lumbar nerve plexus +UBERON_0001016 nervous system UBERON_0034989 amygdalopiriform transition area +UBERON_0001016 nervous system UBERON_0034991 anterior cortical amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0034993 basal ventral medial nucleus of thalamus +UBERON_0001016 nervous system UBERON_0034994 hindbrain cortical intermediate zone +UBERON_0001016 nervous system UBERON_0034999 posterolateral cortical amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0035001 posteromedial cortical amygdaloid nucleus +UBERON_0001016 nervous system UBERON_0035011 central gray substance +UBERON_0001016 nervous system UBERON_0035013 temporal cortex association area +UBERON_0001016 nervous system UBERON_0035014 functional part of brain +UBERON_0001016 nervous system UBERON_0035015 association cortex +UBERON_0001016 nervous system UBERON_0035016 tactile mechanoreceptor +UBERON_0001016 nervous system UBERON_0035017 nociceptor +UBERON_0001016 nervous system UBERON_0035018 thermoreceptor +UBERON_0001016 nervous system UBERON_0035019 inferior olive, beta nucleus +UBERON_0001016 nervous system UBERON_0035020 left vagus X nerve trunk +UBERON_0001016 nervous system UBERON_0035021 right vagus X nerve trunk +UBERON_0001016 nervous system UBERON_0035022 trunk of segmental spinal nerve +UBERON_0001016 nervous system UBERON_0035024 lateral spinal nucleus +UBERON_0001016 nervous system UBERON_0035026 amygdalohippocampal transition area +UBERON_0001016 nervous system UBERON_0035027 amygdalohippocampal area, magnocellular division +UBERON_0001016 nervous system UBERON_0035028 amygdalohippocampal area, parvocellular division +UBERON_0001016 nervous system UBERON_0035044 olfactory cortex layer 3 +UBERON_0001016 nervous system UBERON_0035109 plantar nerve +UBERON_0001016 nervous system UBERON_0035110 lateral plantar nerve +UBERON_0001016 nervous system UBERON_0035111 medial plantar nerve +UBERON_0001016 nervous system UBERON_0035113 central part of mediodorsal nucleus of the thalamus +UBERON_0001016 nervous system UBERON_0035114 lateral part of mediodorsal nucleus of the thalamus +UBERON_0001016 nervous system UBERON_0035145 nucleus sacci vasculosi +UBERON_0001016 nervous system UBERON_0035146 tractus sacci vasculosi +UBERON_0001016 nervous system UBERON_0035150 superior cerebral vein +UBERON_0001016 nervous system UBERON_0035151 dorsal cerebral vein +UBERON_0001016 nervous system UBERON_0035152 internal cerebral vein +UBERON_0001016 nervous system UBERON_0035153 dorsolateral prefrontal cortex layer 1 +UBERON_0001016 nervous system UBERON_0035154 dorsolateral prefrontal cortex layer 2 +UBERON_0001016 nervous system UBERON_0035155 dorsolateral prefrontal cortex layer 3 +UBERON_0001016 nervous system UBERON_0035156 dorsolateral prefrontal cortex layer 4 +UBERON_0001016 nervous system UBERON_0035157 dorsolateral prefrontal cortex layer 5 +UBERON_0001016 nervous system UBERON_0035158 dorsolateral prefrontal cortex layer 6 +UBERON_0001016 nervous system UBERON_0035207 deep fibular nerve +UBERON_0001016 nervous system UBERON_0035231 superficial middle cerebral vein +UBERON_0001016 nervous system UBERON_0035319 anterior median fissure of spinal cord +UBERON_0001016 nervous system UBERON_0035338 sphenoparietal sinus +UBERON_0001016 nervous system UBERON_0035416 diaphragma sellae +UBERON_0001016 nervous system UBERON_0035425 falx cerebelli +UBERON_0001016 nervous system UBERON_0035501 unencapsulated tactile receptor +UBERON_0001016 nervous system UBERON_0035526 superficial fibular nerve +UBERON_0001016 nervous system UBERON_0035530 basal vein +UBERON_0001016 nervous system UBERON_0035532 deep middle cerebral vein +UBERON_0001016 nervous system UBERON_0035562 intermediate pretectal nucleus +UBERON_0001016 nervous system UBERON_0035563 magnocellular superficial pretectal nucleus +UBERON_0001016 nervous system UBERON_0035564 parvocellular superficial pretectal nucleus +UBERON_0001016 nervous system UBERON_0035565 caudal pretectal nucleus +UBERON_0001016 nervous system UBERON_0035566 central pretectal nucleus +UBERON_0001016 nervous system UBERON_0035567 accessory pretectal nucleus +UBERON_0001016 nervous system UBERON_0035568 superficial pretectal nucleus +UBERON_0001016 nervous system UBERON_0035569 periventricular pretectal nucleus +UBERON_0001016 nervous system UBERON_0035570 tectothalamic tract +UBERON_0001016 nervous system UBERON_0035572 nucleus praetectalis profundus +UBERON_0001016 nervous system UBERON_0035573 dorsal pretectal periventricular nucleus +UBERON_0001016 nervous system UBERON_0035574 ventral pretectal periventricular nucleus +UBERON_0001016 nervous system UBERON_0035575 paracommissural nucleus of solitary tract +UBERON_0001016 nervous system UBERON_0035577 paracommissural periventricular pretectal nucleus +UBERON_0001016 nervous system UBERON_0035580 nucleus geniculatus of pretectum +UBERON_0001016 nervous system UBERON_0035581 nucleus lentiformis of pretectum +UBERON_0001016 nervous system UBERON_0035582 nucleus posteriodorsalis of pretectum +UBERON_0001016 nervous system UBERON_0035583 nucleus lentiformis thalamus +UBERON_0001016 nervous system UBERON_0035584 ventral pretectal nucleus (sauropsida) +UBERON_0001016 nervous system UBERON_0035585 tectal gray nucleus (Testudines) +UBERON_0001016 nervous system UBERON_0035586 nucleus lentiformis mesencephali (Aves) +UBERON_0001016 nervous system UBERON_0035587 nucleus pretectalis diffusus +UBERON_0001016 nervous system UBERON_0035588 subpretectal complex of Aves +UBERON_0001016 nervous system UBERON_0035589 nucleus subpretectalis +UBERON_0001016 nervous system UBERON_0035590 nucleus interstitio-pretectalis-subpretectalis +UBERON_0001016 nervous system UBERON_0035591 lateral spiriform nucleus +UBERON_0001016 nervous system UBERON_0035592 medial spiriform nucleus +UBERON_0001016 nervous system UBERON_0035593 nucleus circularis of pretectum +UBERON_0001016 nervous system UBERON_0035595 accessory optic tract +UBERON_0001016 nervous system UBERON_0035596 circular nucleus of antherior hypothalamic nucleus +UBERON_0001016 nervous system UBERON_0035599 profundal part of trigeminal ganglion complex +UBERON_0001016 nervous system UBERON_0035601 maxillomandibular part of trigeminal ganglion complex +UBERON_0001016 nervous system UBERON_0035602 collar nerve cord +UBERON_0001016 nervous system UBERON_0035607 accessory nerve cord of dorsal region +UBERON_0001016 nervous system UBERON_0035608 dura mater lymph vessel +UBERON_0001016 nervous system UBERON_0035642 laryngeal nerve +UBERON_0001016 nervous system UBERON_0035646 anterior superior alveolar nerve +UBERON_0001016 nervous system UBERON_0035647 posterior auricular nerve +UBERON_0001016 nervous system UBERON_0035648 nerve innervating pinna +UBERON_0001016 nervous system UBERON_0035649 nerve of penis +UBERON_0001016 nervous system UBERON_0035650 nerve of clitoris +UBERON_0001016 nervous system UBERON_0035652 fibular nerve +UBERON_0001016 nervous system UBERON_0035768 coccygeal nerve plexus +UBERON_0001016 nervous system UBERON_0035769 mesenteric ganglion +UBERON_0001016 nervous system UBERON_0035770 inferior mesenteric nerve plexus +UBERON_0001016 nervous system UBERON_0035771 mesenteric plexus +UBERON_0001016 nervous system UBERON_0035772 aortic plexus +UBERON_0001016 nervous system UBERON_0035773 abdominal nerve plexus +UBERON_0001016 nervous system UBERON_0035774 thoracic aortic plexus +UBERON_0001016 nervous system UBERON_0035776 accessory ciliary ganglion +UBERON_0001016 nervous system UBERON_0035783 ganglion of ciliary nerve +UBERON_0001016 nervous system UBERON_0035785 telencephalic song nucleus HVC +UBERON_0001016 nervous system UBERON_0035786 layer of CA1 field +UBERON_0001016 nervous system UBERON_0035787 layer of CA2 field +UBERON_0001016 nervous system UBERON_0035788 layer of CA3 field +UBERON_0001016 nervous system UBERON_0035802 alveus of CA2 field +UBERON_0001016 nervous system UBERON_0035803 extrapyramidal tract system +UBERON_0001016 nervous system UBERON_0035807 area X of basal ganglion +UBERON_0001016 nervous system UBERON_0035808 robust nucleus of arcopallium +UBERON_0001016 nervous system UBERON_0035872 primary somatosensory area barrel field layer 5 +UBERON_0001016 nervous system UBERON_0035873 primary somatosensory area barrel field layer 1 +UBERON_0001016 nervous system UBERON_0035874 primary somatosensory area barrel field layer 2/3 +UBERON_0001016 nervous system UBERON_0035875 primary somatosensory area barrel field layer 6b +UBERON_0001016 nervous system UBERON_0035876 primary somatosensory area barrel field layer 6a +UBERON_0001016 nervous system UBERON_0035877 primary somatosensory area barrel field layer 4 +UBERON_0001016 nervous system UBERON_0035885 dorsal auditory area +UBERON_0001016 nervous system UBERON_0035886 posterior parietal association areas +UBERON_0001016 nervous system UBERON_0035890 postrhinal area +UBERON_0001016 nervous system UBERON_0035892 primary visual area, layer 6a +UBERON_0001016 nervous system UBERON_0035893 anteromedial visual area +UBERON_0001016 nervous system UBERON_0035894 anterolateral visual area +UBERON_0001016 nervous system UBERON_0035895 lateral visual area +UBERON_0001016 nervous system UBERON_0035897 posterolateral visual area +UBERON_0001016 nervous system UBERON_0035900 posteromedial visual area +UBERON_0001016 nervous system UBERON_0035904 primary visual area, layer 4 +UBERON_0001016 nervous system UBERON_0035906 primary visual area, layer 5 +UBERON_0001016 nervous system UBERON_0035907 primary visual area, layer 2/3 +UBERON_0001016 nervous system UBERON_0035908 anterolateral visual area, layer 5 +UBERON_0001016 nervous system UBERON_0035909 posteromedial visual area, layer 6a +UBERON_0001016 nervous system UBERON_0035911 postrhinal area, layer 4 +UBERON_0001016 nervous system UBERON_0035912 rostrolateral visual area +UBERON_0001016 nervous system UBERON_0035913 anteromedial visual area, layer 5 +UBERON_0001016 nervous system UBERON_0035914 posteromedial visual area, layer 4 +UBERON_0001016 nervous system UBERON_0035915 lateral visual area, layer 4 +UBERON_0001016 nervous system UBERON_0035916 lateral visual area, layer 5 +UBERON_0001016 nervous system UBERON_0035917 dorsal auditory area, layer 4 +UBERON_0001016 nervous system UBERON_0035918 lateral visual area, layer 6a +UBERON_0001016 nervous system UBERON_0035919 posterolateral visual area, layer 4 +UBERON_0001016 nervous system UBERON_0035920 rostrolateral area, layer 5 +UBERON_0001016 nervous system UBERON_0035922 intraculminate fissure of cerebellum +UBERON_0001016 nervous system UBERON_0035924 radiation of corpus callosum +UBERON_0001016 nervous system UBERON_0035925 central sulcus of insula +UBERON_0001016 nervous system UBERON_0035926 preculminate fissure of cerebellum +UBERON_0001016 nervous system UBERON_0035927 sulcus of parietal lobe +UBERON_0001016 nervous system UBERON_0035928 dorsolateral part of supraoptic nucleus +UBERON_0001016 nervous system UBERON_0035930 retro-olivary nucleus +UBERON_0001016 nervous system UBERON_0035931 sagittal stratum +UBERON_0001016 nervous system UBERON_0035932 anterior segment of paracentral lobule +UBERON_0001016 nervous system UBERON_0035933 paracentral lobule +UBERON_0001016 nervous system UBERON_0035934 posterior segment of paracentral lobule +UBERON_0001016 nervous system UBERON_0035935 Meyer's loop of optic radiation +UBERON_0001016 nervous system UBERON_0035937 arcuate fasciculus +UBERON_0001016 nervous system UBERON_0035938 amiculum of inferior olive +UBERON_0001016 nervous system UBERON_0035939 amiculum +UBERON_0001016 nervous system UBERON_0035940 central medullary reticular nuclear complex +UBERON_0001016 nervous system UBERON_0035968 bulboid corpuscle +UBERON_0001016 nervous system UBERON_0035969 encapsulated tactile receptor +UBERON_0001016 nervous system UBERON_0035970 calcar avis of the lateral ventricle +UBERON_0001016 nervous system UBERON_0035971 postsubiculum +UBERON_0001016 nervous system UBERON_0035972 interanterodorsal nucleus of the thalamus +UBERON_0001016 nervous system UBERON_0035973 nucleus incertus +UBERON_0001016 nervous system UBERON_0035974 anteroventral preoptic nucleus +UBERON_0001016 nervous system UBERON_0035975 intergeniculate leaflet of the lateral geniculate complex +UBERON_0001016 nervous system UBERON_0035976 accessory abducens nucleus +UBERON_0001016 nervous system UBERON_0035977 bed nucleus of the accessory olfactory tract +UBERON_0001016 nervous system UBERON_0035999 dopaminergic cell groups +UBERON_0001016 nervous system UBERON_0036000 A8 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036001 A14 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036002 A15 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036003 A9 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036004 A17 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036005 A10 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036006 A11 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036007 A13 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036008 A16 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036009 A12 dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036010 Aaq dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036011 telencephalic dopaminergic cell group +UBERON_0001016 nervous system UBERON_0036012 nucleus of the brachium of the inferior colliculus +UBERON_0001016 nervous system UBERON_0036043 paravermic lobule X +UBERON_0001016 nervous system UBERON_0036044 cerebellum vermis lobule VIIAf +UBERON_0001016 nervous system UBERON_0036063 quadrangular lobule +UBERON_0001016 nervous system UBERON_0036065 cerebellum vermis lobule VIIAt +UBERON_0001016 nervous system UBERON_0036074 vein of vestibular aqueduct +UBERON_0001016 nervous system UBERON_0036143 meningeal branch of mandibular nerve +UBERON_0001016 nervous system UBERON_0036145 glymphatic system +UBERON_0001016 nervous system UBERON_0036164 ambient gyrus +UBERON_0001016 nervous system UBERON_0036177 nucleus recessus +UBERON_0001016 nervous system UBERON_0036216 tympanic nerve +UBERON_0001016 nervous system UBERON_0036218 secondary prosencephalon +UBERON_0001016 nervous system UBERON_0036224 corticobulbar and corticospinal tracts +UBERON_0001016 nervous system UBERON_0036264 zygomaticotemporal nerve +UBERON_0001016 nervous system UBERON_0036300 tributary of central retinal vein +UBERON_0001016 nervous system UBERON_0036303 vasculature of central nervous system +UBERON_0001016 nervous system UBERON_0036654 wall of lateral ventricle +UBERON_0001016 nervous system UBERON_0036655 wall of cerebral aqueduct +UBERON_0001016 nervous system UBERON_0036656 wall of third ventricle +UBERON_0001016 nervous system UBERON_0036657 wall of fourth ventricle +UBERON_0001016 nervous system UBERON_0036658 wall of central canal of spinal cord +UBERON_0001016 nervous system UBERON_0036661 wall of ventricular system of brain +UBERON_0001016 nervous system UBERON_0039175 subarachnoid space of brain +UBERON_0001016 nervous system UBERON_0039176 subarachnoid space of spinal cord +UBERON_0001016 nervous system UBERON_2000116 macula lagena +UBERON_0001016 nervous system UBERON_2000120 lateral line ganglion +UBERON_0001016 nervous system UBERON_2000165 inferior lobe +UBERON_0001016 nervous system UBERON_2000168 anterior macula +UBERON_0001016 nervous system UBERON_2000174 caudal cerebellar tract +UBERON_0001016 nervous system UBERON_2000175 posterior lateral line nerve +UBERON_0001016 nervous system UBERON_2000176 lateral entopeduncular nucleus +UBERON_0001016 nervous system UBERON_2000182 central caudal thalamic nucleus +UBERON_0001016 nervous system UBERON_2000183 central pretectum +UBERON_0001016 nervous system UBERON_2000185 commissura rostral, pars ventralis +UBERON_0001016 nervous system UBERON_2000187 lateral granular eminence +UBERON_0001016 nervous system UBERON_2000188 corpus cerebelli +UBERON_0001016 nervous system UBERON_2000193 diffuse nuclei +UBERON_0001016 nervous system UBERON_2000194 dorsal accessory optic nucleus +UBERON_0001016 nervous system UBERON_2000199 dorsal periventricular hypothalamus +UBERON_0001016 nervous system UBERON_2000209 lateral preglomerular nucleus +UBERON_0001016 nervous system UBERON_2000210 gigantocellular part of magnocellular preoptic nucleus +UBERON_0001016 nervous system UBERON_2000212 granular eminence +UBERON_0001016 nervous system UBERON_2000222 isthmic primary nucleus +UBERON_0001016 nervous system UBERON_2000234 macula neglecta +UBERON_0001016 nervous system UBERON_2000238 olfactory tract linking bulb to ipsilateral ventral telencephalon +UBERON_0001016 nervous system UBERON_2000241 midline column +UBERON_0001016 nervous system UBERON_2000245 nucleus of the descending root +UBERON_0001016 nervous system UBERON_2000248 magnocellular preoptic nucleus +UBERON_0001016 nervous system UBERON_2000267 primary olfactory fiber layer +UBERON_0001016 nervous system UBERON_2000274 rostral octaval nerve sensory nucleus +UBERON_0001016 nervous system UBERON_2000276 rostrolateral thalamic nucleus of Butler & Saidel +UBERON_0001016 nervous system UBERON_2000278 secondary gustatory nucleus medulla oblongata +UBERON_0001016 nervous system UBERON_2000280 medial division +UBERON_0001016 nervous system UBERON_2000291 medial octavolateralis nucleus +UBERON_0001016 nervous system UBERON_2000293 synencephalon +UBERON_0001016 nervous system UBERON_2000294 torus lateralis +UBERON_0001016 nervous system UBERON_2000296 uncrossed tecto-bulbar tract +UBERON_0001016 nervous system UBERON_2000297 vagal lobe +UBERON_0001016 nervous system UBERON_2000305 ventral sulcus +UBERON_0001016 nervous system UBERON_2000307 vestibulolateralis lobe +UBERON_0001016 nervous system UBERON_2000315 asteriscus +UBERON_0001016 nervous system UBERON_2000318 brainstem and spinal white matter +UBERON_0001016 nervous system UBERON_2000322 caudal octaval nerve sensory nucleus +UBERON_0001016 nervous system UBERON_2000324 caudal periventricular hypothalamus +UBERON_0001016 nervous system UBERON_2000335 crossed tecto-bulbar tract +UBERON_0001016 nervous system UBERON_2000347 dorsal zone of median tuberal portion of hypothalamus +UBERON_0001016 nervous system UBERON_2000352 external cellular layer +UBERON_0001016 nervous system UBERON_2000358 granular layer corpus cerebelli +UBERON_0001016 nervous system UBERON_2000372 interpeduncular nucleus medulla oblongata +UBERON_0001016 nervous system UBERON_2000381 lateral line sensory nucleus +UBERON_0001016 nervous system UBERON_2000388 medial caudal lobe +UBERON_0001016 nervous system UBERON_2000389 medial funicular nucleus medulla oblongata +UBERON_0001016 nervous system UBERON_2000390 medial preglomerular nucleus +UBERON_0001016 nervous system UBERON_2000392 median tuberal portion +UBERON_0001016 nervous system UBERON_2000394 molecular layer corpus cerebelli +UBERON_0001016 nervous system UBERON_2000397 nucleus subglomerulosis +UBERON_0001016 nervous system UBERON_2000398 nucleus isthmi +UBERON_0001016 nervous system UBERON_2000399 secondary gustatory nucleus trigeminal nuclei +UBERON_0001016 nervous system UBERON_2000401 octaval nerve sensory nucleus +UBERON_0001016 nervous system UBERON_2000408 periventricular nucleus of caudal tuberculum +UBERON_0001016 nervous system UBERON_2000425 anterior lateral line nerve +UBERON_0001016 nervous system UBERON_2000426 rostral parvocellular preoptic nucleus +UBERON_0001016 nervous system UBERON_2000430 secondary gustatory tract +UBERON_0001016 nervous system UBERON_2000440 superior raphe nucleus +UBERON_0001016 nervous system UBERON_2000448 tertiary gustatory nucleus +UBERON_0001016 nervous system UBERON_2000449 torus longitudinalis +UBERON_0001016 nervous system UBERON_2000454 ventral accessory optic nucleus +UBERON_0001016 nervous system UBERON_2000459 ventromedial thalamic nucleus +UBERON_0001016 nervous system UBERON_2000475 paraventricular organ +UBERON_0001016 nervous system UBERON_2000479 caudal mesencephalo-cerebellar tract +UBERON_0001016 nervous system UBERON_2000480 caudal octavolateralis nucleus +UBERON_0001016 nervous system UBERON_2000481 caudal preglomerular nucleus +UBERON_0001016 nervous system UBERON_2000482 caudal tuberal nucleus +UBERON_0001016 nervous system UBERON_2000485 central nucleus inferior lobe +UBERON_0001016 nervous system UBERON_2000502 dorsal motor nucleus trigeminal nerve +UBERON_0001016 nervous system UBERON_2000512 facial lobe +UBERON_0001016 nervous system UBERON_2000516 periventricular grey zone +UBERON_0001016 nervous system UBERON_2000517 glossopharyngeal lobe +UBERON_0001016 nervous system UBERON_2000523 inferior reticular formation +UBERON_0001016 nervous system UBERON_2000530 lapillus +UBERON_0001016 nervous system UBERON_2000532 lateral division +UBERON_0001016 nervous system UBERON_2000540 magnocellular octaval nucleus +UBERON_0001016 nervous system UBERON_2000542 medial column +UBERON_0001016 nervous system UBERON_2000551 nucleus lateralis valvulae +UBERON_0001016 nervous system UBERON_2000573 internal cellular layer +UBERON_0001016 nervous system UBERON_2000579 rostral mesencephalo-cerebellar tract +UBERON_0001016 nervous system UBERON_2000580 rostral preglomerular nucleus +UBERON_0001016 nervous system UBERON_2000581 rostral tuberal nucleus +UBERON_0001016 nervous system UBERON_2000582 saccus dorsalis +UBERON_0001016 nervous system UBERON_2000589 sulcus ypsiloniformis +UBERON_0001016 nervous system UBERON_2000593 superior reticular formation medial column +UBERON_0001016 nervous system UBERON_2000597 telencephalic tracts +UBERON_0001016 nervous system UBERON_2000599 torus semicircularis +UBERON_0001016 nervous system UBERON_2000603 valvula cerebelli +UBERON_0001016 nervous system UBERON_2000609 ventrolateral nucleus +UBERON_0001016 nervous system UBERON_2000611 visceromotor column +UBERON_0001016 nervous system UBERON_2000629 caudal motor nucleus of abducens +UBERON_0001016 nervous system UBERON_2000630 caudal parvocellular preoptic nucleus +UBERON_0001016 nervous system UBERON_2000633 caudal tuberculum +UBERON_0001016 nervous system UBERON_2000634 caudal zone of median tuberal portion of hypothalamus +UBERON_0001016 nervous system UBERON_2000636 cerebellar crest +UBERON_0001016 nervous system UBERON_2000638 commissura rostral, pars dorsalis +UBERON_0001016 nervous system UBERON_2000639 commissure of the secondary gustatory nuclei +UBERON_0001016 nervous system UBERON_2000643 rostral cerebellar tract +UBERON_0001016 nervous system UBERON_2000645 descending octaval nucleus +UBERON_0001016 nervous system UBERON_2000647 dorsal caudal thalamic nucleus +UBERON_0001016 nervous system UBERON_2000654 rostral motor nucleus of abducens +UBERON_0001016 nervous system UBERON_2000676 sagitta +UBERON_0001016 nervous system UBERON_2000687 superficial pretectum +UBERON_0001016 nervous system UBERON_2000693 tangential nucleus +UBERON_0001016 nervous system UBERON_2000703 ventral motor nucleus trigeminal nerve +UBERON_0001016 nervous system UBERON_2000707 ventral zone +UBERON_0001016 nervous system UBERON_2000710 viscerosensory commissural nucleus of Cajal +UBERON_0001016 nervous system UBERON_2000766 granular layer valvula cerebelli +UBERON_0001016 nervous system UBERON_2000779 lateral forebrain bundle telencephalon +UBERON_0001016 nervous system UBERON_2000815 nucleus of medial longitudinal fasciculus of medulla +UBERON_0001016 nervous system UBERON_2000826 central nucleus torus semicircularis +UBERON_0001016 nervous system UBERON_2000910 medial forebrain bundle telencephalon +UBERON_0001016 nervous system UBERON_2000913 molecular layer valvula cerebelli +UBERON_0001016 nervous system UBERON_2000941 nucleus of the medial longitudinal fasciculus synencephalon +UBERON_0001016 nervous system UBERON_2000984 superior reticular formation tegmentum +UBERON_0001016 nervous system UBERON_2000985 ventral rhombencephalic commissure medulla oblongata +UBERON_0001016 nervous system UBERON_2000997 medial funicular nucleus trigeminal nuclei +UBERON_0001016 nervous system UBERON_2001297 vagal placode 1 +UBERON_0001016 nervous system UBERON_2001298 vagal placode 2 +UBERON_0001016 nervous system UBERON_2001299 vagal placode 3 +UBERON_0001016 nervous system UBERON_2001300 vagal placode 4 +UBERON_0001016 nervous system UBERON_2001302 vagal ganglion 1 +UBERON_0001016 nervous system UBERON_2001303 vagal ganglion 2 +UBERON_0001016 nervous system UBERON_2001304 vagal ganglion 3 +UBERON_0001016 nervous system UBERON_2001305 vagal ganglion 4 +UBERON_0001016 nervous system UBERON_2001312 dorsal anterior lateral line ganglion +UBERON_0001016 nervous system UBERON_2001313 ventral anterior lateral line ganglion +UBERON_0001016 nervous system UBERON_2001314 posterior lateral line ganglion +UBERON_0001016 nervous system UBERON_2001340 nucleus of the tract of the postoptic commissure +UBERON_0001016 nervous system UBERON_2001341 intervening zone +UBERON_0001016 nervous system UBERON_2001343 telencephalon diencephalon boundary +UBERON_0001016 nervous system UBERON_2001347 stratum fibrosum et griseum superficiale +UBERON_0001016 nervous system UBERON_2001348 stratum marginale +UBERON_0001016 nervous system UBERON_2001349 stratum opticum +UBERON_0001016 nervous system UBERON_2001352 stratum periventriculare +UBERON_0001016 nervous system UBERON_2001357 alar plate midbrain +UBERON_0001016 nervous system UBERON_2001366 tract of the postoptic commissure +UBERON_0001016 nervous system UBERON_2001391 anterior lateral line ganglion +UBERON_0001016 nervous system UBERON_2001480 dorsal anterior lateral line nerve +UBERON_0001016 nervous system UBERON_2001481 ventral anterior lateral line nerve +UBERON_0001016 nervous system UBERON_2001482 middle lateral line nerve +UBERON_0001016 nervous system UBERON_2001483 middle lateral line ganglion +UBERON_0001016 nervous system UBERON_2002010 hyoideomandibular nerve +UBERON_0001016 nervous system UBERON_2002105 electrosensory lateral line lobe +UBERON_0001016 nervous system UBERON_2002106 eminentia granularis +UBERON_0001016 nervous system UBERON_2002107 medullary command nucleus +UBERON_0001016 nervous system UBERON_2002174 octaval nerve motor nucleus +UBERON_0001016 nervous system UBERON_2002175 rostral octaval nerve motor nucleus +UBERON_0001016 nervous system UBERON_2002176 caudal octaval nerve motor nucleus +UBERON_0001016 nervous system UBERON_2002185 climbing fiber +UBERON_0001016 nervous system UBERON_2002192 dorsolateral motor nucleus of vagal nerve +UBERON_0001016 nervous system UBERON_2002202 intermediate nucleus +UBERON_0001016 nervous system UBERON_2002207 medial motor nucleus of vagal nerve +UBERON_0001016 nervous system UBERON_2002210 mossy fiber +UBERON_0001016 nervous system UBERON_2002218 parallel fiber +UBERON_0001016 nervous system UBERON_2002219 parvocellular preoptic nucleus +UBERON_0001016 nervous system UBERON_2002226 preglomerular nucleus +UBERON_0001016 nervous system UBERON_2002240 Purkinje cell layer corpus cerebelli +UBERON_0001016 nervous system UBERON_2002241 Purkinje cell layer valvula cerebelli +UBERON_0001016 nervous system UBERON_2002244 supraoptic tract +UBERON_0001016 nervous system UBERON_2005020 central artery +UBERON_0001016 nervous system UBERON_2005021 cerebellar central artery +UBERON_0001016 nervous system UBERON_2005031 dorsal longitudinal vein +UBERON_0001016 nervous system UBERON_2005052 anterior mesencephalic central artery +UBERON_0001016 nervous system UBERON_2005078 middle mesencephalic central artery +UBERON_0001016 nervous system UBERON_2005079 posterior mesencephalic central artery +UBERON_0001016 nervous system UBERON_2005144 ampullary nerve +UBERON_0001016 nervous system UBERON_2005219 choroid plexus vascular circuit +UBERON_0001016 nervous system UBERON_2005248 trans-choroid plexus branch +UBERON_0001016 nervous system UBERON_2005338 posterior recess +UBERON_0001016 nervous system UBERON_2005339 nucleus of the lateral recess +UBERON_0001016 nervous system UBERON_2005340 nucleus of the posterior recess +UBERON_0001016 nervous system UBERON_2005341 medial longitudinal catecholaminergic tract +UBERON_0001016 nervous system UBERON_2005343 endohypothalamic tract +UBERON_0001016 nervous system UBERON_2005344 preopticohypothalamic tract +UBERON_0001016 nervous system UBERON_2007001 dorso-rostral cluster +UBERON_0001016 nervous system UBERON_2007002 ventro-rostral cluster +UBERON_0001016 nervous system UBERON_2007003 ventro-caudal cluster +UBERON_0001016 nervous system UBERON_2007004 epiphysial cluster +UBERON_0001016 nervous system UBERON_2007012 lateral forebrain bundle +UBERON_0001016 nervous system UBERON_3000393 pars amphibiorum +UBERON_0001016 nervous system UBERON_3000395 pars basilaris +UBERON_0001016 nervous system UBERON_3010105 anterodorsal lateral line nerve (ADLLN) +UBERON_0001016 nervous system UBERON_3010109 anteroventral lateral line nerve (AVLLN) +UBERON_0001016 nervous system UBERON_3010115 posterior lateral line nerve (PLLN) +UBERON_0001016 nervous system UBERON_3010126 middle lateral line nerve (MLLN) +UBERON_0001016 nervous system UBERON_3010541 median pars intermedia +UBERON_0001016 nervous system UBERON_3010652 ramus nasalis lateralis +UBERON_0001016 nervous system UBERON_3010653 ramus nasalis medialis +UBERON_0001016 nervous system UBERON_3010661 ramus nasalis internus +UBERON_0001016 nervous system UBERON_3010665 ramule palatinus +UBERON_0001016 nervous system UBERON_3010668 ramules cutaneous +UBERON_0001016 nervous system UBERON_3010669 trunk maxillary-mandibularis +UBERON_0001016 nervous system UBERON_3010671 ramule palatonasalis +UBERON_0001016 nervous system UBERON_3010693 ramus posterior profundus of V3 +UBERON_0001016 nervous system UBERON_3010720 ramus hyomandibularis +UBERON_0001016 nervous system UBERON_3010722 ramus palatinus +UBERON_0001016 nervous system UBERON_3010726 ramus muscularis of glossopharyngeus nerve +UBERON_0001016 nervous system UBERON_3010735 ramus anterior of CN VIII +UBERON_0001016 nervous system UBERON_3010736 ramus posterior of CN VIII +UBERON_0001016 nervous system UBERON_3010740 ramus auricularis of the vagus nerve +UBERON_0001016 nervous system UBERON_3010750 descending branch of the vagus nerve +UBERON_0001016 nervous system UBERON_3010751 ramus muscularis of vagus nerve +UBERON_0001016 nervous system UBERON_3010754 ramus recurrens +UBERON_0001016 nervous system UBERON_3010757 ramus superficial ophthalmic +UBERON_0001016 nervous system UBERON_3010759 ramus buccal +UBERON_0001016 nervous system UBERON_3010764 laryngeus ventralis +UBERON_0001016 nervous system UBERON_3010765 ramus mandibularis externus +UBERON_0001016 nervous system UBERON_3010770 dorsal sympathetic chain +UBERON_0001016 nervous system UBERON_3010771 ventral sympathetic chain +UBERON_0001016 nervous system UBERON_3010778 jugal ramule +UBERON_0001016 nervous system UBERON_3010794 oral ramule +UBERON_0001016 nervous system UBERON_3010795 preopercular ramule +UBERON_0001016 nervous system UBERON_3010796 ramus supraotic +UBERON_0001016 nervous system UBERON_3010798 ramulus suprabranchialis anterior +UBERON_0001016 nervous system UBERON_3010799 ramulus suprabranchialis posterior +UBERON_0001016 nervous system UBERON_3010801 ramus lateral +UBERON_0001016 nervous system UBERON_3010804 ramus ventral +UBERON_0001016 nervous system UBERON_6001060 insect embryonic brain +UBERON_0001016 nervous system UBERON_6001911 insect embryonic/larval nervous system +UBERON_0001016 nervous system UBERON_6001919 insect embryonic/larval central nervous system +UBERON_0001016 nervous system UBERON_6001920 insect embryonic/larval brain +UBERON_0001016 nervous system UBERON_6001925 insect embryonic/larval protocerebrum +UBERON_0001016 nervous system UBERON_6003559 insect adult nervous system +UBERON_0001016 nervous system UBERON_6003623 insect adult central nervous system +UBERON_0001016 nervous system UBERON_6003624 insect adult brain +UBERON_0001016 nervous system UBERON_6003626 insect supraesophageal ganglion +UBERON_0001016 nervous system UBERON_6003627 insect protocerebrum +UBERON_0001016 nervous system UBERON_6003632 insect adult central complex +UBERON_0001016 nervous system UBERON_6005096 insect stomatogastric nervous system +UBERON_0001016 nervous system UBERON_6005177 insect chaeta +UBERON_0001016 nervous system UBERON_6005805 insect Bolwig organ +UBERON_0001016 nervous system UBERON_6007070 insect centro-posterior medial synaptic neuropil domain +UBERON_0001016 nervous system UBERON_6007145 insect adult protocerebrum +UBERON_0001016 nervous system UBERON_6007231 insect external sensillum +UBERON_0001016 nervous system UBERON_6007232 insect eo-type sensillum +UBERON_0001016 nervous system UBERON_6007233 insect internal sensillum +UBERON_0001016 nervous system UBERON_6007240 insect embryonic/larval sensillum +UBERON_0001016 nervous system UBERON_6007242 insect embryonic/larval head sensillum +UBERON_0001016 nervous system UBERON_6040005 insect synaptic neuropil +UBERON_0001016 nervous system UBERON_6040007 insect synaptic neuropil domain +UBERON_0001016 nervous system UBERON_6041000 insect synaptic neuropil block +UBERON_0001016 nervous system UBERON_6110636 insect adult cerebral ganglion +UBERON_0001016 nervous system UBERON_8000004 central retina +UBERON_0001016 nervous system UBERON_8000005 Henle's fiber layer +UBERON_0001016 nervous system UBERON_8410006 submucous nerve plexus of anorectum +UBERON_0001016 nervous system UBERON_8410007 myenteric nerve plexus of anorectum +UBERON_0001016 nervous system UBERON_8410011 myenteric nerve plexus of appendix +UBERON_0001016 nervous system UBERON_8410012 submucous nerve plexus of appendix +UBERON_0001016 nervous system UBERON_8410049 serosal nerve fiber of appendix +UBERON_0001016 nervous system UBERON_8410058 myenteric nerve plexus of colon +UBERON_0001016 nervous system UBERON_8410059 submucous nerve plexus of colon +UBERON_0001016 nervous system UBERON_8410062 parasympathetic cholinergic nerve +UBERON_0001016 nervous system UBERON_8410063 myenteric nerve plexus of small intestine +UBERON_0001016 nervous system UBERON_8410064 submucous nerve plexus of small intestine +UBERON_0001016 nervous system UBERON_8440000 cortical layer II/III +UBERON_0001016 nervous system UBERON_8440001 cortical layer IV/V +UBERON_0001016 nervous system UBERON_8440002 cortical layer V/VI +UBERON_0001016 nervous system UBERON_8440003 cortical layer VIb +UBERON_0001016 nervous system UBERON_8440004 laminar subdivision of the cortex +UBERON_0001016 nervous system UBERON_8440005 rostral periventricular region of the third ventricle +UBERON_0001016 nervous system UBERON_8440007 periventricular hypothalamic nucleus, anterior part +UBERON_0001016 nervous system UBERON_8440008 periventricular hypothalamic nucleus, intermediate part +UBERON_0001016 nervous system UBERON_8440010 Brodmann (1909) area 17 +UBERON_0001016 nervous system UBERON_8440011 cortical visual area +UBERON_0001016 nervous system UBERON_8440012 cerebral nuclei +UBERON_0001016 nervous system UBERON_8440013 fasciola cinerea +UBERON_0001016 nervous system UBERON_8440014 ventrolateral preoptic nucleus +UBERON_0001016 nervous system UBERON_8440015 noradrenergic cell groups +UBERON_0001016 nervous system UBERON_8440016 noradrenergic cell group A1 +UBERON_0001016 nervous system UBERON_8440017 noradrenergiccell group A2 +UBERON_0001016 nervous system UBERON_8440018 noradrenergic cell group A4 +UBERON_0001016 nervous system UBERON_8440019 noradrenergic cell group A5 +UBERON_0001016 nervous system UBERON_8440021 noradrenergic cell group A7 +UBERON_0001016 nervous system UBERON_8440022 noradrenergic cell group A6sc +UBERON_0001016 nervous system UBERON_8440023 noradrenergic cell group Acg +UBERON_0001016 nervous system UBERON_8440024 visceral area +UBERON_0001016 nervous system UBERON_8440025 parapyramidal nucleus +UBERON_0001016 nervous system UBERON_8440026 parapyramidal nucleus, deep part +UBERON_0001016 nervous system UBERON_8440027 parapyramidal nucleus, superficial part +UBERON_0001016 nervous system UBERON_8440028 Perihypoglossal nuclei +UBERON_0001016 nervous system UBERON_8440029 rubroreticular tract +UBERON_0001016 nervous system UBERON_8440030 striatum-like amygdalar nuclei +UBERON_0001016 nervous system UBERON_8440031 medial corticohypothalmic tract +UBERON_0001016 nervous system UBERON_8440032 prelimbic area +UBERON_0001016 nervous system UBERON_8440033 infralimbic area +UBERON_0001016 nervous system UBERON_8440034 bulbocerebellar tract +UBERON_0001016 nervous system UBERON_8440035 sublaterodorsal nucleus +UBERON_0001016 nervous system UBERON_8440036 supratrigeminal nucleus +UBERON_0001016 nervous system UBERON_8440037 accessory facial motor nucleus +UBERON_0001016 nervous system UBERON_8440038 efferent vestibular nucleus +UBERON_0001016 nervous system UBERON_8440039 piriform-amygdalar area +UBERON_0001016 nervous system UBERON_8440040 dorsal peduncular area +UBERON_0001016 nervous system UBERON_8440041 tuberal nucleus (sensu Rodentia) +UBERON_0001016 nervous system UBERON_8440042 nucleus lateralis tuberis system (sensu Teleostei) +UBERON_0001016 nervous system UBERON_8440043 superior paraolivary nucleus +UBERON_0001016 nervous system UBERON_8480001 capillary of brain +UBERON_0001032 sensory system UBERON_0000003 naris +UBERON_0001032 sensory system UBERON_0000004 nose +UBERON_0001032 sensory system UBERON_0000004 olfactory apparatus +UBERON_0001032 sensory system UBERON_0000005 chemosensory organ +UBERON_0001032 sensory system UBERON_0000018 compound eye +UBERON_0001032 sensory system UBERON_0000019 camera-type eye +UBERON_0001032 sensory system UBERON_0000020 sense organ +UBERON_0001032 sensory system UBERON_0000046 stemma +UBERON_0001032 sensory system UBERON_0000047 simple eye +UBERON_0001032 sensory system UBERON_0000048 pinhole eye +UBERON_0001032 sensory system UBERON_0000049 spherical lensed eye +UBERON_0001032 sensory system UBERON_0000050 simple eye with multiple lenses +UBERON_0001032 sensory system UBERON_0000053 macula lutea +UBERON_0001032 sensory system UBERON_0000054 macula +UBERON_0001032 sensory system UBERON_0000207 compound eye corneal lens +UBERON_0001032 sensory system UBERON_0000389 lens cortex +UBERON_0001032 sensory system UBERON_0000390 lens nucleus +UBERON_0001032 sensory system UBERON_0000395 cochlear ganglion +UBERON_0001032 sensory system UBERON_0000396 vallate papilla +UBERON_0001032 sensory system UBERON_0000402 nasal vestibule +UBERON_0001032 sensory system UBERON_0000941 cranial nerve II +UBERON_0001032 sensory system UBERON_0000963 head sensillum +UBERON_0001032 sensory system UBERON_0000964 cornea +UBERON_0001032 sensory system UBERON_0000965 lens of camera-type eye +UBERON_0001032 sensory system UBERON_0000966 retina +UBERON_0001032 sensory system UBERON_0000970 eye +UBERON_0001032 sensory system UBERON_0000971 ommatidium +UBERON_0001032 sensory system UBERON_0001038 chordotonal organ +UBERON_0001032 sensory system UBERON_0001351 lacrimal sac +UBERON_0001032 sensory system UBERON_0001352 external acoustic meatus +UBERON_0001032 sensory system UBERON_0001457 skin of eyelid +UBERON_0001032 sensory system UBERON_0001459 skin of external ear +UBERON_0001032 sensory system UBERON_0001576 intrinsic muscle of tongue +UBERON_0001032 sensory system UBERON_0001578 orbicularis oculi muscle +UBERON_0001032 sensory system UBERON_0001583 extrinsic auricular muscle +UBERON_0001032 sensory system UBERON_0001595 auricular muscle +UBERON_0001032 sensory system UBERON_0001596 intrinsic auricular muscle +UBERON_0001032 sensory system UBERON_0001599 stapedius muscle +UBERON_0001032 sensory system UBERON_0001600 tensor tympani +UBERON_0001032 sensory system UBERON_0001601 extra-ocular muscle +UBERON_0001032 sensory system UBERON_0001602 medial rectus extraocular muscle +UBERON_0001032 sensory system UBERON_0001603 lateral rectus extra-ocular muscle +UBERON_0001032 sensory system UBERON_0001604 levator palpebrae superioris +UBERON_0001032 sensory system UBERON_0001605 ciliary muscle +UBERON_0001032 sensory system UBERON_0001606 muscle of iris +UBERON_0001032 sensory system UBERON_0001607 sphincter pupillae +UBERON_0001032 sensory system UBERON_0001608 dilatator pupillae +UBERON_0001032 sensory system UBERON_0001610 lingual artery +UBERON_0001032 sensory system UBERON_0001611 sublingual artery +UBERON_0001032 sensory system UBERON_0001620 central retinal artery +UBERON_0001032 sensory system UBERON_0001648 vestibulocochlear nerve +UBERON_0001032 sensory system UBERON_0001673 central retinal vein +UBERON_0001032 sensory system UBERON_0001681 nasal bone +UBERON_0001032 sensory system UBERON_0001686 auditory ossicle bone +UBERON_0001032 sensory system UBERON_0001687 stapes bone +UBERON_0001032 sensory system UBERON_0001688 incus bone +UBERON_0001032 sensory system UBERON_0001689 malleus bone +UBERON_0001032 sensory system UBERON_0001690 ear +UBERON_0001032 sensory system UBERON_0001691 external ear +UBERON_0001032 sensory system UBERON_0001706 nasal septum +UBERON_0001032 sensory system UBERON_0001707 nasal cavity +UBERON_0001032 sensory system UBERON_0001711 eyelid +UBERON_0001032 sensory system UBERON_0001712 upper eyelid +UBERON_0001032 sensory system UBERON_0001713 lower eyelid +UBERON_0001032 sensory system UBERON_0001721 inferior vestibular nucleus +UBERON_0001032 sensory system UBERON_0001722 medial vestibular nucleus +UBERON_0001032 sensory system UBERON_0001723 tongue +UBERON_0001032 sensory system UBERON_0001726 papilla of tongue +UBERON_0001032 sensory system UBERON_0001727 taste bud +UBERON_0001032 sensory system UBERON_0001750 lacrimal apparatus +UBERON_0001032 sensory system UBERON_0001756 middle ear +UBERON_0001032 sensory system UBERON_0001757 pinna +UBERON_0001032 sensory system UBERON_0001766 anterior chamber of eyeball +UBERON_0001032 sensory system UBERON_0001767 posterior chamber of eyeball +UBERON_0001032 sensory system UBERON_0001768 uvea +UBERON_0001032 sensory system UBERON_0001769 iris +UBERON_0001032 sensory system UBERON_0001770 lacrimal canaliculus +UBERON_0001032 sensory system UBERON_0001771 pupil +UBERON_0001032 sensory system UBERON_0001772 corneal epithelium +UBERON_0001032 sensory system UBERON_0001773 sclera +UBERON_0001032 sensory system UBERON_0001775 ciliary body +UBERON_0001032 sensory system UBERON_0001776 optic choroid +UBERON_0001032 sensory system UBERON_0001777 substantia propria of cornea +UBERON_0001032 sensory system UBERON_0001778 ciliary epithelium +UBERON_0001032 sensory system UBERON_0001779 iris stroma +UBERON_0001032 sensory system UBERON_0001781 layer of retina +UBERON_0001032 sensory system UBERON_0001782 pigmented layer of retina +UBERON_0001032 sensory system UBERON_0001783 optic disc +UBERON_0001032 sensory system UBERON_0001786 fovea centralis +UBERON_0001032 sensory system UBERON_0001787 photoreceptor layer of retina +UBERON_0001032 sensory system UBERON_0001788 outer limiting layer of retina +UBERON_0001032 sensory system UBERON_0001789 outer nuclear layer of retina +UBERON_0001032 sensory system UBERON_0001790 outer plexiform layer of retina +UBERON_0001032 sensory system UBERON_0001791 inner nuclear layer of retina +UBERON_0001032 sensory system UBERON_0001792 ganglionic layer of retina +UBERON_0001032 sensory system UBERON_0001793 nerve fiber layer of retina +UBERON_0001032 sensory system UBERON_0001794 inner limiting layer of retina +UBERON_0001032 sensory system UBERON_0001795 inner plexiform layer of retina +UBERON_0001032 sensory system UBERON_0001796 aqueous humor of eyeball +UBERON_0001032 sensory system UBERON_0001797 vitreous humor +UBERON_0001032 sensory system UBERON_0001798 vitreous body +UBERON_0001032 sensory system UBERON_0001799 vitreous chamber of eyeball +UBERON_0001032 sensory system UBERON_0001801 anterior segment of eyeball +UBERON_0001032 sensory system UBERON_0001802 posterior segment of eyeball +UBERON_0001032 sensory system UBERON_0001803 epithelium of lens +UBERON_0001032 sensory system UBERON_0001804 capsule of lens +UBERON_0001032 sensory system UBERON_0001811 conjunctiva +UBERON_0001032 sensory system UBERON_0001812 palpebral conjunctiva +UBERON_0001032 sensory system UBERON_0001817 lacrimal gland +UBERON_0001032 sensory system UBERON_0001818 tarsal gland +UBERON_0001032 sensory system UBERON_0001819 palpebral fissure +UBERON_0001032 sensory system UBERON_0001822 orbital septum +UBERON_0001032 sensory system UBERON_0001823 nasal cartilage +UBERON_0001032 sensory system UBERON_0001826 nasal cavity mucosa +UBERON_0001032 sensory system UBERON_0001839 bony labyrinth +UBERON_0001032 sensory system UBERON_0001840 semicircular canal +UBERON_0001032 sensory system UBERON_0001841 anterior semicircular canal +UBERON_0001032 sensory system UBERON_0001842 posterior semicircular canal +UBERON_0001032 sensory system UBERON_0001843 lateral semicircular canal +UBERON_0001032 sensory system UBERON_0001844 cochlea +UBERON_0001032 sensory system UBERON_0001845 perilymph +UBERON_0001032 sensory system UBERON_0001846 internal ear +UBERON_0001032 sensory system UBERON_0001847 lobule of pinna +UBERON_0001032 sensory system UBERON_0001848 auricular cartilage +UBERON_0001032 sensory system UBERON_0001849 membranous labyrinth +UBERON_0001032 sensory system UBERON_0001850 lacrimal drainage system +UBERON_0001032 sensory system UBERON_0001852 endolymph +UBERON_0001032 sensory system UBERON_0001853 utricle of membranous labyrinth +UBERON_0001032 sensory system UBERON_0001854 saccule of membranous labyrinth +UBERON_0001032 sensory system UBERON_0001855 cochlear duct of membranous labyrinth +UBERON_0001032 sensory system UBERON_0001856 semicircular duct +UBERON_0001032 sensory system UBERON_0001857 anterior semicircular duct +UBERON_0001032 sensory system UBERON_0001858 posterior semicircular duct +UBERON_0001032 sensory system UBERON_0001859 lateral semicircular duct +UBERON_0001032 sensory system UBERON_0001860 endolymphatic duct +UBERON_0001032 sensory system UBERON_0001861 ductus reuniens +UBERON_0001032 sensory system UBERON_0001862 vestibular labyrinth +UBERON_0001032 sensory system UBERON_0001863 scala vestibuli +UBERON_0001032 sensory system UBERON_0001864 scala tympani +UBERON_0001032 sensory system UBERON_0001865 cartilaginous external acoustic tube +UBERON_0001032 sensory system UBERON_0001867 cartilage of external ear +UBERON_0001032 sensory system UBERON_0001908 optic tract +UBERON_0001032 sensory system UBERON_0001927 medial geniculate body +UBERON_0001032 sensory system UBERON_0001985 corneal endothelium +UBERON_0001032 sensory system UBERON_0001997 olfactory epithelium +UBERON_0001032 sensory system UBERON_0002104 visual system +UBERON_0001032 sensory system UBERON_0002105 vestibulo-auditory system +UBERON_0001032 sensory system UBERON_0002109 pair of nares +UBERON_0001032 sensory system UBERON_0002128 superior olivary complex +UBERON_0001032 sensory system UBERON_0002162 area postrema +UBERON_0001032 sensory system UBERON_0002203 vasculature of eye +UBERON_0001032 sensory system UBERON_0002212 macula of saccule of membranous labyrinth +UBERON_0001032 sensory system UBERON_0002214 macula of utricle of membranous labyrinth +UBERON_0001032 sensory system UBERON_0002218 tympanic ring +UBERON_0001032 sensory system UBERON_0002219 subfornical organ +UBERON_0001032 sensory system UBERON_0002223 endolymphatic sac +UBERON_0001032 sensory system UBERON_0002226 basilar membrane of cochlea +UBERON_0001032 sensory system UBERON_0002227 spiral organ of cochlea +UBERON_0001032 sensory system UBERON_0002232 olfactory gland +UBERON_0001032 sensory system UBERON_0002233 tectorial membrane of cochlea +UBERON_0001032 sensory system UBERON_0002255 vomeronasal organ +UBERON_0001032 sensory system UBERON_0002268 olfactory organ +UBERON_0001032 sensory system UBERON_0002269 pupillary membrane +UBERON_0001032 sensory system UBERON_0002270 hyaloid artery +UBERON_0001032 sensory system UBERON_0002276 lamina of spiral limbus +UBERON_0001032 sensory system UBERON_0002277 spiral sulcus +UBERON_0001032 sensory system UBERON_0002278 perilymphatic space +UBERON_0001032 sensory system UBERON_0002279 vestibular aqueduct +UBERON_0001032 sensory system UBERON_0002280 otolith +UBERON_0001032 sensory system UBERON_0002281 vestibular membrane of cochlear duct +UBERON_0001032 sensory system UBERON_0002282 stria vascularis of cochlear duct +UBERON_0001032 sensory system UBERON_0002295 scala media +UBERON_0001032 sensory system UBERON_0002364 tympanic membrane +UBERON_0001032 sensory system UBERON_0002392 nasolacrimal duct +UBERON_0001032 sensory system UBERON_0002393 pharyngotympanic tube +UBERON_0001032 sensory system UBERON_0002443 choroidal blood vessel +UBERON_0001032 sensory system UBERON_0002444 lens fiber +UBERON_0001032 sensory system UBERON_0002448 fungiform papilla +UBERON_0001032 sensory system UBERON_0002467 filiform papilla +UBERON_0001032 sensory system UBERON_0002468 foliate papilla +UBERON_0001032 sensory system UBERON_0002479 dorsal lateral geniculate nucleus +UBERON_0001032 sensory system UBERON_0002488 helix of outer ear +UBERON_0001032 sensory system UBERON_0002496 stapes base +UBERON_0001032 sensory system UBERON_0002499 cochlear labyrinth +UBERON_0001032 sensory system UBERON_0002505 spiral modiolar artery +UBERON_0001032 sensory system UBERON_0002506 iris epithelium +UBERON_0001032 sensory system UBERON_0002518 otolith organ +UBERON_0001032 sensory system UBERON_0002519 otolithic part of statoconial membrane +UBERON_0001032 sensory system UBERON_0002536 arthropod sensillum +UBERON_0001032 sensory system UBERON_0002540 lateral line system +UBERON_0001032 sensory system UBERON_0002627 capsule of medial geniculate body +UBERON_0001032 sensory system UBERON_0002673 vestibular nuclear complex +UBERON_0001032 sensory system UBERON_0002689 supraoptic crest +UBERON_0001032 sensory system UBERON_0002758 dorsal nucleus of medial geniculate body +UBERON_0001032 sensory system UBERON_0002759 magnocellular nucleus of medial geniculate body +UBERON_0001032 sensory system UBERON_0002779 lateral superior olivary nucleus +UBERON_0001032 sensory system UBERON_0002782 medial superior olivary nucleus +UBERON_0001032 sensory system UBERON_0002819 apex of cochlea +UBERON_0001032 sensory system UBERON_0002820 zona arcuata of basilar membrane of cochlea +UBERON_0001032 sensory system UBERON_0002822 macula lutea proper +UBERON_0001032 sensory system UBERON_0002823 clivus of fovea centralis +UBERON_0001032 sensory system UBERON_0002824 vestibular ganglion +UBERON_0001032 sensory system UBERON_0002825 superior part of vestibular ganglion +UBERON_0001032 sensory system UBERON_0002826 inferior part of vestibular ganglion +UBERON_0001032 sensory system UBERON_0002827 vestibulocochlear ganglion +UBERON_0001032 sensory system UBERON_0002832 ventral nucleus of trapezoid body +UBERON_0001032 sensory system UBERON_0002833 medial nucleus of trapezoid body +UBERON_0001032 sensory system UBERON_0002971 periolivary nucleus +UBERON_0001032 sensory system UBERON_0002976 preolivary nucleus +UBERON_0001032 sensory system UBERON_0002985 ventral nucleus of medial geniculate body +UBERON_0001032 sensory system UBERON_0003065 ciliary marginal zone +UBERON_0001032 sensory system UBERON_0003069 otic placode +UBERON_0001032 sensory system UBERON_0003090 supraorbital lateral line +UBERON_0001032 sensory system UBERON_0003093 occipital lateral line +UBERON_0001032 sensory system UBERON_0003094 infraorbital lateral line +UBERON_0001032 sensory system UBERON_0003095 dorsal lateral line +UBERON_0001032 sensory system UBERON_0003096 middle lateral line +UBERON_0001032 sensory system UBERON_0003161 dorsal ocellus +UBERON_0001032 sensory system UBERON_0003162 lateral ocellus +UBERON_0001032 sensory system UBERON_0003211 median eye +UBERON_0001032 sensory system UBERON_0003212 gustatory organ +UBERON_0001032 sensory system UBERON_0003238 epithelium of superior semicircular canal +UBERON_0001032 sensory system UBERON_0003239 epithelium of posterior semicircular canal +UBERON_0001032 sensory system UBERON_0003240 epithelium of lateral semicircular canal +UBERON_0001032 sensory system UBERON_0003241 epithelium of utricle +UBERON_0001032 sensory system UBERON_0003242 epithelium of saccule +UBERON_0001032 sensory system UBERON_0003243 epithelium of cochlear duct +UBERON_0001032 sensory system UBERON_0003246 epithelium of endolymphatic sac +UBERON_0001032 sensory system UBERON_0003249 epithelium of otic placode +UBERON_0001032 sensory system UBERON_0003269 skeletal muscle tissue of eye +UBERON_0001032 sensory system UBERON_0003314 eye mesenchyme +UBERON_0001032 sensory system UBERON_0003325 mesenchyme of pinna +UBERON_0001032 sensory system UBERON_0003356 epithelium of nasal septum +UBERON_0001032 sensory system UBERON_0003357 epithelium of tongue +UBERON_0001032 sensory system UBERON_0003362 epithelium of endolymphatic duct +UBERON_0001032 sensory system UBERON_0003363 epithelium of ductus reuniens +UBERON_0001032 sensory system UBERON_0003367 epithelium of vomeronasal organ +UBERON_0001032 sensory system UBERON_0003386 smooth muscle of eye +UBERON_0001032 sensory system UBERON_0003407 cartilage of nasal septum +UBERON_0001032 sensory system UBERON_0003409 gland of tongue +UBERON_0001032 sensory system UBERON_0003415 mesenchyme of nasal septum +UBERON_0001032 sensory system UBERON_0003416 mesenchyme of tongue +UBERON_0001032 sensory system UBERON_0003421 mesenchyme of vomeronasal organ +UBERON_0001032 sensory system UBERON_0003484 eye sebaceous gland +UBERON_0001032 sensory system UBERON_0003500 corneal blood vessel +UBERON_0001032 sensory system UBERON_0003501 retina blood vessel +UBERON_0001032 sensory system UBERON_0003510 eyelid blood vessel +UBERON_0001032 sensory system UBERON_0003511 iris blood vessel +UBERON_0001032 sensory system UBERON_0003581 eyelid connective tissue +UBERON_0001032 sensory system UBERON_0003605 eye skin gland +UBERON_0001032 sensory system UBERON_0003723 vestibular nerve +UBERON_0001032 sensory system UBERON_0003844 upper eyelid epithelium +UBERON_0001032 sensory system UBERON_0003845 lower eyelid epithelium +UBERON_0001032 sensory system UBERON_0003857 upper eyelid mesenchyme +UBERON_0001032 sensory system UBERON_0003858 lower eyelid mesenchyme +UBERON_0001032 sensory system UBERON_0003902 retinal neural layer +UBERON_0001032 sensory system UBERON_0003925 photoreceptor inner segment layer +UBERON_0001032 sensory system UBERON_0003926 photoreceptor outer segment layer +UBERON_0001032 sensory system UBERON_0003942 somatic sensory system +UBERON_0001032 sensory system UBERON_0003950 inner ear canal +UBERON_0001032 sensory system UBERON_0003951 ocular fundus +UBERON_0001032 sensory system UBERON_0003952 anterior stroma of cornea +UBERON_0001032 sensory system UBERON_0003953 posterior stroma of cornea +UBERON_0001032 sensory system UBERON_0003956 aqueous drainage system +UBERON_0001032 sensory system UBERON_0003957 Bruch's membrane +UBERON_0001032 sensory system UBERON_0003966 gonial bone +UBERON_0001032 sensory system UBERON_0003976 saccule duct +UBERON_0001032 sensory system UBERON_0003977 utricle duct +UBERON_0001032 sensory system UBERON_0003979 utricle valve +UBERON_0001032 sensory system UBERON_0004000 tarsal gland acinus +UBERON_0001032 sensory system UBERON_0004012 golgi tendon organ +UBERON_0001032 sensory system UBERON_0004019 baroreceptor +UBERON_0001032 sensory system UBERON_0004029 canal of Schlemm +UBERON_0001032 sensory system UBERON_0004030 aqueous vein +UBERON_0001032 sensory system UBERON_0004043 semicircular canal ampulla +UBERON_0001032 sensory system UBERON_0004101 nasolabial region +UBERON_0001032 sensory system UBERON_0004106 crus of ear +UBERON_0001032 sensory system UBERON_0004110 midnasal cavity +UBERON_0001032 sensory system UBERON_0004113 muscle of auditory ossicle +UBERON_0001032 sensory system UBERON_0004114 tympanic cavity +UBERON_0001032 sensory system UBERON_0004115 blood vessel of tympanic cavity +UBERON_0001032 sensory system UBERON_0004116 nerve of tympanic cavity +UBERON_0001032 sensory system UBERON_0004118 vasculature of iris +UBERON_0001032 sensory system UBERON_0004187 Harderian gland +UBERON_0001032 sensory system UBERON_0004234 iris smooth muscle +UBERON_0001032 sensory system UBERON_0004277 eye muscle +UBERON_0001032 sensory system UBERON_0004367 Descemet's membrane +UBERON_0001032 sensory system UBERON_0004370 anterior limiting lamina of cornea +UBERON_0001032 sensory system UBERON_0004505 skeletal muscle tissue of orbicularis oculi +UBERON_0001032 sensory system UBERON_0004508 skeletal muscle tissue of levator palpebrae superioris +UBERON_0001032 sensory system UBERON_0004548 left eye +UBERON_0001032 sensory system UBERON_0004549 right eye +UBERON_0001032 sensory system UBERON_0004637 otic capsule +UBERON_0001032 sensory system UBERON_0004650 tongue keratinized epithelium +UBERON_0001032 sensory system UBERON_0004681 vestibular system +UBERON_0001032 sensory system UBERON_0004692 external naris epithelium +UBERON_0001032 sensory system UBERON_0004694 Harderian gland epithelium +UBERON_0001032 sensory system UBERON_0004721 crista ampullaris +UBERON_0001032 sensory system UBERON_0004724 medial palpebral ligament +UBERON_0001032 sensory system UBERON_0004727 cochlear nerve +UBERON_0001032 sensory system UBERON_0004771 posterior nasal aperture +UBERON_0001032 sensory system UBERON_0004772 eyelid tarsus +UBERON_0001032 sensory system UBERON_0004773 superior eyelid tarsus +UBERON_0001032 sensory system UBERON_0004774 inferior eyelid tarsus +UBERON_0001032 sensory system UBERON_0004817 lacrimal gland epithelium +UBERON_0001032 sensory system UBERON_0004859 eye gland +UBERON_0001032 sensory system UBERON_0004864 vasculature of retina +UBERON_0001032 sensory system UBERON_0004868 tapetum lucidum of camera-type eye +UBERON_0001032 sensory system UBERON_0004904 neuron projection bundle connecting eye with brain +UBERON_0001032 sensory system UBERON_0005017 mucosa of lacrimal sac +UBERON_0001032 sensory system UBERON_0005018 mucosa of nasal septum +UBERON_0001032 sensory system UBERON_0005020 mucosa of tongue +UBERON_0001032 sensory system UBERON_0005026 mucosa of middle ear +UBERON_0001032 sensory system UBERON_0005029 mucosa of lacrimal canaliculus +UBERON_0001032 sensory system UBERON_0005042 inner epithelial layer of tympanic membrane +UBERON_0001032 sensory system UBERON_0005043 mucosa of nasolacrimal duct +UBERON_0001032 sensory system UBERON_0005044 mucosa of pharyngotympanic tube +UBERON_0001032 sensory system UBERON_0005067 amphid sensory organ +UBERON_0001032 sensory system UBERON_0005236 osseus labyrinth vestibule +UBERON_0001032 sensory system UBERON_0005336 capillary layer of choroid +UBERON_0001032 sensory system UBERON_0005342 malleus head +UBERON_0001032 sensory system UBERON_0005354 malleus processus brevis +UBERON_0001032 sensory system UBERON_0005355 malleus neck +UBERON_0001032 sensory system UBERON_0005384 nasal cavity epithelium +UBERON_0001032 sensory system UBERON_0005385 nasal cavity respiratory epithelium +UBERON_0001032 sensory system UBERON_0005386 olfactory segment of nasal mucosa +UBERON_0001032 sensory system UBERON_0005388 photoreceptor array +UBERON_0001032 sensory system UBERON_0005389 transparent eye structure +UBERON_0001032 sensory system UBERON_0005410 cartilaginous otic capsule +UBERON_0001032 sensory system UBERON_0005411 bony otic capsule +UBERON_0001032 sensory system UBERON_0005427 corneal primordium +UBERON_0001032 sensory system UBERON_0005492 hyaloid vessel +UBERON_0001032 sensory system UBERON_0005600 crus commune +UBERON_0001032 sensory system UBERON_0005606 hyaloid cavity +UBERON_0001032 sensory system UBERON_0005611 inner canthus +UBERON_0001032 sensory system UBERON_0005614 lens anterior epithelium +UBERON_0001032 sensory system UBERON_0005615 lens equatorial epithelium +UBERON_0001032 sensory system UBERON_0005625 tubotympanic recess lumen +UBERON_0001032 sensory system UBERON_0005638 anterior chamber epithelium +UBERON_0001032 sensory system UBERON_0005657 crus commune epithelium +UBERON_0001032 sensory system UBERON_0005725 olfactory system +UBERON_0001032 sensory system UBERON_0005726 chemosensory system +UBERON_0001032 sensory system UBERON_0005870 olfactory pit +UBERON_0001032 sensory system UBERON_0005908 conjunctival sac +UBERON_0001032 sensory system UBERON_0005928 external naris +UBERON_0001032 sensory system UBERON_0005931 primary choana +UBERON_0001032 sensory system UBERON_0005969 eye trabecular meshwork +UBERON_0001032 sensory system UBERON_0005972 tunnel of Corti +UBERON_0001032 sensory system UBERON_0005973 blood-inner ear barrier +UBERON_0001032 sensory system UBERON_0006010 hyaloid canal +UBERON_0001032 sensory system UBERON_0006011 hyaloid vein +UBERON_0001032 sensory system UBERON_0006106 cochlear canal +UBERON_0001032 sensory system UBERON_0006203 conchal part of pinna +UBERON_0001032 sensory system UBERON_0006206 iridocorneal angle +UBERON_0001032 sensory system UBERON_0006208 auditory hillocks +UBERON_0001032 sensory system UBERON_0006230 extrinsic ocular pre-muscle mass +UBERON_0001032 sensory system UBERON_0006248 incus pre-cartilage condensation +UBERON_0001032 sensory system UBERON_0006253 embryonic intraretinal space +UBERON_0001032 sensory system UBERON_0006259 lens pit +UBERON_0001032 sensory system UBERON_0006262 malleus pre-cartilage condensation +UBERON_0001032 sensory system UBERON_0006266 nasolacrimal groove +UBERON_0001032 sensory system UBERON_0006273 otic pit +UBERON_0001032 sensory system UBERON_0006276 perioptic mesenchyme +UBERON_0001032 sensory system UBERON_0006294 stapes pre-cartilage condensation +UBERON_0001032 sensory system UBERON_0006311 chamber of eyeball +UBERON_0001032 sensory system UBERON_0006312 ocular refractive media +UBERON_0001032 sensory system UBERON_0006318 orbitalis muscle +UBERON_0001032 sensory system UBERON_0006320 inferior oblique extraocular muscle +UBERON_0001032 sensory system UBERON_0006321 superior oblique extraocular muscle +UBERON_0001032 sensory system UBERON_0006322 inferior rectus extraocular muscle +UBERON_0001032 sensory system UBERON_0006323 superior rectus extraocular muscle +UBERON_0001032 sensory system UBERON_0006330 anterior lingual gland +UBERON_0001032 sensory system UBERON_0006332 nasal capsule +UBERON_0001032 sensory system UBERON_0006334 posterior lateral line +UBERON_0001032 sensory system UBERON_0006345 stapedial artery +UBERON_0001032 sensory system UBERON_0006360 tongue intermolar eminence +UBERON_0001032 sensory system UBERON_0006495 osseus cochlear canal +UBERON_0001032 sensory system UBERON_0006496 external acoustic meatus osseus part +UBERON_0001032 sensory system UBERON_0006531 oculomotor muscle +UBERON_0001032 sensory system UBERON_0006532 oblique extraocular muscle +UBERON_0001032 sensory system UBERON_0006533 rectus extraocular muscle +UBERON_0001032 sensory system UBERON_0006582 statolith +UBERON_0001032 sensory system UBERON_0006583 statocyst +UBERON_0001032 sensory system UBERON_0006585 vestibular organ +UBERON_0001032 sensory system UBERON_0006586 otolymph +UBERON_0001032 sensory system UBERON_0006616 right external ear +UBERON_0001032 sensory system UBERON_0006617 left external ear +UBERON_0001032 sensory system UBERON_0006688 sublingual caruncle +UBERON_0001032 sensory system UBERON_0006689 frenulum of tongue +UBERON_0001032 sensory system UBERON_0006699 foramen cecum of tongue +UBERON_0001032 sensory system UBERON_0006722 manubrium of malleus +UBERON_0001032 sensory system UBERON_0006723 cochlear modiolus +UBERON_0001032 sensory system UBERON_0006724 osseus spiral lamina +UBERON_0001032 sensory system UBERON_0006725 spiral ligament +UBERON_0001032 sensory system UBERON_0006726 outer canthus +UBERON_0001032 sensory system UBERON_0006742 canthus +UBERON_0001032 sensory system UBERON_0006761 corneo-scleral junction +UBERON_0001032 sensory system UBERON_0006762 suspensory ligament of lens +UBERON_0001032 sensory system UBERON_0006763 epithelium of conjunctiva +UBERON_0001032 sensory system UBERON_0006813 nasal skeleton +UBERON_0001032 sensory system UBERON_0006837 tegmen tympani +UBERON_0001032 sensory system UBERON_0006906 ala of nose +UBERON_0001032 sensory system UBERON_0006916 non-keratinized epithelium of tongue +UBERON_0001032 sensory system UBERON_0006918 parakeratinized epithelium of tongue +UBERON_0001032 sensory system UBERON_0006919 tongue squamous epithelium +UBERON_0001032 sensory system UBERON_0006932 vestibular epithelium +UBERON_0001032 sensory system UBERON_0006935 crista ampullaris neuroepithelium +UBERON_0001032 sensory system UBERON_0006937 inner ear epithelium +UBERON_0001032 sensory system UBERON_0006938 pinna surface epithelium +UBERON_0001032 sensory system UBERON_0007037 mechanosensory system +UBERON_0001032 sensory system UBERON_0007163 superior nasal meatus +UBERON_0001032 sensory system UBERON_0007223 osseus cochlea +UBERON_0001032 sensory system UBERON_0007227 superior vestibular nucleus +UBERON_0001032 sensory system UBERON_0007228 vestibular nucleus +UBERON_0001032 sensory system UBERON_0007230 lateral vestibular nucleus +UBERON_0001032 sensory system UBERON_0007247 nucleus of superior olivary complex +UBERON_0001032 sensory system UBERON_0007250 lingual tonsil +UBERON_0001032 sensory system UBERON_0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth +UBERON_0001032 sensory system UBERON_0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth +UBERON_0001032 sensory system UBERON_0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth +UBERON_0001032 sensory system UBERON_0007352 stria vascularis vasculature +UBERON_0001032 sensory system UBERON_0007354 cartilage of pharyngotympanic tube +UBERON_0001032 sensory system UBERON_0007355 bony part of pharyngotympanic tube +UBERON_0001032 sensory system UBERON_0007367 surface of tongue +UBERON_0001032 sensory system UBERON_0007371 superior surface of tongue +UBERON_0001032 sensory system UBERON_0007373 inferior surface of tongue +UBERON_0001032 sensory system UBERON_0007374 incus cartilage element +UBERON_0001032 sensory system UBERON_0007619 limiting membrane of retina +UBERON_0001032 sensory system UBERON_0007622 pecten oculi +UBERON_0001032 sensory system UBERON_0007625 pigment epithelium of eye +UBERON_0001032 sensory system UBERON_0007633 nucleus of trapezoid body +UBERON_0001032 sensory system UBERON_0007691 gustatory pore +UBERON_0001032 sensory system UBERON_0007770 osphradium +UBERON_0001032 sensory system UBERON_0007804 sclerotic ring +UBERON_0001032 sensory system UBERON_0007818 major alar cartilage +UBERON_0001032 sensory system UBERON_0007819 minor alar cartilage +UBERON_0001032 sensory system UBERON_0007820 accessory nasal cartilage +UBERON_0001032 sensory system UBERON_0007821 lateral nasal cartilage +UBERON_0001032 sensory system UBERON_0007822 vomeronasal cartilage +UBERON_0001032 sensory system UBERON_0007825 reticular membrane of spiral organ +UBERON_0001032 sensory system UBERON_0007827 external nose +UBERON_0001032 sensory system UBERON_0007833 osseus semicircular canal +UBERON_0001032 sensory system UBERON_0008340 nasal bridge +UBERON_0001032 sensory system UBERON_0008341 columella nasi +UBERON_0001032 sensory system UBERON_0008522 nasal muscle +UBERON_0001032 sensory system UBERON_0008582 superior longitudinal muscle of tongue +UBERON_0001032 sensory system UBERON_0008583 transverse muscle of tongue +UBERON_0001032 sensory system UBERON_0008584 vertical muscle of tongue +UBERON_0001032 sensory system UBERON_0008588 procerus +UBERON_0001032 sensory system UBERON_0008589 depressor septi nasi +UBERON_0001032 sensory system UBERON_0008603 helicis major +UBERON_0001032 sensory system UBERON_0008604 helicis minor +UBERON_0001032 sensory system UBERON_0008605 tragicus muscle +UBERON_0001032 sensory system UBERON_0008606 antitragicus muscle +UBERON_0001032 sensory system UBERON_0008607 transverse muscle of auricle +UBERON_0001032 sensory system UBERON_0008608 oblique muscle of auricle +UBERON_0001032 sensory system UBERON_0008813 helicotrema +UBERON_0001032 sensory system UBERON_0008831 inner spiral sulcus +UBERON_0001032 sensory system UBERON_0008832 outer spiral sulcus +UBERON_0001032 sensory system UBERON_0008879 ligament of pinna +UBERON_0001032 sensory system UBERON_0008904 neuromast +UBERON_0001032 sensory system UBERON_0008906 lateral line nerve +UBERON_0001032 sensory system UBERON_0008917 ampullary organ +UBERON_0001032 sensory system UBERON_0008918 ampulla of Lorenzini +UBERON_0001032 sensory system UBERON_0008921 substratum of layer of retina +UBERON_0001032 sensory system UBERON_0008922 sublaminar layer S1 +UBERON_0001032 sensory system UBERON_0008923 sublaminar layer S2 +UBERON_0001032 sensory system UBERON_0008924 sublaminar layer S3 +UBERON_0001032 sensory system UBERON_0008925 sublaminar layer S4 +UBERON_0001032 sensory system UBERON_0008926 sublaminar layer S5 +UBERON_0001032 sensory system UBERON_0008927 sublaminar layers S1 or S2 +UBERON_0001032 sensory system UBERON_0008928 sublaminar layers S2 or S3 +UBERON_0001032 sensory system UBERON_0008929 sublaminar layers S4 or S5 +UBERON_0001032 sensory system UBERON_0008959 auditory bulla +UBERON_0001032 sensory system UBERON_0009016 ciliary stroma +UBERON_0001032 sensory system UBERON_0009038 sulcus ampullaris +UBERON_0001032 sensory system UBERON_0009053 dorsal nucleus of trapezoid body +UBERON_0001032 sensory system UBERON_0009121 vomeronasal nerve +UBERON_0001032 sensory system UBERON_0009471 dorsum of tongue +UBERON_0001032 sensory system UBERON_0009477 associated mesenchyme of otic placode +UBERON_0001032 sensory system UBERON_0009506 mesenchyme of middle ear +UBERON_0001032 sensory system UBERON_0009647 tympanic membrane epithelium +UBERON_0001032 sensory system UBERON_0009648 eyelid subcutaneous connective tissue +UBERON_0001032 sensory system UBERON_0009671 nasal fin +UBERON_0001032 sensory system UBERON_0009672 oronasal membrane +UBERON_0001032 sensory system UBERON_0009692 lumen of pharyngotympanic tube +UBERON_0001032 sensory system UBERON_0009716 cupular organ +UBERON_0001032 sensory system UBERON_0009717 coronal organ +UBERON_0001032 sensory system UBERON_0009731 sublaminar layers S3 or S4 +UBERON_0001032 sensory system UBERON_0009732 sublaminar layers S1 or S2 or S5 +UBERON_0001032 sensory system UBERON_0009733 sublaminar layers S1 or S2 or S3 +UBERON_0001032 sensory system UBERON_0009734 sublaminar layers S2 or S3 or S4 +UBERON_0001032 sensory system UBERON_0009735 sublaminar layers S1 or S3 or S4 +UBERON_0001032 sensory system UBERON_0009736 sublaminar layers S3 or S4 or S5 +UBERON_0001032 sensory system UBERON_0009737 sublaminar layers S1 or S2 or S3 or S4 +UBERON_0001032 sensory system UBERON_0009738 border of sublaminar layers S1 and S2 +UBERON_0001032 sensory system UBERON_0009739 border of sublaminar layers S3 and S4 +UBERON_0001032 sensory system UBERON_0009740 border between sublaminar layers +UBERON_0001032 sensory system UBERON_0009851 border of sublaminar layers S4 and S5 +UBERON_0001032 sensory system UBERON_0009852 border of sublaminar layers S2 and S3 +UBERON_0001032 sensory system UBERON_0009892 ascidian anterior sensory vesicle +UBERON_0001032 sensory system UBERON_0009893 ascidian ocellus +UBERON_0001032 sensory system UBERON_0009954 vomeronasal system +UBERON_0001032 sensory system UBERON_0009956 corpuscle of de Quatrefage +UBERON_0001032 sensory system UBERON_0010020 tubotympanic recess epithelium +UBERON_0001032 sensory system UBERON_0010032 anterior part of tongue +UBERON_0001032 sensory system UBERON_0010033 posterior part of tongue +UBERON_0001032 sensory system UBERON_0010052 mucosa of dorsum of tongue +UBERON_0001032 sensory system UBERON_0010054 malleus cartilage element +UBERON_0001032 sensory system UBERON_0010055 stapes cartilage element +UBERON_0001032 sensory system UBERON_0010062 pharyngotympanic tube epithelium +UBERON_0001032 sensory system UBERON_0010063 tympanic cavity epithelium +UBERON_0001032 sensory system UBERON_0010065 auditory meatus epithelium +UBERON_0001032 sensory system UBERON_0010069 outer epithelial layer of tympanic membrane +UBERON_0001032 sensory system UBERON_0010070 intermediate layer of tympanic membrane +UBERON_0001032 sensory system UBERON_0010071 layer of tympanic membrane +UBERON_0001032 sensory system UBERON_0010078 optic choroid vascular plexus +UBERON_0001032 sensory system UBERON_0010135 sensory circumventricular organ +UBERON_0001032 sensory system UBERON_0010202 lateral line +UBERON_0001032 sensory system UBERON_0010207 nictitating membrane +UBERON_0001032 sensory system UBERON_0010209 plica semilunaris of conjunctiva +UBERON_0001032 sensory system UBERON_0010223 left pupil +UBERON_0001032 sensory system UBERON_0010224 right pupil +UBERON_0001032 sensory system UBERON_0010230 eyeball of camera-type eye +UBERON_0001032 sensory system UBERON_0010244 choroid tapetum lucidum +UBERON_0001032 sensory system UBERON_0010245 retinal tapetum lucidum +UBERON_0001032 sensory system UBERON_0010246 choroidal guanine tapetum +UBERON_0001032 sensory system UBERON_0010247 choroidal tapetum cellulosum +UBERON_0001032 sensory system UBERON_0010248 choroidal tapetum fibrosum +UBERON_0001032 sensory system UBERON_0010271 musculus retractor bulbi +UBERON_0001032 sensory system UBERON_0010284 lacrimal punctum +UBERON_0001032 sensory system UBERON_0010289 scleral cartilage +UBERON_0001032 sensory system UBERON_0010290 scleral ossicle +UBERON_0001032 sensory system UBERON_0010291 layer of sclera +UBERON_0001032 sensory system UBERON_0010292 episcleral layer of eyeball +UBERON_0001032 sensory system UBERON_0010293 suprachoroid lamina +UBERON_0001032 sensory system UBERON_0010294 scleral endothelium +UBERON_0001032 sensory system UBERON_0010295 substantia propria of sclera +UBERON_0001032 sensory system UBERON_0010296 scleral skeletal element +UBERON_0001032 sensory system UBERON_0010297 endochondral scleral ossicle +UBERON_0001032 sensory system UBERON_0010298 intramembranous scleral ossicle +UBERON_0001032 sensory system UBERON_0010305 subdivision of conjunctiva +UBERON_0001032 sensory system UBERON_0010306 bulbar conjunctiva +UBERON_0001032 sensory system UBERON_0010307 conjunctival fornix +UBERON_0001032 sensory system UBERON_0010308 os opticus +UBERON_0001032 sensory system UBERON_0010309 palpebral bone +UBERON_0001032 sensory system UBERON_0010310 nictitating membrane lamina +UBERON_0001032 sensory system UBERON_0010311 scleral sesamoid bone +UBERON_0001032 sensory system UBERON_0010330 eyelid mesenchyme +UBERON_0001032 sensory system UBERON_0010349 otic capsule pre-cartilage condensation +UBERON_0001032 sensory system UBERON_0010366 conjunctival vasculature +UBERON_0001032 sensory system UBERON_0010367 conjunctival vein +UBERON_0001032 sensory system UBERON_0010379 superior tarsal muscle +UBERON_0001032 sensory system UBERON_0010409 ocular surface region +UBERON_0001032 sensory system UBERON_0010425 internal naris +UBERON_0001032 sensory system UBERON_0010426 oropharyngeal choana +UBERON_0001032 sensory system UBERON_0010427 ciliary processes +UBERON_0001032 sensory system UBERON_0010515 brille +UBERON_0001032 sensory system UBERON_0010521 electroreceptor organ +UBERON_0001032 sensory system UBERON_0010887 tragus +UBERON_0001032 sensory system UBERON_0010893 median external naris +UBERON_0001032 sensory system UBERON_0010910 opisthotic +UBERON_0001032 sensory system UBERON_0010929 stapedius pre-muscle condensation +UBERON_0001032 sensory system UBERON_0010935 tensor tympani pre-muscle condensation +UBERON_0001032 sensory system UBERON_0010953 nasalis muscle +UBERON_0001032 sensory system UBERON_0011060 perilymphatic channel +UBERON_0001032 sensory system UBERON_0011078 endolymphatic space +UBERON_0001032 sensory system UBERON_0011167 septomaxilla bone +UBERON_0001032 sensory system UBERON_0011186 Krause's gland +UBERON_0001032 sensory system UBERON_0011221 ora serrata of retina +UBERON_0001032 sensory system UBERON_0011222 intra-ocular muscle +UBERON_0001032 sensory system UBERON_0011255 Eimer's organ +UBERON_0001032 sensory system UBERON_0011256 rhinarium +UBERON_0001032 sensory system UBERON_0011287 rostral organ +UBERON_0001032 sensory system UBERON_0011385 parotidoauricular muscle +UBERON_0001032 sensory system UBERON_0011599 lenticular process of incus bone +UBERON_0001032 sensory system UBERON_0011774 utriculosaccular duct +UBERON_0001032 sensory system UBERON_0011857 acinus of lacrimal gland +UBERON_0001032 sensory system UBERON_0011859 internal acoustic meatus +UBERON_0001032 sensory system UBERON_0011865 corneal stroma collagen fibril +UBERON_0001032 sensory system UBERON_0011876 body of tongue +UBERON_0001032 sensory system UBERON_0011877 margin of tongue +UBERON_0001032 sensory system UBERON_0011892 anterior uvea +UBERON_0001032 sensory system UBERON_0011918 line of Schwalbe +UBERON_0001032 sensory system UBERON_0011922 cochlear basement membrane +UBERON_0001032 sensory system UBERON_0011931 nasal hair +UBERON_0001032 sensory system UBERON_0012128 nose tip +UBERON_0001032 sensory system UBERON_0012278 gland of nasal mucosa +UBERON_0001032 sensory system UBERON_0012304 nasal diverticulum +UBERON_0001032 sensory system UBERON_0012305 marginal cutaneous pouch of ear +UBERON_0001032 sensory system UBERON_0012430 tunica fibrosa of eyeball +UBERON_0001032 sensory system UBERON_0013120 eyelid submuscular connective tissue +UBERON_0001032 sensory system UBERON_0013174 sigmoid process of tympanic bone +UBERON_0001032 sensory system UBERON_0013190 entotympanic bone +UBERON_0001032 sensory system UBERON_0013201 olfactory pathway +UBERON_0001032 sensory system UBERON_0013208 Grueneberg ganglion +UBERON_0001032 sensory system UBERON_0013211 cerumen gland +UBERON_0001032 sensory system UBERON_0013224 Ciaccio's gland +UBERON_0001032 sensory system UBERON_0013226 accessory lacrimal gland +UBERON_0001032 sensory system UBERON_0013227 crypt of Henle +UBERON_0001032 sensory system UBERON_0013228 sweat gland of eyelid +UBERON_0001032 sensory system UBERON_0013229 eyelid gland +UBERON_0001032 sensory system UBERON_0013230 nictitans gland +UBERON_0001032 sensory system UBERON_0013231 sebaceous gland of eyelid +UBERON_0001032 sensory system UBERON_0013233 supraorbital gland +UBERON_0001032 sensory system UBERON_0013397 stratum argenteum of choroid +UBERON_0001032 sensory system UBERON_0013398 choroidal gland +UBERON_0001032 sensory system UBERON_0013399 blood vessel layer of choroid +UBERON_0001032 sensory system UBERON_0013475 gustatory gland +UBERON_0001032 sensory system UBERON_0013476 dermal layer of tongue +UBERON_0001032 sensory system UBERON_0013477 blowhole +UBERON_0001032 sensory system UBERON_0013598 accessory nucleus of optic tract +UBERON_0001032 sensory system UBERON_0013599 dorsal accessory nucleus of optic tract +UBERON_0001032 sensory system UBERON_0013600 lateral accessory nucleus of optic tract +UBERON_0001032 sensory system UBERON_0013601 medial accessory nucleus of optic tract +UBERON_0001032 sensory system UBERON_0013606 magnocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0001032 sensory system UBERON_0013607 parvocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0001032 sensory system UBERON_0013615 koniocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0001032 sensory system UBERON_0013638 horny papilla of tongue +UBERON_0001032 sensory system UBERON_0013639 mechanical papilla of tongue +UBERON_0001032 sensory system UBERON_0013679 inner canthus of right eye +UBERON_0001032 sensory system UBERON_0013680 inner canthus of left eye +UBERON_0001032 sensory system UBERON_0013682 peripheral region of retina +UBERON_0001032 sensory system UBERON_0013731 basilar papilla +UBERON_0001032 sensory system UBERON_0013732 vestibule of nasal cavity +UBERON_0001032 sensory system UBERON_0013764 common crus of semicircular duct +UBERON_0001032 sensory system UBERON_0013766 epicanthal fold +UBERON_0001032 sensory system UBERON_0014389 gustatory papilla of tongue +UBERON_0001032 sensory system UBERON_0014397 lateral process of malleus +UBERON_0001032 sensory system UBERON_0014451 tongue taste bud +UBERON_0001032 sensory system UBERON_0014452 gustatory epithelium of tongue +UBERON_0001032 sensory system UBERON_0014521 anterodorsal nucleus of medial geniculate body +UBERON_0001032 sensory system UBERON_0014624 basis modioli +UBERON_0001032 sensory system UBERON_0014626 base of cochlear canal +UBERON_0001032 sensory system UBERON_0014628 vestibular fissure of the cochlear canal +UBERON_0001032 sensory system UBERON_0014629 terminal part of the cochlear canal +UBERON_0001032 sensory system UBERON_0014698 lacrimal caruncle +UBERON_0001032 sensory system UBERON_0014790 lingual septum +UBERON_0001032 sensory system UBERON_0015016 stapes endochondral element +UBERON_0001032 sensory system UBERON_0015017 incus endochondral element +UBERON_0001032 sensory system UBERON_0015018 malleus endochondral element +UBERON_0001032 sensory system UBERON_0015120 right outer canthus +UBERON_0001032 sensory system UBERON_0015121 left outer canthus +UBERON_0001032 sensory system UBERON_0015147 pinna hair +UBERON_0001032 sensory system UBERON_0015151 Harderian gland duct +UBERON_0001032 sensory system UBERON_0015155 conjunctival space +UBERON_0001032 sensory system UBERON_0015165 multi-unit eye +UBERON_0001032 sensory system UBERON_0015169 tapetum +UBERON_0001032 sensory system UBERON_0015170 nauplius eye +UBERON_0001032 sensory system UBERON_0015216 nasal meatus +UBERON_0001032 sensory system UBERON_0015219 middle nasal meatus +UBERON_0001032 sensory system UBERON_0015220 inferior nasal meatus +UBERON_0001032 sensory system UBERON_0015221 common nasal meatus +UBERON_0001032 sensory system UBERON_0015222 ventral nasal meatus +UBERON_0001032 sensory system UBERON_0015223 dorsal nasal meatus +UBERON_0001032 sensory system UBERON_0015245 septal olfactory organ +UBERON_0001032 sensory system UBERON_0015246 septal organ of Masera +UBERON_0001032 sensory system UBERON_0015430 levator auris longus muscle +UBERON_0001032 sensory system UBERON_0015445 anterior lingual gland duct +UBERON_0001032 sensory system UBERON_0015476 nose skin +UBERON_0001032 sensory system UBERON_0015751 inferior tarsal muscle +UBERON_0001032 sensory system UBERON_0015784 duct of olfactory gland +UBERON_0001032 sensory system UBERON_0015785 acinus of olfactory gland +UBERON_0001032 sensory system UBERON_0015786 respiratory segment of nasal mucosa +UBERON_0001032 sensory system UBERON_0015788 olfactory apparatus chamber +UBERON_0001032 sensory system UBERON_0015807 ear epithelium +UBERON_0001032 sensory system UBERON_0015808 eye epithelium +UBERON_0001032 sensory system UBERON_0015813 middle ear epithelium +UBERON_0001032 sensory system UBERON_0015814 outer ear epithelium +UBERON_0001032 sensory system UBERON_0015885 cymba conchae of pinna +UBERON_0001032 sensory system UBERON_0016459 posterior pole of lens +UBERON_0001032 sensory system UBERON_0016464 dorsum of nose +UBERON_0001032 sensory system UBERON_0016466 antihelix +UBERON_0001032 sensory system UBERON_0016467 antitragus +UBERON_0001032 sensory system UBERON_0016490 auditory system +UBERON_0001032 sensory system UBERON_0016567 statoconial membrane +UBERON_0001032 sensory system UBERON_0016568 gelatinous layer of statoconial membrane +UBERON_0001032 sensory system UBERON_0016569 subcupular meshwork of statoconial membrane +UBERON_0001032 sensory system UBERON_0016611 auditory hillocks, pharyngeal arch 1 derived +UBERON_0001032 sensory system UBERON_0016612 auditory hillocks, pharyngeal arch 2 derived +UBERON_0001032 sensory system UBERON_0016621 lunge feeding organ +UBERON_0001032 sensory system UBERON_0016622 lunge feeding organ papilla +UBERON_0001032 sensory system UBERON_0016637 lateral periolivary nucleus +UBERON_0001032 sensory system UBERON_0016843 lateral nucleus of trapezoid body +UBERON_0001032 sensory system UBERON_0017629 mormyromast organ +UBERON_0001032 sensory system UBERON_0018104 parafoveal part of retina +UBERON_0001032 sensory system UBERON_0018105 perifoveal part of retina +UBERON_0001032 sensory system UBERON_0018107 foveola of retina +UBERON_0001032 sensory system UBERON_0018108 superior auricular muscle +UBERON_0001032 sensory system UBERON_0018109 anterior auricular muscle +UBERON_0001032 sensory system UBERON_0018110 posterior auricular muscle +UBERON_0001032 sensory system UBERON_0018152 pars flaccida of tympanic membrane +UBERON_0001032 sensory system UBERON_0018153 pars tensa of tympanic membrane +UBERON_0001032 sensory system UBERON_0018154 ligament of middle ear +UBERON_0001032 sensory system UBERON_0018155 posterior incudal ligament +UBERON_0001032 sensory system UBERON_0018156 malleal ligament +UBERON_0001032 sensory system UBERON_0018157 lateral malleal ligament +UBERON_0001032 sensory system UBERON_0018158 superior malleal ligament +UBERON_0001032 sensory system UBERON_0018159 anterior malleal ligament +UBERON_0001032 sensory system UBERON_0018160 anterior process of malleus +UBERON_0001032 sensory system UBERON_0018231 labyrinthine artery +UBERON_0001032 sensory system UBERON_0018233 gland of Zeis +UBERON_0001032 sensory system UBERON_0018323 hyoid articular area +UBERON_0001032 sensory system UBERON_0018339 metotic fissure +UBERON_0001032 sensory system UBERON_0018356 rostral entotympanic element +UBERON_0001032 sensory system UBERON_0018357 sensory pore +UBERON_0001032 sensory system UBERON_0018369 upper lateral line +UBERON_0001032 sensory system UBERON_0018370 ventral lateral line +UBERON_0001032 sensory system UBERON_0018374 sallet +UBERON_0001032 sensory system UBERON_0018389 interoceptor +UBERON_0001032 sensory system UBERON_0018391 chemoreceptor +UBERON_0001032 sensory system UBERON_0018392 arterial baroreceptor +UBERON_0001032 sensory system UBERON_0018393 low-pressure baroreceptor +UBERON_0001032 sensory system UBERON_0018394 vein baroreceptor +UBERON_0001032 sensory system UBERON_0018395 cardiac baroreceptor +UBERON_0001032 sensory system UBERON_0018396 pulmonary baroreceptor +UBERON_0001032 sensory system UBERON_0018508 foramen of nasal bone +UBERON_0001032 sensory system UBERON_0018655 pars endotympanica +UBERON_0001032 sensory system UBERON_0018663 recessus basilaris +UBERON_0001032 sensory system UBERON_0019206 tongue papilla epithelium +UBERON_0001032 sensory system UBERON_0019207 chorioretinal region +UBERON_0001032 sensory system UBERON_0019208 anterior pole of lens +UBERON_0001032 sensory system UBERON_0019210 pole of lens +UBERON_0001032 sensory system UBERON_0019211 supcapsular region of anterior region of lens +UBERON_0001032 sensory system UBERON_0019212 supcapsular region of posterior region of lens +UBERON_0001032 sensory system UBERON_0019254 upper eyelash +UBERON_0001032 sensory system UBERON_0019255 lower eyelash +UBERON_0001032 sensory system UBERON_0019304 sensory organ epithelium +UBERON_0001032 sensory system UBERON_0019306 nose epithelium +UBERON_0001032 sensory system UBERON_0019307 epithelium of external nose +UBERON_0001032 sensory system UBERON_0019315 meibum +UBERON_0001032 sensory system UBERON_0019324 intraorbital lacrimal gland +UBERON_0001032 sensory system UBERON_0019325 exorbital lacrimal gland +UBERON_0001032 sensory system UBERON_0022273 lacrimal lake +UBERON_0001032 sensory system UBERON_0022274 lacrimal papilla +UBERON_0001032 sensory system UBERON_0022279 strand of hair on external ear +UBERON_0001032 sensory system UBERON_0022284 lacrimal gland bud +UBERON_0001032 sensory system UBERON_0022287 tear film +UBERON_0001032 sensory system UBERON_0022288 surface of eyeball +UBERON_0001032 sensory system UBERON_0022434 primary superior olive +UBERON_0001032 sensory system UBERON_0022437 dorsal periolivary nucleus +UBERON_0001032 sensory system UBERON_0023094 posterodorsal nucleus of medial geniculate body +UBERON_0001032 sensory system UBERON_0023541 conical papilla +UBERON_0001032 sensory system UBERON_0028194 spiral prominence of cochlear duct +UBERON_0001032 sensory system UBERON_0034670 palatal taste bud +UBERON_0001032 sensory system UBERON_0034717 integumental taste bud +UBERON_0001032 sensory system UBERON_0034718 barbel taste bud +UBERON_0001032 sensory system UBERON_0034719 lip taste bud +UBERON_0001032 sensory system UBERON_0034720 head taste bud +UBERON_0001032 sensory system UBERON_0034721 pharyngeal taste bud +UBERON_0001032 sensory system UBERON_0034722 mouth roof taste bud +UBERON_0001032 sensory system UBERON_0034723 fin taste bud +UBERON_0001032 sensory system UBERON_0034724 esophageal taste bud +UBERON_0001032 sensory system UBERON_0034726 trunk taste bud +UBERON_0001032 sensory system UBERON_0034772 margin of eyelid +UBERON_0001032 sensory system UBERON_0034934 Weber's gland +UBERON_0001032 sensory system UBERON_0034935 pars plicata of ciliary body +UBERON_0001032 sensory system UBERON_0034936 pars plana of ciliary body +UBERON_0001032 sensory system UBERON_0035034 eyelid epithelium +UBERON_0001032 sensory system UBERON_0035036 naris epithelium +UBERON_0001032 sensory system UBERON_0035077 lateral nasal gland +UBERON_0001032 sensory system UBERON_0035130 auditory ossicle endochondral element +UBERON_0001032 sensory system UBERON_0035131 auditory ossicle cartilage element +UBERON_0001032 sensory system UBERON_0035132 auditory ossicle pre-cartilage element +UBERON_0001032 sensory system UBERON_0035174 right ear +UBERON_0001032 sensory system UBERON_0035295 left ear +UBERON_0001032 sensory system UBERON_0035555 lateral line sense organ +UBERON_0001032 sensory system UBERON_0035570 tectothalamic tract +UBERON_0001032 sensory system UBERON_0035594 accessory optic system +UBERON_0001032 sensory system UBERON_0035595 accessory optic tract +UBERON_0001032 sensory system UBERON_0035606 cartilage of external acoustic meatus +UBERON_0001032 sensory system UBERON_0035806 Hensen stripe +UBERON_0001032 sensory system UBERON_0035930 retro-olivary nucleus +UBERON_0001032 sensory system UBERON_0035941 Kimura membrane +UBERON_0001032 sensory system UBERON_0035964 promontory of tympanic cavity +UBERON_0001032 sensory system UBERON_0035966 scleral lamina cribrosa +UBERON_0001032 sensory system UBERON_0036167 Sattler's layer +UBERON_0001032 sensory system UBERON_0036168 Haller's layer +UBERON_0001032 sensory system UBERON_0036212 intertragic incisure +UBERON_0001032 sensory system UBERON_0036249 zona pectinata of basilar membrane of cochlea +UBERON_0001032 sensory system UBERON_0036250 zone of basilar membrane of cochlea +UBERON_0001032 sensory system UBERON_0036254 piriform aperture +UBERON_0001032 sensory system UBERON_0036255 interoceptive system +UBERON_0001032 sensory system UBERON_0036265 conjunctival papilla +UBERON_0001032 sensory system UBERON_0036300 tributary of central retinal vein +UBERON_0001032 sensory system UBERON_0036925 wall of eyeball +UBERON_0001032 sensory system UBERON_0036990 wall of pharyngotympanic tube +UBERON_0001032 sensory system UBERON_0037191 wall of membranous labyrinth +UBERON_0001032 sensory system UBERON_0037237 wall of lacrimal duct +UBERON_0001032 sensory system UBERON_1000004 collection of hair on external ear +UBERON_0001032 sensory system UBERON_1000005 external ear margin +UBERON_0001032 sensory system UBERON_1000012 nose anterior margin +UBERON_0001032 sensory system UBERON_1000013 nose vertex +UBERON_0001032 sensory system UBERON_1000017 tip of external ear +UBERON_0001032 sensory system UBERON_1000022 Zymbal's gland +UBERON_0001032 sensory system UBERON_1500003 lateral line canal lumen +UBERON_0001032 sensory system UBERON_2000116 macula lagena +UBERON_0001032 sensory system UBERON_2000120 lateral line ganglion +UBERON_0001032 sensory system UBERON_2000125 mandibular lateral line neuromast +UBERON_0001032 sensory system UBERON_2000136 otic lateral line neuromast +UBERON_0001032 sensory system UBERON_2000168 anterior macula +UBERON_0001032 sensory system UBERON_2000175 posterior lateral line nerve +UBERON_0001032 sensory system UBERON_2000225 lateral crista primordium +UBERON_0001032 sensory system UBERON_2000228 lateral line primordium +UBERON_0001032 sensory system UBERON_2000232 lateral semicircular canal primordium +UBERON_0001032 sensory system UBERON_2000234 macula neglecta +UBERON_0001032 sensory system UBERON_2000259 mandibular lateral line +UBERON_0001032 sensory system UBERON_2000315 asteriscus +UBERON_0001032 sensory system UBERON_2000411 posterior crista primordium +UBERON_0001032 sensory system UBERON_2000412 posterior semicircular canal primordium +UBERON_0001032 sensory system UBERON_2000424 opercular lateral line +UBERON_0001032 sensory system UBERON_2000425 anterior lateral line nerve +UBERON_0001032 sensory system UBERON_2000464 otic lateral line +UBERON_0001032 sensory system UBERON_2000469 anterior semicircular canal primordium +UBERON_0001032 sensory system UBERON_2000530 lapillus +UBERON_0001032 sensory system UBERON_2000558 posterior macula +UBERON_0001032 sensory system UBERON_2000676 sagitta +UBERON_0001032 sensory system UBERON_2000813 infraorbital lateral line neuromast +UBERON_0001032 sensory system UBERON_2000814 opercular lateral line neuromast +UBERON_0001032 sensory system UBERON_2000939 middle lateral line neuromast +UBERON_0001032 sensory system UBERON_2000940 posterior lateral line neuromast +UBERON_0001032 sensory system UBERON_2001025 occipital lateral line neuromast +UBERON_0001032 sensory system UBERON_2001026 supraorbital lateral line neuromast +UBERON_0001032 sensory system UBERON_2001156 posterior lateral line placode +UBERON_0001032 sensory system UBERON_2001157 posterior lateral line primordium +UBERON_0001032 sensory system UBERON_2001312 dorsal anterior lateral line ganglion +UBERON_0001032 sensory system UBERON_2001313 ventral anterior lateral line ganglion +UBERON_0001032 sensory system UBERON_2001314 posterior lateral line ganglion +UBERON_0001032 sensory system UBERON_2001316 anterior lateral line placode +UBERON_0001032 sensory system UBERON_2001391 anterior lateral line ganglion +UBERON_0001032 sensory system UBERON_2001426 posterior naris +UBERON_0001032 sensory system UBERON_2001427 anterior naris +UBERON_0001032 sensory system UBERON_2001428 olfactory rosette +UBERON_0001032 sensory system UBERON_2001432 anterior sclerotic bone +UBERON_0001032 sensory system UBERON_2001433 posterior sclerotic bone +UBERON_0001032 sensory system UBERON_2001468 anterior lateral line system +UBERON_0001032 sensory system UBERON_2001470 anterior lateral line +UBERON_0001032 sensory system UBERON_2001471 posterior lateral line system +UBERON_0001032 sensory system UBERON_2001472 anterior lateral line neuromast +UBERON_0001032 sensory system UBERON_2001480 dorsal anterior lateral line nerve +UBERON_0001032 sensory system UBERON_2001481 ventral anterior lateral line nerve +UBERON_0001032 sensory system UBERON_2001482 middle lateral line nerve +UBERON_0001032 sensory system UBERON_2001483 middle lateral line ganglion +UBERON_0001032 sensory system UBERON_2001612 sensory canal +UBERON_0001032 sensory system UBERON_2001617 trunk sensory canal +UBERON_0001032 sensory system UBERON_2001619 post-otic sensory canal +UBERON_0001032 sensory system UBERON_2001629 otic sensory canal +UBERON_0001032 sensory system UBERON_2001630 supratemporal sensory canal +UBERON_0001032 sensory system UBERON_2001810 supraorbital sensory canal +UBERON_0001032 sensory system UBERON_2001811 infraorbital sensory canal +UBERON_0001032 sensory system UBERON_2001812 preoperculo-mandibular sensory canal +UBERON_0001032 sensory system UBERON_2001813 preopercular sensory canal +UBERON_0001032 sensory system UBERON_2001814 mandibular sensory canal +UBERON_0001032 sensory system UBERON_2001824 lateral line scale +UBERON_0001032 sensory system UBERON_2001872 trunk sensory canal system +UBERON_0001032 sensory system UBERON_2001873 head sensory canal system +UBERON_0001032 sensory system UBERON_2001933 sensory canal tubule +UBERON_0001032 sensory system UBERON_2002099 lateral line scale series +UBERON_0001032 sensory system UBERON_2002193 dorsolateral septum +UBERON_0001032 sensory system UBERON_2002206 macula communis +UBERON_0001032 sensory system UBERON_2002223 pillar of the semicircular canal +UBERON_0001032 sensory system UBERON_2002248 supratemporal commissure +UBERON_0001032 sensory system UBERON_2002275 Jakubowski's organ +UBERON_0001032 sensory system UBERON_2005054 inner optic circle +UBERON_0001032 sensory system UBERON_2005113 dorsal lateral line neuromast +UBERON_0001032 sensory system UBERON_2005114 middle lateral line system +UBERON_0001032 sensory system UBERON_2005115 primary posterior lateral line primordium +UBERON_0001032 sensory system UBERON_2005116 secondary posterior lateral line primordium +UBERON_0001032 sensory system UBERON_2005117 anterior lateral line primordium +UBERON_0001032 sensory system UBERON_2005118 middle lateral line primordium +UBERON_0001032 sensory system UBERON_2005121 middle lateral line placode +UBERON_0001032 sensory system UBERON_2005144 ampullary nerve +UBERON_0001032 sensory system UBERON_2005227 protoneuromast +UBERON_0001032 sensory system UBERON_2005409 pars superior ear +UBERON_0001032 sensory system UBERON_2005410 pars inferior ear +UBERON_0001032 sensory system UBERON_2005411 common crus +UBERON_0001032 sensory system UBERON_2005412 transverse canal +UBERON_0001032 sensory system UBERON_2005415 inner ear foramen +UBERON_0001032 sensory system UBERON_2005416 sacculoagenar foramen +UBERON_0001032 sensory system UBERON_2007054 pillar of the anterior semicircular canal +UBERON_0001032 sensory system UBERON_2007055 pillar of the lateral semicircular canal +UBERON_0001032 sensory system UBERON_3000002 alary cartilage +UBERON_0001032 sensory system UBERON_3000015 anterior maxillary process +UBERON_0001032 sensory system UBERON_3000016 anterior nasal wall +UBERON_0001032 sensory system UBERON_3000057 canalis semicircularis anterior +UBERON_0001032 sensory system UBERON_3000059 capsular process +UBERON_0001032 sensory system UBERON_3000068 cartilago ectochoanalis +UBERON_0001032 sensory system UBERON_3000069 cartilago infranarina +UBERON_0001032 sensory system UBERON_3000079 cartilago retronarina +UBERON_0001032 sensory system UBERON_3000085 cavum inferius +UBERON_0001032 sensory system UBERON_3000086 cavum internasale +UBERON_0001032 sensory system UBERON_3000087 cavum medius +UBERON_0001032 sensory system UBERON_3000088 cavum praenasale +UBERON_0001032 sensory system UBERON_3000089 cavum principale +UBERON_0001032 sensory system UBERON_3000110 crista contacta +UBERON_0001032 sensory system UBERON_3000113 crista intermedia +UBERON_0001032 sensory system UBERON_3000117 crista subnasalis +UBERON_0001032 sensory system UBERON_3000118 crista supraorbitalis +UBERON_0001032 sensory system UBERON_3000141 endolymphatic system +UBERON_0001032 sensory system UBERON_3000155 extremitas anterior +UBERON_0001032 sensory system UBERON_3000160 fenestra dorsalis nasi +UBERON_0001032 sensory system UBERON_3000161 fenestra endochoanalis +UBERON_0001032 sensory system UBERON_3000162 fenestra endonarina communis +UBERON_0001032 sensory system UBERON_3000164 fenestra lateralis nasi +UBERON_0001032 sensory system UBERON_3000166 fenestra nasobasalis +UBERON_0001032 sensory system UBERON_3000167 fenestra nasolateralis +UBERON_0001032 sensory system UBERON_3000170 fenestra precerebralis +UBERON_0001032 sensory system UBERON_3000171 fenestra prechoanalis +UBERON_0001032 sensory system UBERON_3000178 footplate of pars media plectri +UBERON_0001032 sensory system UBERON_3000189 foramen orbitonasale laterale +UBERON_0001032 sensory system UBERON_3000190 foramen orbitonasale mediale +UBERON_0001032 sensory system UBERON_3000234 inferior prenasal cartilage +UBERON_0001032 sensory system UBERON_3000259 lamina inferior +UBERON_0001032 sensory system UBERON_3000260 lamina nariochoanalis +UBERON_0001032 sensory system UBERON_3000263 lamina precerebralis +UBERON_0001032 sensory system UBERON_3000264 lamina superior +UBERON_0001032 sensory system UBERON_3000290 medial inferior prenasal cartilage +UBERON_0001032 sensory system UBERON_3000291 medial orbitonasal foramen +UBERON_0001032 sensory system UBERON_3000294 median prenasal process +UBERON_0001032 sensory system UBERON_3000316 nasal opening +UBERON_0001032 sensory system UBERON_3000329 oblique cartilage +UBERON_0001032 sensory system UBERON_3000333 olfactory foramen +UBERON_0001032 sensory system UBERON_3000381 paranasal commissure +UBERON_0001032 sensory system UBERON_3000389 paries nasi +UBERON_0001032 sensory system UBERON_3000393 pars amphibiorum +UBERON_0001032 sensory system UBERON_3000395 pars basilaris +UBERON_0001032 sensory system UBERON_3000399 pars externa plectri +UBERON_0001032 sensory system UBERON_3000405 pars inferior of labyrinth +UBERON_0001032 sensory system UBERON_3000406 pars interna plectri +UBERON_0001032 sensory system UBERON_3000408 pars media plectri +UBERON_0001032 sensory system UBERON_3000428 perilymphatic system +UBERON_0001032 sensory system UBERON_3000434 planum antorbitale +UBERON_0001032 sensory system UBERON_3000437 planum conchale +UBERON_0001032 sensory system UBERON_3000438 planum internasale +UBERON_0001032 sensory system UBERON_3000440 planum terminale +UBERON_0001032 sensory system UBERON_3000441 planum triangulare +UBERON_0001032 sensory system UBERON_3000443 plectral apparatus +UBERON_0001032 sensory system UBERON_3000448 posterior maxillary process +UBERON_0001032 sensory system UBERON_3000449 posterior maxillary process dorsal process +UBERON_0001032 sensory system UBERON_3000454 postnasal wall +UBERON_0001032 sensory system UBERON_3000486 processus ascendens plectri +UBERON_0001032 sensory system UBERON_3000492 processus infrafenestralis +UBERON_0001032 sensory system UBERON_3000509 processus suprafenestralis +UBERON_0001032 sensory system UBERON_3000538 recessus fenestrae ovalis +UBERON_0001032 sensory system UBERON_3000547 rostral process +UBERON_0001032 sensory system UBERON_3000560 septum semicircularium anterior +UBERON_0001032 sensory system UBERON_3000561 septum semicircularium laterale +UBERON_0001032 sensory system UBERON_3000562 septum semircularium posterior +UBERON_0001032 sensory system UBERON_3000563 seydels palatal process +UBERON_0001032 sensory system UBERON_3000565 skeletal support for eminentia olfactoria +UBERON_0001032 sensory system UBERON_3000569 solum nasi +UBERON_0001032 sensory system UBERON_3000570 spatium sacculare +UBERON_0001032 sensory system UBERON_3000580 stylus of pars media plectri +UBERON_0001032 sensory system UBERON_3000586 superior prenasal cartilage +UBERON_0001032 sensory system UBERON_3000601 tectum nasi +UBERON_0001032 sensory system UBERON_3000644 processus lingularis of nasal skeleton +UBERON_0001032 sensory system UBERON_3000645 corpus +UBERON_0001032 sensory system UBERON_3000646 margo libera +UBERON_0001032 sensory system UBERON_3000647 crista interna +UBERON_0001032 sensory system UBERON_3000648 crista praeopercularis +UBERON_0001032 sensory system UBERON_3010007 pit organ +UBERON_0001032 sensory system UBERON_3010079 upper eyelid protuberances +UBERON_0001032 sensory system UBERON_3010105 anterodorsal lateral line nerve (ADLLN) +UBERON_0001032 sensory system UBERON_3010109 anteroventral lateral line nerve (AVLLN) +UBERON_0001032 sensory system UBERON_3010115 posterior lateral line nerve (PLLN) +UBERON_0001032 sensory system UBERON_3010125 musculus levator bulbi +UBERON_0001032 sensory system UBERON_3010126 middle lateral line nerve (MLLN) +UBERON_0001032 sensory system UBERON_3010146 lacrimal +UBERON_0001032 sensory system UBERON_3010197 lateral recess +UBERON_0001032 sensory system UBERON_3010706 lateral line nucleus +UBERON_0001032 sensory system UBERON_3010728 otic opercular element +UBERON_0001032 sensory system UBERON_3010735 ramus anterior of CN VIII +UBERON_0001032 sensory system UBERON_3010736 ramus posterior of CN VIII +UBERON_0001032 sensory system UBERON_3010757 ramus superficial ophthalmic +UBERON_0001032 sensory system UBERON_3010759 ramus buccal +UBERON_0001032 sensory system UBERON_3010765 ramus mandibularis externus +UBERON_0001032 sensory system UBERON_3010778 jugal ramule +UBERON_0001032 sensory system UBERON_3010794 oral ramule +UBERON_0001032 sensory system UBERON_3010795 preopercular ramule +UBERON_0001032 sensory system UBERON_3010796 ramus supraotic +UBERON_0001032 sensory system UBERON_3010798 ramulus suprabranchialis anterior +UBERON_0001032 sensory system UBERON_3010799 ramulus suprabranchialis posterior +UBERON_0001032 sensory system UBERON_3010801 ramus lateral +UBERON_0001032 sensory system UBERON_3010804 ramus ventral +UBERON_0001032 sensory system UBERON_3010827 anterior prenasal cartilage +UBERON_0001032 sensory system UBERON_4200199 sallet sensory system +UBERON_0001032 sensory system UBERON_4300005 aphakic space +UBERON_0001032 sensory system UBERON_4300126 tectorial restraint system +UBERON_0001032 sensory system UBERON_4300176 parietal branch of the supraorbital canal +UBERON_0001032 sensory system UBERON_4300181 posterior sclerotic cartilage +UBERON_0001032 sensory system UBERON_4300182 anterior sclerotic cartilage +UBERON_0001032 sensory system UBERON_4300238 pored lateral line scale +UBERON_0001032 sensory system UBERON_4300241 ethmoid commissure +UBERON_0001032 sensory system UBERON_4300242 lateral line scale 6 +UBERON_0001032 sensory system UBERON_6002639 insect larval sense organ +UBERON_0001032 sensory system UBERON_6002642 insect embryonic/larval ocular segment sensillum +UBERON_0001032 sensory system UBERON_6005168 insect external sensory organ +UBERON_0001032 sensory system UBERON_6005177 insect chaeta +UBERON_0001032 sensory system UBERON_6005805 insect Bolwig organ +UBERON_0001032 sensory system UBERON_6007231 insect external sensillum +UBERON_0001032 sensory system UBERON_6007232 insect eo-type sensillum +UBERON_0001032 sensory system UBERON_6007233 insect internal sensillum +UBERON_0001032 sensory system UBERON_6007240 insect embryonic/larval sensillum +UBERON_0001032 sensory system UBERON_6007242 insect embryonic/larval head sensillum +UBERON_0001032 sensory system UBERON_6007280 insect embryonic/larval head sense organ +UBERON_0001032 sensory system UBERON_6007373 insect internal sense organ +UBERON_0001032 sensory system UBERON_7500073 left nasal bone +UBERON_0001032 sensory system UBERON_7500074 right nasal bone +UBERON_0001032 sensory system UBERON_8000004 central retina +UBERON_0001032 sensory system UBERON_8000005 Henle's fiber layer +UBERON_0001032 sensory system UBERON_8440043 superior paraolivary nucleus +UBERON_0001033 gustatory system UBERON_0000396 vallate papilla +UBERON_0001033 gustatory system UBERON_0000929 pharyngeal branch of vagus nerve +UBERON_0001033 gustatory system UBERON_0001576 intrinsic muscle of tongue +UBERON_0001033 gustatory system UBERON_0001610 lingual artery +UBERON_0001033 gustatory system UBERON_0001611 sublingual artery +UBERON_0001033 gustatory system UBERON_0001647 facial nerve +UBERON_0001033 gustatory system UBERON_0001649 glossopharyngeal nerve +UBERON_0001033 gustatory system UBERON_0001723 tongue +UBERON_0001033 gustatory system UBERON_0001726 papilla of tongue +UBERON_0001033 gustatory system UBERON_0001727 taste bud +UBERON_0001033 gustatory system UBERON_0001759 vagus nerve +UBERON_0001033 gustatory system UBERON_0002009 pulmonary nerve plexus +UBERON_0001033 gustatory system UBERON_0002448 fungiform papilla +UBERON_0001033 gustatory system UBERON_0002467 filiform papilla +UBERON_0001033 gustatory system UBERON_0002468 foliate papilla +UBERON_0001033 gustatory system UBERON_0002926 gustatory epithelium +UBERON_0001033 gustatory system UBERON_0003212 gustatory organ +UBERON_0001033 gustatory system UBERON_0003357 epithelium of tongue +UBERON_0001033 gustatory system UBERON_0003409 gland of tongue +UBERON_0001033 gustatory system UBERON_0003416 mesenchyme of tongue +UBERON_0001033 gustatory system UBERON_0003535 vagus X nerve trunk +UBERON_0001033 gustatory system UBERON_0003716 recurrent laryngeal nerve +UBERON_0001033 gustatory system UBERON_0004650 tongue keratinized epithelium +UBERON_0001033 gustatory system UBERON_0005020 mucosa of tongue +UBERON_0001033 gustatory system UBERON_0006330 anterior lingual gland +UBERON_0001033 gustatory system UBERON_0006360 tongue intermolar eminence +UBERON_0001033 gustatory system UBERON_0006688 sublingual caruncle +UBERON_0001033 gustatory system UBERON_0006689 frenulum of tongue +UBERON_0001033 gustatory system UBERON_0006699 foramen cecum of tongue +UBERON_0001033 gustatory system UBERON_0006916 non-keratinized epithelium of tongue +UBERON_0001033 gustatory system UBERON_0006918 parakeratinized epithelium of tongue +UBERON_0001033 gustatory system UBERON_0006919 tongue squamous epithelium +UBERON_0001033 gustatory system UBERON_0007250 lingual tonsil +UBERON_0001033 gustatory system UBERON_0007367 surface of tongue +UBERON_0001033 gustatory system UBERON_0007371 superior surface of tongue +UBERON_0001033 gustatory system UBERON_0007373 inferior surface of tongue +UBERON_0001033 gustatory system UBERON_0007691 gustatory pore +UBERON_0001033 gustatory system UBERON_0008582 superior longitudinal muscle of tongue +UBERON_0001033 gustatory system UBERON_0008583 transverse muscle of tongue +UBERON_0001033 gustatory system UBERON_0008584 vertical muscle of tongue +UBERON_0001033 gustatory system UBERON_0008833 great auricular nerve +UBERON_0001033 gustatory system UBERON_0009009 carotid sinus nerve +UBERON_0001033 gustatory system UBERON_0009471 dorsum of tongue +UBERON_0001033 gustatory system UBERON_0009673 accessory XI nerve cranial component +UBERON_0001033 gustatory system UBERON_0009675 chorda tympani branch of facial nerve +UBERON_0001033 gustatory system UBERON_0010032 anterior part of tongue +UBERON_0001033 gustatory system UBERON_0010033 posterior part of tongue +UBERON_0001033 gustatory system UBERON_0010052 mucosa of dorsum of tongue +UBERON_0001033 gustatory system UBERON_0011315 digastric branch of facial nerve +UBERON_0001033 gustatory system UBERON_0011316 nerve to stylohyoid from facial nerve +UBERON_0001033 gustatory system UBERON_0011317 nerve to stylopharyngeus from glossopharyngeal nerve +UBERON_0001033 gustatory system UBERON_0011326 superior laryngeal nerve +UBERON_0001033 gustatory system UBERON_0011766 left recurrent laryngeal nerve +UBERON_0001033 gustatory system UBERON_0011767 right recurrent laryngeal nerve +UBERON_0001033 gustatory system UBERON_0011876 body of tongue +UBERON_0001033 gustatory system UBERON_0011877 margin of tongue +UBERON_0001033 gustatory system UBERON_0013475 gustatory gland +UBERON_0001033 gustatory system UBERON_0013476 dermal layer of tongue +UBERON_0001033 gustatory system UBERON_0013638 horny papilla of tongue +UBERON_0001033 gustatory system UBERON_0013639 mechanical papilla of tongue +UBERON_0001033 gustatory system UBERON_0014389 gustatory papilla of tongue +UBERON_0001033 gustatory system UBERON_0014451 tongue taste bud +UBERON_0001033 gustatory system UBERON_0014452 gustatory epithelium of tongue +UBERON_0001033 gustatory system UBERON_0014453 gustatory epithelium of palate +UBERON_0001033 gustatory system UBERON_0014760 gustatory nucleus +UBERON_0001033 gustatory system UBERON_0014790 lingual septum +UBERON_0001033 gustatory system UBERON_0015445 anterior lingual gland duct +UBERON_0001033 gustatory system UBERON_0018412 vidian nerve +UBERON_0001033 gustatory system UBERON_0019206 tongue papilla epithelium +UBERON_0001033 gustatory system UBERON_0023541 conical papilla +UBERON_0001033 gustatory system UBERON_0034670 palatal taste bud +UBERON_0001033 gustatory system UBERON_0034717 integumental taste bud +UBERON_0001033 gustatory system UBERON_0034718 barbel taste bud +UBERON_0001033 gustatory system UBERON_0034719 lip taste bud +UBERON_0001033 gustatory system UBERON_0034720 head taste bud +UBERON_0001033 gustatory system UBERON_0034721 pharyngeal taste bud +UBERON_0001033 gustatory system UBERON_0034722 mouth roof taste bud +UBERON_0001033 gustatory system UBERON_0034723 fin taste bud +UBERON_0001033 gustatory system UBERON_0034724 esophageal taste bud +UBERON_0001033 gustatory system UBERON_0034726 trunk taste bud +UBERON_0001033 gustatory system UBERON_0034934 Weber's gland +UBERON_0001033 gustatory system UBERON_0035020 left vagus X nerve trunk +UBERON_0001033 gustatory system UBERON_0035021 right vagus X nerve trunk +UBERON_0001033 gustatory system UBERON_0035647 posterior auricular nerve +UBERON_0001033 gustatory system UBERON_0035648 nerve innervating pinna +UBERON_0001033 gustatory system UBERON_0036216 tympanic nerve +UBERON_0001033 gustatory system UBERON_3010720 ramus hyomandibularis +UBERON_0001033 gustatory system UBERON_3010722 ramus palatinus +UBERON_0001033 gustatory system UBERON_3010726 ramus muscularis of glossopharyngeus nerve +UBERON_0001033 gustatory system UBERON_3010740 ramus auricularis of the vagus nerve +UBERON_0001033 gustatory system UBERON_3010750 descending branch of the vagus nerve +UBERON_0001033 gustatory system UBERON_3010751 ramus muscularis of vagus nerve +UBERON_0001033 gustatory system UBERON_3010754 ramus recurrens +UBERON_0001033 gustatory system UBERON_3010764 laryngeus ventralis +UBERON_0002193 hemolymphoid system CL_0000084 CD4-positive T cell +UBERON_0002193 hemolymphoid system CL_0000084 CD8-positive T cell +UBERON_0002193 hemolymphoid system CL_0000236 B cell +UBERON_0002193 hemolymphoid system CL_0000542 EBV-transformed lymphocyte +UBERON_0002193 hemolymphoid system UBERON_0000029 lymph node +UBERON_0002193 hemolymphoid system UBERON_0000040 Leydig's organ +UBERON_0002193 hemolymphoid system UBERON_0000178 blood +UBERON_0002193 hemolymphoid system UBERON_0000179 haemolymphatic fluid +UBERON_0002193 hemolymphoid system UBERON_0000332 yellow bone marrow +UBERON_0002193 hemolymphoid system UBERON_0000361 red bone marrow +UBERON_0002193 hemolymphoid system UBERON_0000444 lymphoid follicle +UBERON_0002193 hemolymphoid system UBERON_0001097 axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0001211 Peyer's patch +UBERON_0002193 hemolymphoid system UBERON_0001248 hilum of spleen +UBERON_0002193 hemolymphoid system UBERON_0001249 spleen lymphoid follicle +UBERON_0002193 hemolymphoid system UBERON_0001250 red pulp of spleen +UBERON_0002193 hemolymphoid system UBERON_0001251 marginal zone of spleen +UBERON_0002193 hemolymphoid system UBERON_0001265 trabecula of spleen +UBERON_0002193 hemolymphoid system UBERON_0001266 splenic cord +UBERON_0002193 hemolymphoid system UBERON_0001422 facial lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0001425 pectoral lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0001426 jugular lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0001473 lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0001542 inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0001543 popliteal lymph node +UBERON_0002193 hemolymphoid system UBERON_0001631 thoracic duct +UBERON_0002193 hemolymphoid system UBERON_0001732 pharyngeal tonsil +UBERON_0002193 hemolymphoid system UBERON_0001735 tonsillar ring +UBERON_0002193 hemolymphoid system UBERON_0001744 lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0001745 secondary nodular lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0001959 white pulp of spleen +UBERON_0002193 hemolymphoid system UBERON_0001960 periarterial lymphatic sheath +UBERON_0002193 hemolymphoid system UBERON_0001961 mucosa-associated lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0001962 gut-associated lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0001963 bronchial-associated lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0001969 blood plasma +UBERON_0002193 hemolymphoid system UBERON_0001977 blood serum +UBERON_0002193 hemolymphoid system UBERON_0002006 cortex of lymph node +UBERON_0002193 hemolymphoid system UBERON_0002007 medulla of lymph node +UBERON_0002193 hemolymphoid system UBERON_0002042 lymphatic vessel endothelium +UBERON_0002193 hemolymphoid system UBERON_0002106 spleen +UBERON_0002193 hemolymphoid system UBERON_0002122 capsule of thymus +UBERON_0002193 hemolymphoid system UBERON_0002123 cortex of thymus +UBERON_0002193 hemolymphoid system UBERON_0002124 medulla of thymus +UBERON_0002193 hemolymphoid system UBERON_0002125 thymus lobule +UBERON_0002193 hemolymphoid system UBERON_0002194 capsule of lymph node +UBERON_0002193 hemolymphoid system UBERON_0002195 trabecula of lymph node +UBERON_0002193 hemolymphoid system UBERON_0002370 thymus +UBERON_0002193 hemolymphoid system UBERON_0002371 bone marrow +UBERON_0002193 hemolymphoid system UBERON_0002372 tonsil +UBERON_0002193 hemolymphoid system UBERON_0002373 palatine tonsil +UBERON_0002193 hemolymphoid system UBERON_0002390 hematopoietic system +UBERON_0002193 hemolymphoid system UBERON_0002391 lymph +UBERON_0002193 hemolymphoid system UBERON_0002429 cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0002465 lymphoid system +UBERON_0002193 hemolymphoid system UBERON_0002507 abdominal lymph node +UBERON_0002193 hemolymphoid system UBERON_0002508 celiac lymph node +UBERON_0002193 hemolymphoid system UBERON_0002509 mesenteric lymph node +UBERON_0002193 hemolymphoid system UBERON_0002520 submandibular lymph node +UBERON_0002193 hemolymphoid system UBERON_0002524 mediastinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0002525 brachial lymph node +UBERON_0002193 hemolymphoid system UBERON_0002526 lumbar lymph node +UBERON_0002193 hemolymphoid system UBERON_0002527 pancreatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0002528 sacral lymph node +UBERON_0002193 hemolymphoid system UBERON_0003105 dorsal lateral plate region +UBERON_0002193 hemolymphoid system UBERON_0003425 renal lymph node +UBERON_0002193 hemolymphoid system UBERON_0003453 large intestine Peyer's patch +UBERON_0002193 hemolymphoid system UBERON_0003454 small intestine Peyer's patch +UBERON_0002193 hemolymphoid system UBERON_0003456 respiratory system lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0003483 thymus lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0003529 respiratory system lymphatic vessel endothelium +UBERON_0002193 hemolymphoid system UBERON_0003846 thymus epithelium +UBERON_0002193 hemolymphoid system UBERON_0003903 bursa of Fabricius +UBERON_0002193 hemolymphoid system UBERON_0003904 bursal plica +UBERON_0002193 hemolymphoid system UBERON_0003905 bursal follicle +UBERON_0002193 hemolymphoid system UBERON_0003910 splenic sinusoid +UBERON_0002193 hemolymphoid system UBERON_0003949 tubal tonsil +UBERON_0002193 hemolymphoid system UBERON_0003968 peripheral lymph node +UBERON_0002193 hemolymphoid system UBERON_0003987 Hassall's corpuscle +UBERON_0002193 hemolymphoid system UBERON_0003988 thymus corticomedullary boundary +UBERON_0002193 hemolymphoid system UBERON_0004041 spleen primary B follicle +UBERON_0002193 hemolymphoid system UBERON_0004042 spleen secondary B follicle +UBERON_0002193 hemolymphoid system UBERON_0004177 hemopoietic organ +UBERON_0002193 hemolymphoid system UBERON_0004232 lymphatic vessel smooth muscle +UBERON_0002193 hemolymphoid system UBERON_0004238 spleen smooth muscle +UBERON_0002193 hemolymphoid system UBERON_0004296 respiratory system lymphatic vessel smooth muscle +UBERON_0002193 hemolymphoid system UBERON_0004536 lymph vasculature +UBERON_0002193 hemolymphoid system UBERON_0004641 spleen capsule +UBERON_0002193 hemolymphoid system UBERON_0004693 Peyer's patch epithelium +UBERON_0002193 hemolymphoid system UBERON_0004697 Peyer's patch germinal center +UBERON_0002193 hemolymphoid system UBERON_0004722 deep cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0004791 thymus trabecula +UBERON_0002193 hemolymphoid system UBERON_0004850 lymph node endothelium +UBERON_0002193 hemolymphoid system UBERON_0004870 superficial cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0005058 hemolymphoid system gland +UBERON_0002193 hemolymphoid system UBERON_0005196 spleen germinal center +UBERON_0002193 hemolymphoid system UBERON_0005207 tonsil capsule +UBERON_0002193 hemolymphoid system UBERON_0005353 spleen perifollicular zone +UBERON_0002193 hemolymphoid system UBERON_0005435 upper part of cisterna chyli +UBERON_0002193 hemolymphoid system UBERON_0005457 left thymus lobe +UBERON_0002193 hemolymphoid system UBERON_0005463 subcapsular sinus of lymph node +UBERON_0002193 hemolymphoid system UBERON_0005469 right thymus lobe +UBERON_0002193 hemolymphoid system UBERON_0005483 thymus lobe +UBERON_0002193 hemolymphoid system UBERON_0006558 lymphatic part of lymphoid system +UBERON_0002193 hemolymphoid system UBERON_0006561 non-lymphatic part of lymphoid system +UBERON_0002193 hemolymphoid system UBERON_0006842 lymphatic capillary +UBERON_0002193 hemolymphoid system UBERON_0006856 interrenal gland +UBERON_0002193 hemolymphoid system UBERON_0006936 thymus subcapsular epithelium +UBERON_0002193 hemolymphoid system UBERON_0007132 head kidney +UBERON_0002193 hemolymphoid system UBERON_0007195 stroma of bone marrow +UBERON_0002193 hemolymphoid system UBERON_0007250 lingual tonsil +UBERON_0002193 hemolymphoid system UBERON_0007384 appendage lymph vessel +UBERON_0002193 hemolymphoid system UBERON_0007385 pectoral appendage lymph vessel +UBERON_0002193 hemolymphoid system UBERON_0007386 pelvic appendage lymph vessel +UBERON_0002193 hemolymphoid system UBERON_0007643 node of ligamentum arteriosum +UBERON_0002193 hemolymphoid system UBERON_0007644 thoracic lymph node +UBERON_0002193 hemolymphoid system UBERON_0009006 deep inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0009007 superficial inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0009039 lymph node germinal center +UBERON_0002193 hemolymphoid system UBERON_0009099 typhlosole +UBERON_0002193 hemolymphoid system UBERON_0009100 nephric fold +UBERON_0002193 hemolymphoid system UBERON_0009102 supraneural body +UBERON_0002193 hemolymphoid system UBERON_0009114 cervical thymus +UBERON_0002193 hemolymphoid system UBERON_0009115 thoracic thymus +UBERON_0002193 hemolymphoid system UBERON_0009116 thymoid +UBERON_0002193 hemolymphoid system UBERON_0009744 lymph node medullary sinus +UBERON_0002193 hemolymphoid system UBERON_0009745 lymph node medullary cord +UBERON_0002193 hemolymphoid system UBERON_0009967 spleen venous sinus +UBERON_0002193 hemolymphoid system UBERON_0010014 epigonal organ +UBERON_0002193 hemolymphoid system UBERON_0010015 ventral patch of Leydig's organ +UBERON_0002193 hemolymphoid system UBERON_0010051 dorsal patch of Leydig's organ +UBERON_0002193 hemolymphoid system UBERON_0010160 lumen of lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0010174 Schweigger-Seidel sheath +UBERON_0002193 hemolymphoid system UBERON_0010386 Peyer's patch follicle +UBERON_0002193 hemolymphoid system UBERON_0010387 Peyer's patch T cell area +UBERON_0002193 hemolymphoid system UBERON_0010392 B cell domain +UBERON_0002193 hemolymphoid system UBERON_0010393 T cell domain +UBERON_0002193 hemolymphoid system UBERON_0010394 lymphocyte domain +UBERON_0002193 hemolymphoid system UBERON_0010395 lymph node primary follicle +UBERON_0002193 hemolymphoid system UBERON_0010396 afferent lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0010397 efferent lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0010398 spleen marginal sinus +UBERON_0002193 hemolymphoid system UBERON_0010399 spleen trabecular artery +UBERON_0002193 hemolymphoid system UBERON_0010400 spleen trabecular vein +UBERON_0002193 hemolymphoid system UBERON_0010401 spleen central arteriole +UBERON_0002193 hemolymphoid system UBERON_0010416 lymph node B cell domain +UBERON_0002193 hemolymphoid system UBERON_0010417 lymph node T cell domain +UBERON_0002193 hemolymphoid system UBERON_0010420 lymph node germinal center mantle zone +UBERON_0002193 hemolymphoid system UBERON_0010421 spleen B cell corona +UBERON_0002193 hemolymphoid system UBERON_0010422 primary nodular lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0010423 primary lymphoid nodule of tonsil +UBERON_0002193 hemolymphoid system UBERON_0010748 lymph node follicle +UBERON_0002193 hemolymphoid system UBERON_0010753 lymph node secondary follicle +UBERON_0002193 hemolymphoid system UBERON_0010754 germinal center +UBERON_0002193 hemolymphoid system UBERON_0010755 secondary follicle corona +UBERON_0002193 hemolymphoid system UBERON_0010756 spleen follicular dendritic cell network +UBERON_0002193 hemolymphoid system UBERON_0011363 cranial lymph vasculature +UBERON_0002193 hemolymphoid system UBERON_0011765 jugular lymph sac +UBERON_0002193 hemolymphoid system UBERON_0012069 epithelium-associated lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0012168 umbilical cord blood +UBERON_0002193 hemolymphoid system UBERON_0012181 tonsil crypt +UBERON_0002193 hemolymphoid system UBERON_0012236 intercostal lymph node +UBERON_0002193 hemolymphoid system UBERON_0012306 lateral cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0012307 anterior cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0012308 superficial lateral cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0012309 superficial anterior cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0012310 deep lateral cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0012311 deep anterior cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0012330 nasal-associated lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0012429 hematopoietic tissue +UBERON_0002193 hemolymphoid system UBERON_0013119 haemal node +UBERON_0002193 hemolymphoid system UBERON_0013132 penicillar arteriole +UBERON_0002193 hemolymphoid system UBERON_0013478 cecal tonsil +UBERON_0002193 hemolymphoid system UBERON_0013688 tonsil germinal center +UBERON_0002193 hemolymphoid system UBERON_0013689 appendix lymphoid tissue +UBERON_0002193 hemolymphoid system UBERON_0013696 tonsil epithelium +UBERON_0002193 hemolymphoid system UBERON_0013755 arterial blood +UBERON_0002193 hemolymphoid system UBERON_0013756 venous blood +UBERON_0002193 hemolymphoid system UBERON_0013757 capillary blood +UBERON_0002193 hemolymphoid system UBERON_0015453 subcutaneous lymph node +UBERON_0002193 hemolymphoid system UBERON_0015469 splenic lymph node +UBERON_0002193 hemolymphoid system UBERON_0015472 tracheobronchial lymph node +UBERON_0002193 hemolymphoid system UBERON_0015857 parotid lymph node +UBERON_0002193 hemolymphoid system UBERON_0015859 hepatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0015860 visceral abdominal lymph node +UBERON_0002193 hemolymphoid system UBERON_0015863 gastric lymph node +UBERON_0002193 hemolymphoid system UBERON_0015865 pancreaticosplenic lymph node +UBERON_0002193 hemolymphoid system UBERON_0015866 pyloric lymph node +UBERON_0002193 hemolymphoid system UBERON_0015867 cystic lymph node +UBERON_0002193 hemolymphoid system UBERON_0015868 lymph node of epiploic foramen +UBERON_0002193 hemolymphoid system UBERON_0015869 retropharyngeal lymph node +UBERON_0002193 hemolymphoid system UBERON_0015870 lymph node of head +UBERON_0002193 hemolymphoid system UBERON_0015871 facial lymph node +UBERON_0002193 hemolymphoid system UBERON_0015872 mandibular lymph node +UBERON_0002193 hemolymphoid system UBERON_0015876 pelvic lymph node +UBERON_0002193 hemolymphoid system UBERON_0015877 parietal pelvic lymph node +UBERON_0002193 hemolymphoid system UBERON_0015878 common iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0015880 external iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0015881 internal iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0015883 gluteal lymph node +UBERON_0002193 hemolymphoid system UBERON_0015884 presymphysial lymph node +UBERON_0002193 hemolymphoid system UBERON_0015895 proximal deep inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0015917 superficial lymph node +UBERON_0002193 hemolymphoid system UBERON_0015918 deep lymph node +UBERON_0002193 hemolymphoid system UBERON_0015922 accessory mandibular lymph node +UBERON_0002193 hemolymphoid system UBERON_0015923 superficial parotid lymph node +UBERON_0002193 hemolymphoid system UBERON_0015925 superficial intraparotid lymph node +UBERON_0002193 hemolymphoid system UBERON_0015926 cranial deep lymph node +UBERON_0002193 hemolymphoid system UBERON_0016374 sciatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0016378 ileocolic lymph node +UBERON_0002193 hemolymphoid system UBERON_0016382 prescapular lymph node +UBERON_0002193 hemolymphoid system UBERON_0016386 paraaortic lymph node +UBERON_0002193 hemolymphoid system UBERON_0016390 auricular lymph node +UBERON_0002193 hemolymphoid system UBERON_0016391 thymic lymph node +UBERON_0002193 hemolymphoid system UBERON_0016392 mastoid lymph node +UBERON_0002193 hemolymphoid system UBERON_0016393 deep parotid lymph node +UBERON_0002193 hemolymphoid system UBERON_0016394 anterior auricular lymph node +UBERON_0002193 hemolymphoid system UBERON_0016395 infra-auricular lymph node +UBERON_0002193 hemolymphoid system UBERON_0016396 intraglandular lymph node +UBERON_0002193 hemolymphoid system UBERON_0016397 submental lymph node +UBERON_0002193 hemolymphoid system UBERON_0016398 lymph node of lower limb +UBERON_0002193 hemolymphoid system UBERON_0016399 lymph node of upper limb +UBERON_0002193 hemolymphoid system UBERON_0016401 pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0016402 mesocolic lymph node +UBERON_0002193 hemolymphoid system UBERON_0016481 bronchial lymph node +UBERON_0002193 hemolymphoid system UBERON_0018226 pulmonary part of lymphatic system +UBERON_0002193 hemolymphoid system UBERON_0018227 pulmonary lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0018244 superficial cervical thymus +UBERON_0002193 hemolymphoid system UBERON_0018245 deep cervical thymus +UBERON_0002193 hemolymphoid system UBERON_0018410 lacteal +UBERON_0002193 hemolymphoid system UBERON_0018549 ventral wall of dorsal aorta +UBERON_0002193 hemolymphoid system UBERON_0022292 splenic arteriole +UBERON_0002193 hemolymphoid system UBERON_0034949 lymphatic valve +UBERON_0002193 hemolymphoid system UBERON_0034950 lymph sac of lymph heart +UBERON_0002193 hemolymphoid system UBERON_0034951 subcutaneous lymph sac +UBERON_0002193 hemolymphoid system UBERON_0034952 intrapleuroperitoneal lymph sac +UBERON_0002193 hemolymphoid system UBERON_0034953 embryonic lymph sac +UBERON_0002193 hemolymphoid system UBERON_0034958 retroperitoneal embryonic lymph sac +UBERON_0002193 hemolymphoid system UBERON_0035079 deep intraparotid lymph node +UBERON_0002193 hemolymphoid system UBERON_0035080 intraparotid lymph node +UBERON_0002193 hemolymphoid system UBERON_0035162 infraclavicular lymph node +UBERON_0002193 hemolymphoid system UBERON_0035171 obturator lymph node +UBERON_0002193 hemolymphoid system UBERON_0035198 superficial lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0035204 occipital lymph node +UBERON_0002193 hemolymphoid system UBERON_0035219 parasternal lymph node +UBERON_0002193 hemolymphoid system UBERON_0035228 tonsillar fossa +UBERON_0002193 hemolymphoid system UBERON_0035279 supraclavicular lymph node +UBERON_0002193 hemolymphoid system UBERON_0035371 retroperitoneal lymph node +UBERON_0002193 hemolymphoid system UBERON_0035495 hilum of lymph node +UBERON_0002193 hemolymphoid system UBERON_0035520 anterior mediastinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0035545 deep lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_0035608 dura mater lymph vessel +UBERON_0002193 hemolymphoid system UBERON_0035764 pulmonary lymph node +UBERON_0002193 hemolymphoid system UBERON_0035765 subsegmental lymph node +UBERON_0002193 hemolymphoid system UBERON_0036256 iliac lymph sac +UBERON_0002193 hemolymphoid system UBERON_0036260 embryonic cisterna chyli +UBERON_0002193 hemolymphoid system UBERON_0036274 tonsillar pillar +UBERON_0002193 hemolymphoid system UBERON_0036301 vasculature of spleen +UBERON_0002193 hemolymphoid system UBERON_0037480 supramammary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037494 paracardial gastric lymph node +UBERON_0002193 hemolymphoid system UBERON_0037500 subscapular axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037501 pectoral axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037502 central axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037503 apical axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037514 intermediate mesenteric lymph node +UBERON_0002193 hemolymphoid system UBERON_0037515 juxta-arterial mesenteric lymph node +UBERON_0002193 hemolymphoid system UBERON_0037518 epicolic lymph node +UBERON_0002193 hemolymphoid system UBERON_0037521 preterminal colic lymph node +UBERON_0002193 hemolymphoid system UBERON_0037522 ileal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037527 superior pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037528 inferior pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037530 inferior pancreatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0037531 intestinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037532 medial common iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037533 intermediate common iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037534 lateral common iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037535 subaortic common iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037536 promontory lymph node +UBERON_0002193 hemolymphoid system UBERON_0037538 medial external iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037539 intermediate external iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037540 lateral external iliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037541 interiliac lymph node +UBERON_0002193 hemolymphoid system UBERON_0037548 superior gluteal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037549 inferior gluteal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037559 anorectal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037560 superficial axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037566 diaphragmatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0037580 left gastric lymph node +UBERON_0002193 hemolymphoid system UBERON_0037590 lateral axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037601 left parietal lumbar lymph node +UBERON_0002193 hemolymphoid system UBERON_0037614 appendicular lymph node +UBERON_0002193 hemolymphoid system UBERON_0037615 pararectal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037722 right retropharyngeal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037723 left retropharyngeal lymph node +UBERON_0002193 hemolymphoid system UBERON_0037763 lateral superior deep cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0037764 anterior superior deep cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0037765 lateral inferior deep cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0037766 anterior inferior deep cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0037787 right occipital lymph node +UBERON_0002193 hemolymphoid system UBERON_0037788 left occipital lymph node +UBERON_0002193 hemolymphoid system UBERON_0037789 right apical axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037790 left apical axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037793 right subscapular axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037794 left subscapular axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037795 right pectoral axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037796 left pectoral axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037797 right central axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037798 left central axillary lymph node +UBERON_0002193 hemolymphoid system UBERON_0037865 jugular lymph node +UBERON_0002193 hemolymphoid system UBERON_0037995 supramandibular lymph node +UBERON_0002193 hemolymphoid system UBERON_0037998 external jugular lymph node +UBERON_0002193 hemolymphoid system UBERON_0038001 sternal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038002 upper intercostal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038003 lower intercostal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038037 subclavian lymph node +UBERON_0002193 hemolymphoid system UBERON_0038048 antebrachial lymph node +UBERON_0002193 hemolymphoid system UBERON_0038053 cardiophrenic angle lymph node +UBERON_0002193 hemolymphoid system UBERON_0038054 retrocrural lymph node +UBERON_0002193 hemolymphoid system UBERON_0038093 jejunal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038094 inferior rectal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038124 medial diaphragmatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038137 parietal pre-aortic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038139 retro-aortic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038587 paracardiac lymph node +UBERON_0002193 hemolymphoid system UBERON_0038632 pericardial lymph node +UBERON_0002193 hemolymphoid system UBERON_0038633 aortopulmonary lymph node +UBERON_0002193 hemolymphoid system UBERON_0038634 para-aortic thoracic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038635 interlobar lymph node +UBERON_0002193 hemolymphoid system UBERON_0038638 lobar lymph node +UBERON_0002193 hemolymphoid system UBERON_0038641 segmental lymph node +UBERON_0002193 hemolymphoid system UBERON_0038647 lymph node of inferior pulmonary ligament +UBERON_0002193 hemolymphoid system UBERON_0038651 superior mediastinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038684 superior left gastric lymph node +UBERON_0002193 hemolymphoid system UBERON_0038685 inferior left gastric lymph node +UBERON_0002193 hemolymphoid system UBERON_0038687 visceral lymph node of abdomen +UBERON_0002193 hemolymphoid system UBERON_0038691 common hepatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038694 hepatoportal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038695 proximal superior pancreatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038696 distal superior pancreatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038697 anterior superior pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038698 posterior superior pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038699 anterior inferior pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038700 posterior inferior pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038707 anterior pancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038727 juxta-intestinal mesenteric lymph node +UBERON_0002193 hemolymphoid system UBERON_0038734 visceral pre-aortic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038735 juxta-arterial jejunal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038736 juxta-arterial ileal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038737 intermediate jejunal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038738 intermediate ileal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038746 gastro-epiploic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038784 pararectal lymph node of pelvis +UBERON_0002193 hemolymphoid system UBERON_0038787 superior ileocolic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038796 lymph node along bile duct +UBERON_0002193 hemolymphoid system UBERON_0038818 posterior ancreaticoduodenal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038849 craniocervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0038853 superficial popliteal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038854 deep popliteal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038855 superior medial inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038856 superior lateral inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038857 inferior inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038859 intermediate deep inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038860 distal deep inguinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038861 tibial lymph node +UBERON_0002193 hemolymphoid system UBERON_0038864 fibular lymph node +UBERON_0002193 hemolymphoid system UBERON_0038867 interpectoral lymph node +UBERON_0002193 hemolymphoid system UBERON_0038868 paramammary lymph node +UBERON_0002193 hemolymphoid system UBERON_0038870 cubital lymph node +UBERON_0002193 hemolymphoid system UBERON_0038871 supratrochlear lymph node +UBERON_0002193 hemolymphoid system UBERON_0038878 lateral diaphragmatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038879 anterior diaphragmatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038882 posterior diaphragmatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038885 brachiocephalic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038888 posterior mediastinal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038894 paratracheal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038897 superior tracheobronchial lymph node +UBERON_0002193 hemolymphoid system UBERON_0038900 inferior tracheobronchial lymph node +UBERON_0002193 hemolymphoid system UBERON_0038920 buccinator lymph node +UBERON_0002193 hemolymphoid system UBERON_0038922 nasolabial lymph node +UBERON_0002193 hemolymphoid system UBERON_0038923 malar lymph node +UBERON_0002193 hemolymphoid system UBERON_0038925 lingual lymph node +UBERON_0002193 hemolymphoid system UBERON_0038929 infrahyoid lymph node +UBERON_0002193 hemolymphoid system UBERON_0038930 prelaryngeal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038931 thyroid lymph node +UBERON_0002193 hemolymphoid system UBERON_0038932 pretracheal lymph node +UBERON_0002193 hemolymphoid system UBERON_0038934 superior deep lateral cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0038935 inferior deep lateral cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0038936 jugulodigastric lymph node +UBERON_0002193 hemolymphoid system UBERON_0038938 accessory cervical lymph node +UBERON_0002193 hemolymphoid system UBERON_0038943 superior diaphragmatic lymph node +UBERON_0002193 hemolymphoid system UBERON_0038951 suprapyloric lymph node +UBERON_0002193 hemolymphoid system UBERON_0038952 subpyloric lymph node +UBERON_0002193 hemolymphoid system UBERON_0038953 retropyloric lymph node +UBERON_0002193 hemolymphoid system UBERON_0039162 inferior ileocolic lymph node +UBERON_0002193 hemolymphoid system UBERON_0039163 lateral sacral lymph node +UBERON_0002193 hemolymphoid system UBERON_0039164 medial sacral lymph node +UBERON_0002193 hemolymphoid system UBERON_0039167 bronchopulmonary lymph node +UBERON_0002193 hemolymphoid system UBERON_0039168 colic lymph node +UBERON_0002193 hemolymphoid system UBERON_1000023 spleen pulp +UBERON_0002193 hemolymphoid system UBERON_1000024 parenchyma of spleen +UBERON_0002193 hemolymphoid system UBERON_2000033 intermediate cell mass of mesoderm +UBERON_0002193 hemolymphoid system UBERON_2005029 rostral blood island +UBERON_0002193 hemolymphoid system UBERON_2005106 longitudinal lateral lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_2005303 caudal fin lymph vessel +UBERON_0002193 hemolymphoid system UBERON_2005319 intersegmental lymph vessel +UBERON_0002193 hemolymphoid system UBERON_2005320 dorsal longitudinal lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_8410002 small intestine lymphatic vessel +UBERON_0002193 hemolymphoid system UBERON_8410013 afferent lymphatic vessel valve +UBERON_0002193 hemolymphoid system UBERON_8410014 efferent lymphatic vessel valve +UBERON_0002193 hemolymphoid system UBERON_8410029 lymphatic capillary of appendix +UBERON_0002193 hemolymphoid system UBERON_8410030 lymphatic vessel of appendix +UBERON_0002193 hemolymphoid system UBERON_8410032 trabecular sinus of lymph node +UBERON_0002193 hemolymphoid system UBERON_8410035 medullary arteriole of lymph node +UBERON_0002193 hemolymphoid system UBERON_8410036 medullary venule of lymph node +UBERON_0002193 hemolymphoid system UBERON_8410038 high endothelial venule of lymph node +UBERON_0002193 hemolymphoid system UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0002193 hemolymphoid system UBERON_8410041 venule of lymph node +UBERON_0002193 hemolymphoid system UBERON_8410042 arteriole of lymph node +UBERON_0002193 hemolymphoid system UBERON_8410051 lymphatic vessel of colon +UBERON_0002193 hemolymphoid system UBERON_8410052 lymph node germinal center light zone +UBERON_0002193 hemolymphoid system UBERON_8410053 lymph node germinal center dark zone +UBERON_0002193 hemolymphoid system UBERON_8410054 lymphatic capillary of colon +UBERON_0002193 hemolymphoid system UBERON_8410055 lymphatic capillary of anorectum +UBERON_0002193 hemolymphoid system UBERON_8410065 lymph node follicle marginal zone +UBERON_0002193 hemolymphoid system UBERON_8410066 lymph node paracortex +UBERON_0002193 hemolymphoid system UBERON_8410067 lymph node interfollicular cortex +UBERON_0002193 hemolymphoid system UBERON_8410069 lymphoid nodule +UBERON_0002193 hemolymphoid system UBERON_8410071 subcapsular sinus ceiling +UBERON_0002193 hemolymphoid system UBERON_8410072 subcapsular sinus floor +UBERON_0002193 hemolymphoid system UBERON_8410074 lymph node paracortical sinus +UBERON_0002193 hemolymphoid system UBERON_8410075 lymph node paracortical cord +UBERON_0002193 hemolymphoid system UBERON_8410078 right lymphatic duct +UBERON_0002193 hemolymphoid system UBERON_8410079 red bone marrow of iliac crest +UBERON_0002193 hemolymphoid system UBERON_8410080 red bone marrow of sternum +UBERON_0002193 hemolymphoid system UBERON_8470000 placental blood +UBERON_0002193 hemolymphoid system UBERON_8470001 sublumbar lymph node +UBERON_0002193 hemolymphoid system UBERON_8480006 mesenteric lymphatic vessel +UBERON_0002204 musculoskeletal system UBERON_0000041 odontode scale +UBERON_0002204 musculoskeletal system UBERON_0000043 tendon +UBERON_0002204 musculoskeletal system UBERON_0000075 subdivision of skeletal system +UBERON_0002204 musculoskeletal system UBERON_0000130 transverse foramen +UBERON_0002204 musculoskeletal system UBERON_0000144 trochlea of humerus +UBERON_0002204 musculoskeletal system UBERON_0000199 neck of radius +UBERON_0002204 musculoskeletal system UBERON_0000209 tetrapod frontal bone +UBERON_0002204 musculoskeletal system UBERON_0000210 tetrapod parietal bone +UBERON_0002204 musculoskeletal system UBERON_0000218 vertebral arch of axis +UBERON_0002204 musculoskeletal system UBERON_0000219 vertebral foramen of atlas +UBERON_0002204 musculoskeletal system UBERON_0000220 atlanto-occipital joint +UBERON_0002204 musculoskeletal system UBERON_0000221 supraauricular point +UBERON_0002204 musculoskeletal system UBERON_0000304 tendon sheath +UBERON_0002204 musculoskeletal system UBERON_0000312 inner cambium layer of periosteum +UBERON_0002204 musculoskeletal system UBERON_0000313 portion of cartilage tissue in tibia +UBERON_0002204 musculoskeletal system UBERON_0000332 yellow bone marrow +UBERON_0002204 musculoskeletal system UBERON_0000351 nuchal ligament +UBERON_0002204 musculoskeletal system UBERON_0000361 red bone marrow +UBERON_0002204 musculoskeletal system UBERON_0000387 meniscus +UBERON_0002204 musculoskeletal system UBERON_0000398 cartilage tissue of sternum +UBERON_0002204 musculoskeletal system UBERON_0000401 mandibular ramus +UBERON_0002204 musculoskeletal system UBERON_0000975 sternum +UBERON_0002204 musculoskeletal system UBERON_0000976 humerus +UBERON_0002204 musculoskeletal system UBERON_0000979 tibia +UBERON_0002204 musculoskeletal system UBERON_0000980 trochanter +UBERON_0002204 musculoskeletal system UBERON_0000981 femur +UBERON_0002204 musculoskeletal system UBERON_0000982 skeletal joint +UBERON_0002204 musculoskeletal system UBERON_0001010 diaphysis of ulna +UBERON_0002204 musculoskeletal system UBERON_0001012 head of radius +UBERON_0002204 musculoskeletal system UBERON_0001028 diaphysis of radius +UBERON_0002204 musculoskeletal system UBERON_0001035 dento-alveolar joint +UBERON_0002204 musculoskeletal system UBERON_0001066 intervertebral disk +UBERON_0002204 musculoskeletal system UBERON_0001067 vertebral arch joint +UBERON_0002204 musculoskeletal system UBERON_0001075 bony vertebral centrum +UBERON_0002204 musculoskeletal system UBERON_0001076 neural spine +UBERON_0002204 musculoskeletal system UBERON_0001077 transverse process of vertebra +UBERON_0002204 musculoskeletal system UBERON_0001078 pedicle of vertebra +UBERON_0002204 musculoskeletal system UBERON_0001079 prezygapophysis +UBERON_0002204 musculoskeletal system UBERON_0001080 postzygapophysis +UBERON_0002204 musculoskeletal system UBERON_0001091 calcareous tooth +UBERON_0002204 musculoskeletal system UBERON_0001092 vertebral bone 1 +UBERON_0002204 musculoskeletal system UBERON_0001093 vertebral bone 2 +UBERON_0002204 musculoskeletal system UBERON_0001094 sacral vertebra +UBERON_0002204 musculoskeletal system UBERON_0001095 caudal vertebra +UBERON_0002204 musculoskeletal system UBERON_0001098 incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0001102 cartilage of main bronchus +UBERON_0002204 musculoskeletal system UBERON_0001105 clavicle bone +UBERON_0002204 musculoskeletal system UBERON_0001130 vertebral column +UBERON_0002204 musculoskeletal system UBERON_0001131 vertebral foramen +UBERON_0002204 musculoskeletal system UBERON_0001269 acetabular part of hip bone +UBERON_0002204 musculoskeletal system UBERON_0001270 bony pelvis +UBERON_0002204 musculoskeletal system UBERON_0001272 innominate bone +UBERON_0002204 musculoskeletal system UBERON_0001273 ilium +UBERON_0002204 musculoskeletal system UBERON_0001274 ischium +UBERON_0002204 musculoskeletal system UBERON_0001275 pubis +UBERON_0002204 musculoskeletal system UBERON_0001350 coccyx +UBERON_0002204 musculoskeletal system UBERON_0001365 sacro-iliac joint +UBERON_0002204 musculoskeletal system UBERON_0001423 radius bone +UBERON_0002204 musculoskeletal system UBERON_0001424 ulna +UBERON_0002204 musculoskeletal system UBERON_0001427 radiale +UBERON_0002204 musculoskeletal system UBERON_0001428 intermedium +UBERON_0002204 musculoskeletal system UBERON_0001429 pisiform +UBERON_0002204 musculoskeletal system UBERON_0001430 distal carpal bone 1 +UBERON_0002204 musculoskeletal system UBERON_0001431 distal carpal bone 2 +UBERON_0002204 musculoskeletal system UBERON_0001432 distal carpal bone 3 +UBERON_0002204 musculoskeletal system UBERON_0001433 distal carpal bone 4 +UBERON_0002204 musculoskeletal system UBERON_0001434 skeletal system +UBERON_0002204 musculoskeletal system UBERON_0001435 carpal bone +UBERON_0002204 musculoskeletal system UBERON_0001436 phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0001437 epiphysis +UBERON_0002204 musculoskeletal system UBERON_0001438 metaphysis +UBERON_0002204 musculoskeletal system UBERON_0001439 compact bone tissue +UBERON_0002204 musculoskeletal system UBERON_0001440 forelimb skeleton +UBERON_0002204 musculoskeletal system UBERON_0001441 hindlimb skeleton +UBERON_0002204 musculoskeletal system UBERON_0001442 skeleton of manus +UBERON_0002204 musculoskeletal system UBERON_0001445 skeleton of pes +UBERON_0002204 musculoskeletal system UBERON_0001446 fibula +UBERON_0002204 musculoskeletal system UBERON_0001447 tarsal bone +UBERON_0002204 musculoskeletal system UBERON_0001448 metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0001449 phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0001450 calcaneus +UBERON_0002204 musculoskeletal system UBERON_0001451 navicular bone of pes +UBERON_0002204 musculoskeletal system UBERON_0001452 distal tarsal bone 1 +UBERON_0002204 musculoskeletal system UBERON_0001453 distal tarsal bone 2 +UBERON_0002204 musculoskeletal system UBERON_0001454 distal tarsal bone 3 +UBERON_0002204 musculoskeletal system UBERON_0001455 cuboid bone +UBERON_0002204 musculoskeletal system UBERON_0001468 intervertebral joint +UBERON_0002204 musculoskeletal system UBERON_0001469 sternoclavicular joint +UBERON_0002204 musculoskeletal system UBERON_0001470 glenohumeral joint +UBERON_0002204 musculoskeletal system UBERON_0001474 bone element +UBERON_0002204 musculoskeletal system UBERON_0001479 sesamoid bone +UBERON_0002204 musculoskeletal system UBERON_0001480 proximal carpal bone +UBERON_0002204 musculoskeletal system UBERON_0001481 distal carpal bone +UBERON_0002204 musculoskeletal system UBERON_0001485 knee joint +UBERON_0002204 musculoskeletal system UBERON_0001486 hip joint +UBERON_0002204 musculoskeletal system UBERON_0001487 pes joint +UBERON_0002204 musculoskeletal system UBERON_0001488 ankle joint +UBERON_0002204 musculoskeletal system UBERON_0001489 manus joint +UBERON_0002204 musculoskeletal system UBERON_0001490 elbow joint +UBERON_0002204 musculoskeletal system UBERON_0001491 wrist joint +UBERON_0002204 musculoskeletal system UBERON_0001528 radio-ulnar joint +UBERON_0002204 musculoskeletal system UBERON_0001543 popliteal lymph node +UBERON_0002204 musculoskeletal system UBERON_0001676 occipital bone +UBERON_0002204 musculoskeletal system UBERON_0001677 sphenoid bone +UBERON_0002204 musculoskeletal system UBERON_0001678 temporal bone +UBERON_0002204 musculoskeletal system UBERON_0001679 ethmoid bone +UBERON_0002204 musculoskeletal system UBERON_0001680 lacrimal bone +UBERON_0002204 musculoskeletal system UBERON_0001681 nasal bone +UBERON_0002204 musculoskeletal system UBERON_0001682 palatine bone +UBERON_0002204 musculoskeletal system UBERON_0001683 jugal bone +UBERON_0002204 musculoskeletal system UBERON_0001684 mandible +UBERON_0002204 musculoskeletal system UBERON_0001685 hyoid bone +UBERON_0002204 musculoskeletal system UBERON_0001686 auditory ossicle bone +UBERON_0002204 musculoskeletal system UBERON_0001687 stapes bone +UBERON_0002204 musculoskeletal system UBERON_0001688 incus bone +UBERON_0002204 musculoskeletal system UBERON_0001689 malleus bone +UBERON_0002204 musculoskeletal system UBERON_0001692 basioccipital bone +UBERON_0002204 musculoskeletal system UBERON_0001693 exoccipital bone +UBERON_0002204 musculoskeletal system UBERON_0001694 petrous part of temporal bone +UBERON_0002204 musculoskeletal system UBERON_0001695 squamous part of temporal bone +UBERON_0002204 musculoskeletal system UBERON_0001697 orbit of skull +UBERON_0002204 musculoskeletal system UBERON_0001698 foramen ovale of skull +UBERON_0002204 musculoskeletal system UBERON_0001703 neurocranium +UBERON_0002204 musculoskeletal system UBERON_0001706 nasal septum +UBERON_0002204 musculoskeletal system UBERON_0001708 jaw skeleton +UBERON_0002204 musculoskeletal system UBERON_0001724 sphenoidal sinus +UBERON_0002204 musculoskeletal system UBERON_0001725 cranial synchondrosis +UBERON_0002204 musculoskeletal system UBERON_0001738 thyroid cartilage +UBERON_0002204 musculoskeletal system UBERON_0001739 laryngeal cartilage +UBERON_0002204 musculoskeletal system UBERON_0001740 arytenoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0001741 corniculate cartilage +UBERON_0002204 musculoskeletal system UBERON_0001742 epiglottic cartilage +UBERON_0002204 musculoskeletal system UBERON_0001751 dentine +UBERON_0002204 musculoskeletal system UBERON_0001752 enamel +UBERON_0002204 musculoskeletal system UBERON_0001753 cementum +UBERON_0002204 musculoskeletal system UBERON_0001754 dental pulp +UBERON_0002204 musculoskeletal system UBERON_0001755 distal part of styloid process of temporal bone +UBERON_0002204 musculoskeletal system UBERON_0001758 periodontium +UBERON_0002204 musculoskeletal system UBERON_0001760 frontal sinus +UBERON_0002204 musculoskeletal system UBERON_0001762 turbinate bone +UBERON_0002204 musculoskeletal system UBERON_0001764 maxillary sinus +UBERON_0002204 musculoskeletal system UBERON_0001822 orbital septum +UBERON_0002204 musculoskeletal system UBERON_0001823 nasal cartilage +UBERON_0002204 musculoskeletal system UBERON_0001825 paranasal sinus +UBERON_0002204 musculoskeletal system UBERON_0001839 bony labyrinth +UBERON_0002204 musculoskeletal system UBERON_0001844 cochlea +UBERON_0002204 musculoskeletal system UBERON_0001845 perilymph +UBERON_0002204 musculoskeletal system UBERON_0001848 auricular cartilage +UBERON_0002204 musculoskeletal system UBERON_0001852 endolymph +UBERON_0002204 musculoskeletal system UBERON_0001863 scala vestibuli +UBERON_0002204 musculoskeletal system UBERON_0001864 scala tympani +UBERON_0002204 musculoskeletal system UBERON_0001867 cartilage of external ear +UBERON_0002204 musculoskeletal system UBERON_0001956 cartilage of bronchus +UBERON_0002204 musculoskeletal system UBERON_0001994 hyaline cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_0001995 fibrocartilage +UBERON_0002204 musculoskeletal system UBERON_0001996 elastic cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_0001998 sternocostal joint +UBERON_0002204 musculoskeletal system UBERON_0002001 joint of rib +UBERON_0002204 musculoskeletal system UBERON_0002002 interchondral joint +UBERON_0002204 musculoskeletal system UBERON_0002018 synovial membrane of synovial joint +UBERON_0002204 musculoskeletal system UBERON_0002090 postcranial axial skeleton +UBERON_0002204 musculoskeletal system UBERON_0002091 appendicular skeleton +UBERON_0002204 musculoskeletal system UBERON_0002205 manubrium of sternum +UBERON_0002204 musculoskeletal system UBERON_0002207 xiphoid process +UBERON_0002204 musculoskeletal system UBERON_0002208 sternebra +UBERON_0002204 musculoskeletal system UBERON_0002209 fibrous joint +UBERON_0002204 musculoskeletal system UBERON_0002210 syndesmosis +UBERON_0002204 musculoskeletal system UBERON_0002213 cartilaginous joint +UBERON_0002204 musculoskeletal system UBERON_0002215 synchondrosis +UBERON_0002204 musculoskeletal system UBERON_0002216 symphysis +UBERON_0002204 musculoskeletal system UBERON_0002217 synovial joint +UBERON_0002204 musculoskeletal system UBERON_0002218 tympanic ring +UBERON_0002204 musculoskeletal system UBERON_0002221 fontanelle +UBERON_0002204 musculoskeletal system UBERON_0002222 perichondrium +UBERON_0002204 musculoskeletal system UBERON_0002225 costal arch +UBERON_0002204 musculoskeletal system UBERON_0002228 rib +UBERON_0002204 musculoskeletal system UBERON_0002229 interparietal bone +UBERON_0002204 musculoskeletal system UBERON_0002230 head of rib +UBERON_0002204 musculoskeletal system UBERON_0002231 body of rib +UBERON_0002204 musculoskeletal system UBERON_0002234 proximal phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0002235 tubercle of rib +UBERON_0002204 musculoskeletal system UBERON_0002236 costal cartilage +UBERON_0002204 musculoskeletal system UBERON_0002237 true rib +UBERON_0002204 musculoskeletal system UBERON_0002238 false rib +UBERON_0002204 musculoskeletal system UBERON_0002239 floating rib +UBERON_0002204 musculoskeletal system UBERON_0002241 chondrocranium +UBERON_0002204 musculoskeletal system UBERON_0002242 nucleus pulposus +UBERON_0002204 musculoskeletal system UBERON_0002244 premaxilla +UBERON_0002204 musculoskeletal system UBERON_0002279 vestibular aqueduct +UBERON_0002204 musculoskeletal system UBERON_0002292 costovertebral joint +UBERON_0002204 musculoskeletal system UBERON_0002293 costochondral joint +UBERON_0002204 musculoskeletal system UBERON_0002295 scala media +UBERON_0002204 musculoskeletal system UBERON_0002328 notochord +UBERON_0002204 musculoskeletal system UBERON_0002347 thoracic vertebra +UBERON_0002204 musculoskeletal system UBERON_0002371 bone marrow +UBERON_0002204 musculoskeletal system UBERON_0002374 metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0002375 cricoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0002395 talus +UBERON_0002204 musculoskeletal system UBERON_0002396 vomer +UBERON_0002204 musculoskeletal system UBERON_0002397 maxilla +UBERON_0002204 musculoskeletal system UBERON_0002412 vertebra +UBERON_0002204 musculoskeletal system UBERON_0002413 cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0002414 lumbar vertebra +UBERON_0002204 musculoskeletal system UBERON_0002418 cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_0002428 limb bone +UBERON_0002204 musculoskeletal system UBERON_0002445 ulnare +UBERON_0002204 musculoskeletal system UBERON_0002446 patella +UBERON_0002204 musculoskeletal system UBERON_0002453 ethmoid sinus +UBERON_0002204 musculoskeletal system UBERON_0002478 orbitosphenoid +UBERON_0002204 musculoskeletal system UBERON_0002481 bone tissue +UBERON_0002204 musculoskeletal system UBERON_0002482 lamellar bone +UBERON_0002204 musculoskeletal system UBERON_0002483 trabecular bone tissue +UBERON_0002204 musculoskeletal system UBERON_0002484 bone marrow cavity +UBERON_0002204 musculoskeletal system UBERON_0002487 tooth cavity +UBERON_0002204 musculoskeletal system UBERON_0002489 coronal suture +UBERON_0002204 musculoskeletal system UBERON_0002490 frontal suture +UBERON_0002204 musculoskeletal system UBERON_0002491 lambdoid suture +UBERON_0002204 musculoskeletal system UBERON_0002492 sagittal suture +UBERON_0002204 musculoskeletal system UBERON_0002495 long bone +UBERON_0002204 musculoskeletal system UBERON_0002496 stapes base +UBERON_0002204 musculoskeletal system UBERON_0002497 acromion +UBERON_0002204 musculoskeletal system UBERON_0002498 deltopectoral crest +UBERON_0002204 musculoskeletal system UBERON_0002500 zygomatic arch +UBERON_0002204 musculoskeletal system UBERON_0002501 oval window +UBERON_0002204 musculoskeletal system UBERON_0002502 round window of inner ear +UBERON_0002204 musculoskeletal system UBERON_0002503 greater trochanter +UBERON_0002204 musculoskeletal system UBERON_0002504 lesser trochanter +UBERON_0002204 musculoskeletal system UBERON_0002510 anterior fontanel +UBERON_0002204 musculoskeletal system UBERON_0002513 endochondral bone +UBERON_0002204 musculoskeletal system UBERON_0002514 intramembranous bone +UBERON_0002204 musculoskeletal system UBERON_0002515 periosteum +UBERON_0002204 musculoskeletal system UBERON_0002516 epiphyseal plate +UBERON_0002204 musculoskeletal system UBERON_0002517 basicranium +UBERON_0002204 musculoskeletal system UBERON_0002819 apex of cochlea +UBERON_0002204 musculoskeletal system UBERON_0003106 urostyle +UBERON_0002204 musculoskeletal system UBERON_0003107 Meckel's cartilage +UBERON_0002204 musculoskeletal system UBERON_0003108 suspensorium +UBERON_0002204 musculoskeletal system UBERON_0003109 parapophysis +UBERON_0002204 musculoskeletal system UBERON_0003110 otic region +UBERON_0002204 musculoskeletal system UBERON_0003111 sphenoid region +UBERON_0002204 musculoskeletal system UBERON_0003112 olfactory region +UBERON_0002204 musculoskeletal system UBERON_0003113 dermatocranium +UBERON_0002204 musculoskeletal system UBERON_0003128 cranium +UBERON_0002204 musculoskeletal system UBERON_0003129 skull +UBERON_0002204 musculoskeletal system UBERON_0003221 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003252 thoracic rib cage +UBERON_0002204 musculoskeletal system UBERON_0003253 neck of rib +UBERON_0002204 musculoskeletal system UBERON_0003267 tooth of upper jaw +UBERON_0002204 musculoskeletal system UBERON_0003268 tooth of lower jaw +UBERON_0002204 musculoskeletal system UBERON_0003277 skeleton of upper jaw +UBERON_0002204 musculoskeletal system UBERON_0003278 skeleton of lower jaw +UBERON_0002204 musculoskeletal system UBERON_0003317 odontogenic papilla of incisor +UBERON_0002204 musculoskeletal system UBERON_0003355 epithelium of incisor +UBERON_0002204 musculoskeletal system UBERON_0003356 epithelium of nasal septum +UBERON_0002204 musculoskeletal system UBERON_0003406 cartilage of respiratory system +UBERON_0002204 musculoskeletal system UBERON_0003407 cartilage of nasal septum +UBERON_0002204 musculoskeletal system UBERON_0003414 mesenchyme of mandible +UBERON_0002204 musculoskeletal system UBERON_0003415 mesenchyme of nasal septum +UBERON_0002204 musculoskeletal system UBERON_0003449 tail intervertebral disc +UBERON_0002204 musculoskeletal system UBERON_0003450 upper jaw incisor +UBERON_0002204 musculoskeletal system UBERON_0003451 lower jaw incisor +UBERON_0002204 musculoskeletal system UBERON_0003457 head bone +UBERON_0002204 musculoskeletal system UBERON_0003458 neck bone +UBERON_0002204 musculoskeletal system UBERON_0003459 chest bone +UBERON_0002204 musculoskeletal system UBERON_0003460 arm bone +UBERON_0002204 musculoskeletal system UBERON_0003461 shoulder bone +UBERON_0002204 musculoskeletal system UBERON_0003462 facial bone +UBERON_0002204 musculoskeletal system UBERON_0003463 trunk bone +UBERON_0002204 musculoskeletal system UBERON_0003464 hindlimb bone +UBERON_0002204 musculoskeletal system UBERON_0003466 forelimb zeugopod bone +UBERON_0002204 musculoskeletal system UBERON_0003467 sesamoid bone of gastrocnemius +UBERON_0002204 musculoskeletal system UBERON_0003482 vein of trabecular bone +UBERON_0002204 musculoskeletal system UBERON_0003601 neck cartilage +UBERON_0002204 musculoskeletal system UBERON_0003603 lower respiratory tract cartilage +UBERON_0002204 musculoskeletal system UBERON_0003604 trachea cartilage +UBERON_0002204 musculoskeletal system UBERON_0003606 limb long bone +UBERON_0002204 musculoskeletal system UBERON_0003607 forelimb long bone +UBERON_0002204 musculoskeletal system UBERON_0003608 hindlimb long bone +UBERON_0002204 musculoskeletal system UBERON_0003620 manual digit 1 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003636 manual digit 2 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003637 manual digit 3 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003638 manual digit 4 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003639 manual digit 5 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003640 pedal digit 1 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003641 pedal digit 2 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003642 pedal digit 3 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003645 metacarpal bone of digit 1 +UBERON_0002204 musculoskeletal system UBERON_0003646 metacarpal bone of digit 2 +UBERON_0002204 musculoskeletal system UBERON_0003647 metacarpal bone of digit 3 +UBERON_0002204 musculoskeletal system UBERON_0003648 metacarpal bone of digit 4 +UBERON_0002204 musculoskeletal system UBERON_0003649 metacarpal bone of digit 5 +UBERON_0002204 musculoskeletal system UBERON_0003650 metatarsal bone of digit 1 +UBERON_0002204 musculoskeletal system UBERON_0003651 metatarsal bone of digit 2 +UBERON_0002204 musculoskeletal system UBERON_0003652 metatarsal bone of digit 3 +UBERON_0002204 musculoskeletal system UBERON_0003653 metatarsal bone of digit 4 +UBERON_0002204 musculoskeletal system UBERON_0003654 metatarsal bone of digit 5 +UBERON_0002204 musculoskeletal system UBERON_0003655 molar tooth +UBERON_0002204 musculoskeletal system UBERON_0003656 mesopodium bone +UBERON_0002204 musculoskeletal system UBERON_0003657 limb joint +UBERON_0002204 musculoskeletal system UBERON_0003666 upper jaw molar +UBERON_0002204 musculoskeletal system UBERON_0003667 lower jaw molar +UBERON_0002204 musculoskeletal system UBERON_0003669 fascia lata +UBERON_0002204 musculoskeletal system UBERON_0003671 anterior cruciate ligament of knee joint +UBERON_0002204 musculoskeletal system UBERON_0003672 dentition +UBERON_0002204 musculoskeletal system UBERON_0003674 cuspid +UBERON_0002204 musculoskeletal system UBERON_0003675 tooth crown +UBERON_0002204 musculoskeletal system UBERON_0003676 patellar ligament +UBERON_0002204 musculoskeletal system UBERON_0003677 tooth root +UBERON_0002204 musculoskeletal system UBERON_0003678 tooth apex +UBERON_0002204 musculoskeletal system UBERON_0003680 posterior cruciate ligament of knee joint +UBERON_0002204 musculoskeletal system UBERON_0003685 cranial suture +UBERON_0002204 musculoskeletal system UBERON_0003686 tooth socket +UBERON_0002204 musculoskeletal system UBERON_0003687 foramen magnum +UBERON_0002204 musculoskeletal system UBERON_0003689 sella turcica +UBERON_0002204 musculoskeletal system UBERON_0003690 fused sacrum +UBERON_0002204 musculoskeletal system UBERON_0003691 epidural space +UBERON_0002204 musculoskeletal system UBERON_0003692 acromioclavicular joint +UBERON_0002204 musculoskeletal system UBERON_0003694 atlanto-axial joint +UBERON_0002204 musculoskeletal system UBERON_0003695 metacarpophalangeal joint +UBERON_0002204 musculoskeletal system UBERON_0003696 metatarsophalangeal joint +UBERON_0002204 musculoskeletal system UBERON_0003698 subtalar joint +UBERON_0002204 musculoskeletal system UBERON_0003699 pubic symphysis +UBERON_0002204 musculoskeletal system UBERON_0003700 temporomandibular joint +UBERON_0002204 musculoskeletal system UBERON_0003701 calcaneal tendon +UBERON_0002204 musculoskeletal system UBERON_0003720 anterior cranial fossa +UBERON_0002204 musculoskeletal system UBERON_0003722 middle cranial fossa +UBERON_0002204 musculoskeletal system UBERON_0003821 metapodium bone +UBERON_0002204 musculoskeletal system UBERON_0003826 upper leg bone +UBERON_0002204 musculoskeletal system UBERON_0003827 thoracic segment bone +UBERON_0002204 musculoskeletal system UBERON_0003828 abdominal segment bone +UBERON_0002204 musculoskeletal system UBERON_0003839 forelimb joint +UBERON_0002204 musculoskeletal system UBERON_0003840 hindlimb joint +UBERON_0002204 musculoskeletal system UBERON_0003841 autopod joint +UBERON_0002204 musculoskeletal system UBERON_0003861 neural arch +UBERON_0002204 musculoskeletal system UBERON_0003862 pedal digit 4 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003863 pedal digit 5 phalanx +UBERON_0002204 musculoskeletal system UBERON_0003864 middle phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0003865 distal phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0003866 middle phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0003867 distal phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0003868 proximal phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0003912 chitinous tooth +UBERON_0002204 musculoskeletal system UBERON_0003913 tooth-like structure +UBERON_0002204 musculoskeletal system UBERON_0003932 cartilage element of chondrocranium +UBERON_0002204 musculoskeletal system UBERON_0003933 cranial cartilage +UBERON_0002204 musculoskeletal system UBERON_0003954 squamoparietal suture +UBERON_0002204 musculoskeletal system UBERON_0003955 molar crown +UBERON_0002204 musculoskeletal system UBERON_0003958 long bone epiphyseal ossification zone +UBERON_0002204 musculoskeletal system UBERON_0003960 styloid process of temporal bone +UBERON_0002204 musculoskeletal system UBERON_0003966 gonial bone +UBERON_0002204 musculoskeletal system UBERON_0003971 interfrontal bone +UBERON_0002204 musculoskeletal system UBERON_0003973 nasal concha of ethmoid bone +UBERON_0002204 musculoskeletal system UBERON_0003995 subarcuate fossa +UBERON_0002204 musculoskeletal system UBERON_0003996 cervical vertebra 1 arcus anterior +UBERON_0002204 musculoskeletal system UBERON_0003997 hyoid bone greater horn +UBERON_0002204 musculoskeletal system UBERON_0003998 hyoid bone lesser horn +UBERON_0002204 musculoskeletal system UBERON_0003999 hyoid bone body +UBERON_0002204 musculoskeletal system UBERON_0004096 odontoid process of cervical vertebra 2 +UBERON_0002204 musculoskeletal system UBERON_0004098 tibial plateaux +UBERON_0002204 musculoskeletal system UBERON_0004099 joint space of elbow +UBERON_0002204 musculoskeletal system UBERON_0004103 alveolar ridge +UBERON_0002204 musculoskeletal system UBERON_0004106 crus of ear +UBERON_0002204 musculoskeletal system UBERON_0004108 clivus of occipital bone +UBERON_0002204 musculoskeletal system UBERON_0004109 cortex of humerus +UBERON_0002204 musculoskeletal system UBERON_0004129 growth plate cartilage +UBERON_0002204 musculoskeletal system UBERON_0004247 bone of dorsum +UBERON_0002204 musculoskeletal system UBERON_0004248 pedal digit bone +UBERON_0002204 musculoskeletal system UBERON_0004249 manual digit bone +UBERON_0002204 musculoskeletal system UBERON_0004250 upper arm bone +UBERON_0002204 musculoskeletal system UBERON_0004251 hindlimb zeugopod bone +UBERON_0002204 musculoskeletal system UBERON_0004273 cartilaginous joint suture +UBERON_0002204 musculoskeletal system UBERON_0004288 skeleton +UBERON_0002204 musculoskeletal system UBERON_0004300 distal phalanx +UBERON_0002204 musculoskeletal system UBERON_0004301 middle phalanx +UBERON_0002204 musculoskeletal system UBERON_0004302 proximal phalanx +UBERON_0002204 musculoskeletal system UBERON_0004311 distal phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004312 distal phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004313 distal phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004314 distal phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004315 distal phalanx of pedal digit 1 +UBERON_0002204 musculoskeletal system UBERON_0004316 distal phalanx of pedal digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004317 distal phalanx of pedal digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004318 distal phalanx of pedal digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004319 distal phalanx of pedal digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004320 middle phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004321 middle phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004322 middle phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004323 middle phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004324 middle phalanx of pedal digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004325 middle phalanx of pedal digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004326 middle phalanx of pedal digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004327 middle phalanx of pedal digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004328 proximal phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004329 proximal phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004330 proximal phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004331 proximal phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004332 proximal phalanx of pedal digit 1 +UBERON_0002204 musculoskeletal system UBERON_0004333 proximal phalanx of pedal digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004334 proximal phalanx of pedal digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004335 proximal phalanx of pedal digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004336 proximal phalanx of pedal digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004337 distal phalanx of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0004338 proximal phalanx of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0004339 vault of skull +UBERON_0002204 musculoskeletal system UBERON_0004361 stylohyoid ligament +UBERON_0002204 musculoskeletal system UBERON_0004368 Reichert's cartilage +UBERON_0002204 musculoskeletal system UBERON_0004375 bone of free limb or fin +UBERON_0002204 musculoskeletal system UBERON_0004376 fin bone +UBERON_0002204 musculoskeletal system UBERON_0004377 distal metaphysis +UBERON_0002204 musculoskeletal system UBERON_0004378 proximal metaphysis +UBERON_0002204 musculoskeletal system UBERON_0004379 distal epiphysis +UBERON_0002204 musculoskeletal system UBERON_0004380 proximal epiphysis +UBERON_0002204 musculoskeletal system UBERON_0004381 skeleton of limb +UBERON_0002204 musculoskeletal system UBERON_0004382 epiphysis of humerus +UBERON_0002204 musculoskeletal system UBERON_0004383 epiphysis of tibia +UBERON_0002204 musculoskeletal system UBERON_0004384 epiphysis of femur +UBERON_0002204 musculoskeletal system UBERON_0004385 epiphysis of radius +UBERON_0002204 musculoskeletal system UBERON_0004386 epiphysis of ulna +UBERON_0002204 musculoskeletal system UBERON_0004387 epiphysis of phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0004388 epiphysis of fibula +UBERON_0002204 musculoskeletal system UBERON_0004389 epiphysis of metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004390 epiphysis of metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004391 epiphysis of first metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004392 epiphysis of second metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004393 epiphysis of third metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004394 epiphysis of fourth metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004395 epiphysis of first metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004396 epiphysis of second metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004397 epiphysis of third metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004398 epiphysis of fourth metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004399 epiphysis of fifth metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004400 bone tissue of epiphysis +UBERON_0002204 musculoskeletal system UBERON_0004401 bone tissue of distal epiphysis +UBERON_0002204 musculoskeletal system UBERON_0004402 bone tissue of proximal epiphysis +UBERON_0002204 musculoskeletal system UBERON_0004403 periosteum of epiphysis +UBERON_0002204 musculoskeletal system UBERON_0004404 distal epiphysis of humerus +UBERON_0002204 musculoskeletal system UBERON_0004405 distal epiphysis of tibia +UBERON_0002204 musculoskeletal system UBERON_0004406 distal epiphysis of femur +UBERON_0002204 musculoskeletal system UBERON_0004407 distal epiphysis of radius +UBERON_0002204 musculoskeletal system UBERON_0004408 distal epiphysis of ulna +UBERON_0002204 musculoskeletal system UBERON_0004409 distal epiphysis of phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0004410 distal epiphysis of fibula +UBERON_0002204 musculoskeletal system UBERON_0004411 proximal epiphysis of humerus +UBERON_0002204 musculoskeletal system UBERON_0004412 proximal epiphysis of femur +UBERON_0002204 musculoskeletal system UBERON_0004413 proximal epiphysis of radius +UBERON_0002204 musculoskeletal system UBERON_0004414 proximal epiphysis of phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0004415 proximal epiphysis of metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004416 proximal epiphysis of metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004417 proximal epiphysis of phalanx of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0004418 proximal epiphysis of phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004419 proximal epiphysis of phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004420 proximal epiphysis of phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004421 proximal epiphysis of phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004422 proximal epiphysis of first metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004423 proximal epiphysis of second metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004424 proximal epiphysis of third metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004425 proximal epiphysis of fourth metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004426 proximal epiphysis of fifth metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0004427 proximal epiphysis of first metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004428 proximal epiphysis of second metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004429 proximal epiphysis of third metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004430 proximal epiphysis of fourth metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004431 proximal epiphysis of fifth metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0004432 proximal epiphysis of distal phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004433 proximal epiphysis of distal phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004434 proximal epiphysis of distal phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004435 proximal epiphysis of distal phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004436 proximal epiphysis of middle phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004437 proximal epiphysis of middle phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004438 proximal epiphysis of middle phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004439 proximal epiphysis of middle phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004440 proximal epiphysis of proximal phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0004441 proximal epiphysis of proximal phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0004442 proximal epiphysis of proximal phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0004443 proximal epiphysis of proximal phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0004444 proximal epiphysis of distal phalanx of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0004445 proximal epiphysis of proximal phalanx of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0004446 epiphysis of phalanx +UBERON_0002204 musculoskeletal system UBERON_0004447 proximal epiphysis of phalanx +UBERON_0002204 musculoskeletal system UBERON_0004448 distal epiphysis of phalanx +UBERON_0002204 musculoskeletal system UBERON_0004451 trunk or cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0004521 vasculature of muscle organ +UBERON_0002204 musculoskeletal system UBERON_0004522 vasculature of musculoskeletal system +UBERON_0002204 musculoskeletal system UBERON_0004527 alveolar process of maxilla +UBERON_0002204 musculoskeletal system UBERON_0004528 alveolar ridge of mandible +UBERON_0002204 musculoskeletal system UBERON_0004530 bony projection +UBERON_0002204 musculoskeletal system UBERON_0004546 cribriform plate +UBERON_0002204 musculoskeletal system UBERON_0004601 rib 1 +UBERON_0002204 musculoskeletal system UBERON_0004602 rib 2 +UBERON_0002204 musculoskeletal system UBERON_0004603 rib 3 +UBERON_0002204 musculoskeletal system UBERON_0004604 rib 4 +UBERON_0002204 musculoskeletal system UBERON_0004605 rib 5 +UBERON_0002204 musculoskeletal system UBERON_0004606 rib 6 +UBERON_0002204 musculoskeletal system UBERON_0004607 rib 7 +UBERON_0002204 musculoskeletal system UBERON_0004608 rib 9 +UBERON_0002204 musculoskeletal system UBERON_0004609 rib 10 +UBERON_0002204 musculoskeletal system UBERON_0004610 rib 11 +UBERON_0002204 musculoskeletal system UBERON_0004611 rib 12 +UBERON_0002204 musculoskeletal system UBERON_0004612 mammalian cervical vertebra 3 +UBERON_0002204 musculoskeletal system UBERON_0004613 mammalian cervical vertebra 4 +UBERON_0002204 musculoskeletal system UBERON_0004614 mammalian cervical vertebra 5 +UBERON_0002204 musculoskeletal system UBERON_0004615 mammalian cervical vertebra 6 +UBERON_0002204 musculoskeletal system UBERON_0004616 mammalian cervical vertebra 7 +UBERON_0002204 musculoskeletal system UBERON_0004617 lumbar vertebra 1 +UBERON_0002204 musculoskeletal system UBERON_0004618 lumbar vertebra 2 +UBERON_0002204 musculoskeletal system UBERON_0004619 lumbar vertebra 3 +UBERON_0002204 musculoskeletal system UBERON_0004620 lumbar vertebra 4 +UBERON_0002204 musculoskeletal system UBERON_0004621 lumbar vertebra 5 +UBERON_0002204 musculoskeletal system UBERON_0004622 sacral vertebra 1 +UBERON_0002204 musculoskeletal system UBERON_0004623 sacral vertebra 2 +UBERON_0002204 musculoskeletal system UBERON_0004624 sacral vertebra 3 +UBERON_0002204 musculoskeletal system UBERON_0004625 sacral vertebra 4 +UBERON_0002204 musculoskeletal system UBERON_0004626 thoracic vertebra 1 +UBERON_0002204 musculoskeletal system UBERON_0004627 thoracic vertebra 2 +UBERON_0002204 musculoskeletal system UBERON_0004628 thoracic vertebra 3 +UBERON_0002204 musculoskeletal system UBERON_0004629 thoracic vertebra 4 +UBERON_0002204 musculoskeletal system UBERON_0004630 thoracic vertebra 5 +UBERON_0002204 musculoskeletal system UBERON_0004631 thoracic vertebra 6 +UBERON_0002204 musculoskeletal system UBERON_0004632 thoracic vertebra 7 +UBERON_0002204 musculoskeletal system UBERON_0004633 thoracic vertebra 9 +UBERON_0002204 musculoskeletal system UBERON_0004634 thoracic vertebra 10 +UBERON_0002204 musculoskeletal system UBERON_0004635 thoracic vertebra 11 +UBERON_0002204 musculoskeletal system UBERON_0004636 thoracic vertebra 12 +UBERON_0002204 musculoskeletal system UBERON_0004637 otic capsule +UBERON_0002204 musculoskeletal system UBERON_0004649 sphenoid bone pterygoid process +UBERON_0002204 musculoskeletal system UBERON_0004651 scapula spine +UBERON_0002204 musculoskeletal system UBERON_0004652 humerus diaphysis +UBERON_0002204 musculoskeletal system UBERON_0004654 temporal process of zygomatic bone +UBERON_0002204 musculoskeletal system UBERON_0004655 zygomatic process of temporal bone +UBERON_0002204 musculoskeletal system UBERON_0004657 mandible condylar process +UBERON_0002204 musculoskeletal system UBERON_0004658 mandible head +UBERON_0002204 musculoskeletal system UBERON_0004659 mandible neck +UBERON_0002204 musculoskeletal system UBERON_0004660 mandible coronoid process +UBERON_0002204 musculoskeletal system UBERON_0004661 mandible temporal crest +UBERON_0002204 musculoskeletal system UBERON_0004662 vertebra lamina +UBERON_0002204 musculoskeletal system UBERON_0004704 bone fossa +UBERON_0002204 musculoskeletal system UBERON_0004705 fenestra +UBERON_0002204 musculoskeletal system UBERON_0004715 annulus fibrosus disci intervertebralis +UBERON_0002204 musculoskeletal system UBERON_0004740 basibranchial bone +UBERON_0002204 musculoskeletal system UBERON_0004741 cleithrum +UBERON_0002204 musculoskeletal system UBERON_0004742 dentary +UBERON_0002204 musculoskeletal system UBERON_0004743 coracoid bone +UBERON_0002204 musculoskeletal system UBERON_0004744 articular/anguloarticular +UBERON_0002204 musculoskeletal system UBERON_0004745 parasphenoid +UBERON_0002204 musculoskeletal system UBERON_0004746 prootic bone +UBERON_0002204 musculoskeletal system UBERON_0004747 supraoccipital bone +UBERON_0002204 musculoskeletal system UBERON_0004751 hypohyal bone +UBERON_0002204 musculoskeletal system UBERON_0004752 palatoquadrate cartilage +UBERON_0002204 musculoskeletal system UBERON_0004753 scapulocoracoid +UBERON_0002204 musculoskeletal system UBERON_0004755 skeletal tissue +UBERON_0002204 musculoskeletal system UBERON_0004756 dermal skeletal element +UBERON_0002204 musculoskeletal system UBERON_0004761 cartilaginous neurocranium +UBERON_0002204 musculoskeletal system UBERON_0004763 endochondral bone tissue +UBERON_0002204 musculoskeletal system UBERON_0004764 intramembranous bone tissue +UBERON_0002204 musculoskeletal system UBERON_0004765 skeletal element +UBERON_0002204 musculoskeletal system UBERON_0004766 cranial bone +UBERON_0002204 musculoskeletal system UBERON_0004767 vomerine tooth +UBERON_0002204 musculoskeletal system UBERON_0004768 bone of lower jaw +UBERON_0002204 musculoskeletal system UBERON_0004769 diaphysis +UBERON_0002204 musculoskeletal system UBERON_0004770 articular system +UBERON_0002204 musculoskeletal system UBERON_0004771 posterior nasal aperture +UBERON_0002204 musculoskeletal system UBERON_0004825 dental lamina +UBERON_0002204 musculoskeletal system UBERON_0004858 cellular cartilage +UBERON_0002204 musculoskeletal system UBERON_0004865 actinopterygian parietal bone +UBERON_0002204 musculoskeletal system UBERON_0004866 actinopterygian frontal bone +UBERON_0002204 musculoskeletal system UBERON_0004867 orbital cavity +UBERON_0002204 musculoskeletal system UBERON_0004905 articulation +UBERON_0002204 musculoskeletal system UBERON_0005018 mucosa of nasal septum +UBERON_0002204 musculoskeletal system UBERON_0005055 zone of long bone +UBERON_0002204 musculoskeletal system UBERON_0005236 osseus labyrinth vestibule +UBERON_0002204 musculoskeletal system UBERON_0005342 malleus head +UBERON_0002204 musculoskeletal system UBERON_0005354 malleus processus brevis +UBERON_0002204 musculoskeletal system UBERON_0005355 malleus neck +UBERON_0002204 musculoskeletal system UBERON_0005404 frontonasal suture +UBERON_0002204 musculoskeletal system UBERON_0005410 cartilaginous otic capsule +UBERON_0002204 musculoskeletal system UBERON_0005411 bony otic capsule +UBERON_0002204 musculoskeletal system UBERON_0005446 foramen rotundum +UBERON_0002204 musculoskeletal system UBERON_0005456 jugular foramen +UBERON_0002204 musculoskeletal system UBERON_0005480 superior orbital fissure +UBERON_0002204 musculoskeletal system UBERON_0005619 secondary palatal shelf +UBERON_0002204 musculoskeletal system UBERON_0005620 primary palate +UBERON_0002204 musculoskeletal system UBERON_0005653 upper jaw molar epithelium +UBERON_0002204 musculoskeletal system UBERON_0005654 lower jaw molar epithelium +UBERON_0002204 musculoskeletal system UBERON_0005658 secondary palatal shelf epithelium +UBERON_0002204 musculoskeletal system UBERON_0005659 primary palate epithelium +UBERON_0002204 musculoskeletal system UBERON_0005687 orbitosphenoid cartilage element +UBERON_0002204 musculoskeletal system UBERON_0005700 upper jaw molar odontogenic papilla +UBERON_0002204 musculoskeletal system UBERON_0005701 lower jaw molar odontogenic papilla +UBERON_0002204 musculoskeletal system UBERON_0005704 secondary palatal shelf mesenchyme +UBERON_0002204 musculoskeletal system UBERON_0005705 primary palate mesenchyme +UBERON_0002204 musculoskeletal system UBERON_0005707 upper jaw incisor odontogenic papilla +UBERON_0002204 musculoskeletal system UBERON_0005708 lower jaw incisor odontogenic papilla +UBERON_0002204 musculoskeletal system UBERON_0005709 upper jaw incisor epithelium +UBERON_0002204 musculoskeletal system UBERON_0005710 lower jaw incisor epithelium +UBERON_0002204 musculoskeletal system UBERON_0005744 bone foramen +UBERON_0002204 musculoskeletal system UBERON_0005745 optic foramen +UBERON_0002204 musculoskeletal system UBERON_0005808 bone tissue of long bone +UBERON_0002204 musculoskeletal system UBERON_0005809 cortex of manus bone +UBERON_0002204 musculoskeletal system UBERON_0005810 cervical vertebra 1 anterior tubercle +UBERON_0002204 musculoskeletal system UBERON_0005814 arch of atlas +UBERON_0002204 musculoskeletal system UBERON_0005815 anterior tubercle of transverse process of cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0005816 posterior tubercle of transverse process of cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0005863 cartilaginous condensation +UBERON_0002204 musculoskeletal system UBERON_0005866 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0005869 maxillary process of inferior nasal concha +UBERON_0002204 musculoskeletal system UBERON_0005871 palatine process of maxilla +UBERON_0002204 musculoskeletal system UBERON_0005884 hyoid arch skeleton +UBERON_0002204 musculoskeletal system UBERON_0005886 post-hyoid pharyngeal arch skeleton +UBERON_0002204 musculoskeletal system UBERON_0005893 leg bone +UBERON_0002204 musculoskeletal system UBERON_0005897 manus bone +UBERON_0002204 musculoskeletal system UBERON_0005899 pes bone +UBERON_0002204 musculoskeletal system UBERON_0005902 occipital region +UBERON_0002204 musculoskeletal system UBERON_0005913 zone of bone organ +UBERON_0002204 musculoskeletal system UBERON_0005919 supreme nasal concha +UBERON_0002204 musculoskeletal system UBERON_0005920 superior nasal concha +UBERON_0002204 musculoskeletal system UBERON_0005921 middle nasal concha +UBERON_0002204 musculoskeletal system UBERON_0005922 inferior nasal concha +UBERON_0002204 musculoskeletal system UBERON_0005925 ethmoidal process of inferior nasal concha +UBERON_0002204 musculoskeletal system UBERON_0005944 axial skeleton plus cranial skeleton +UBERON_0002204 musculoskeletal system UBERON_0005945 neurocranial trabecula +UBERON_0002204 musculoskeletal system UBERON_0005991 aortic valve anulus +UBERON_0002204 musculoskeletal system UBERON_0005993 pulmonary valve anulus +UBERON_0002204 musculoskeletal system UBERON_0005995 mitral valve anulus +UBERON_0002204 musculoskeletal system UBERON_0005997 tricuspid valve anulus +UBERON_0002204 musculoskeletal system UBERON_0006006 metoptic pillar +UBERON_0002204 musculoskeletal system UBERON_0006008 fibrous ring of heart +UBERON_0002204 musculoskeletal system UBERON_0006061 process of vertebra +UBERON_0002204 musculoskeletal system UBERON_0006062 zygapophysis +UBERON_0002204 musculoskeletal system UBERON_0006063 cartilaginous neural arch +UBERON_0002204 musculoskeletal system UBERON_0006065 hemal arch +UBERON_0002204 musculoskeletal system UBERON_0006068 bone of tail +UBERON_0002204 musculoskeletal system UBERON_0006072 cervical region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0006073 thoracic region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0006074 lumbar region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0006075 sacral region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0006076 caudal region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0006077 subdivision of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0006106 cochlear canal +UBERON_0002204 musculoskeletal system UBERON_0006209 basioccipital cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006213 carpus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006214 carpus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006227 ethmoid bone primordium +UBERON_0002204 musculoskeletal system UBERON_0006228 exoccipital pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006231 facial bone primordium +UBERON_0002204 musculoskeletal system UBERON_0006234 femur pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006239 future central tendon +UBERON_0002204 musculoskeletal system UBERON_0006245 humerus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006246 humerus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006247 iliac pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006248 incus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006254 ischial cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006255 ischial pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006262 malleus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006263 Meckel's cartilage pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006271 orbital fissure +UBERON_0002204 musculoskeletal system UBERON_0006285 pubic pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006286 radius cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006287 radius-ulna pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006288 rib cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006289 rib pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006290 scapula cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006291 scapula pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006294 stapes pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006295 sternebral bone pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0006306 ulna cartilage element +UBERON_0002204 musculoskeletal system UBERON_0006326 base of arytenoid +UBERON_0002204 musculoskeletal system UBERON_0006332 nasal capsule +UBERON_0002204 musculoskeletal system UBERON_0006428 basisphenoid bone +UBERON_0002204 musculoskeletal system UBERON_0006430 xiphoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0006431 xiphoid process bone +UBERON_0002204 musculoskeletal system UBERON_0006435 os penis +UBERON_0002204 musculoskeletal system UBERON_0006440 os clitoris +UBERON_0002204 musculoskeletal system UBERON_0006444 annulus fibrosus +UBERON_0002204 musculoskeletal system UBERON_0006494 apex of arytenoid +UBERON_0002204 musculoskeletal system UBERON_0006495 osseus cochlear canal +UBERON_0002204 musculoskeletal system UBERON_0006586 otolymph +UBERON_0002204 musculoskeletal system UBERON_0006597 quadrate bone +UBERON_0002204 musculoskeletal system UBERON_0006604 lamina orbitonasalis +UBERON_0002204 musculoskeletal system UBERON_0006605 tectum synoticum +UBERON_0002204 musculoskeletal system UBERON_0006606 mandibular symphysis +UBERON_0002204 musculoskeletal system UBERON_0006633 coracoid process of scapula +UBERON_0002204 musculoskeletal system UBERON_0006654 perineal body +UBERON_0002204 musculoskeletal system UBERON_0006657 glenoid fossa +UBERON_0002204 musculoskeletal system UBERON_0006658 interphalangeal joint +UBERON_0002204 musculoskeletal system UBERON_0006659 cruciate ligament of knee +UBERON_0002204 musculoskeletal system UBERON_0006667 pituitary fossa +UBERON_0002204 musculoskeletal system UBERON_0006668 carotid canal +UBERON_0002204 musculoskeletal system UBERON_0006669 alveolar canal +UBERON_0002204 musculoskeletal system UBERON_0006670 central tendon of diaphragm +UBERON_0002204 musculoskeletal system UBERON_0006672 incisive canal +UBERON_0002204 musculoskeletal system UBERON_0006673 mandibular canal +UBERON_0002204 musculoskeletal system UBERON_0006679 carina of trachea +UBERON_0002204 musculoskeletal system UBERON_0006682 hypoglossal canal +UBERON_0002204 musculoskeletal system UBERON_0006683 posterior fontanelle +UBERON_0002204 musculoskeletal system UBERON_0006684 sphenoidal fontanelle +UBERON_0002204 musculoskeletal system UBERON_0006686 spinal vein +UBERON_0002204 musculoskeletal system UBERON_0006692 vertebral canal +UBERON_0002204 musculoskeletal system UBERON_0006713 foramen cecum of frontal bone +UBERON_0002204 musculoskeletal system UBERON_0006714 tibiofibula +UBERON_0002204 musculoskeletal system UBERON_0006715 radio-ulna +UBERON_0002204 musculoskeletal system UBERON_0006717 autopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0006721 alisphenoid bone +UBERON_0002204 musculoskeletal system UBERON_0006722 manubrium of malleus +UBERON_0002204 musculoskeletal system UBERON_0006723 cochlear modiolus +UBERON_0002204 musculoskeletal system UBERON_0006724 osseus spiral lamina +UBERON_0002204 musculoskeletal system UBERON_0006767 head of femur +UBERON_0002204 musculoskeletal system UBERON_0006768 epiphyseal line +UBERON_0002204 musculoskeletal system UBERON_0006770 apophysis +UBERON_0002204 musculoskeletal system UBERON_0006771 long bone epiphyseal plate proliferative zone +UBERON_0002204 musculoskeletal system UBERON_0006772 long bone epiphyseal plate hypertrophic zone +UBERON_0002204 musculoskeletal system UBERON_0006773 long bone epiphyseal plate ossification zone +UBERON_0002204 musculoskeletal system UBERON_0006775 zone of epiphyseal plate +UBERON_0002204 musculoskeletal system UBERON_0006776 annular epiphysis +UBERON_0002204 musculoskeletal system UBERON_0006801 proximal head of humerus +UBERON_0002204 musculoskeletal system UBERON_0006802 acetabular rim +UBERON_0002204 musculoskeletal system UBERON_0006803 obturator foramen +UBERON_0002204 musculoskeletal system UBERON_0006805 sternal end of clavicle +UBERON_0002204 musculoskeletal system UBERON_0006806 entepicondyle of humerus +UBERON_0002204 musculoskeletal system UBERON_0006807 ectepicondyle of humerus +UBERON_0002204 musculoskeletal system UBERON_0006810 olecranon +UBERON_0002204 musculoskeletal system UBERON_0006811 occipital condyle +UBERON_0002204 musculoskeletal system UBERON_0006812 mental foramen +UBERON_0002204 musculoskeletal system UBERON_0006813 nasal skeleton +UBERON_0002204 musculoskeletal system UBERON_0006820 body of sternum +UBERON_0002204 musculoskeletal system UBERON_0006822 proximal epiphysis of ulna +UBERON_0002204 musculoskeletal system UBERON_0006836 medial tibial tarsal bone +UBERON_0002204 musculoskeletal system UBERON_0006837 tegmen tympani +UBERON_0002204 musculoskeletal system UBERON_0006844 cusp of tooth +UBERON_0002204 musculoskeletal system UBERON_0006849 scapula +UBERON_0002204 musculoskeletal system UBERON_0006861 diaphysis proper +UBERON_0002204 musculoskeletal system UBERON_0006862 diaphysis of femur +UBERON_0002204 musculoskeletal system UBERON_0006863 proximal metaphysis of femur +UBERON_0002204 musculoskeletal system UBERON_0006864 distal metaphysis of femur +UBERON_0002204 musculoskeletal system UBERON_0006865 metaphysis of femur +UBERON_0002204 musculoskeletal system UBERON_0006959 mandible angular process +UBERON_0002204 musculoskeletal system UBERON_0006970 bony core of horn +UBERON_0002204 musculoskeletal system UBERON_0007115 deciduous tooth +UBERON_0002204 musculoskeletal system UBERON_0007116 primary dentition +UBERON_0002204 musculoskeletal system UBERON_0007119 neck of femur +UBERON_0002204 musculoskeletal system UBERON_0007120 premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0007164 distal radio-ulnar joint +UBERON_0002204 musculoskeletal system UBERON_0007165 proximal radio-ulnar joint +UBERON_0002204 musculoskeletal system UBERON_0007168 long head of biceps brachii +UBERON_0002204 musculoskeletal system UBERON_0007169 short head of biceps brachii +UBERON_0002204 musculoskeletal system UBERON_0007170 squamous part of occipital bone +UBERON_0002204 musculoskeletal system UBERON_0007171 border of scapula +UBERON_0002204 musculoskeletal system UBERON_0007172 angle of scapula +UBERON_0002204 musculoskeletal system UBERON_0007173 lateral border of scapula +UBERON_0002204 musculoskeletal system UBERON_0007174 medial border of scapula +UBERON_0002204 musculoskeletal system UBERON_0007175 inferior angle of scapula +UBERON_0002204 musculoskeletal system UBERON_0007176 superior angle of scapula +UBERON_0002204 musculoskeletal system UBERON_0007195 stroma of bone marrow +UBERON_0002204 musculoskeletal system UBERON_0007215 trabecula cranii +UBERON_0002204 musculoskeletal system UBERON_0007223 osseus cochlea +UBERON_0002204 musculoskeletal system UBERON_0007252 intervertebral disk of cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0007254 intervertebral disk of thoracic vertebra +UBERON_0002204 musculoskeletal system UBERON_0007255 intervertebral disk of lumbar vertebra +UBERON_0002204 musculoskeletal system UBERON_0007257 intervertebral disk of sacral vertebra +UBERON_0002204 musculoskeletal system UBERON_0007260 intervertebral disk of third cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0007261 intervertebral disk of fourth cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0007262 intervertebral disk of fifth cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0007263 intervertebral disk of sixth cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0007264 intervertebral disk of seventh cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0007265 intervertebral disk of axis +UBERON_0002204 musculoskeletal system UBERON_0007266 intervertebral disk of atlas +UBERON_0002204 musculoskeletal system UBERON_0007267 trachea pre-cartilage rings +UBERON_0002204 musculoskeletal system UBERON_0007272 pectoral appendage skeleton +UBERON_0002204 musculoskeletal system UBERON_0007273 pelvic appendage skeleton +UBERON_0002204 musculoskeletal system UBERON_0007354 cartilage of pharyngotympanic tube +UBERON_0002204 musculoskeletal system UBERON_0007355 bony part of pharyngotympanic tube +UBERON_0002204 musculoskeletal system UBERON_0007374 incus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0007380 dermal scale +UBERON_0002204 musculoskeletal system UBERON_0007389 paired limb/fin cartilage +UBERON_0002204 musculoskeletal system UBERON_0007390 pectoral appendage cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_0007391 pelvic appendage cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_0007617 synovial cavity of joint +UBERON_0002204 musculoskeletal system UBERON_0007618 synovial cavity of hip joint +UBERON_0002204 musculoskeletal system UBERON_0007657 anular ligament of radius +UBERON_0002204 musculoskeletal system UBERON_0007719 bone of reproductive organ +UBERON_0002204 musculoskeletal system UBERON_0007721 interphalangeal joint of pes +UBERON_0002204 musculoskeletal system UBERON_0007722 interphalangeal joint of manus +UBERON_0002204 musculoskeletal system UBERON_0007723 interphalangeal joint of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0007724 interphalangeal joint of pedal digit 1 +UBERON_0002204 musculoskeletal system UBERON_0007725 interphalangeal joint of pedal digit 2 +UBERON_0002204 musculoskeletal system UBERON_0007726 interphalangeal joint of pedal digit 3 +UBERON_0002204 musculoskeletal system UBERON_0007727 interphalangeal joint of pedal digit 4 +UBERON_0002204 musculoskeletal system UBERON_0007728 interphalangeal joint of pedal digit 5 +UBERON_0002204 musculoskeletal system UBERON_0007729 interphalangeal joint of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0007730 interphalangeal joint of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0007731 interphalangeal joint of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0007732 interphalangeal joint of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0007735 metacarpophalangeal joint of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0007738 metacarpophalangeal joint of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0007741 metacarpophalangeal joint of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0007744 metacarpophalangeal joint of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0007747 metacarpophalangeal joint of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0007750 metatarsophalangeal joint of pedal digit 1 +UBERON_0002204 musculoskeletal system UBERON_0007753 metatarsophalangeal joint of pedal digit 2 +UBERON_0002204 musculoskeletal system UBERON_0007756 metatarsophalangeal joint of pedal digit 3 +UBERON_0002204 musculoskeletal system UBERON_0007759 metatarsophalangeal joint of pedal digit 4 +UBERON_0002204 musculoskeletal system UBERON_0007762 metatarsophalangeal joint of pedal digit 5 +UBERON_0002204 musculoskeletal system UBERON_0007774 secondary dentition +UBERON_0002204 musculoskeletal system UBERON_0007775 secondary tooth +UBERON_0002204 musculoskeletal system UBERON_0007776 unerupted tooth +UBERON_0002204 musculoskeletal system UBERON_0007799 mixed dentition +UBERON_0002204 musculoskeletal system UBERON_0007800 proatlas +UBERON_0002204 musculoskeletal system UBERON_0007801 pygostyle +UBERON_0002204 musculoskeletal system UBERON_0007804 sclerotic ring +UBERON_0002204 musculoskeletal system UBERON_0007805 synsacrum +UBERON_0002204 musculoskeletal system UBERON_0007809 fascia of Camper +UBERON_0002204 musculoskeletal system UBERON_0007818 major alar cartilage +UBERON_0002204 musculoskeletal system UBERON_0007819 minor alar cartilage +UBERON_0002204 musculoskeletal system UBERON_0007820 accessory nasal cartilage +UBERON_0002204 musculoskeletal system UBERON_0007821 lateral nasal cartilage +UBERON_0002204 musculoskeletal system UBERON_0007822 vomeronasal cartilage +UBERON_0002204 musculoskeletal system UBERON_0007828 girdle bone/zone +UBERON_0002204 musculoskeletal system UBERON_0007829 pectoral girdle bone +UBERON_0002204 musculoskeletal system UBERON_0007830 pelvic girdle bone/zone +UBERON_0002204 musculoskeletal system UBERON_0007831 pectoral girdle skeleton +UBERON_0002204 musculoskeletal system UBERON_0007832 pelvic girdle skeleton +UBERON_0002204 musculoskeletal system UBERON_0007833 osseus semicircular canal +UBERON_0002204 musculoskeletal system UBERON_0007841 furcula +UBERON_0002204 musculoskeletal system UBERON_0007842 membrane bone +UBERON_0002204 musculoskeletal system UBERON_0007843 uncinate process of ribs +UBERON_0002204 musculoskeletal system UBERON_0007844 cartilage element +UBERON_0002204 musculoskeletal system UBERON_0007862 perichordal tissue +UBERON_0002204 musculoskeletal system UBERON_0007914 bone of craniocervical region +UBERON_0002204 musculoskeletal system UBERON_0007958 central carpal bone +UBERON_0002204 musculoskeletal system UBERON_0007959 falciform carpal bone +UBERON_0002204 musculoskeletal system UBERON_0007960 scapholunate +UBERON_0002204 musculoskeletal system UBERON_0007990 proximal sesamoid bone of pes +UBERON_0002204 musculoskeletal system UBERON_0007991 proximal sesamoid bone of manus +UBERON_0002204 musculoskeletal system UBERON_0007993 ulnar sesamoid bone +UBERON_0002204 musculoskeletal system UBERON_0007997 sesamoid bone of manus +UBERON_0002204 musculoskeletal system UBERON_0008000 sesamoid bone of pes +UBERON_0002204 musculoskeletal system UBERON_0008001 irregular bone +UBERON_0002204 musculoskeletal system UBERON_0008114 joint of girdle +UBERON_0002204 musculoskeletal system UBERON_0008115 surface of cartilage +UBERON_0002204 musculoskeletal system UBERON_0008124 joint articular surface +UBERON_0002204 musculoskeletal system UBERON_0008187 hypertrophic cartilage zone +UBERON_0002204 musculoskeletal system UBERON_0008188 tendon of biceps brachii +UBERON_0002204 musculoskeletal system UBERON_0008192 tendon of triceps brachii +UBERON_0002204 musculoskeletal system UBERON_0008193 pneumatized bone +UBERON_0002204 musculoskeletal system UBERON_0008194 tibiotarsus +UBERON_0002204 musculoskeletal system UBERON_0008195 tarsometatarsus +UBERON_0002204 musculoskeletal system UBERON_0008202 bone of hip region +UBERON_0002204 musculoskeletal system UBERON_0008254 styliform cartilage +UBERON_0002204 musculoskeletal system UBERON_0008255 right clavicle +UBERON_0002204 musculoskeletal system UBERON_0008256 left clavicle +UBERON_0002204 musculoskeletal system UBERON_0008257 radial sesamoid +UBERON_0002204 musculoskeletal system UBERON_0008266 periodontal ligament +UBERON_0002204 musculoskeletal system UBERON_0008269 nacre +UBERON_0002204 musculoskeletal system UBERON_0008271 turtle shell +UBERON_0002204 musculoskeletal system UBERON_0008275 carapace +UBERON_0002204 musculoskeletal system UBERON_0008276 plastron +UBERON_0002204 musculoskeletal system UBERON_0008304 inner chondrogenic layer of perichondrium +UBERON_0002204 musculoskeletal system UBERON_0008305 outer fibrous layer of perichondrium +UBERON_0002204 musculoskeletal system UBERON_0008426 transverse foramen of atlas +UBERON_0002204 musculoskeletal system UBERON_0008427 transverse foramen of axis +UBERON_0002204 musculoskeletal system UBERON_0008429 cervical vertebral foramen +UBERON_0002204 musculoskeletal system UBERON_0008430 lumbar vertebral foramen +UBERON_0002204 musculoskeletal system UBERON_0008431 sacral foramen +UBERON_0002204 musculoskeletal system UBERON_0008432 thoracic vertebral foramen +UBERON_0002204 musculoskeletal system UBERON_0008433 lumbar vertebral arch +UBERON_0002204 musculoskeletal system UBERON_0008434 cervical vertebral arch +UBERON_0002204 musculoskeletal system UBERON_0008435 vertebral arch of sacral segment +UBERON_0002204 musculoskeletal system UBERON_0008436 thoracic vertebral arch +UBERON_0002204 musculoskeletal system UBERON_0008437 posterior arch of atlas +UBERON_0002204 musculoskeletal system UBERON_0008447 intertarsal joint +UBERON_0002204 musculoskeletal system UBERON_0008449 trochlear notch +UBERON_0002204 musculoskeletal system UBERON_0008456 prezygapophysis of lumbar vertebra +UBERON_0002204 musculoskeletal system UBERON_0008457 prezygapophysis of sacral vertebra +UBERON_0002204 musculoskeletal system UBERON_0008459 prezygapophysis of cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0008460 prezygapophysis of thoracic vertebra +UBERON_0002204 musculoskeletal system UBERON_0008461 postzygapophysis of lumbar vertebra +UBERON_0002204 musculoskeletal system UBERON_0008462 postzygapophysis of cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0008463 postzygapophysis of thoracic vertebra +UBERON_0002204 musculoskeletal system UBERON_0008772 proximal epiphysis of tibia +UBERON_0002204 musculoskeletal system UBERON_0008775 proximal epiphysis of fibula +UBERON_0002204 musculoskeletal system UBERON_0008786 third trochanter +UBERON_0002204 musculoskeletal system UBERON_0008787 fourth trochanter +UBERON_0002204 musculoskeletal system UBERON_0008788 posterior cranial fossa +UBERON_0002204 musculoskeletal system UBERON_0008789 cranial fossa +UBERON_0002204 musculoskeletal system UBERON_0008809 foramina of scarpa +UBERON_0002204 musculoskeletal system UBERON_0008828 presphenoid bone +UBERON_0002204 musculoskeletal system UBERON_0008846 skeletal ligament +UBERON_0002204 musculoskeletal system UBERON_0008854 root of molar tooth +UBERON_0002204 musculoskeletal system UBERON_0008867 trabecular network of bone +UBERON_0002204 musculoskeletal system UBERON_0008879 ligament of pinna +UBERON_0002204 musculoskeletal system UBERON_0008883 osteoid +UBERON_0002204 musculoskeletal system UBERON_0008895 splanchnocranium +UBERON_0002204 musculoskeletal system UBERON_0008907 dermal bone +UBERON_0002204 musculoskeletal system UBERON_0008909 perichordal bone +UBERON_0002204 musculoskeletal system UBERON_0008911 chondral bone +UBERON_0002204 musculoskeletal system UBERON_0008913 perichondral bone +UBERON_0002204 musculoskeletal system UBERON_0008956 involucrum +UBERON_0002204 musculoskeletal system UBERON_0008957 sequestrum +UBERON_0002204 musculoskeletal system UBERON_0008958 cetacean involucrum +UBERON_0002204 musculoskeletal system UBERON_0008959 auditory bulla +UBERON_0002204 musculoskeletal system UBERON_0008962 forelimb bone +UBERON_0002204 musculoskeletal system UBERON_0008977 pes anserinus of tibia +UBERON_0002204 musculoskeletal system UBERON_0008982 fascia +UBERON_0002204 musculoskeletal system UBERON_0009000 ischial spine +UBERON_0002204 musculoskeletal system UBERON_0009005 femorotibial joint +UBERON_0002204 musculoskeletal system UBERON_0009013 white fibrocartilage +UBERON_0002204 musculoskeletal system UBERON_0009078 pessulus +UBERON_0002204 musculoskeletal system UBERON_0009119 branchial basket +UBERON_0002204 musculoskeletal system UBERON_0009191 sphenoid bone pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0009192 basisphenoid pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0009193 sphenoid cartilage element +UBERON_0002204 musculoskeletal system UBERON_0009194 basisphenoid cartilage condenstion +UBERON_0002204 musculoskeletal system UBERON_0009197 basioccipital pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0009198 craniofacial suture +UBERON_0002204 musculoskeletal system UBERON_0009199 facial suture +UBERON_0002204 musculoskeletal system UBERON_0009203 internasal suture +UBERON_0002204 musculoskeletal system UBERON_0009291 cartilaginous vertebral centrum +UBERON_0002204 musculoskeletal system UBERON_0009468 basiotic bone +UBERON_0002204 musculoskeletal system UBERON_0009470 postsphenoidal bone +UBERON_0002204 musculoskeletal system UBERON_0009555 short pastern bone +UBERON_0002204 musculoskeletal system UBERON_0009556 long pastern bone +UBERON_0002204 musculoskeletal system UBERON_0009558 pastern bone +UBERON_0002204 musculoskeletal system UBERON_0009559 metacarpal/tarsal-phalangeal joint +UBERON_0002204 musculoskeletal system UBERON_0009568 trunk region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0009635 parachordal cartilage +UBERON_0002204 musculoskeletal system UBERON_0009636 prechordal cartilage +UBERON_0002204 musculoskeletal system UBERON_0009637 alisphenoid ossification center +UBERON_0002204 musculoskeletal system UBERON_0009638 orbitosphenoid ossification center +UBERON_0002204 musculoskeletal system UBERON_0009639 body of sphenoid +UBERON_0002204 musculoskeletal system UBERON_0009640 hypophyseal cartilage +UBERON_0002204 musculoskeletal system UBERON_0009678 tooth row +UBERON_0002204 musculoskeletal system UBERON_0009679 set of lower jaw teeth +UBERON_0002204 musculoskeletal system UBERON_0009680 set of upper jaw teeth +UBERON_0002204 musculoskeletal system UBERON_0009767 proximal interphalangeal joint +UBERON_0002204 musculoskeletal system UBERON_0009768 distal interphalangeal joint +UBERON_0002204 musculoskeletal system UBERON_0009858 outer fibrous layer of periosteum +UBERON_0002204 musculoskeletal system UBERON_0009859 endosteum +UBERON_0002204 musculoskeletal system UBERON_0009878 mesopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0009879 tarsal skeleton +UBERON_0002204 musculoskeletal system UBERON_0009880 carpal skeleton +UBERON_0002204 musculoskeletal system UBERON_0009949 humeral diverticulum of clavicular air sac +UBERON_0002204 musculoskeletal system UBERON_0009977 natal tooth +UBERON_0002204 musculoskeletal system UBERON_0009978 epicondyle +UBERON_0002204 musculoskeletal system UBERON_0009979 condyle +UBERON_0002204 musculoskeletal system UBERON_0009980 condyle of femur +UBERON_0002204 musculoskeletal system UBERON_0009984 medial condyle of femur +UBERON_0002204 musculoskeletal system UBERON_0009985 lateral condyle of femur +UBERON_0002204 musculoskeletal system UBERON_0009986 lateral epicondyle of femur +UBERON_0002204 musculoskeletal system UBERON_0009987 medial epicondyle of femur +UBERON_0002204 musculoskeletal system UBERON_0009988 condyle of humerus +UBERON_0002204 musculoskeletal system UBERON_0009989 condyle of tibia +UBERON_0002204 musculoskeletal system UBERON_0009990 medial condyle of tibia +UBERON_0002204 musculoskeletal system UBERON_0009991 lateral condyle of tibia +UBERON_0002204 musculoskeletal system UBERON_0010054 malleus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010055 stapes cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010066 tympanic plate +UBERON_0002204 musculoskeletal system UBERON_0010076 network of trabecular spaces in bone tissue +UBERON_0002204 musculoskeletal system UBERON_0010129 femur cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010155 parietomastoid suture +UBERON_0002204 musculoskeletal system UBERON_0010156 sphenofrontal suture +UBERON_0002204 musculoskeletal system UBERON_0010157 sphenoparietal suture +UBERON_0002204 musculoskeletal system UBERON_0010158 sphenozygomatic suture +UBERON_0002204 musculoskeletal system UBERON_0010159 occipitomastoid suture +UBERON_0002204 musculoskeletal system UBERON_0010212 laryngeal apparatus +UBERON_0002204 musculoskeletal system UBERON_0010213 laryngeal pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010214 cricoid pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010215 arytenoid swellings +UBERON_0002204 musculoskeletal system UBERON_0010219 thyroid pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010220 arytenoid pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010221 laryngeal associated mesenchyme +UBERON_0002204 musculoskeletal system UBERON_0010272 hyoid apparatus +UBERON_0002204 musculoskeletal system UBERON_0010273 zone of hyoid bone +UBERON_0002204 musculoskeletal system UBERON_0010276 space in vertebral column +UBERON_0002204 musculoskeletal system UBERON_0010289 scleral cartilage +UBERON_0002204 musculoskeletal system UBERON_0010290 scleral ossicle +UBERON_0002204 musculoskeletal system UBERON_0010296 scleral skeletal element +UBERON_0002204 musculoskeletal system UBERON_0010297 endochondral scleral ossicle +UBERON_0002204 musculoskeletal system UBERON_0010298 intramembranous scleral ossicle +UBERON_0002204 musculoskeletal system UBERON_0010308 os opticus +UBERON_0002204 musculoskeletal system UBERON_0010309 palpebral bone +UBERON_0002204 musculoskeletal system UBERON_0010310 nictitating membrane lamina +UBERON_0002204 musculoskeletal system UBERON_0010311 scleral sesamoid bone +UBERON_0002204 musculoskeletal system UBERON_0010321 skeletal element of eye region +UBERON_0002204 musculoskeletal system UBERON_0010323 cranial skeletal system +UBERON_0002204 musculoskeletal system UBERON_0010326 optic pedicel +UBERON_0002204 musculoskeletal system UBERON_0010349 otic capsule pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010354 Reichert's cartilage pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010355 ossification center +UBERON_0002204 musculoskeletal system UBERON_0010356 primary ossification center +UBERON_0002204 musculoskeletal system UBERON_0010357 secondary ossification center +UBERON_0002204 musculoskeletal system UBERON_0010358 arch of centrum of vertebra +UBERON_0002204 musculoskeletal system UBERON_0010361 synostosis +UBERON_0002204 musculoskeletal system UBERON_0010362 endoskeleton +UBERON_0002204 musculoskeletal system UBERON_0010363 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0010364 dermal skeleton +UBERON_0002204 musculoskeletal system UBERON_0010365 odontoid tissue +UBERON_0002204 musculoskeletal system UBERON_0010372 uncinate process of ethmoid +UBERON_0002204 musculoskeletal system UBERON_0010388 proximal segment of rib +UBERON_0002204 musculoskeletal system UBERON_0010389 pterygoid bone +UBERON_0002204 musculoskeletal system UBERON_0010424 distal segment of rib +UBERON_0002204 musculoskeletal system UBERON_0010428 flat bone +UBERON_0002204 musculoskeletal system UBERON_0010522 replacement element +UBERON_0002204 musculoskeletal system UBERON_0010527 cavity of bone organ +UBERON_0002204 musculoskeletal system UBERON_0010528 pneumatic cavity of bone +UBERON_0002204 musculoskeletal system UBERON_0010540 tarsus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010541 tarsus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010543 acropodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0010544 metacarpus skeleton +UBERON_0002204 musculoskeletal system UBERON_0010545 metatarsus skeleton +UBERON_0002204 musculoskeletal system UBERON_0010546 metapodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0010547 pedal digit 1 metatarsal pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010548 pedal digit 2 metatarsal pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010549 pedal digit 3 metatarsal pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010550 pedal digit 4 metatarsal pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010551 pedal digit 5 metatarsal pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010557 pedal digit 1 metatarsal cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010558 pedal digit 2 metatarsal cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010559 pedal digit 3 metatarsal cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010560 pedal digit 4 metatarsal cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010561 pedal digit 5 metatarsal cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010565 manual digit 1 metacarpus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010566 manual digit 2 metacarpus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010567 manual digit 3 metacarpus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010568 manual digit 4 metacarpus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010569 manual digit 5 metacarpus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010570 manual digit 1 metacarpus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010571 manual digit 2 metacarpus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010572 manual digit 3 metacarpus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010573 manual digit 4 metacarpus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010574 manual digit 5 metacarpus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010575 manual digit 1 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010576 manual digit 2 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010577 manual digit 3 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010578 manual digit 4 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010579 manual digit 5 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010580 pedal digit 1 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010581 pedal digit 2 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010582 pedal digit 3 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010583 pedal digit 4 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010584 pedal digit 5 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010585 pedal digit phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010586 manual digit phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010675 manual digit 1 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010676 manual digit 2 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010677 manual digit 3 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010678 manual digit 4 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010679 manual digit 5 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010680 pedal digit 1 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010681 pedal digit 2 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010682 pedal digit 3 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010683 pedal digit 4 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010684 pedal digit 5 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010685 pedal digit phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010686 manual digit phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010687 pedal digit metatarsal pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010688 skeleton of manual acropodium +UBERON_0002204 musculoskeletal system UBERON_0010696 skeleton of pedal acropodium +UBERON_0002204 musculoskeletal system UBERON_0010697 pedal digit metatarsal cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010698 manual digit metacarpus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010699 manual digit metacarpus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010700 phalanx pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010701 phalanx cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010703 forelimb zeugopod skeleton +UBERON_0002204 musculoskeletal system UBERON_0010710 pectoral fin skeleton +UBERON_0002204 musculoskeletal system UBERON_0010711 pelvic fin skeleton +UBERON_0002204 musculoskeletal system UBERON_0010712 limb skeleton subdivision +UBERON_0002204 musculoskeletal system UBERON_0010713 paired fin skeleton +UBERON_0002204 musculoskeletal system UBERON_0010714 iliac cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010718 pubic cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010719 girdle skeleton +UBERON_0002204 musculoskeletal system UBERON_0010720 hindlimb zeugopod skeleton +UBERON_0002204 musculoskeletal system UBERON_0010721 distal tarsal bone +UBERON_0002204 musculoskeletal system UBERON_0010722 accessory bone +UBERON_0002204 musculoskeletal system UBERON_0010723 os vesalianum pedis +UBERON_0002204 musculoskeletal system UBERON_0010725 accessory navicular bone +UBERON_0002204 musculoskeletal system UBERON_0010726 os vesalianum manus +UBERON_0002204 musculoskeletal system UBERON_0010727 sutural bone +UBERON_0002204 musculoskeletal system UBERON_0010728 sphenoid lesser wing pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010732 alisphenoid pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010733 alisphenoid cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010737 distal tarsal bone 4 +UBERON_0002204 musculoskeletal system UBERON_0010738 distal tarsal bone 5 +UBERON_0002204 musculoskeletal system UBERON_0010739 distal carpal bone 5 +UBERON_0002204 musculoskeletal system UBERON_0010740 bone of appendage girdle complex +UBERON_0002204 musculoskeletal system UBERON_0010741 bone of pectoral complex +UBERON_0002204 musculoskeletal system UBERON_0010742 bone of pelvic complex +UBERON_0002204 musculoskeletal system UBERON_0010744 sacral vertebra pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010745 sacral vertebra cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010746 iliac blade +UBERON_0002204 musculoskeletal system UBERON_0010747 body of ilium +UBERON_0002204 musculoskeletal system UBERON_0010750 prefrontal bone +UBERON_0002204 musculoskeletal system UBERON_0010751 squamous part of temporal bone primordium +UBERON_0002204 musculoskeletal system UBERON_0010752 exoccipital cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010757 rib 8 +UBERON_0002204 musculoskeletal system UBERON_0010759 equine distal sesamoid +UBERON_0002204 musculoskeletal system UBERON_0010760 supraglenoid tubercle +UBERON_0002204 musculoskeletal system UBERON_0010801 calcaneum pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010842 calcaneum cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010843 clavicle cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010844 clavicle pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010846 radius pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010847 ulna pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010848 radius-ulna cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010849 tibia cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010850 tibia pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010851 fibula cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010852 fibula pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010853 capitulum of humerus +UBERON_0002204 musculoskeletal system UBERON_0010869 calcar +UBERON_0002204 musculoskeletal system UBERON_0010879 tusk +UBERON_0002204 musculoskeletal system UBERON_0010881 limb cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010882 limb bone pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010883 forelimb cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010884 forelimb bone pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010885 hindlimb cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010886 hindlimb pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010889 ectethmoid +UBERON_0002204 musculoskeletal system UBERON_0010892 mesethmoid element +UBERON_0002204 musculoskeletal system UBERON_0010894 keratinous tooth +UBERON_0002204 musculoskeletal system UBERON_0010896 piston cartilage +UBERON_0002204 musculoskeletal system UBERON_0010898 gastralium +UBERON_0002204 musculoskeletal system UBERON_0010900 tarsometatarsus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010901 tarsometatarsus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010902 tibiotarsus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0010903 tibiotarsus pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0010905 clavicle bone primordium +UBERON_0002204 musculoskeletal system UBERON_0010907 parafibula +UBERON_0002204 musculoskeletal system UBERON_0010908 paraglossale +UBERON_0002204 musculoskeletal system UBERON_0010910 opisthotic +UBERON_0002204 musculoskeletal system UBERON_0010911 ossicle +UBERON_0002204 musculoskeletal system UBERON_0010912 subdivision of skeleton +UBERON_0002204 musculoskeletal system UBERON_0010913 vertebral element +UBERON_0002204 musculoskeletal system UBERON_0010994 coronoid process of ulna +UBERON_0002204 musculoskeletal system UBERON_0010996 articular cartilage of joint +UBERON_0002204 musculoskeletal system UBERON_0011002 articular cartilage element +UBERON_0002204 musculoskeletal system UBERON_0011004 pharyngeal arch cartilage +UBERON_0002204 musculoskeletal system UBERON_0011015 iliac fossa +UBERON_0002204 musculoskeletal system UBERON_0011050 thoracic vertebra 8 +UBERON_0002204 musculoskeletal system UBERON_0011078 endolymphatic space +UBERON_0002204 musculoskeletal system UBERON_0011079 angular bone +UBERON_0002204 musculoskeletal system UBERON_0011085 palatoquadrate arch +UBERON_0002204 musculoskeletal system UBERON_0011088 ligament of knee joint +UBERON_0002204 musculoskeletal system UBERON_0011090 skeleton of right pelvic girdle +UBERON_0002204 musculoskeletal system UBERON_0011091 skeleton of left pelvic girdle +UBERON_0002204 musculoskeletal system UBERON_0011094 vertebra cartilage element +UBERON_0002204 musculoskeletal system UBERON_0011095 vertebra pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0011104 epiphysis of fifth metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0011106 cruciate ligament of atlas +UBERON_0002204 musculoskeletal system UBERON_0011107 synovial joint of pelvic girdle +UBERON_0002204 musculoskeletal system UBERON_0011108 synovial joint of pectoral girdle +UBERON_0002204 musculoskeletal system UBERON_0011110 humeroulnar joint +UBERON_0002204 musculoskeletal system UBERON_0011111 humeroradial joint +UBERON_0002204 musculoskeletal system UBERON_0011112 tibiofibular joint +UBERON_0002204 musculoskeletal system UBERON_0011113 inferior tibiofibular joint +UBERON_0002204 musculoskeletal system UBERON_0011117 superior tibiofibular joint +UBERON_0002204 musculoskeletal system UBERON_0011118 tarsometatarsal joint +UBERON_0002204 musculoskeletal system UBERON_0011119 carpometacarpal joint +UBERON_0002204 musculoskeletal system UBERON_0011120 laryngeal joint +UBERON_0002204 musculoskeletal system UBERON_0011121 cricothyroid joint +UBERON_0002204 musculoskeletal system UBERON_0011122 cricoarytenoid joint +UBERON_0002204 musculoskeletal system UBERON_0011123 stifle joint +UBERON_0002204 musculoskeletal system UBERON_0011124 xiphisternal joint +UBERON_0002204 musculoskeletal system UBERON_0011130 temporomandibular joint primordium +UBERON_0002204 musculoskeletal system UBERON_0011131 intermetacarpal joint +UBERON_0002204 musculoskeletal system UBERON_0011132 intercarpal joint +UBERON_0002204 musculoskeletal system UBERON_0011133 intermetatarsal joint +UBERON_0002204 musculoskeletal system UBERON_0011134 nonsynovial joint +UBERON_0002204 musculoskeletal system UBERON_0011135 intervertebral cartilage +UBERON_0002204 musculoskeletal system UBERON_0011136 ligament of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0011137 axial skeletal system +UBERON_0002204 musculoskeletal system UBERON_0011138 postcranial axial skeletal system +UBERON_0002204 musculoskeletal system UBERON_0011139 synovial limb joint +UBERON_0002204 musculoskeletal system UBERON_0011141 appendicular ossicle +UBERON_0002204 musculoskeletal system UBERON_0011142 axial ossicle +UBERON_0002204 musculoskeletal system UBERON_0011152 dorsal hyoid arch skeleton +UBERON_0002204 musculoskeletal system UBERON_0011153 ventral hyoid arch skeleton +UBERON_0002204 musculoskeletal system UBERON_0011156 facial skeleton +UBERON_0002204 musculoskeletal system UBERON_0011157 cuneiform cartilage +UBERON_0002204 musculoskeletal system UBERON_0011158 primary subdivision of skull +UBERON_0002204 musculoskeletal system UBERON_0011159 primary subdivision of cranial skeletal system +UBERON_0002204 musculoskeletal system UBERON_0011160 nasal suture +UBERON_0002204 musculoskeletal system UBERON_0011161 spheno-occipital synchondrosis +UBERON_0002204 musculoskeletal system UBERON_0011162 supraoccipital cartilage element +UBERON_0002204 musculoskeletal system UBERON_0011163 supraoccipital pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0011164 neurocranium bone +UBERON_0002204 musculoskeletal system UBERON_0011166 patellofemoral joint +UBERON_0002204 musculoskeletal system UBERON_0011167 septomaxilla bone +UBERON_0002204 musculoskeletal system UBERON_0011168 postfrontal bone +UBERON_0002204 musculoskeletal system UBERON_0011169 postorbital bone +UBERON_0002204 musculoskeletal system UBERON_0011170 quadrate-articular joint +UBERON_0002204 musculoskeletal system UBERON_0011171 joint connecting upper and lower jaws +UBERON_0002204 musculoskeletal system UBERON_0011187 ventral tubercle of humerus +UBERON_0002204 musculoskeletal system UBERON_0011188 lesser tubercle of humerus +UBERON_0002204 musculoskeletal system UBERON_0011200 sacrococcygeal symphysis +UBERON_0002204 musculoskeletal system UBERON_0011205 carpometacarpus +UBERON_0002204 musculoskeletal system UBERON_0011206 hinge joint +UBERON_0002204 musculoskeletal system UBERON_0011220 mastoid process of temporal bone +UBERON_0002204 musculoskeletal system UBERON_0011233 synovial membrane of synovial tendon sheath +UBERON_0002204 musculoskeletal system UBERON_0011234 fibrous membrane of synovial tendon sheath +UBERON_0002204 musculoskeletal system UBERON_0011236 deep fascia +UBERON_0002204 musculoskeletal system UBERON_0011237 visceral fascia +UBERON_0002204 musculoskeletal system UBERON_0011238 mesethmoid bone +UBERON_0002204 musculoskeletal system UBERON_0011241 ethmoid region +UBERON_0002204 musculoskeletal system UBERON_0011242 ethmoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0011244 perpendicular plate of ethmoid +UBERON_0002204 musculoskeletal system UBERON_0011245 infra-orbital canal of maxilla +UBERON_0002204 musculoskeletal system UBERON_0011246 procoracoid bone +UBERON_0002204 musculoskeletal system UBERON_0011247 procoracoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0011248 procoracoid element +UBERON_0002204 musculoskeletal system UBERON_0011249 appendicular skeletal system +UBERON_0002204 musculoskeletal system UBERON_0011250 autopod bone +UBERON_0002204 musculoskeletal system UBERON_0011265 carpometacarpal joint of digit 1 +UBERON_0002204 musculoskeletal system UBERON_0011267 quadratojugal bone +UBERON_0002204 musculoskeletal system UBERON_0011271 caudal-sacral region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_0011287 rostral organ +UBERON_0002204 musculoskeletal system UBERON_0011301 manubrium sternum pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0011309 body of mandible +UBERON_0002204 musculoskeletal system UBERON_0011310 masseteric fossa +UBERON_0002204 musculoskeletal system UBERON_0011318 capsule of temporomandibular joint +UBERON_0002204 musculoskeletal system UBERON_0011319 disk of temporomandibular joint +UBERON_0002204 musculoskeletal system UBERON_0011320 ligament of temporomandibular joint +UBERON_0002204 musculoskeletal system UBERON_0011342 surface of mandible +UBERON_0002204 musculoskeletal system UBERON_0011343 medial surface of mandible +UBERON_0002204 musculoskeletal system UBERON_0011344 lateral surface of mandible +UBERON_0002204 musculoskeletal system UBERON_0011370 transverse process of atlas +UBERON_0002204 musculoskeletal system UBERON_0011575 styloid process of ulna +UBERON_0002204 musculoskeletal system UBERON_0011576 supraorbital ridge +UBERON_0002204 musculoskeletal system UBERON_0011577 flexural organ +UBERON_0002204 musculoskeletal system UBERON_0011582 paired limb/fin skeleton +UBERON_0002204 musculoskeletal system UBERON_0011583 stylopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0011584 zeugopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0011587 pre-dentine +UBERON_0002204 musculoskeletal system UBERON_0011588 pre-enamel +UBERON_0002204 musculoskeletal system UBERON_0011589 non-mineralized cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_0011593 maxillary tooth +UBERON_0002204 musculoskeletal system UBERON_0011594 dentary tooth +UBERON_0002204 musculoskeletal system UBERON_0011597 bone of upper jaw +UBERON_0002204 musculoskeletal system UBERON_0011598 coronoid bone +UBERON_0002204 musculoskeletal system UBERON_0011599 lenticular process of incus bone +UBERON_0002204 musculoskeletal system UBERON_0011603 coronoid tooth +UBERON_0002204 musculoskeletal system UBERON_0011604 carina of sternum +UBERON_0002204 musculoskeletal system UBERON_0011606 hyomandibular bone +UBERON_0002204 musculoskeletal system UBERON_0011607 hyomandibular cartilage +UBERON_0002204 musculoskeletal system UBERON_0011608 hyomandibular element +UBERON_0002204 musculoskeletal system UBERON_0011609 ceratohyal element +UBERON_0002204 musculoskeletal system UBERON_0011610 ceratohyal cartilage +UBERON_0002204 musculoskeletal system UBERON_0011611 ceratohyal bone +UBERON_0002204 musculoskeletal system UBERON_0011612 hypohyal cartilage +UBERON_0002204 musculoskeletal system UBERON_0011613 hypohyal element +UBERON_0002204 musculoskeletal system UBERON_0011614 basihyal element +UBERON_0002204 musculoskeletal system UBERON_0011615 basihyal cartilage +UBERON_0002204 musculoskeletal system UBERON_0011618 basihyal bone +UBERON_0002204 musculoskeletal system UBERON_0011619 stylohyoid bone +UBERON_0002204 musculoskeletal system UBERON_0011620 basihyal lingual process +UBERON_0002204 musculoskeletal system UBERON_0011621 thyrohyoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0011622 thyrohyoid bone +UBERON_0002204 musculoskeletal system UBERON_0011623 horn of thyroid cartilage +UBERON_0002204 musculoskeletal system UBERON_0011624 superior horn of thyroid cartilage +UBERON_0002204 musculoskeletal system UBERON_0011625 inferior horn of thyroid cartilage +UBERON_0002204 musculoskeletal system UBERON_0011626 tympanohyoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0011627 orbital part of frontal bone +UBERON_0002204 musculoskeletal system UBERON_0011628 early premaxilla +UBERON_0002204 musculoskeletal system UBERON_0011629 supratemporal bone +UBERON_0002204 musculoskeletal system UBERON_0011630 intertemporal bone +UBERON_0002204 musculoskeletal system UBERON_0011631 tabular bone +UBERON_0002204 musculoskeletal system UBERON_0011634 ectopterygoid bone +UBERON_0002204 musculoskeletal system UBERON_0011635 splenial bone +UBERON_0002204 musculoskeletal system UBERON_0011636 surangular bone +UBERON_0002204 musculoskeletal system UBERON_0011637 prearticular bone +UBERON_0002204 musculoskeletal system UBERON_0011639 frontoparietal bone +UBERON_0002204 musculoskeletal system UBERON_0011641 odontogenic mesenchyme of molar +UBERON_0002204 musculoskeletal system UBERON_0011651 ventral head of rib +UBERON_0002204 musculoskeletal system UBERON_0011652 dorsal head of rib +UBERON_0002204 musculoskeletal system UBERON_0011653 diapophysis of neural arch +UBERON_0002204 musculoskeletal system UBERON_0011655 interclavicle +UBERON_0002204 musculoskeletal system UBERON_0011657 dermal element of plastron +UBERON_0002204 musculoskeletal system UBERON_0011658 epiplastron +UBERON_0002204 musculoskeletal system UBERON_0011659 entoplastron +UBERON_0002204 musculoskeletal system UBERON_0011660 hypoplastron +UBERON_0002204 musculoskeletal system UBERON_0011661 xiphiplastron +UBERON_0002204 musculoskeletal system UBERON_0011662 plastron-carapace bridge +UBERON_0002204 musculoskeletal system UBERON_0011663 anterior plastron-carapace bridge +UBERON_0002204 musculoskeletal system UBERON_0011664 posterior plastron-carapace bridge +UBERON_0002204 musculoskeletal system UBERON_0011665 carapace bone +UBERON_0002204 musculoskeletal system UBERON_0011666 peripheral plate of carapace +UBERON_0002204 musculoskeletal system UBERON_0011667 pleural plate of carapace +UBERON_0002204 musculoskeletal system UBERON_0011669 neural plate of carapace +UBERON_0002204 musculoskeletal system UBERON_0011670 pygal plate of carapace +UBERON_0002204 musculoskeletal system UBERON_0011671 nuchal plate of carapace +UBERON_0002204 musculoskeletal system UBERON_0011672 suprapygal plate of carapace +UBERON_0002204 musculoskeletal system UBERON_0011673 plastron scute +UBERON_0002204 musculoskeletal system UBERON_0011674 carapace scute +UBERON_0002204 musculoskeletal system UBERON_0011675 perichordal ring +UBERON_0002204 musculoskeletal system UBERON_0011677 trunk vertebra +UBERON_0002204 musculoskeletal system UBERON_0011678 hindlimb intermedium bone +UBERON_0002204 musculoskeletal system UBERON_0011679 proximal tarsal bone +UBERON_0002204 musculoskeletal system UBERON_0011688 pre-enameloid +UBERON_0002204 musculoskeletal system UBERON_0011692 enameloid +UBERON_0002204 musculoskeletal system UBERON_0011770 mentomeckelian +UBERON_0002204 musculoskeletal system UBERON_0011772 lower jaw opening +UBERON_0002204 musculoskeletal system UBERON_0011773 upper jaw opening +UBERON_0002204 musculoskeletal system UBERON_0011863 bone collagen fibril +UBERON_0002204 musculoskeletal system UBERON_0011864 tendon collagen fibril +UBERON_0002204 musculoskeletal system UBERON_0011866 condylar joint +UBERON_0002204 musculoskeletal system UBERON_0011868 midcarpal joint +UBERON_0002204 musculoskeletal system UBERON_0011869 pisiform joint +UBERON_0002204 musculoskeletal system UBERON_0011870 pisotriquetral joint +UBERON_0002204 musculoskeletal system UBERON_0011871 nasomaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0011873 synarthrosis +UBERON_0002204 musculoskeletal system UBERON_0011874 amphiarthrosis +UBERON_0002204 musculoskeletal system UBERON_0011875 ligament of sternoclavicular joint +UBERON_0002204 musculoskeletal system UBERON_0011941 lateral angle of scapula +UBERON_0002204 musculoskeletal system UBERON_0011958 acetabular labrum +UBERON_0002204 musculoskeletal system UBERON_0011959 glenoid labrum of scapula +UBERON_0002204 musculoskeletal system UBERON_0011960 articular capsule of glenohumeral joint +UBERON_0002204 musculoskeletal system UBERON_0011961 articular capsule of hip joint +UBERON_0002204 musculoskeletal system UBERON_0011962 transverse tarsal joint +UBERON_0002204 musculoskeletal system UBERON_0011963 talocalcaneonavicular joint +UBERON_0002204 musculoskeletal system UBERON_0011964 calcaneocuboid joint +UBERON_0002204 musculoskeletal system UBERON_0011965 saddle joint +UBERON_0002204 musculoskeletal system UBERON_0011966 manubriosternal joint +UBERON_0002204 musculoskeletal system UBERON_0011967 costotransverse joint +UBERON_0002204 musculoskeletal system UBERON_0011968 radio-carpal joint +UBERON_0002204 musculoskeletal system UBERON_0011969 mesotarsal joint +UBERON_0002204 musculoskeletal system UBERON_0011970 talofibular ligament +UBERON_0002204 musculoskeletal system UBERON_0011971 calcaneofibular ligament +UBERON_0002204 musculoskeletal system UBERON_0011972 medial ligament of ankle joint +UBERON_0002204 musculoskeletal system UBERON_0011973 epiphysis of phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0011974 epiphysis of proximal phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0011975 epiphysis of middle phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0011976 epiphysis of distal phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0011977 epiphysis of proximal phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0011978 epiphysis of middle phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0011979 epiphysis of distal phalanx of manus +UBERON_0002204 musculoskeletal system UBERON_0011980 crurotarsal joint +UBERON_0002204 musculoskeletal system UBERON_0011985 infraorbital sinus +UBERON_0002204 musculoskeletal system UBERON_0012070 palatal tooth +UBERON_0002204 musculoskeletal system UBERON_0012071 palate bone +UBERON_0002204 musculoskeletal system UBERON_0012072 palatal part of dermatocranium +UBERON_0002204 musculoskeletal system UBERON_0012073 tooth of palatine bone +UBERON_0002204 musculoskeletal system UBERON_0012074 bony part of hard palate +UBERON_0002204 musculoskeletal system UBERON_0012075 replacement bone +UBERON_0002204 musculoskeletal system UBERON_0012076 tibiotalar joint +UBERON_0002204 musculoskeletal system UBERON_0012078 fovea capitis of femur +UBERON_0002204 musculoskeletal system UBERON_0012080 patella cartilage element +UBERON_0002204 musculoskeletal system UBERON_0012081 patella pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0012104 sesamoid bone of the peroneus longus muscle +UBERON_0002204 musculoskeletal system UBERON_0012108 postorbital bar +UBERON_0002204 musculoskeletal system UBERON_0012109 zygomatic process of frontal bone +UBERON_0002204 musculoskeletal system UBERON_0012110 frontal process of zygomatic bone +UBERON_0002204 musculoskeletal system UBERON_0012111 diastema +UBERON_0002204 musculoskeletal system UBERON_0012115 dental comb +UBERON_0002204 musculoskeletal system UBERON_0012116 nutrient foramen conduit +UBERON_0002204 musculoskeletal system UBERON_0012117 lumen of nutrient foramen +UBERON_0002204 musculoskeletal system UBERON_0012118 infraspinatus tendon +UBERON_0002204 musculoskeletal system UBERON_0012119 vinculum tendon of wing +UBERON_0002204 musculoskeletal system UBERON_0012120 vinculum of tendon +UBERON_0002204 musculoskeletal system UBERON_0012124 avian scapholunar bone +UBERON_0002204 musculoskeletal system UBERON_0012126 fibulare +UBERON_0002204 musculoskeletal system UBERON_0012129 radial head of humerus +UBERON_0002204 musculoskeletal system UBERON_0012130 olecranon fossa +UBERON_0002204 musculoskeletal system UBERON_0012131 centrale +UBERON_0002204 musculoskeletal system UBERON_0012132 intercuneiform joint +UBERON_0002204 musculoskeletal system UBERON_0012133 lateral-intermediate intercuneiform joint +UBERON_0002204 musculoskeletal system UBERON_0012134 medial-intermediate intercuneiform joint +UBERON_0002204 musculoskeletal system UBERON_0012135 prepollex skeleton +UBERON_0002204 musculoskeletal system UBERON_0012150 skeleton of digitopodium +UBERON_0002204 musculoskeletal system UBERON_0012151 skeleton of manual digitopodium +UBERON_0002204 musculoskeletal system UBERON_0012152 skeleton of pedal digitopodium +UBERON_0002204 musculoskeletal system UBERON_0012179 bone of pelvis +UBERON_0002204 musculoskeletal system UBERON_0012198 intercostal space +UBERON_0002204 musculoskeletal system UBERON_0012267 equine splint bone +UBERON_0002204 musculoskeletal system UBERON_0012268 equine forelimb splint bone +UBERON_0002204 musculoskeletal system UBERON_0012269 equine hindlimb splint bone +UBERON_0002204 musculoskeletal system UBERON_0012288 centroquartal bone +UBERON_0002204 musculoskeletal system UBERON_0012289 fused tarsal bones 2 and 3 +UBERON_0002204 musculoskeletal system UBERON_0012290 fused carpal bones 2 and 3 +UBERON_0002204 musculoskeletal system UBERON_0012291 lateral malleolus of fibula +UBERON_0002204 musculoskeletal system UBERON_0012315 incisive foramen +UBERON_0002204 musculoskeletal system UBERON_0012316 primitive palate +UBERON_0002204 musculoskeletal system UBERON_0012353 fin skeleton +UBERON_0002204 musculoskeletal system UBERON_0012357 digitopodium bone +UBERON_0002204 musculoskeletal system UBERON_0012358 manual digitopodium bone +UBERON_0002204 musculoskeletal system UBERON_0012359 pedal digitopodium bone +UBERON_0002204 musculoskeletal system UBERON_0012360 bone of jaw +UBERON_0002204 musculoskeletal system UBERON_0012459 antler pedicle +UBERON_0002204 musculoskeletal system UBERON_0012468 anal tooth +UBERON_0002204 musculoskeletal system UBERON_0012475 skeleton of pectoral complex +UBERON_0002204 musculoskeletal system UBERON_0012476 skeleton of pelvic complex +UBERON_0002204 musculoskeletal system UBERON_0013068 palatine torus +UBERON_0002204 musculoskeletal system UBERON_0013069 popliteal area +UBERON_0002204 musculoskeletal system UBERON_0013074 cornual diverticulum +UBERON_0002204 musculoskeletal system UBERON_0013078 venom-injecting tooth +UBERON_0002204 musculoskeletal system UBERON_0013113 angular/surangular bone +UBERON_0002204 musculoskeletal system UBERON_0013121 proximal epiphysis of phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0013122 distal epiphysis of phalanx of pes +UBERON_0002204 musculoskeletal system UBERON_0013135 interdental plate +UBERON_0002204 musculoskeletal system UBERON_0013164 molariform tooth +UBERON_0002204 musculoskeletal system UBERON_0013173 anterior part of tympanic bone +UBERON_0002204 musculoskeletal system UBERON_0013174 sigmoid process of tympanic bone +UBERON_0002204 musculoskeletal system UBERON_0013180 bursal cartilage +UBERON_0002204 musculoskeletal system UBERON_0013190 entotympanic bone +UBERON_0002204 musculoskeletal system UBERON_0013204 epipubic bone +UBERON_0002204 musculoskeletal system UBERON_0013207 entepicondylar foramen +UBERON_0002204 musculoskeletal system UBERON_0013217 zygomatic plate +UBERON_0002204 musculoskeletal system UBERON_0013222 otic notch +UBERON_0002204 musculoskeletal system UBERON_0013279 diaphysis of fibula +UBERON_0002204 musculoskeletal system UBERON_0013280 diaphysis of tibia +UBERON_0002204 musculoskeletal system UBERON_0013403 asterion of skull +UBERON_0002204 musculoskeletal system UBERON_0013406 bregma +UBERON_0002204 musculoskeletal system UBERON_0013411 cranial cavity +UBERON_0002204 musculoskeletal system UBERON_0013412 crotaphion +UBERON_0002204 musculoskeletal system UBERON_0013420 groove for sigmoid sinus +UBERON_0002204 musculoskeletal system UBERON_0013422 infratemporal fossa +UBERON_0002204 musculoskeletal system UBERON_0013423 jugal point +UBERON_0002204 musculoskeletal system UBERON_0013424 anatomical point connecting sagittal and lambdoidal sutures +UBERON_0002204 musculoskeletal system UBERON_0013426 obelion +UBERON_0002204 musculoskeletal system UBERON_0013427 occipital bun +UBERON_0002204 musculoskeletal system UBERON_0013428 ophryon +UBERON_0002204 musculoskeletal system UBERON_0013436 porion +UBERON_0002204 musculoskeletal system UBERON_0013442 postorbital process +UBERON_0002204 musculoskeletal system UBERON_0013445 pterygomaxillary fissure +UBERON_0002204 musculoskeletal system UBERON_0013447 sagittal crest +UBERON_0002204 musculoskeletal system UBERON_0013448 sagittal keel +UBERON_0002204 musculoskeletal system UBERON_0013450 simian shelf +UBERON_0002204 musculoskeletal system UBERON_0013454 spheno-maxillary fossa +UBERON_0002204 musculoskeletal system UBERON_0013455 spheno-petrosal fissure +UBERON_0002204 musculoskeletal system UBERON_0013459 stephanion +UBERON_0002204 musculoskeletal system UBERON_0013460 suprainiac fossa +UBERON_0002204 musculoskeletal system UBERON_0013462 sylvian point +UBERON_0002204 musculoskeletal system UBERON_0013463 temporal fossa +UBERON_0002204 musculoskeletal system UBERON_0013468 zygomatic fossa +UBERON_0002204 musculoskeletal system UBERON_0013469 external occipital protuberance +UBERON_0002204 musculoskeletal system UBERON_0013471 retromolar space +UBERON_0002204 musculoskeletal system UBERON_0013489 superficial cervical fascia +UBERON_0002204 musculoskeletal system UBERON_0013490 deep cervical fascia +UBERON_0002204 musculoskeletal system UBERON_0013491 cervical fascia +UBERON_0002204 musculoskeletal system UBERON_0013492 prevertebral cervical fascia +UBERON_0002204 musculoskeletal system UBERON_0013493 abdominal fascia +UBERON_0002204 musculoskeletal system UBERON_0013503 caudal vertebra cartilage element +UBERON_0002204 musculoskeletal system UBERON_0013504 caudal vertebra pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0013505 cervical vertebra cartilage element +UBERON_0002204 musculoskeletal system UBERON_0013506 cervical vertebra pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0013507 thoracic vertebra cartilage element +UBERON_0002204 musculoskeletal system UBERON_0013508 thoracic vertebra pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0013509 lumbar vertebra cartilage element +UBERON_0002204 musculoskeletal system UBERON_0013510 lumbar vertebra pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0013581 metapodium bone 1 +UBERON_0002204 musculoskeletal system UBERON_0013582 metapodium bone 2 +UBERON_0002204 musculoskeletal system UBERON_0013583 metapodium bone 3 +UBERON_0002204 musculoskeletal system UBERON_0013584 metapodium bone 4 +UBERON_0002204 musculoskeletal system UBERON_0013585 metapodium bone 5 +UBERON_0002204 musculoskeletal system UBERON_0013586 fused metapodial bones 3 and 4 +UBERON_0002204 musculoskeletal system UBERON_0013587 fused metacarpal bones 3 and 4 +UBERON_0002204 musculoskeletal system UBERON_0013588 fused metatarsal bones 3 and 4 +UBERON_0002204 musculoskeletal system UBERON_0013612 lower jaw cingulum +UBERON_0002204 musculoskeletal system UBERON_0013613 upper jaw cingulum +UBERON_0002204 musculoskeletal system UBERON_0013616 primary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0013617 upper primary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0013618 secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0013619 upper secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0013620 lower primary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0013621 lower secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0013630 short bone +UBERON_0002204 musculoskeletal system UBERON_0013631 sesamoid element +UBERON_0002204 musculoskeletal system UBERON_0013632 sesamoid cartilage +UBERON_0002204 musculoskeletal system UBERON_0013633 intertrochanteric crest +UBERON_0002204 musculoskeletal system UBERON_0013634 intertrochanteric line +UBERON_0002204 musculoskeletal system UBERON_0013649 fused tarsal bones 1 and 2 +UBERON_0002204 musculoskeletal system UBERON_0013653 velar skeleton +UBERON_0002204 musculoskeletal system UBERON_0013655 elastica externa of notochord +UBERON_0002204 musculoskeletal system UBERON_0013673 os priapium +UBERON_0002204 musculoskeletal system UBERON_0013674 ctenactinium +UBERON_0002204 musculoskeletal system UBERON_0013676 aproctal bone of priapium +UBERON_0002204 musculoskeletal system UBERON_0013677 serrated projection of ctenactinium +UBERON_0002204 musculoskeletal system UBERON_0013685 foramen of skull +UBERON_0002204 musculoskeletal system UBERON_0013687 pericranium +UBERON_0002204 musculoskeletal system UBERON_0013706 bone spine +UBERON_0002204 musculoskeletal system UBERON_0013707 iliac spine +UBERON_0002204 musculoskeletal system UBERON_0013708 anterior superior iliac spine +UBERON_0002204 musculoskeletal system UBERON_0013709 anterior inferior iliac spine +UBERON_0002204 musculoskeletal system UBERON_0013710 posterior superior iliac spine +UBERON_0002204 musculoskeletal system UBERON_0013711 posterior inferior iliac spine +UBERON_0002204 musculoskeletal system UBERON_0013712 anterior iliac spine +UBERON_0002204 musculoskeletal system UBERON_0013713 posterior iliac spine +UBERON_0002204 musculoskeletal system UBERON_0013718 dartos muscle +UBERON_0002204 musculoskeletal system UBERON_0013719 dartos muscle of scrotum +UBERON_0002204 musculoskeletal system UBERON_0013720 dartos muscle of labia majora +UBERON_0002204 musculoskeletal system UBERON_0013725 anterior talofibular ligament +UBERON_0002204 musculoskeletal system UBERON_0013726 posterior talofibular ligament +UBERON_0002204 musculoskeletal system UBERON_0013727 notochordal fluid +UBERON_0002204 musculoskeletal system UBERON_0013746 basibranchial element +UBERON_0002204 musculoskeletal system UBERON_0013747 basibranchial cartilage +UBERON_0002204 musculoskeletal system UBERON_0013748 ulnar metaphysis +UBERON_0002204 musculoskeletal system UBERON_0013749 metaphysis of humerus +UBERON_0002204 musculoskeletal system UBERON_0013750 metaphysis of tibia +UBERON_0002204 musculoskeletal system UBERON_0013751 metaphysis of radius +UBERON_0002204 musculoskeletal system UBERON_0013752 diaphysis of metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0013753 distal epiphysis of metacarpal bone +UBERON_0002204 musculoskeletal system UBERON_0013767 frontal process of maxilla +UBERON_0002204 musculoskeletal system UBERON_0013774 diaphysis of metatarsal bone +UBERON_0002204 musculoskeletal system UBERON_0014386 vertebral endplate +UBERON_0002204 musculoskeletal system UBERON_0014395 proximal mesopodial bone +UBERON_0002204 musculoskeletal system UBERON_0014397 lateral process of malleus +UBERON_0002204 musculoskeletal system UBERON_0014409 metacromion +UBERON_0002204 musculoskeletal system UBERON_0014411 greater sciatic notch +UBERON_0002204 musculoskeletal system UBERON_0014430 sciatic notch +UBERON_0002204 musculoskeletal system UBERON_0014436 lesser sciatic notch +UBERON_0002204 musculoskeletal system UBERON_0014437 iliac crest +UBERON_0002204 musculoskeletal system UBERON_0014438 superior pubic ramus +UBERON_0002204 musculoskeletal system UBERON_0014439 inferior pubic ramus +UBERON_0002204 musculoskeletal system UBERON_0014440 ischiopubic ramus +UBERON_0002204 musculoskeletal system UBERON_0014441 ischial ramus +UBERON_0002204 musculoskeletal system UBERON_0014442 superior ischial ramus +UBERON_0002204 musculoskeletal system UBERON_0014443 inferior ischial ramus +UBERON_0002204 musculoskeletal system UBERON_0014444 pubic ramus +UBERON_0002204 musculoskeletal system UBERON_0014445 acetabular fossa +UBERON_0002204 musculoskeletal system UBERON_0014446 acetabular notch +UBERON_0002204 musculoskeletal system UBERON_0014459 temporal fenestra +UBERON_0002204 musculoskeletal system UBERON_0014460 supratemporal fenestra +UBERON_0002204 musculoskeletal system UBERON_0014461 infratemporal fenestra +UBERON_0002204 musculoskeletal system UBERON_0014465 antorbital fenestra +UBERON_0002204 musculoskeletal system UBERON_0014477 thoracic skeleton +UBERON_0002204 musculoskeletal system UBERON_0014478 rib skeletal system +UBERON_0002204 musculoskeletal system UBERON_0014483 distal phalanx of digit 1 +UBERON_0002204 musculoskeletal system UBERON_0014484 distal phalanx of digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014485 distal phalanx of digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014486 distal phalanx of digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014487 distal phalanx of digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014488 middle phalanx of digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014489 middle phalanx of digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014490 middle phalanx of digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014491 middle phalanx of digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014501 proximal phalanx of digit 1 +UBERON_0002204 musculoskeletal system UBERON_0014502 proximal phalanx of digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014503 proximal phalanx of digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014504 proximal phalanx of digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014505 proximal phalanx of digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014506 distal interphalangeal joint of digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014507 distal interphalangeal joint of pedal digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014508 distal interphalangeal joint of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014509 distal sesamoid impar ligament +UBERON_0002204 musculoskeletal system UBERON_0014624 basis modioli +UBERON_0002204 musculoskeletal system UBERON_0014626 base of cochlear canal +UBERON_0002204 musculoskeletal system UBERON_0014628 vestibular fissure of the cochlear canal +UBERON_0002204 musculoskeletal system UBERON_0014629 terminal part of the cochlear canal +UBERON_0002204 musculoskeletal system UBERON_0014668 distal interphalangeal joint of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014670 distal interphalangeal joint of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014671 distal interphalangeal joint of manural digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014672 distal interphalangeal joint of pedal digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014674 distal interphalangeal joint of pedal digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014675 distal interphalangeal joint of pedal digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014677 distal interphalangeal joint of digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014679 distal interphalangeal joint of digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014680 distal interphalangeal joint of digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014682 tooth whorl +UBERON_0002204 musculoskeletal system UBERON_0014683 parasymphisial tooth whorl +UBERON_0002204 musculoskeletal system UBERON_0014684 Helicoprion tooth whorl +UBERON_0002204 musculoskeletal system UBERON_0014707 hyoplastron +UBERON_0002204 musculoskeletal system UBERON_0014708 costal plate of carapace +UBERON_0002204 musculoskeletal system UBERON_0014730 osteon +UBERON_0002204 musculoskeletal system UBERON_0014731 haversian canal +UBERON_0002204 musculoskeletal system UBERON_0014762 fused metapodial bones 2-4 +UBERON_0002204 musculoskeletal system UBERON_0014763 fused metatarsal bones 2-4 +UBERON_0002204 musculoskeletal system UBERON_0014801 nuchal line attachment site +UBERON_0002204 musculoskeletal system UBERON_0014802 highest nuchal line attachment site +UBERON_0002204 musculoskeletal system UBERON_0014803 superior nuchal line attachment site +UBERON_0002204 musculoskeletal system UBERON_0014804 median nuchal line attachment site +UBERON_0002204 musculoskeletal system UBERON_0014805 inferior nuchal line attachment site +UBERON_0002204 musculoskeletal system UBERON_0014848 tendon of quadriceps femoris +UBERON_0002204 musculoskeletal system UBERON_0014870 inferior orbital fissure +UBERON_0002204 musculoskeletal system UBERON_0014871 distal epiphysis of distal phalanx of pedal digit 1 +UBERON_0002204 musculoskeletal system UBERON_0014872 distal epiphysis of distal phalanx of pedal digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014873 distal epiphysis of distal phalanx of pedal digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014874 distal epiphysis of distal phalanx of pedal digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014875 distal epiphysis of distal phalanx of pedal digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014876 distal epiphysis of distal phalanx of pedal digit +UBERON_0002204 musculoskeletal system UBERON_0014881 distal epiphysis of distal phalanx of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_0014882 distal epiphysis of distal phalanx of manual digit 2 +UBERON_0002204 musculoskeletal system UBERON_0014883 distal epiphysis of distal phalanx of manual digit 3 +UBERON_0002204 musculoskeletal system UBERON_0014884 distal epiphysis of distal phalanx of manual digit 4 +UBERON_0002204 musculoskeletal system UBERON_0014885 distal epiphysis of distal phalanx of manual digit 5 +UBERON_0002204 musculoskeletal system UBERON_0014886 distal epiphysis of distal phalanx of manual digit +UBERON_0002204 musculoskeletal system UBERON_0014887 distal epiphysis of distal phalanx of digit +UBERON_0002204 musculoskeletal system UBERON_0014898 lamina terminalis of ischium +UBERON_0002204 musculoskeletal system UBERON_0014899 anterolateral ligament of knee +UBERON_0002204 musculoskeletal system UBERON_0015001 radius endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015002 radius-ulna endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015003 ulna endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015004 tibia endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015007 cervical vertebra endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015008 thoracic vertebra endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015009 lumbar vertebra endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015010 sacral vertebra endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015011 tibiotarsus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015012 tarsometatarsus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015013 fibula endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015014 calcaneum endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015015 supraoccipital endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015016 stapes endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015017 incus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015018 malleus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015019 rib endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015021 forelimb endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015022 hindlimb endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015023 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015024 manual digit phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015025 manual digit 1 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015026 manual digit 2 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015027 manual digit 3 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015028 manual digit 4 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015029 manual digit 5 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015030 pedal digit phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015031 pedal digit 1 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015032 pedal digit 2 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015033 pedal digit 3 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015034 pedal digit 4 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015035 pedal digit 5 phalanx endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015036 pedal digit metatarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015037 pedal digit 1 metatarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015038 pedal digit 2 metatarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015039 pedal digit 3 metatarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015040 pedal digit 4 metatarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015041 pedal digit 5 metatarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015042 manual digit metacarpus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015043 manual digit 1 metacarpus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015044 manual digit 2 metacarpus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015045 manual digit 3 metacarpus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015046 manual digit 4 metacarpus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015047 manual digit 5 metacarpus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015048 basioccipital endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015049 carpus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015050 tarsus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015051 exoccipital endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015052 femur endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015053 humerus endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015054 iliac endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015055 pubic endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015056 ischial endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015057 scapula endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015058 alisphenoid endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015059 orbitosphenoid endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015060 sphenoid endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015061 limb endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015062 bone condensation +UBERON_0002204 musculoskeletal system UBERON_0015063 autopod endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015064 autopod cartilage +UBERON_0002204 musculoskeletal system UBERON_0015067 centrale endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015068 distal carpal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015069 distal carpal cartilage element +UBERON_0002204 musculoskeletal system UBERON_0015077 centrale cartilage +UBERON_0002204 musculoskeletal system UBERON_0015078 proximal carpal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015079 proximal carpal cartilage +UBERON_0002204 musculoskeletal system UBERON_0015080 proximal carpal bone pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015081 proximal tarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015082 proximal tarsal cartilage +UBERON_0002204 musculoskeletal system UBERON_0015083 proximal tarsal bone pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015084 distal carpal bone 1 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015085 distal carpal bone 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015086 distal carpal bone 1 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015087 distal carpal bone 2 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015088 distal carpal bone 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015089 distal carpal bone 2 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015090 distal carpal bone 3 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015091 distal carpal bone 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015092 distal carpal bone 3 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015093 distal carpal bone 4 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015094 distal carpal bone 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015095 distal carpal bone 4 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015096 distal carpal bone 5 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015097 distal carpal bone 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015098 distal carpal bone 5 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015099 distal tarsal endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015100 distal tarsal cartilage +UBERON_0002204 musculoskeletal system UBERON_0015101 distal tarsal bone pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015102 distal tarsal bone 1 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015103 distal tarsal bone 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015104 distal tarsal bone 1 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015105 distal tarsal bone 2 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015106 distal tarsal bone 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015107 distal tarsal bone 2 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015108 distal tarsal bone 3 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015109 distal tarsal bone 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015110 distal tarsal bone 3 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015111 distal tarsal bone 4 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015112 distal tarsal bone 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015113 distal tarsal bone 4 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015114 distal tarsal bone 5 endochondral element +UBERON_0002204 musculoskeletal system UBERON_0015115 distal tarsal bone 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_0015116 distal tarsal bone 5 pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0015180 neck of talus +UBERON_0002204 musculoskeletal system UBERON_0015181 neck of tooth +UBERON_0002204 musculoskeletal system UBERON_0015837 incisor dental pulp +UBERON_0002204 musculoskeletal system UBERON_0015838 molar dental pulp +UBERON_0002204 musculoskeletal system UBERON_0015839 molar epithelium +UBERON_0002204 musculoskeletal system UBERON_0015840 incisor dental lamina +UBERON_0002204 musculoskeletal system UBERON_0015841 molar dental lamina +UBERON_0002204 musculoskeletal system UBERON_0015842 incisor enamel organ +UBERON_0002204 musculoskeletal system UBERON_0015843 molar enamel organ +UBERON_0002204 musculoskeletal system UBERON_0015844 molar dental papilla +UBERON_0002204 musculoskeletal system UBERON_0015846 incisor mesenchyme +UBERON_0002204 musculoskeletal system UBERON_0015847 upper left incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0015848 incisor tusk +UBERON_0002204 musculoskeletal system UBERON_0015849 canine tusk +UBERON_0002204 musculoskeletal system UBERON_0015850 upper left incisor tusk +UBERON_0002204 musculoskeletal system UBERON_0015851 upper right incisor tusk +UBERON_0002204 musculoskeletal system UBERON_0015852 narwhal tusk +UBERON_0002204 musculoskeletal system UBERON_0015853 dental pulp of median incisor tusk +UBERON_0002204 musculoskeletal system UBERON_0015854 interpedicular line +UBERON_0002204 musculoskeletal system UBERON_0016404 cervical vertebral arch joint +UBERON_0002204 musculoskeletal system UBERON_0016412 central part of body of bony vertebral centrum +UBERON_0002204 musculoskeletal system UBERON_0016413 medullary cavity of long bone +UBERON_0002204 musculoskeletal system UBERON_0016418 nasion +UBERON_0002204 musculoskeletal system UBERON_0016419 bony part of vertebral arch +UBERON_0002204 musculoskeletal system UBERON_0016422 compact bone of long bone +UBERON_0002204 musculoskeletal system UBERON_0016423 compact bone of diaphysis +UBERON_0002204 musculoskeletal system UBERON_0016425 epiphyseal plate of radius +UBERON_0002204 musculoskeletal system UBERON_0016426 proximal interphalangeal joint of little finger +UBERON_0002204 musculoskeletal system UBERON_0016440 glabella region of bone +UBERON_0002204 musculoskeletal system UBERON_0016442 median palatine suture +UBERON_0002204 musculoskeletal system UBERON_0016452 upper secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0016453 lower secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0016454 upper central secondary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0016455 upper lateral secondary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0016476 primary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0016491 vertebral centrum element +UBERON_0002204 musculoskeletal system UBERON_0016492 foramen spinosum of sphenoid bone +UBERON_0002204 musculoskeletal system UBERON_0016496 tendon of palmaris longus +UBERON_0002204 musculoskeletal system UBERON_0016497 epicondyle of humerus +UBERON_0002204 musculoskeletal system UBERON_0016619 Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0002204 musculoskeletal system UBERON_0016621 lunge feeding organ +UBERON_0002204 musculoskeletal system UBERON_0016622 lunge feeding organ papilla +UBERON_0002204 musculoskeletal system UBERON_0016628 stem of Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0002204 musculoskeletal system UBERON_0016629 branch of Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0002204 musculoskeletal system UBERON_0016631 actinopterygian frontal-parietal joint +UBERON_0002204 musculoskeletal system UBERON_0016851 renal fascia +UBERON_0002204 musculoskeletal system UBERON_0016876 digit 6 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0016877 digit 7 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0016878 digit 8 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_0016881 craniopharyngeal canal +UBERON_0002204 musculoskeletal system UBERON_0016882 intertarsal-type crurotarsal joint +UBERON_0002204 musculoskeletal system UBERON_0016884 shoulder joint +UBERON_0002204 musculoskeletal system UBERON_0016896 periosteum of long bone +UBERON_0002204 musculoskeletal system UBERON_0016928 metaphysis of fibula +UBERON_0002204 musculoskeletal system UBERON_0016929 lingual cusp of tooth +UBERON_0002204 musculoskeletal system UBERON_0016930 ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016931 transverse ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016932 triangular ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016933 oblique ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016934 marginal ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016937 transverse marginal ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016938 mesial marginal ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016939 distal marginal ridge of tooth +UBERON_0002204 musculoskeletal system UBERON_0016942 rostral margin of orbit +UBERON_0002204 musculoskeletal system UBERON_0016943 lower premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0016944 upper premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0017157 exoccipital-atlas joint +UBERON_0002204 musculoskeletal system UBERON_0017249 incisive process of premaxilla +UBERON_0002204 musculoskeletal system UBERON_0017261 intertarsal sesamoid +UBERON_0002204 musculoskeletal system UBERON_0017269 primary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0017270 secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0017271 upper primary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0017272 lower primary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0017295 cingulum of tooth +UBERON_0002204 musculoskeletal system UBERON_0017296 cingulum of incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0017297 cingulum of canine tooth +UBERON_0002204 musculoskeletal system UBERON_0017298 cingulum of upper incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0017299 cingulum of lower incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0017312 cingulum of upper canine tooth +UBERON_0002204 musculoskeletal system UBERON_0017313 cingulum of lower canine tooth +UBERON_0002204 musculoskeletal system UBERON_0017612 cingulum of lower jaw molar +UBERON_0002204 musculoskeletal system UBERON_0017613 cingulum of upper jaw molar +UBERON_0002204 musculoskeletal system UBERON_0017614 cingulum of molar tooth +UBERON_0002204 musculoskeletal system UBERON_0017615 vomerine dentition +UBERON_0002204 musculoskeletal system UBERON_0017634 xenarthrale +UBERON_0002204 musculoskeletal system UBERON_0017670 bony part of cervical vertebral arch +UBERON_0002204 musculoskeletal system UBERON_0017671 bony part of vertebral arch of first sacral vertebra +UBERON_0002204 musculoskeletal system UBERON_0017690 internal surface of frontal bone +UBERON_0002204 musculoskeletal system UBERON_0017692 internal surface of cranial base +UBERON_0002204 musculoskeletal system UBERON_0017748 lower primary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0017750 proximal mesopodial endochondral element +UBERON_0002204 musculoskeletal system UBERON_0017751 proximal mesopodial cartilage element +UBERON_0002204 musculoskeletal system UBERON_0018099 distal mesopodial endochondral element +UBERON_0002204 musculoskeletal system UBERON_0018100 distal mesopodial cartilage element +UBERON_0002204 musculoskeletal system UBERON_0018101 distal mesopodial pre-cartilage condensation +UBERON_0002204 musculoskeletal system UBERON_0018102 distal mesopodial bone +UBERON_0002204 musculoskeletal system UBERON_0018136 maxillary fenestra +UBERON_0002204 musculoskeletal system UBERON_0018137 premaxillary fenestra +UBERON_0002204 musculoskeletal system UBERON_0018142 caudal vertebra endochondral element +UBERON_0002204 musculoskeletal system UBERON_0018143 transverse process of cervical vertebra +UBERON_0002204 musculoskeletal system UBERON_0018144 cervical rib +UBERON_0002204 musculoskeletal system UBERON_0018145 lumbar rib +UBERON_0002204 musculoskeletal system UBERON_0018146 transverse process of lumbar vertebra +UBERON_0002204 musculoskeletal system UBERON_0018156 malleal ligament +UBERON_0002204 musculoskeletal system UBERON_0018157 lateral malleal ligament +UBERON_0002204 musculoskeletal system UBERON_0018158 superior malleal ligament +UBERON_0002204 musculoskeletal system UBERON_0018159 anterior malleal ligament +UBERON_0002204 musculoskeletal system UBERON_0018160 anterior process of malleus +UBERON_0002204 musculoskeletal system UBERON_0018242 palatine bone horizontal plate +UBERON_0002204 musculoskeletal system UBERON_0018265 anterior root of zygomatic arch +UBERON_0002204 musculoskeletal system UBERON_0018266 third phalanx +UBERON_0002204 musculoskeletal system UBERON_0018267 atlantal spinal nerve foramen +UBERON_0002204 musculoskeletal system UBERON_0018272 apex of paracone +UBERON_0002204 musculoskeletal system UBERON_0018273 caniniform region +UBERON_0002204 musculoskeletal system UBERON_0018274 postcingulum of deciduous premolar 5 +UBERON_0002204 musculoskeletal system UBERON_0018275 posthypocrista of deciduous premolar 5 +UBERON_0002204 musculoskeletal system UBERON_0018276 egg tooth +UBERON_0002204 musculoskeletal system UBERON_0018277 calcareous egg tooth +UBERON_0002204 musculoskeletal system UBERON_0018278 epidermal egg tooth +UBERON_0002204 musculoskeletal system UBERON_0018279 hypoconid +UBERON_0002204 musculoskeletal system UBERON_0018281 lower deciduous premolar 5 +UBERON_0002204 musculoskeletal system UBERON_0018282 lower molar 3 +UBERON_0002204 musculoskeletal system UBERON_0018283 lower pharyngobranchial toothplate +UBERON_0002204 musculoskeletal system UBERON_0018284 lower premolar 1 +UBERON_0002204 musculoskeletal system UBERON_0018285 lower premolar 2 +UBERON_0002204 musculoskeletal system UBERON_0018286 molar 1 posteroloph +UBERON_0002204 musculoskeletal system UBERON_0018287 premolar 1 hypoconoid +UBERON_0002204 musculoskeletal system UBERON_0018288 paracone +UBERON_0002204 musculoskeletal system UBERON_0018289 paracristid +UBERON_0002204 musculoskeletal system UBERON_0018290 postcingulum +UBERON_0002204 musculoskeletal system UBERON_0018291 posteroloph +UBERON_0002204 musculoskeletal system UBERON_0018292 posthypocrista +UBERON_0002204 musculoskeletal system UBERON_0018293 precingulum +UBERON_0002204 musculoskeletal system UBERON_0018294 premolar 1 +UBERON_0002204 musculoskeletal system UBERON_0018295 preprotocrista +UBERON_0002204 musculoskeletal system UBERON_0018296 replacement tooth +UBERON_0002204 musculoskeletal system UBERON_0018297 resorption pit +UBERON_0002204 musculoskeletal system UBERON_0018298 stylocone +UBERON_0002204 musculoskeletal system UBERON_0018299 mandibular symphyseal tooth +UBERON_0002204 musculoskeletal system UBERON_0018300 upper canine 1 +UBERON_0002204 musculoskeletal system UBERON_0018301 upper deciduous premolar 5 +UBERON_0002204 musculoskeletal system UBERON_0018302 upper molar 1 +UBERON_0002204 musculoskeletal system UBERON_0018305 bicipital surface +UBERON_0002204 musculoskeletal system UBERON_0018310 cephalic dermal scale +UBERON_0002204 musculoskeletal system UBERON_0018314 choanal groove +UBERON_0002204 musculoskeletal system UBERON_0018316 cuboid facet of calcaneum +UBERON_0002204 musculoskeletal system UBERON_0018318 entocarotid fossa +UBERON_0002204 musculoskeletal system UBERON_0018320 flexor sesamoid +UBERON_0002204 musculoskeletal system UBERON_0018321 foramen for glossopharyngeal nerve +UBERON_0002204 musculoskeletal system UBERON_0018322 fourth phalanx +UBERON_0002204 musculoskeletal system UBERON_0018323 hyoid articular area +UBERON_0002204 musculoskeletal system UBERON_0018324 hypochordal radial +UBERON_0002204 musculoskeletal system UBERON_0018325 caudal fin radial element +UBERON_0002204 musculoskeletal system UBERON_0018326 ilioischiadic foramen +UBERON_0002204 musculoskeletal system UBERON_0018328 incisura fossa +UBERON_0002204 musculoskeletal system UBERON_0018329 interpterygoid region +UBERON_0002204 musculoskeletal system UBERON_0018330 interpterygoid vacuity +UBERON_0002204 musculoskeletal system UBERON_0018331 intraramal joint +UBERON_0002204 musculoskeletal system UBERON_0018332 jugal bar +UBERON_0002204 musculoskeletal system UBERON_0018333 labial cartilage +UBERON_0002204 musculoskeletal system UBERON_0018334 lateral condyle of quadrate +UBERON_0002204 musculoskeletal system UBERON_0018336 maxillary shank +UBERON_0002204 musculoskeletal system UBERON_0018337 medial condyle of quadrate +UBERON_0002204 musculoskeletal system UBERON_0018338 medial cotyla +UBERON_0002204 musculoskeletal system UBERON_0018339 metotic fissure +UBERON_0002204 musculoskeletal system UBERON_0018341 nasal process of premaxilla +UBERON_0002204 musculoskeletal system UBERON_0018344 parastyle +UBERON_0002204 musculoskeletal system UBERON_0018345 stylar shelf +UBERON_0002204 musculoskeletal system UBERON_0018346 parietal notch +UBERON_0002204 musculoskeletal system UBERON_0018347 pars canalicularis of petrosal +UBERON_0002204 musculoskeletal system UBERON_0018348 petrosal bone +UBERON_0002204 musculoskeletal system UBERON_0018349 pharyngeal apophysis +UBERON_0002204 musculoskeletal system UBERON_0018351 precerebral fontanelle +UBERON_0002204 musculoskeletal system UBERON_0018352 prismatic cartilage +UBERON_0002204 musculoskeletal system UBERON_0018353 quadrate condyle +UBERON_0002204 musculoskeletal system UBERON_0018354 recessus vena jugularis +UBERON_0002204 musculoskeletal system UBERON_0018356 rostral entotympanic element +UBERON_0002204 musculoskeletal system UBERON_0018358 spina externa +UBERON_0002204 musculoskeletal system UBERON_0018359 subolfactory process +UBERON_0002204 musculoskeletal system UBERON_0018360 suborbital foramen +UBERON_0002204 musculoskeletal system UBERON_0018361 suborbital shelf +UBERON_0002204 musculoskeletal system UBERON_0018362 supracondylar tubercle +UBERON_0002204 musculoskeletal system UBERON_0018364 suprameatal foramen +UBERON_0002204 musculoskeletal system UBERON_0018365 supratemporal process +UBERON_0002204 musculoskeletal system UBERON_0018366 supratendinal bridge +UBERON_0002204 musculoskeletal system UBERON_0018367 processus ventralis of thoracic vertebra +UBERON_0002204 musculoskeletal system UBERON_0018368 processus ventrolateralis of thoracic vertebra +UBERON_0002204 musculoskeletal system UBERON_0018371 ventral supracondylar tubercle +UBERON_0002204 musculoskeletal system UBERON_0018372 dorsal supracondylar tubercle +UBERON_0002204 musculoskeletal system UBERON_0018373 vidian canal +UBERON_0002204 musculoskeletal system UBERON_0018375 deciduous premolar 5 +UBERON_0002204 musculoskeletal system UBERON_0018376 molar tooth 1 +UBERON_0002204 musculoskeletal system UBERON_0018377 molar tooth 3 +UBERON_0002204 musculoskeletal system UBERON_0018407 infra-orbital foramen of maxilla +UBERON_0002204 musculoskeletal system UBERON_0018409 infra-orbital groove of maxilla +UBERON_0002204 musculoskeletal system UBERON_0018411 ligament of hip joint +UBERON_0002204 musculoskeletal system UBERON_0018413 facial nerve canal +UBERON_0002204 musculoskeletal system UBERON_0018415 ethmoid foramen +UBERON_0002204 musculoskeletal system UBERON_0018424 petrosal foramen +UBERON_0002204 musculoskeletal system UBERON_0018508 foramen of nasal bone +UBERON_0002204 musculoskeletal system UBERON_0018542 mandibular symphyseal region +UBERON_0002204 musculoskeletal system UBERON_0018550 secondary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018551 central incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018552 lateral incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018553 primary central incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018554 primary lateral incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018561 upper secondary canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018562 lower secondary canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018568 lower central secondary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018570 lower lateral secondary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018571 upper first secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0018572 upper second secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0018573 lower first secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0018574 lower second secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_0018575 upper first secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018576 upper second secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018577 upper third secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018578 lower first secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018579 lower second secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018580 lower third secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018583 primary canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018584 secondary canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018588 upper first primary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018589 lower first primary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018591 upper primary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018593 upper central primary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018594 upper lateral primary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018595 lower central primary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018596 lower lateral primary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018597 upper primary canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018598 lower primary canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018599 upper second primary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018600 lower second primary molar tooth +UBERON_0002204 musculoskeletal system UBERON_0018601 lower central incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018602 lower lateral incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018603 upper central incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018604 upper lateral incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018606 molar tooth 2 +UBERON_0002204 musculoskeletal system UBERON_0018607 permanent molar tooth 2 +UBERON_0002204 musculoskeletal system UBERON_0018608 permanent molar tooth 1 +UBERON_0002204 musculoskeletal system UBERON_0018613 secondary upper tooth +UBERON_0002204 musculoskeletal system UBERON_0018614 permanent lower tooth +UBERON_0002204 musculoskeletal system UBERON_0018616 primary upper tooth +UBERON_0002204 musculoskeletal system UBERON_0018617 primary lower tooth +UBERON_0002204 musculoskeletal system UBERON_0018621 upper canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018622 lower canine tooth +UBERON_0002204 musculoskeletal system UBERON_0018623 lower secondary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0018640 premolar 2 +UBERON_0002204 musculoskeletal system UBERON_0018643 deciduous molar tooth 2 +UBERON_0002204 musculoskeletal system UBERON_0018644 deciduous molar tooth 1 +UBERON_0002204 musculoskeletal system UBERON_0018645 incisor region of dentition +UBERON_0002204 musculoskeletal system UBERON_0018646 premolar tooth 5 +UBERON_0002204 musculoskeletal system UBERON_0018647 premolar tooth 4 +UBERON_0002204 musculoskeletal system UBERON_0018648 upper premolar 4 +UBERON_0002204 musculoskeletal system UBERON_0018651 foramen lacerum +UBERON_0002204 musculoskeletal system UBERON_0018652 maxillary recess +UBERON_0002204 musculoskeletal system UBERON_0018653 anterior ethmoidal foramen +UBERON_0002204 musculoskeletal system UBERON_0018654 posterior ethmoidal foramen +UBERON_0002204 musculoskeletal system UBERON_0018655 pars endotympanica +UBERON_0002204 musculoskeletal system UBERON_0018664 neck of bone element +UBERON_0002204 musculoskeletal system UBERON_0018667 neck of scapula +UBERON_0002204 musculoskeletal system UBERON_0018673 neck of fibula +UBERON_0002204 musculoskeletal system UBERON_0019253 upper secondary incisor tooth +UBERON_0002204 musculoskeletal system UBERON_0026584 tympanic canal +UBERON_0002204 musculoskeletal system UBERON_0026586 vestibular canal +UBERON_0002204 musculoskeletal system UBERON_0034680 laryngeal prominence +UBERON_0002204 musculoskeletal system UBERON_0034688 spermatic fascia +UBERON_0002204 musculoskeletal system UBERON_0034690 external spermatic fascia +UBERON_0002204 musculoskeletal system UBERON_0034691 internal spermatic fascia +UBERON_0002204 musculoskeletal system UBERON_0034712 yellow fibrocartilage +UBERON_0002204 musculoskeletal system UBERON_0034736 coracoclavicular ligament +UBERON_0002204 musculoskeletal system UBERON_0034898 alveolar ridge of premaxilla +UBERON_0002204 musculoskeletal system UBERON_0034900 palatine process of premaxilla +UBERON_0002204 musculoskeletal system UBERON_0034909 intermaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0034937 pharyngeal bar +UBERON_0002204 musculoskeletal system UBERON_0034938 mucocartilage tissue +UBERON_0002204 musculoskeletal system UBERON_0034939 future piston +UBERON_0002204 musculoskeletal system UBERON_0034988 tendon of obturator internus +UBERON_0002204 musculoskeletal system UBERON_0035007 nasal concha cartilage +UBERON_0002204 musculoskeletal system UBERON_0035083 transverse process-bearing vertebra +UBERON_0002204 musculoskeletal system UBERON_0035084 non-transverse process-bearing vertebra +UBERON_0002204 musculoskeletal system UBERON_0035096 fascia of tail +UBERON_0002204 musculoskeletal system UBERON_0035102 transverse process of caudal vertebra +UBERON_0002204 musculoskeletal system UBERON_0035103 perineal body smooth muscle muscle tissue +UBERON_0002204 musculoskeletal system UBERON_0035108 temporalis fascia +UBERON_0002204 musculoskeletal system UBERON_0035115 diastema between central incisors +UBERON_0002204 musculoskeletal system UBERON_0035116 diastema between upper central incisors +UBERON_0002204 musculoskeletal system UBERON_0035117 diastema between lower central incisors +UBERON_0002204 musculoskeletal system UBERON_0035119 diastema between incisors +UBERON_0002204 musculoskeletal system UBERON_0035122 interincisive suture +UBERON_0002204 musculoskeletal system UBERON_0035123 palatomaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0035124 palatoethmoidal suture +UBERON_0002204 musculoskeletal system UBERON_0035126 transverse palatine suture +UBERON_0002204 musculoskeletal system UBERON_0035127 suture of hard palate +UBERON_0002204 musculoskeletal system UBERON_0035128 manus cartilage element +UBERON_0002204 musculoskeletal system UBERON_0035129 pes cartilage element +UBERON_0002204 musculoskeletal system UBERON_0035130 auditory ossicle endochondral element +UBERON_0002204 musculoskeletal system UBERON_0035131 auditory ossicle cartilage element +UBERON_0002204 musculoskeletal system UBERON_0035132 auditory ossicle pre-cartilage element +UBERON_0002204 musculoskeletal system UBERON_0035133 longitudinal arch of pes +UBERON_0002204 musculoskeletal system UBERON_0035139 anterior nasal spine of maxilla +UBERON_0002204 musculoskeletal system UBERON_0035246 posterior longitudinal ligament +UBERON_0002204 musculoskeletal system UBERON_0035298 tuberculum sellae +UBERON_0002204 musculoskeletal system UBERON_0035419 anterior longitudinal ligament +UBERON_0002204 musculoskeletal system UBERON_0035561 styliform element +UBERON_0002204 musculoskeletal system UBERON_0035606 cartilage of external acoustic meatus +UBERON_0002204 musculoskeletal system UBERON_0035612 nasal turbinal +UBERON_0002204 musculoskeletal system UBERON_0035845 enthesis +UBERON_0002204 musculoskeletal system UBERON_0035846 fibrous enthesis +UBERON_0002204 musculoskeletal system UBERON_0035847 fibrocartilage enthesis +UBERON_0002204 musculoskeletal system UBERON_0035848 infraorbital margin +UBERON_0002204 musculoskeletal system UBERON_0035849 orbital margin +UBERON_0002204 musculoskeletal system UBERON_0035850 infraorbital bridge +UBERON_0002204 musculoskeletal system UBERON_0035878 subchondral region of epiphysis +UBERON_0002204 musculoskeletal system UBERON_0035879 frontomaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0035880 zygomaticomaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0035881 ethmoidomaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0035882 sphenomaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0035883 lacrimomaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0035884 maxillary-premaxillary suture +UBERON_0002204 musculoskeletal system UBERON_0035942 space between upper and lower jaws +UBERON_0002204 musculoskeletal system UBERON_0035957 antotic pillar +UBERON_0002204 musculoskeletal system UBERON_0035958 preoptic pillar +UBERON_0002204 musculoskeletal system UBERON_0035959 orbital pillar +UBERON_0002204 musculoskeletal system UBERON_0035964 promontory of tympanic cavity +UBERON_0002204 musculoskeletal system UBERON_0035967 alveolar mucosa +UBERON_0002204 musculoskeletal system UBERON_0036144 incisive duct +UBERON_0002204 musculoskeletal system UBERON_0036242 post-embryonic notochord +UBERON_0002204 musculoskeletal system UBERON_0036246 incudostapedial joint +UBERON_0002204 musculoskeletal system UBERON_0036247 incudomallear joint +UBERON_0002204 musculoskeletal system UBERON_0036248 joint of auditory ossicle +UBERON_0002204 musculoskeletal system UBERON_0036253 orifice of skull +UBERON_0002204 musculoskeletal system UBERON_0036254 piriform aperture +UBERON_0002204 musculoskeletal system UBERON_0036266 pars interarticularis of vertebra +UBERON_0002204 musculoskeletal system UBERON_0036553 wall of synovial tendon sheath +UBERON_0002204 musculoskeletal system UBERON_0037089 wall of orbit +UBERON_0002204 musculoskeletal system UBERON_0038853 superficial popliteal lymph node +UBERON_0002204 musculoskeletal system UBERON_0038854 deep popliteal lymph node +UBERON_0002204 musculoskeletal system UBERON_1500000 scapular blade +UBERON_0002204 musculoskeletal system UBERON_1500005 ischial cartilage +UBERON_0002204 musculoskeletal system UBERON_1500006 paired fin radial bone +UBERON_0002204 musculoskeletal system UBERON_1500007 mesopterygium cartilage +UBERON_0002204 musculoskeletal system UBERON_1500008 pelvic fin distal radial bone +UBERON_0002204 musculoskeletal system UBERON_1500009 pelvic fin basipterygial radial +UBERON_0002204 musculoskeletal system UBERON_1500010 pelvic fin middle radial bone +UBERON_0002204 musculoskeletal system UBERON_1600006 paired fin radial element +UBERON_0002204 musculoskeletal system UBERON_1600008 pelvic fin distal radial element +UBERON_0002204 musculoskeletal system UBERON_1600010 pelvic fin middle radial element +UBERON_0002204 musculoskeletal system UBERON_1700006 paired fin radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2000052 dorsal actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000078 ventral actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000089 actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000103 supramaxilla +UBERON_0002204 musculoskeletal system UBERON_2000104 suprapreopercle +UBERON_0002204 musculoskeletal system UBERON_2000127 antorbital +UBERON_0002204 musculoskeletal system UBERON_2000171 interhyal bone +UBERON_0002204 musculoskeletal system UBERON_2000196 dorsal hypohyal bone +UBERON_0002204 musculoskeletal system UBERON_2000203 rhinosphenoid +UBERON_0002204 musculoskeletal system UBERON_2000223 infraorbital 1 +UBERON_0002204 musculoskeletal system UBERON_2000224 quadrate ventral process +UBERON_0002204 musculoskeletal system UBERON_2000226 lateral ethmoid bone +UBERON_0002204 musculoskeletal system UBERON_2000239 mesocoracoid bone +UBERON_0002204 musculoskeletal system UBERON_2000240 metapterygoid +UBERON_0002204 musculoskeletal system UBERON_2000250 opercle +UBERON_0002204 musculoskeletal system UBERON_2000264 preopercle +UBERON_0002204 musculoskeletal system UBERON_2000268 anal fin proximal radial bone +UBERON_0002204 musculoskeletal system UBERON_2000271 radial bone +UBERON_0002204 musculoskeletal system UBERON_2000284 subopercle +UBERON_0002204 musculoskeletal system UBERON_2000289 preopercle horizontal limb +UBERON_0002204 musculoskeletal system UBERON_2000300 ventral hypohyal bone +UBERON_0002204 musculoskeletal system UBERON_2000336 preopercle vertical limb +UBERON_0002204 musculoskeletal system UBERON_2000337 basioccipital posterodorsal region +UBERON_0002204 musculoskeletal system UBERON_2000348 exoccipital posteroventral region +UBERON_0002204 musculoskeletal system UBERON_2000350 epipleural +UBERON_0002204 musculoskeletal system UBERON_2000356 gill raker +UBERON_0002204 musculoskeletal system UBERON_2000363 hypobranchial bone +UBERON_0002204 musculoskeletal system UBERON_2000364 hypural +UBERON_0002204 musculoskeletal system UBERON_2000373 dorsal fin actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000375 anal fin actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000376 infraorbital +UBERON_0002204 musculoskeletal system UBERON_2000410 postcleithrum +UBERON_0002204 musculoskeletal system UBERON_2000419 pterosphenoid +UBERON_0002204 musculoskeletal system UBERON_2000422 retroarticular +UBERON_0002204 musculoskeletal system UBERON_2000429 scaphium +UBERON_0002204 musculoskeletal system UBERON_2000437 caudal fin actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000438 parhypural +UBERON_0002204 musculoskeletal system UBERON_2000442 supraneural bone +UBERON_0002204 musculoskeletal system UBERON_2000452 urohyal +UBERON_0002204 musculoskeletal system UBERON_2000460 adipose fin actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000461 Weberian ossicle +UBERON_0002204 musculoskeletal system UBERON_2000474 intercalar +UBERON_0002204 musculoskeletal system UBERON_2000476 branchiostegal ray +UBERON_0002204 musculoskeletal system UBERON_2000488 ceratobranchial bone +UBERON_0002204 musculoskeletal system UBERON_2000495 infraorbital 5 +UBERON_0002204 musculoskeletal system UBERON_2000507 epineural +UBERON_0002204 musculoskeletal system UBERON_2000508 pelvic fin radial bone +UBERON_0002204 musculoskeletal system UBERON_2000525 intercalarium +UBERON_0002204 musculoskeletal system UBERON_2000526 intermuscular bone +UBERON_0002204 musculoskeletal system UBERON_2000527 pharyngobranchial bone +UBERON_0002204 musculoskeletal system UBERON_2000544 pectoral fin actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000549 posttemporal +UBERON_0002204 musculoskeletal system UBERON_2000557 preural 1 vertebra +UBERON_0002204 musculoskeletal system UBERON_2000576 pterotic +UBERON_0002204 musculoskeletal system UBERON_2000585 kinethmoid cartilage +UBERON_0002204 musculoskeletal system UBERON_2000586 preural 2 vertebra +UBERON_0002204 musculoskeletal system UBERON_2000587 sphenotic +UBERON_0002204 musculoskeletal system UBERON_2000594 supracleithrum +UBERON_0002204 musculoskeletal system UBERON_2000596 pelvic fin actinotrichium +UBERON_0002204 musculoskeletal system UBERON_2000602 uroneural +UBERON_0002204 musculoskeletal system UBERON_2000620 autopalatine +UBERON_0002204 musculoskeletal system UBERON_2000623 basipterygium bone +UBERON_0002204 musculoskeletal system UBERON_2000627 posterior ceratohyal +UBERON_0002204 musculoskeletal system UBERON_2000637 claustrum cartilage +UBERON_0002204 musculoskeletal system UBERON_2000646 anal fin distal radial bone +UBERON_0002204 musculoskeletal system UBERON_2000657 entopterygoid +UBERON_0002204 musculoskeletal system UBERON_2000658 epibranchial bone +UBERON_0002204 musculoskeletal system UBERON_2000660 epural +UBERON_0002204 musculoskeletal system UBERON_2000663 extrascapula +UBERON_0002204 musculoskeletal system UBERON_2000674 interopercle +UBERON_0002204 musculoskeletal system UBERON_2000691 supraorbital bone +UBERON_0002204 musculoskeletal system UBERON_2000692 symplectic +UBERON_0002204 musculoskeletal system UBERON_2000694 ceratobranchial 5 tooth +UBERON_0002204 musculoskeletal system UBERON_2000698 tripus +UBERON_0002204 musculoskeletal system UBERON_2000699 entopterygoid vertical strut +UBERON_0002204 musculoskeletal system UBERON_2000734 preural vertebra +UBERON_0002204 musculoskeletal system UBERON_2000735 hemal postzygapophysis +UBERON_0002204 musculoskeletal system UBERON_2000859 specialized hemal arch and spine +UBERON_0002204 musculoskeletal system UBERON_2000911 transverse process of neural arch 3 +UBERON_0002204 musculoskeletal system UBERON_2000936 dorsal fin distal radial bone +UBERON_0002204 musculoskeletal system UBERON_2000947 dorsal fin proximal radial bone +UBERON_0002204 musculoskeletal system UBERON_2001028 hypurapophysis +UBERON_0002204 musculoskeletal system UBERON_2001060 basidorsal +UBERON_0002204 musculoskeletal system UBERON_2001137 ventral tooth row +UBERON_0002204 musculoskeletal system UBERON_2001139 mediodorsal tooth row +UBERON_0002204 musculoskeletal system UBERON_2001140 dorsal tooth row +UBERON_0002204 musculoskeletal system UBERON_2001141 tooth 1V +UBERON_0002204 musculoskeletal system UBERON_2001142 tooth 5V +UBERON_0002204 musculoskeletal system UBERON_2001143 tooth 4V +UBERON_0002204 musculoskeletal system UBERON_2001144 tooth 2V +UBERON_0002204 musculoskeletal system UBERON_2001145 tooth 3V +UBERON_0002204 musculoskeletal system UBERON_2001146 tooth 1MD +UBERON_0002204 musculoskeletal system UBERON_2001147 tooth 2MD +UBERON_0002204 musculoskeletal system UBERON_2001148 tooth 1D +UBERON_0002204 musculoskeletal system UBERON_2001150 tooth 2D +UBERON_0002204 musculoskeletal system UBERON_2001151 tooth 4MD +UBERON_0002204 musculoskeletal system UBERON_2001152 tooth 3MD +UBERON_0002204 musculoskeletal system UBERON_2001160 dorsal scute +UBERON_0002204 musculoskeletal system UBERON_2001163 supraneural 7 bone +UBERON_0002204 musculoskeletal system UBERON_2001164 supraneural 6 bone +UBERON_0002204 musculoskeletal system UBERON_2001165 supraneural 5 bone +UBERON_0002204 musculoskeletal system UBERON_2001166 supraneural 9 bone +UBERON_0002204 musculoskeletal system UBERON_2001167 vertebral element 1 +UBERON_0002204 musculoskeletal system UBERON_2001168 vertebral element 2 +UBERON_0002204 musculoskeletal system UBERON_2001169 vertebral element 3 +UBERON_0002204 musculoskeletal system UBERON_2001170 vertebral element 4 +UBERON_0002204 musculoskeletal system UBERON_2001171 os suspensorium +UBERON_0002204 musculoskeletal system UBERON_2001172 roofing cartilage +UBERON_0002204 musculoskeletal system UBERON_2001188 Weberian apparatus +UBERON_0002204 musculoskeletal system UBERON_2001190 Weberian vertebra +UBERON_0002204 musculoskeletal system UBERON_2001191 supraneural 2 bone +UBERON_0002204 musculoskeletal system UBERON_2001192 supraneural 3 bone +UBERON_0002204 musculoskeletal system UBERON_2001193 supraneural 8 bone +UBERON_0002204 musculoskeletal system UBERON_2001220 basibranchial copula +UBERON_0002204 musculoskeletal system UBERON_2001221 anterior copula +UBERON_0002204 musculoskeletal system UBERON_2001222 posterior copula +UBERON_0002204 musculoskeletal system UBERON_2001223 basibranchial 1 bone +UBERON_0002204 musculoskeletal system UBERON_2001224 basibranchial 2 bone +UBERON_0002204 musculoskeletal system UBERON_2001225 basibranchial 3 bone +UBERON_0002204 musculoskeletal system UBERON_2001226 basibranchial 4 bone +UBERON_0002204 musculoskeletal system UBERON_2001228 pharyngeal arch 3 skeleton +UBERON_0002204 musculoskeletal system UBERON_2001229 pharyngeal arch 7 skeleton +UBERON_0002204 musculoskeletal system UBERON_2001230 pharyngeal arch 6 skeleton +UBERON_0002204 musculoskeletal system UBERON_2001231 pharyngeal arch 4 skeleton +UBERON_0002204 musculoskeletal system UBERON_2001232 pharyngeal arch 5 skeleton +UBERON_0002204 musculoskeletal system UBERON_2001233 hypobranchial 1 bone +UBERON_0002204 musculoskeletal system UBERON_2001234 hypobranchial 4 bone +UBERON_0002204 musculoskeletal system UBERON_2001235 hypobranchial 3 bone +UBERON_0002204 musculoskeletal system UBERON_2001236 hypobranchial 2 bone +UBERON_0002204 musculoskeletal system UBERON_2001237 ceratobranchial 1 bone +UBERON_0002204 musculoskeletal system UBERON_2001239 ceratobranchial 5 bone +UBERON_0002204 musculoskeletal system UBERON_2001240 ceratobranchial 4 bone +UBERON_0002204 musculoskeletal system UBERON_2001241 ceratobranchial 3 bone +UBERON_0002204 musculoskeletal system UBERON_2001242 ceratobranchial 2 bone +UBERON_0002204 musculoskeletal system UBERON_2001243 epibranchial 1 bone +UBERON_0002204 musculoskeletal system UBERON_2001244 epibranchial 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001245 epibranchial 4 bone +UBERON_0002204 musculoskeletal system UBERON_2001246 epibranchial 2 bone +UBERON_0002204 musculoskeletal system UBERON_2001247 epibranchial 3 bone +UBERON_0002204 musculoskeletal system UBERON_2001250 pharyngobranchial 2 bone +UBERON_0002204 musculoskeletal system UBERON_2001251 pharyngobranchial 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001252 pharyngobranchial 3 bone +UBERON_0002204 musculoskeletal system UBERON_2001253 neural arch 2 +UBERON_0002204 musculoskeletal system UBERON_2001274 coronomeckelian +UBERON_0002204 musculoskeletal system UBERON_2001275 sublingual bone +UBERON_0002204 musculoskeletal system UBERON_2001279 branchiostegal ray 1 +UBERON_0002204 musculoskeletal system UBERON_2001280 branchiostegal ray 3 +UBERON_0002204 musculoskeletal system UBERON_2001281 branchiostegal ray 2 +UBERON_0002204 musculoskeletal system UBERON_2001333 sublingual dorsal and ventral fused +UBERON_0002204 musculoskeletal system UBERON_2001335 supradorsal +UBERON_0002204 musculoskeletal system UBERON_2001361 basiventral +UBERON_0002204 musculoskeletal system UBERON_2001363 neural complex of Weberian apparatus +UBERON_0002204 musculoskeletal system UBERON_2001364 hemal spine +UBERON_0002204 musculoskeletal system UBERON_2001382 epibranchial bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001392 parapophysis 1 +UBERON_0002204 musculoskeletal system UBERON_2001393 parapophysis 2 +UBERON_0002204 musculoskeletal system UBERON_2001394 neural arch 3 +UBERON_0002204 musculoskeletal system UBERON_2001395 neural arch 4 +UBERON_0002204 musculoskeletal system UBERON_2001396 parapophysis + rib of vertebra 4 +UBERON_0002204 musculoskeletal system UBERON_2001397 post-Weberian supraneural +UBERON_0002204 musculoskeletal system UBERON_2001403 supraethmoid +UBERON_0002204 musculoskeletal system UBERON_2001404 preethmoid bone +UBERON_0002204 musculoskeletal system UBERON_2001406 kinethmoid bone +UBERON_0002204 musculoskeletal system UBERON_2001407 infraorbital 2 +UBERON_0002204 musculoskeletal system UBERON_2001408 infraorbital 3 +UBERON_0002204 musculoskeletal system UBERON_2001409 infraorbital 4 +UBERON_0002204 musculoskeletal system UBERON_2001412 epiotic +UBERON_0002204 musculoskeletal system UBERON_2001415 pelvic fin distal radial bone 2 +UBERON_0002204 musculoskeletal system UBERON_2001416 pelvic fin distal radial bone 3 +UBERON_0002204 musculoskeletal system UBERON_2001417 pelvic fin distal radial bone 1 +UBERON_0002204 musculoskeletal system UBERON_2001419 dorsal fin pterygiophore +UBERON_0002204 musculoskeletal system UBERON_2001420 anal fin pterygiophore +UBERON_0002204 musculoskeletal system UBERON_2001425 basal plate cartilage +UBERON_0002204 musculoskeletal system UBERON_2001432 anterior sclerotic bone +UBERON_0002204 musculoskeletal system UBERON_2001433 posterior sclerotic bone +UBERON_0002204 musculoskeletal system UBERON_2001456 pectoral fin endoskeletal disc +UBERON_0002204 musculoskeletal system UBERON_2001457 postcranial axial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001475 sublingual dorsal ossification +UBERON_0002204 musculoskeletal system UBERON_2001476 sublingual ventral ossification +UBERON_0002204 musculoskeletal system UBERON_2001502 epiphyseal bar +UBERON_0002204 musculoskeletal system UBERON_2001504 occipital arch cartilage +UBERON_0002204 musculoskeletal system UBERON_2001505 taenia marginalis anterior +UBERON_0002204 musculoskeletal system UBERON_2001508 trabecula communis +UBERON_0002204 musculoskeletal system UBERON_2001511 interhyal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001515 taenia marginalis posterior +UBERON_0002204 musculoskeletal system UBERON_2001516 ceratobranchial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001517 ceratobranchial 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001518 ceratobranchial 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001519 ceratobranchial 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001520 ceratobranchial 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001521 ceratobranchial 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001522 hypobranchial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001523 hypobranchial 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001524 hypobranchial 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001525 hypobranchial 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001526 hypobranchial 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001527 epibranchial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001528 epibranchial 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001529 epibranchial 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001530 epibranchial 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001531 epibranchial 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001532 sublingual dorsal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001533 pharyngobranchial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001534 pharyngobranchial 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001535 median fin cartilage +UBERON_0002204 musculoskeletal system UBERON_2001536 pharyngobranchial 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001537 mesocoracoid cartilage +UBERON_0002204 musculoskeletal system UBERON_2001538 pelvic radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001539 basipterygium cartilage +UBERON_0002204 musculoskeletal system UBERON_2001540 pelvic radial 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001541 pelvic radial 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001542 pelvic radial 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001544 sublingual cartilage +UBERON_0002204 musculoskeletal system UBERON_2001545 sublingual ventral cartilage +UBERON_0002204 musculoskeletal system UBERON_2001546 neural spine 4 +UBERON_0002204 musculoskeletal system UBERON_2001547 abdominal scute +UBERON_0002204 musculoskeletal system UBERON_2001548 intercalarium ascending process +UBERON_0002204 musculoskeletal system UBERON_2001553 manubrium +UBERON_0002204 musculoskeletal system UBERON_2001560 hypural 1 +UBERON_0002204 musculoskeletal system UBERON_2001561 hypural 2 +UBERON_0002204 musculoskeletal system UBERON_2001562 hypural 3 +UBERON_0002204 musculoskeletal system UBERON_2001563 hypural 4 +UBERON_0002204 musculoskeletal system UBERON_2001564 hypural 5 +UBERON_0002204 musculoskeletal system UBERON_2001577 premaxilla ascending process +UBERON_0002204 musculoskeletal system UBERON_2001578 anterior dorsomedial process of autopalatine +UBERON_0002204 musculoskeletal system UBERON_2001579 ural vertebra 2 +UBERON_0002204 musculoskeletal system UBERON_2001581 ural centrum 2 +UBERON_0002204 musculoskeletal system UBERON_2001582 non-Weberian precaudal vertebra +UBERON_0002204 musculoskeletal system UBERON_2001583 preural centrum 1+ ural centrum 1 +UBERON_0002204 musculoskeletal system UBERON_2001584 caudal procurrent ray +UBERON_0002204 musculoskeletal system UBERON_2001585 caudal principal ray +UBERON_0002204 musculoskeletal system UBERON_2001586 pectoral fin radial bone +UBERON_0002204 musculoskeletal system UBERON_2001587 pectoral fin proximal radial bone +UBERON_0002204 musculoskeletal system UBERON_2001588 pectoral fin distal radial bone +UBERON_0002204 musculoskeletal system UBERON_2001589 propterygium cartilage +UBERON_0002204 musculoskeletal system UBERON_2001592 claustrum bone +UBERON_0002204 musculoskeletal system UBERON_2001603 maxilla ascending process +UBERON_0002204 musculoskeletal system UBERON_2001604 lateral ethmoid palatine process +UBERON_0002204 musculoskeletal system UBERON_2001606 caudal scute +UBERON_0002204 musculoskeletal system UBERON_2001607 basipterygoid process of parasphenoid +UBERON_0002204 musculoskeletal system UBERON_2001608 autopalatine-lateral ethmoid joint +UBERON_0002204 musculoskeletal system UBERON_2001609 pharyngobranchial 2 bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001610 quadrate dorsal process +UBERON_0002204 musculoskeletal system UBERON_2001611 quadrate posterodorsal process +UBERON_0002204 musculoskeletal system UBERON_2001613 dorsal fin middle radial bone +UBERON_0002204 musculoskeletal system UBERON_2001614 anal fin middle radial bone +UBERON_0002204 musculoskeletal system UBERON_2001615 sphenotic spine +UBERON_0002204 musculoskeletal system UBERON_2001616 lateral ethmoid wing +UBERON_0002204 musculoskeletal system UBERON_2001620 lagenar capsule +UBERON_0002204 musculoskeletal system UBERON_2001623 type 1 odontode +UBERON_0002204 musculoskeletal system UBERON_2001626 premaxillary tooth +UBERON_0002204 musculoskeletal system UBERON_2001632 ectopterygoid tooth +UBERON_0002204 musculoskeletal system UBERON_2001633 entopterygoid tooth +UBERON_0002204 musculoskeletal system UBERON_2001634 pharyngobranchial 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001635 pharyngobranchial 1 bone +UBERON_0002204 musculoskeletal system UBERON_2001636 pharyngobranchial 4 bone +UBERON_0002204 musculoskeletal system UBERON_2001640 notochordal ossification +UBERON_0002204 musculoskeletal system UBERON_2001647 pharyngeal tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001648 basihyal tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001649 basihyal tooth +UBERON_0002204 musculoskeletal system UBERON_2001650 pharyngobranchial 2 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001651 pharyngobranchial 2 tooth +UBERON_0002204 musculoskeletal system UBERON_2001652 pharyngobranchial 3 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001653 pharyngobranchial 3 tooth +UBERON_0002204 musculoskeletal system UBERON_2001654 upper pharyngeal 4 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001655 upper pharyngeal 4 tooth +UBERON_0002204 musculoskeletal system UBERON_2001656 upper pharyngeal 5 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001657 upper pharyngeal 5 tooth +UBERON_0002204 musculoskeletal system UBERON_2001658 upper pharyngeal tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001659 upper pharyngeal tooth +UBERON_0002204 musculoskeletal system UBERON_2001660 basibranchial tooth +UBERON_0002204 musculoskeletal system UBERON_2001661 basibranchial tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001662 basibranchial 4 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001663 basibranchial 4 tooth +UBERON_0002204 musculoskeletal system UBERON_2001664 basibranchial 2 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001665 basibranchial 2 tooth +UBERON_0002204 musculoskeletal system UBERON_2001666 rudimentary neural arch +UBERON_0002204 musculoskeletal system UBERON_2001671 anal fin radial bone +UBERON_0002204 musculoskeletal system UBERON_2001672 dorsal fin radial bone +UBERON_0002204 musculoskeletal system UBERON_2001674 infraorbital 6 +UBERON_0002204 musculoskeletal system UBERON_2001675 mesethmoid cornu +UBERON_0002204 musculoskeletal system UBERON_2001676 mesethmoid-premaxillary joint +UBERON_0002204 musculoskeletal system UBERON_2001677 mesethmoid-nasal joint +UBERON_0002204 musculoskeletal system UBERON_2001678 mesethmoid-frontal joint +UBERON_0002204 musculoskeletal system UBERON_2001679 mesethmoid-lateral ethmoid joint +UBERON_0002204 musculoskeletal system UBERON_2001680 mesethmoid-vomer joint +UBERON_0002204 musculoskeletal system UBERON_2001681 cornu mesial process +UBERON_0002204 musculoskeletal system UBERON_2001683 transcapular ligament +UBERON_0002204 musculoskeletal system UBERON_2001684 ossified transcapular ligament +UBERON_0002204 musculoskeletal system UBERON_2001685 lateral ethmoid-ectopterygoid ligament +UBERON_0002204 musculoskeletal system UBERON_2001686 bony shelf above orbit +UBERON_0002204 musculoskeletal system UBERON_2001687 interopercular-mandibular ligament +UBERON_0002204 musculoskeletal system UBERON_2001688 palatine cartilage +UBERON_0002204 musculoskeletal system UBERON_2001689 pterygoquadrate cartilage +UBERON_0002204 musculoskeletal system UBERON_2001690 anterior cartilage of palatine +UBERON_0002204 musculoskeletal system UBERON_2001691 posterior cartilage of palatine +UBERON_0002204 musculoskeletal system UBERON_2001692 median premaxilla +UBERON_0002204 musculoskeletal system UBERON_2001694 humerovertebral ligament +UBERON_0002204 musculoskeletal system UBERON_2001695 mediopharyngobranchial +UBERON_0002204 musculoskeletal system UBERON_2001696 gongyloid cartilage +UBERON_0002204 musculoskeletal system UBERON_2001697 transverse radial +UBERON_0002204 musculoskeletal system UBERON_2001698 anal-fin stay +UBERON_0002204 musculoskeletal system UBERON_2001699 dorsal-fin stay +UBERON_0002204 musculoskeletal system UBERON_2001700 caudal-fin stay +UBERON_0002204 musculoskeletal system UBERON_2001701 basibranchial 5 bone +UBERON_0002204 musculoskeletal system UBERON_2001702 infraorbital 7 +UBERON_0002204 musculoskeletal system UBERON_2001703 infraorbital 8 +UBERON_0002204 musculoskeletal system UBERON_2001704 infraorbital 9 +UBERON_0002204 musculoskeletal system UBERON_2001705 infraorbital 10 +UBERON_0002204 musculoskeletal system UBERON_2001706 infraorbital 11 +UBERON_0002204 musculoskeletal system UBERON_2001707 infraorbital 12 +UBERON_0002204 musculoskeletal system UBERON_2001708 dermosphenotic +UBERON_0002204 musculoskeletal system UBERON_2001709 infraorbital series +UBERON_0002204 musculoskeletal system UBERON_2001710 opercle-interopercle joint +UBERON_0002204 musculoskeletal system UBERON_2001711 frontal-pterotic joint +UBERON_0002204 musculoskeletal system UBERON_2001713 caudal principal ray 1 +UBERON_0002204 musculoskeletal system UBERON_2001714 caudal principal ray 2 +UBERON_0002204 musculoskeletal system UBERON_2001715 caudal principal ray 3 +UBERON_0002204 musculoskeletal system UBERON_2001716 caudal principal ray 4 +UBERON_0002204 musculoskeletal system UBERON_2001717 caudal principal ray 5 +UBERON_0002204 musculoskeletal system UBERON_2001718 caudal principal ray 6 +UBERON_0002204 musculoskeletal system UBERON_2001719 caudal principal ray 7 +UBERON_0002204 musculoskeletal system UBERON_2001720 caudal principal ray 8 +UBERON_0002204 musculoskeletal system UBERON_2001721 caudal principal ray 9 +UBERON_0002204 musculoskeletal system UBERON_2001722 caudal principal ray 10 +UBERON_0002204 musculoskeletal system UBERON_2001723 caudal principal ray 11 +UBERON_0002204 musculoskeletal system UBERON_2001724 caudal principal ray 12 +UBERON_0002204 musculoskeletal system UBERON_2001725 caudal principal ray 13 +UBERON_0002204 musculoskeletal system UBERON_2001726 caudal principal ray 14 +UBERON_0002204 musculoskeletal system UBERON_2001727 caudal principal ray 15 +UBERON_0002204 musculoskeletal system UBERON_2001728 caudal principal ray 16 +UBERON_0002204 musculoskeletal system UBERON_2001729 caudal principal ray 17 +UBERON_0002204 musculoskeletal system UBERON_2001730 caudal principal ray 18 +UBERON_0002204 musculoskeletal system UBERON_2001731 caudal principal ray 19 +UBERON_0002204 musculoskeletal system UBERON_2001732 vertebral element 5 +UBERON_0002204 musculoskeletal system UBERON_2001733 mesethmoid ventral diverging lamella +UBERON_0002204 musculoskeletal system UBERON_2001734 posterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2001735 scapular foramen +UBERON_0002204 musculoskeletal system UBERON_2001737 coracoid foramen +UBERON_0002204 musculoskeletal system UBERON_2001739 anterior cranial fontanel +UBERON_0002204 musculoskeletal system UBERON_2001740 posterior cranial fontanel +UBERON_0002204 musculoskeletal system UBERON_2001741 trigeminofacial foramen +UBERON_0002204 musculoskeletal system UBERON_2001742 auditory foramen +UBERON_0002204 musculoskeletal system UBERON_2001747 lateral mesethmoid wing +UBERON_0002204 musculoskeletal system UBERON_2001748 superficial ophthalmic nerve foramen +UBERON_0002204 musculoskeletal system UBERON_2001749 dentary-anguloarticular joint +UBERON_0002204 musculoskeletal system UBERON_2001750 rib of vertebra 6 +UBERON_0002204 musculoskeletal system UBERON_2001751 rib of vertebra 5 +UBERON_0002204 musculoskeletal system UBERON_2001752 pre-narial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001753 posttemporal fossa +UBERON_0002204 musculoskeletal system UBERON_2001754 dorsal fin ray 1 +UBERON_0002204 musculoskeletal system UBERON_2001755 dorsal fin ray 2 +UBERON_0002204 musculoskeletal system UBERON_2001756 dorsal fin ray 3 +UBERON_0002204 musculoskeletal system UBERON_2001757 dorsal fin ray 4 +UBERON_0002204 musculoskeletal system UBERON_2001758 dorsal fin ray 5 +UBERON_0002204 musculoskeletal system UBERON_2001759 dorsal fin ray 6 +UBERON_0002204 musculoskeletal system UBERON_2001760 dorsal fin ray 7 +UBERON_0002204 musculoskeletal system UBERON_2001761 pectoral fin ray 1 +UBERON_0002204 musculoskeletal system UBERON_2001762 pectoral fin ray 2 +UBERON_0002204 musculoskeletal system UBERON_2001763 pectoral fin ray 3 +UBERON_0002204 musculoskeletal system UBERON_2001764 pectoral fin ray 4 +UBERON_0002204 musculoskeletal system UBERON_2001765 pectoral fin ray 5 +UBERON_0002204 musculoskeletal system UBERON_2001766 pectoral fin ray 6 +UBERON_0002204 musculoskeletal system UBERON_2001767 pectoral fin ray 7 +UBERON_0002204 musculoskeletal system UBERON_2001769 anal fin ray 1 +UBERON_0002204 musculoskeletal system UBERON_2001770 anal fin ray 2 +UBERON_0002204 musculoskeletal system UBERON_2001771 anal fin ray 3 +UBERON_0002204 musculoskeletal system UBERON_2001772 anal fin ray 4 +UBERON_0002204 musculoskeletal system UBERON_2001773 anal fin ray 5 +UBERON_0002204 musculoskeletal system UBERON_2001774 anal fin ray 6 +UBERON_0002204 musculoskeletal system UBERON_2001775 anal fin ray 7 +UBERON_0002204 musculoskeletal system UBERON_2001776 pelvic fin ray 1 +UBERON_0002204 musculoskeletal system UBERON_2001777 pelvic fin ray 2 +UBERON_0002204 musculoskeletal system UBERON_2001778 pelvic fin ray 3 +UBERON_0002204 musculoskeletal system UBERON_2001779 pelvic fin ray 4 +UBERON_0002204 musculoskeletal system UBERON_2001780 pelvic fin ray 5 +UBERON_0002204 musculoskeletal system UBERON_2001781 pelvic fin ray 6 +UBERON_0002204 musculoskeletal system UBERON_2001782 pelvic fin ray 7 +UBERON_0002204 musculoskeletal system UBERON_2001783 supraoccipital crest +UBERON_0002204 musculoskeletal system UBERON_2001784 autopalatine-vomer joint +UBERON_0002204 musculoskeletal system UBERON_2001785 branched dorsal fin ray +UBERON_0002204 musculoskeletal system UBERON_2001786 unbranched dorsal fin ray +UBERON_0002204 musculoskeletal system UBERON_2001787 pectoral fin spine +UBERON_0002204 musculoskeletal system UBERON_2001788 pelvic splint +UBERON_0002204 musculoskeletal system UBERON_2001789 dorsal fin spine 1 +UBERON_0002204 musculoskeletal system UBERON_2001790 dorsal fin spine 2 +UBERON_0002204 musculoskeletal system UBERON_2001792 pharyngobranchial 3 bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001793 pharyngobranchial 4 bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001794 orbitosphenoid-prootic joint +UBERON_0002204 musculoskeletal system UBERON_2001795 ceratohyal foramen +UBERON_0002204 musculoskeletal system UBERON_2001796 epibranchial 2 bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001797 epibranchial 1 bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001798 epicentral bone +UBERON_0002204 musculoskeletal system UBERON_2001800 cephalic rib +UBERON_0002204 musculoskeletal system UBERON_2001801 quadrate-hyomandibula joint +UBERON_0002204 musculoskeletal system UBERON_2001803 quadrate-metapterygoid joint +UBERON_0002204 musculoskeletal system UBERON_2001804 olfactory nerve foramen +UBERON_0002204 musculoskeletal system UBERON_2001805 articular bone +UBERON_0002204 musculoskeletal system UBERON_2001807 preepiotic fossa +UBERON_0002204 musculoskeletal system UBERON_2001808 facial foramen +UBERON_0002204 musculoskeletal system UBERON_2001809 trigeminal foramen +UBERON_0002204 musculoskeletal system UBERON_2001815 nuchal plate +UBERON_0002204 musculoskeletal system UBERON_2001816 anterior nuchal plate +UBERON_0002204 musculoskeletal system UBERON_2001817 middle nuchal plate +UBERON_0002204 musculoskeletal system UBERON_2001818 dorsal fin proximal radial bone 1 +UBERON_0002204 musculoskeletal system UBERON_2001819 dorsal fin proximal radial bone 2 +UBERON_0002204 musculoskeletal system UBERON_2001820 posterior nuchal plate +UBERON_0002204 musculoskeletal system UBERON_2001821 notochord posterior region +UBERON_0002204 musculoskeletal system UBERON_2001822 epibranchial 3 bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001823 epibranchial 4 bone uncinate process +UBERON_0002204 musculoskeletal system UBERON_2001824 lateral line scale +UBERON_0002204 musculoskeletal system UBERON_2001825 urohyal lateral process +UBERON_0002204 musculoskeletal system UBERON_2001826 urohyal median process +UBERON_0002204 musculoskeletal system UBERON_2001827 premaxillary-maxillary ligament +UBERON_0002204 musculoskeletal system UBERON_2001828 primordial ligament +UBERON_0002204 musculoskeletal system UBERON_2001829 caudal fin dorsal procurrent ray +UBERON_0002204 musculoskeletal system UBERON_2001830 caudal fin ventral procurrent ray +UBERON_0002204 musculoskeletal system UBERON_2001831 pterosphenoid-orbitosphenoid joint +UBERON_0002204 musculoskeletal system UBERON_2001832 parasphenoid-basioccipital joint +UBERON_0002204 musculoskeletal system UBERON_2001833 premaxillary tooth row +UBERON_0002204 musculoskeletal system UBERON_2001841 interhyal-epihyal joint +UBERON_0002204 musculoskeletal system UBERON_2001842 epihyal-ceratohyal joint +UBERON_0002204 musculoskeletal system UBERON_2001843 ceratohyal-dorsal hypohyal joint +UBERON_0002204 musculoskeletal system UBERON_2001844 ceratohyal-ventral hypohyal joint +UBERON_0002204 musculoskeletal system UBERON_2001845 dorsal hypohyal-ventral hypohyal joint +UBERON_0002204 musculoskeletal system UBERON_2001846 inter-ventral hypohyal joint +UBERON_0002204 musculoskeletal system UBERON_2001847 dorsal hypohyal-urohyal joint +UBERON_0002204 musculoskeletal system UBERON_2001848 ventral hypohyal-urohyal joint +UBERON_0002204 musculoskeletal system UBERON_2001849 epihyal-branchiostegal ray joint +UBERON_0002204 musculoskeletal system UBERON_2001850 ceratohyal-branchiostegal ray joint +UBERON_0002204 musculoskeletal system UBERON_2001852 postcleithrum 1 +UBERON_0002204 musculoskeletal system UBERON_2001853 postcleithrum 2 +UBERON_0002204 musculoskeletal system UBERON_2001854 postcleithrum 3 +UBERON_0002204 musculoskeletal system UBERON_2001855 hyomandibular condyle for the opercle +UBERON_0002204 musculoskeletal system UBERON_2001856 gill ray +UBERON_0002204 musculoskeletal system UBERON_2001858 suprapharyngobranchial +UBERON_0002204 musculoskeletal system UBERON_2001859 pharyngobranchial 1 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001860 epibranchial 4-upper pharyngeal toothplate joint +UBERON_0002204 musculoskeletal system UBERON_2001861 epibranchial 3-pharyngobranchial 3 joint +UBERON_0002204 musculoskeletal system UBERON_2001862 epibranchial 3-pharyngobranchial 4 joint +UBERON_0002204 musculoskeletal system UBERON_2001863 inter-hypobranchial 3 joint +UBERON_0002204 musculoskeletal system UBERON_2001864 basibranchial 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001865 basibranchial 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001866 basibranchial 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001867 post-ceratobranchial cartilage +UBERON_0002204 musculoskeletal system UBERON_2001869 supraneural 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001870 supraneural 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001871 Weberian ossicle set +UBERON_0002204 musculoskeletal system UBERON_2001874 basibranchial 2 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001876 basibranchial 3 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001877 neural arch 1 +UBERON_0002204 musculoskeletal system UBERON_2001878 rib of vertebra 2 +UBERON_0002204 musculoskeletal system UBERON_2001879 rib of vertebra 1 +UBERON_0002204 musculoskeletal system UBERON_2001880 rib of vertebra 3 +UBERON_0002204 musculoskeletal system UBERON_2001881 rib of vertebra 4 +UBERON_0002204 musculoskeletal system UBERON_2001882 parapophysis + rib of vertebra 3 +UBERON_0002204 musculoskeletal system UBERON_2001883 parapophysis + rib of vertebra 3 + rib of vertebra 4 +UBERON_0002204 musculoskeletal system UBERON_2001884 accessory neural arch +UBERON_0002204 musculoskeletal system UBERON_2001885 neural spine 1 +UBERON_0002204 musculoskeletal system UBERON_2001886 neural spine 2 +UBERON_0002204 musculoskeletal system UBERON_2001887 neural spine 3 +UBERON_0002204 musculoskeletal system UBERON_2001888 supraneural 1 bone +UBERON_0002204 musculoskeletal system UBERON_2001889 supraneural 1 cartilage +UBERON_0002204 musculoskeletal system UBERON_2001892 interhyal element +UBERON_0002204 musculoskeletal system UBERON_2001893 hypobranchial element +UBERON_0002204 musculoskeletal system UBERON_2001894 hypobranchial 1 element +UBERON_0002204 musculoskeletal system UBERON_2001895 hypobranchial 2 element +UBERON_0002204 musculoskeletal system UBERON_2001896 hypobranchial 3 element +UBERON_0002204 musculoskeletal system UBERON_2001897 hypobranchial 4 element +UBERON_0002204 musculoskeletal system UBERON_2001898 ceratobranchial element +UBERON_0002204 musculoskeletal system UBERON_2001899 ceratobranchial 1 element +UBERON_0002204 musculoskeletal system UBERON_2001900 ceratobranchial 2 element +UBERON_0002204 musculoskeletal system UBERON_2001901 ceratobranchial 3 element +UBERON_0002204 musculoskeletal system UBERON_2001902 ceratobranchial 4 element +UBERON_0002204 musculoskeletal system UBERON_2001903 ceratobranchial 5 element +UBERON_0002204 musculoskeletal system UBERON_2001904 epibranchial element +UBERON_0002204 musculoskeletal system UBERON_2001905 epibranchial 1 element +UBERON_0002204 musculoskeletal system UBERON_2001906 epibranchial 2 element +UBERON_0002204 musculoskeletal system UBERON_2001907 epibranchial 3 element +UBERON_0002204 musculoskeletal system UBERON_2001908 epibranchial 4 element +UBERON_0002204 musculoskeletal system UBERON_2001909 pharyngobranchial element +UBERON_0002204 musculoskeletal system UBERON_2001910 pharyngobranchial 1 element +UBERON_0002204 musculoskeletal system UBERON_2001911 pharyngobranchial 2 element +UBERON_0002204 musculoskeletal system UBERON_2001912 pharyngobranchial 3 element +UBERON_0002204 musculoskeletal system UBERON_2001913 pharyngobranchial 4 element +UBERON_0002204 musculoskeletal system UBERON_2001915 basibranchial 1 element +UBERON_0002204 musculoskeletal system UBERON_2001916 basibranchial 2 element +UBERON_0002204 musculoskeletal system UBERON_2001917 basibranchial 3 element +UBERON_0002204 musculoskeletal system UBERON_2001918 basibranchial 4 element +UBERON_0002204 musculoskeletal system UBERON_2001919 basibranchial 5 element +UBERON_0002204 musculoskeletal system UBERON_2001922 inter-frontal joint +UBERON_0002204 musculoskeletal system UBERON_2001923 aortic canal +UBERON_0002204 musculoskeletal system UBERON_2001924 occipital artery foramen +UBERON_0002204 musculoskeletal system UBERON_2001925 spiracular canal +UBERON_0002204 musculoskeletal system UBERON_2001926 posterior myodome +UBERON_0002204 musculoskeletal system UBERON_2001927 anterior myodome +UBERON_0002204 musculoskeletal system UBERON_2001928 articular fossa of opercle +UBERON_0002204 musculoskeletal system UBERON_2001929 epioccipital posterior process +UBERON_0002204 musculoskeletal system UBERON_2001930 accessory vomerine tooth plate +UBERON_0002204 musculoskeletal system UBERON_2001931 infranuchal scute +UBERON_0002204 musculoskeletal system UBERON_2001932 sensory canal tubular ossicle +UBERON_0002204 musculoskeletal system UBERON_2001934 rostral plate +UBERON_0002204 musculoskeletal system UBERON_2001939 inter-basipterygium joint +UBERON_0002204 musculoskeletal system UBERON_2001940 vertebra 4-vertebra 5 joint +UBERON_0002204 musculoskeletal system UBERON_2001941 orbitosphenoid-lateral ethmoid joint +UBERON_0002204 musculoskeletal system UBERON_2001942 autopalatine-maxillary joint +UBERON_0002204 musculoskeletal system UBERON_2001943 metapterygoid-autopalatine ligament +UBERON_0002204 musculoskeletal system UBERON_2001944 lateral ethmoid-autopalatine ligament +UBERON_0002204 musculoskeletal system UBERON_2001945 mesethmoid-premaxillary ligament +UBERON_0002204 musculoskeletal system UBERON_2001946 mesethmoid-maxillary ligament +UBERON_0002204 musculoskeletal system UBERON_2001947 hyomandibular-otic region joint +UBERON_0002204 musculoskeletal system UBERON_2001948 anal fin hook +UBERON_0002204 musculoskeletal system UBERON_2001949 caudal fin hook +UBERON_0002204 musculoskeletal system UBERON_2001950 inter-premaxillary joint +UBERON_0002204 musculoskeletal system UBERON_2001952 dentary tooth row +UBERON_0002204 musculoskeletal system UBERON_2001956 epibranchial 1 bone proximal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001957 epibranchial 2 bone proximal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001958 ceratobranchial 3 bone distal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001959 ceratobranchial 4 bone proximal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001960 ceratobranchial 4 bone distal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001961 ceratobranchial 5 bone distal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001962 hypobranchial 1 bone distal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001963 hypobranchial 2 bone distal cartilage +UBERON_0002204 musculoskeletal system UBERON_2001964 epibranchial 3 bone uncinate process cartilage +UBERON_0002204 musculoskeletal system UBERON_2001965 epibranchial 4 bone uncinate process cartilage +UBERON_0002204 musculoskeletal system UBERON_2001966 epibranchial 5 element +UBERON_0002204 musculoskeletal system UBERON_2001971 parapophysis 4 +UBERON_0002204 musculoskeletal system UBERON_2001972 intercostal ligament +UBERON_0002204 musculoskeletal system UBERON_2001974 subtemporal fossa +UBERON_0002204 musculoskeletal system UBERON_2001978 maxillary tooth row +UBERON_0002204 musculoskeletal system UBERON_2001979 hyomandibula-metapterygoid joint +UBERON_0002204 musculoskeletal system UBERON_2001980 vertebral element 6 +UBERON_0002204 musculoskeletal system UBERON_2001981 vertebral element 7 +UBERON_0002204 musculoskeletal system UBERON_2001982 vertebral element 8 +UBERON_0002204 musculoskeletal system UBERON_2001983 centrum 1 +UBERON_0002204 musculoskeletal system UBERON_2001984 centrum 2 +UBERON_0002204 musculoskeletal system UBERON_2001985 centrum 3 +UBERON_0002204 musculoskeletal system UBERON_2001986 centrum 4 +UBERON_0002204 musculoskeletal system UBERON_2001987 centrum 5 +UBERON_0002204 musculoskeletal system UBERON_2001988 centrum 6 +UBERON_0002204 musculoskeletal system UBERON_2001989 mandibular-hyoid median cartilage +UBERON_0002204 musculoskeletal system UBERON_2001991 lateral bone +UBERON_0002204 musculoskeletal system UBERON_2001992 branched anal fin ray +UBERON_0002204 musculoskeletal system UBERON_2001993 branched pectoral fin ray +UBERON_0002204 musculoskeletal system UBERON_2001994 gill raker row +UBERON_0002204 musculoskeletal system UBERON_2001997 parietal-supraoccipital +UBERON_0002204 musculoskeletal system UBERON_2001998 posttemporal-supracleithrum +UBERON_0002204 musculoskeletal system UBERON_2001999 posterior cleithral process +UBERON_0002204 musculoskeletal system UBERON_2002000 posterior dentation of pectoral fin spine +UBERON_0002204 musculoskeletal system UBERON_2002001 anterior dentation of pectoral fin spine +UBERON_0002204 musculoskeletal system UBERON_2002002 anterior distal serration of pectoral fin spine +UBERON_0002204 musculoskeletal system UBERON_2002003 posterior dentation of dorsal fin spine 2 +UBERON_0002204 musculoskeletal system UBERON_2002005 canal plate +UBERON_0002204 musculoskeletal system UBERON_2002007 supraneural 4 bone +UBERON_0002204 musculoskeletal system UBERON_2002008 neural lamina +UBERON_0002204 musculoskeletal system UBERON_2002009 medial cartilage of palatine +UBERON_0002204 musculoskeletal system UBERON_2002011 lateral fontanel of frontal +UBERON_0002204 musculoskeletal system UBERON_2002012 dentary foramen +UBERON_0002204 musculoskeletal system UBERON_2002013 ascending limb of ceratobranchial 5 bone +UBERON_0002204 musculoskeletal system UBERON_2002014 ascending limb of ceratobranchial 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_2002015 pharyngobranchial tooth plate +UBERON_0002204 musculoskeletal system UBERON_2002016 pharyngobranchial 4 tooth plate +UBERON_0002204 musculoskeletal system UBERON_2002017 anterior limb of ceratobranchial 5 bone +UBERON_0002204 musculoskeletal system UBERON_2002018 anterior limb of ceratobranchial 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_2002019 pterotic-posttemporal-supracleithrum +UBERON_0002204 musculoskeletal system UBERON_2002020 hypomaxilla +UBERON_0002204 musculoskeletal system UBERON_2002021 ascending process of the parasphenoid +UBERON_0002204 musculoskeletal system UBERON_2002022 dermethmoid +UBERON_0002204 musculoskeletal system UBERON_2002023 second preethmoid bone +UBERON_0002204 musculoskeletal system UBERON_2002026 pectoral fin proximal radial bone 1 +UBERON_0002204 musculoskeletal system UBERON_2002027 pectoral fin proximal radial bone 2 +UBERON_0002204 musculoskeletal system UBERON_2002028 pectoral fin proximal radial bone 3 +UBERON_0002204 musculoskeletal system UBERON_2002029 pectoral fin proximal radial bone 4 +UBERON_0002204 musculoskeletal system UBERON_2002030 ventral keel of coracoid +UBERON_0002204 musculoskeletal system UBERON_2002031 orbital foramen +UBERON_0002204 musculoskeletal system UBERON_2002032 lateral ethmoid-frontal joint +UBERON_0002204 musculoskeletal system UBERON_2002033 prootic-pterosphenoid joint +UBERON_0002204 musculoskeletal system UBERON_2002034 prootic-exoccipital joint +UBERON_0002204 musculoskeletal system UBERON_2002038 basioccipital-exoccipital joint +UBERON_0002204 musculoskeletal system UBERON_2002039 dilatator fossa +UBERON_0002204 musculoskeletal system UBERON_2002040 inter-coracoid joint +UBERON_0002204 musculoskeletal system UBERON_2002041 parapophysis 6 +UBERON_0002204 musculoskeletal system UBERON_2002042 parapophysis 5 +UBERON_0002204 musculoskeletal system UBERON_2002043 posterior limb of parapophysis 4 +UBERON_0002204 musculoskeletal system UBERON_2002044 anterior limb of parapophysis 4 +UBERON_0002204 musculoskeletal system UBERON_2002051 scale circulus +UBERON_0002204 musculoskeletal system UBERON_2002053 bony plate +UBERON_0002204 musculoskeletal system UBERON_2002054 vertebra 5-vertebra 6 joint +UBERON_0002204 musculoskeletal system UBERON_2002055 vertebra 6 - vertebra 7 joint +UBERON_0002204 musculoskeletal system UBERON_2002056 hypural 6 +UBERON_0002204 musculoskeletal system UBERON_2002058 Weberian complex centrum +UBERON_0002204 musculoskeletal system UBERON_2002059 posttemporal-parietal joint +UBERON_0002204 musculoskeletal system UBERON_2002061 predorsal vertebra +UBERON_0002204 musculoskeletal system UBERON_2002062 branched caudal fin ray +UBERON_0002204 musculoskeletal system UBERON_2002063 nuchal plate series +UBERON_0002204 musculoskeletal system UBERON_2002064 uroneural 1 +UBERON_0002204 musculoskeletal system UBERON_2002065 ural centrum 1 +UBERON_0002204 musculoskeletal system UBERON_2002066 auditory fenestra +UBERON_0002204 musculoskeletal system UBERON_2002067 upper hypural set +UBERON_0002204 musculoskeletal system UBERON_2002068 lower hypural set +UBERON_0002204 musculoskeletal system UBERON_2002069 distal cartilage of posterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002070 internal anterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002071 distal cartilage of internal anterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002072 middle anterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002073 distal cartilage of middle anterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002074 external anterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002075 distal cartilage of external anterior process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002076 lateral process of basipterygium +UBERON_0002204 musculoskeletal system UBERON_2002077 lateropterygium +UBERON_0002204 musculoskeletal system UBERON_2002078 hypural plate +UBERON_0002204 musculoskeletal system UBERON_2002080 spina occipitalis +UBERON_0002204 musculoskeletal system UBERON_2002082 basal fulcrum +UBERON_0002204 musculoskeletal system UBERON_2002083 fringing fulcrum +UBERON_0002204 musculoskeletal system UBERON_2002084 pleurostyle +UBERON_0002204 musculoskeletal system UBERON_2002085 ural centrum +UBERON_0002204 musculoskeletal system UBERON_2002086 pelvic axillary process +UBERON_0002204 musculoskeletal system UBERON_2002087 pectoral axillary process +UBERON_0002204 musculoskeletal system UBERON_2002088 interhaemal bone +UBERON_0002204 musculoskeletal system UBERON_2002089 gular plate +UBERON_0002204 musculoskeletal system UBERON_2002090 pro-otic fossa +UBERON_0002204 musculoskeletal system UBERON_2002091 median caudal cartilage +UBERON_0002204 musculoskeletal system UBERON_2002092 rostral cartilage +UBERON_0002204 musculoskeletal system UBERON_2002094 dorsal fin pterygiophore 1 +UBERON_0002204 musculoskeletal system UBERON_2002095 ventromedial opening of posttemporal fossa +UBERON_0002204 musculoskeletal system UBERON_2002096 bony plate series +UBERON_0002204 musculoskeletal system UBERON_2002101 branchiostegal ray series +UBERON_0002204 musculoskeletal system UBERON_2002102 epibranchial series +UBERON_0002204 musculoskeletal system UBERON_2002103 ceratobranchial series +UBERON_0002204 musculoskeletal system UBERON_2002109 uroneural 2 +UBERON_0002204 musculoskeletal system UBERON_2002110 metapterygoid-quadrate fenestra +UBERON_0002204 musculoskeletal system UBERON_2002112 preural 3 vertebra +UBERON_0002204 musculoskeletal system UBERON_2002115 uroneural 3 +UBERON_0002204 musculoskeletal system UBERON_2002118 scale radius +UBERON_0002204 musculoskeletal system UBERON_2002119 dermal scale focus +UBERON_0002204 musculoskeletal system UBERON_2002120 orbitosphenoid septum +UBERON_0002204 musculoskeletal system UBERON_2002122 pouch scale +UBERON_0002204 musculoskeletal system UBERON_2002123 neural arch 5 +UBERON_0002204 musculoskeletal system UBERON_2002127 myorhabdoid bone +UBERON_0002204 musculoskeletal system UBERON_2002129 caudal rod +UBERON_0002204 musculoskeletal system UBERON_2002130 caudal appendage +UBERON_0002204 musculoskeletal system UBERON_2002132 hypural 7 +UBERON_0002204 musculoskeletal system UBERON_2002141 annular ligament +UBERON_0002204 musculoskeletal system UBERON_2002149 vertebral element 9 +UBERON_0002204 musculoskeletal system UBERON_2002150 vertebral element 10 +UBERON_0002204 musculoskeletal system UBERON_2002151 vertebral element 11 +UBERON_0002204 musculoskeletal system UBERON_2002152 vertebral element 12 +UBERON_0002204 musculoskeletal system UBERON_2002159 caudal basal fulcrum +UBERON_0002204 musculoskeletal system UBERON_2002160 ural centrum 3 +UBERON_0002204 musculoskeletal system UBERON_2002161 ural centrum 4 +UBERON_0002204 musculoskeletal system UBERON_2002162 ural vertebra +UBERON_0002204 musculoskeletal system UBERON_2002163 ural vertebra 1 +UBERON_0002204 musculoskeletal system UBERON_2002164 caudal principal ray set +UBERON_0002204 musculoskeletal system UBERON_2002165 caudal procurrent ray set +UBERON_0002204 musculoskeletal system UBERON_2002166 pseudourostyle +UBERON_0002204 musculoskeletal system UBERON_2002167 stegural +UBERON_0002204 musculoskeletal system UBERON_2002168 preural centrum 1 + ural centrum 1 + ural centrum 2 +UBERON_0002204 musculoskeletal system UBERON_2002214 os suspensorium medial flange +UBERON_0002204 musculoskeletal system UBERON_2002217 parasphenoid-pterosphenoid joint +UBERON_0002204 musculoskeletal system UBERON_2002249 ctenius +UBERON_0002204 musculoskeletal system UBERON_2002250 epural 2 +UBERON_0002204 musculoskeletal system UBERON_2002251 epural 3 +UBERON_0002204 musculoskeletal system UBERON_2002252 epural 1 +UBERON_0002204 musculoskeletal system UBERON_2002257 premaxilla dentigerous process +UBERON_0002204 musculoskeletal system UBERON_2002258 trituration tooth +UBERON_0002204 musculoskeletal system UBERON_2002260 premaxillary-maxillary joint +UBERON_0002204 musculoskeletal system UBERON_2002261 dorsal fin spine +UBERON_0002204 musculoskeletal system UBERON_2002262 anal fin spine +UBERON_0002204 musculoskeletal system UBERON_2002263 epineural 1 +UBERON_0002204 musculoskeletal system UBERON_2002264 epineural 2 +UBERON_0002204 musculoskeletal system UBERON_2002265 epineural 3 +UBERON_0002204 musculoskeletal system UBERON_2002266 epineural 4 +UBERON_0002204 musculoskeletal system UBERON_2002267 epineural 5 +UBERON_0002204 musculoskeletal system UBERON_2002268 epineural 6 +UBERON_0002204 musculoskeletal system UBERON_2002269 interarcual cartilage +UBERON_0002204 musculoskeletal system UBERON_2002270 pelvic fin spine +UBERON_0002204 musculoskeletal system UBERON_2002271 ventral caudal procurrent ray 2 +UBERON_0002204 musculoskeletal system UBERON_2002272 ventral caudal procurrent ray 1 +UBERON_0002204 musculoskeletal system UBERON_2002273 ctenoid scale +UBERON_0002204 musculoskeletal system UBERON_2002274 transforming ctenoid scale +UBERON_0002204 musculoskeletal system UBERON_2002277 pectoral fin distal radial bone 1 +UBERON_0002204 musculoskeletal system UBERON_2002279 pectoral fin distal radial bone 2 +UBERON_0002204 musculoskeletal system UBERON_2002280 pectoral fin distal radial bone 3 +UBERON_0002204 musculoskeletal system UBERON_2002282 preopercle-opercle joint +UBERON_0002204 musculoskeletal system UBERON_2002285 cycloid scale +UBERON_0002204 musculoskeletal system UBERON_2002291 fulcrum +UBERON_0002204 musculoskeletal system UBERON_2002292 epaxial basal fulcrum +UBERON_0002204 musculoskeletal system UBERON_2002293 hypaxial basal fulcrum +UBERON_0002204 musculoskeletal system UBERON_2002294 fish scute +UBERON_0002204 musculoskeletal system UBERON_2005225 median fin radial bone +UBERON_0002204 musculoskeletal system UBERON_2005226 median fin proximal radial bone +UBERON_0002204 musculoskeletal system UBERON_2005245 inter-parietal joint +UBERON_0002204 musculoskeletal system UBERON_2005264 supraoccipital-parietal joint +UBERON_0002204 musculoskeletal system UBERON_2005265 hyomandibula-opercle joint +UBERON_0002204 musculoskeletal system UBERON_2005266 pterotic fossa +UBERON_0002204 musculoskeletal system UBERON_2005268 preopercle horizontal limb-symplectic joint +UBERON_0002204 musculoskeletal system UBERON_2005269 hypophyseal fenestra +UBERON_0002204 musculoskeletal system UBERON_2005275 hyomandibular foramen +UBERON_0002204 musculoskeletal system UBERON_2005278 preopercle vertical limb-hyomandibula joint +UBERON_0002204 musculoskeletal system UBERON_2005365 dorsal fin pterygiophore 2 +UBERON_0002204 musculoskeletal system UBERON_2005366 dorsal fin pterygiophore 3 +UBERON_0002204 musculoskeletal system UBERON_2005367 dorsal fin pterygiophore 4 +UBERON_0002204 musculoskeletal system UBERON_2005368 dorsal fin pterygiophore 5 +UBERON_0002204 musculoskeletal system UBERON_2005369 dorsal fin pterygiophore 6 +UBERON_0002204 musculoskeletal system UBERON_2005370 dorsal fin pterygiophore 7 +UBERON_0002204 musculoskeletal system UBERON_2005371 dorsal fin pterygiophore 8 +UBERON_0002204 musculoskeletal system UBERON_2005372 dorsal fin distal radial bone 1 +UBERON_0002204 musculoskeletal system UBERON_2005373 dorsal fin distal radial bone 2 +UBERON_0002204 musculoskeletal system UBERON_2005374 dorsal fin distal radial bone 3 +UBERON_0002204 musculoskeletal system UBERON_2005375 dorsal fin distal radial bone 4 +UBERON_0002204 musculoskeletal system UBERON_2005376 dorsal fin distal radial bone 5 +UBERON_0002204 musculoskeletal system UBERON_2005377 dorsal fin distal radial bone 6 +UBERON_0002204 musculoskeletal system UBERON_2005378 dorsal fin distal radial bone 7 +UBERON_0002204 musculoskeletal system UBERON_2005379 dorsal fin distal radial bone 8 +UBERON_0002204 musculoskeletal system UBERON_2005380 dorsal fin proximal radial bone 3 +UBERON_0002204 musculoskeletal system UBERON_2005381 dorsal fin proximal radial bone 4 +UBERON_0002204 musculoskeletal system UBERON_2005382 dorsal fin proximal radial bone 5 +UBERON_0002204 musculoskeletal system UBERON_2005383 dorsal fin proximal radial bone 6 +UBERON_0002204 musculoskeletal system UBERON_2005384 dorsal fin proximal radial bone 7 +UBERON_0002204 musculoskeletal system UBERON_2005385 dorsal fin proximal radial bone 8 +UBERON_0002204 musculoskeletal system UBERON_2005415 inner ear foramen +UBERON_0002204 musculoskeletal system UBERON_2005416 sacculoagenar foramen +UBERON_0002204 musculoskeletal system UBERON_2007005 hemal prezygapophysis +UBERON_0002204 musculoskeletal system UBERON_2100268 anal fin proximal radial element +UBERON_0002204 musculoskeletal system UBERON_2100271 radial element +UBERON_0002204 musculoskeletal system UBERON_2100508 pelvic fin radial element +UBERON_0002204 musculoskeletal system UBERON_2100623 basipterygium element +UBERON_0002204 musculoskeletal system UBERON_2100646 anal fin distal radial element +UBERON_0002204 musculoskeletal system UBERON_2100936 dorsal fin distal radial element +UBERON_0002204 musculoskeletal system UBERON_2100947 dorsal fin proximal radial element +UBERON_0002204 musculoskeletal system UBERON_2101415 pelvic fin distal radial element 2 +UBERON_0002204 musculoskeletal system UBERON_2101416 pelvic fin distal radial element 3 +UBERON_0002204 musculoskeletal system UBERON_2101417 pelvic fin distal radial element 1 +UBERON_0002204 musculoskeletal system UBERON_2101586 pectoral fin radial element +UBERON_0002204 musculoskeletal system UBERON_2101587 pectoral fin proximal radial element +UBERON_0002204 musculoskeletal system UBERON_2101588 pectoral fin distal radial element +UBERON_0002204 musculoskeletal system UBERON_2101613 dorsal fin middle radial element +UBERON_0002204 musculoskeletal system UBERON_2101614 anal fin middle radial element +UBERON_0002204 musculoskeletal system UBERON_2101671 anal fin radial element +UBERON_0002204 musculoskeletal system UBERON_2101672 dorsal fin radial element +UBERON_0002204 musculoskeletal system UBERON_2101818 dorsal fin proximal radial element 1 +UBERON_0002204 musculoskeletal system UBERON_2101819 dorsal fin proximal radial element 2 +UBERON_0002204 musculoskeletal system UBERON_2102026 pectoral fin proximal radial element 1 +UBERON_0002204 musculoskeletal system UBERON_2102027 pectoral fin proximal radial element 2 +UBERON_0002204 musculoskeletal system UBERON_2102028 pectoral fin proximal radial element 3 +UBERON_0002204 musculoskeletal system UBERON_2102029 pectoral fin proximal radial element 4 +UBERON_0002204 musculoskeletal system UBERON_2102277 pectoral fin distal radial element 1 +UBERON_0002204 musculoskeletal system UBERON_2102279 pectoral fin distal radial element 2 +UBERON_0002204 musculoskeletal system UBERON_2102280 pectoral fin distal radial element 3 +UBERON_0002204 musculoskeletal system UBERON_2105225 median fin radial element +UBERON_0002204 musculoskeletal system UBERON_2105226 median fin proximal radial element +UBERON_0002204 musculoskeletal system UBERON_2105372 dorsal fin distal radial element 1 +UBERON_0002204 musculoskeletal system UBERON_2105373 dorsal fin distal radial element 2 +UBERON_0002204 musculoskeletal system UBERON_2105374 dorsal fin distal radial element 3 +UBERON_0002204 musculoskeletal system UBERON_2105375 dorsal fin distal radial element 4 +UBERON_0002204 musculoskeletal system UBERON_2105376 dorsal fin distal radial element 5 +UBERON_0002204 musculoskeletal system UBERON_2105377 dorsal fin distal radial element 6 +UBERON_0002204 musculoskeletal system UBERON_2105378 dorsal fin distal radial element 7 +UBERON_0002204 musculoskeletal system UBERON_2105379 dorsal fin distal radial element 8 +UBERON_0002204 musculoskeletal system UBERON_2105380 dorsal fin proximal radial element 3 +UBERON_0002204 musculoskeletal system UBERON_2105381 dorsal fin proximal radial element 4 +UBERON_0002204 musculoskeletal system UBERON_2105382 dorsal fin proximal radial element 5 +UBERON_0002204 musculoskeletal system UBERON_2105383 dorsal fin proximal radial element 6 +UBERON_0002204 musculoskeletal system UBERON_2105384 dorsal fin proximal radial element 7 +UBERON_0002204 musculoskeletal system UBERON_2105385 dorsal fin proximal radial element 8 +UBERON_0002204 musculoskeletal system UBERON_2200268 anal fin proximal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2200271 radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2200646 anal fin distal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2200936 dorsal fin distal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2200947 dorsal fin proximal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201415 pelvic fin distal radial cartilage 2 +UBERON_0002204 musculoskeletal system UBERON_2201416 pelvic fin distal radial cartilage 3 +UBERON_0002204 musculoskeletal system UBERON_2201417 pelvic fin distal radial cartilage 1 +UBERON_0002204 musculoskeletal system UBERON_2201586 pectoral fin radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201587 pectoral fin proximal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201588 pectoral fin distal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201613 dorsal fin middle radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201614 anal fin middle radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201671 anal fin radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201672 dorsal fin radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2201818 dorsal fin proximal radial cartilage 1 +UBERON_0002204 musculoskeletal system UBERON_2201819 dorsal fin proximal radial cartilage 2 +UBERON_0002204 musculoskeletal system UBERON_2202026 pectoral fin proximal radial cartilage 1 +UBERON_0002204 musculoskeletal system UBERON_2202027 pectoral fin proximal radial cartilage 2 +UBERON_0002204 musculoskeletal system UBERON_2202028 pectoral fin proximal radial cartilage 3 +UBERON_0002204 musculoskeletal system UBERON_2202029 pectoral fin proximal radial cartilage 4 +UBERON_0002204 musculoskeletal system UBERON_2202277 pectoral fin distal radial cartilage 1 +UBERON_0002204 musculoskeletal system UBERON_2202279 pectoral fin distal radial cartilage 2 +UBERON_0002204 musculoskeletal system UBERON_2202280 pectoral fin distal radial cartilage 3 +UBERON_0002204 musculoskeletal system UBERON_2205225 median fin radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2205226 median fin proximal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_2205372 dorsal fin distal radial cartilage 1 +UBERON_0002204 musculoskeletal system UBERON_2205373 dorsal fin distal radial cartilage 2 +UBERON_0002204 musculoskeletal system UBERON_2205374 dorsal fin distal radial cartilage 3 +UBERON_0002204 musculoskeletal system UBERON_2205375 dorsal fin distal radial cartilage 4 +UBERON_0002204 musculoskeletal system UBERON_2205376 dorsal fin distal radial cartilage 5 +UBERON_0002204 musculoskeletal system UBERON_2205377 dorsal fin distal radial cartilage 6 +UBERON_0002204 musculoskeletal system UBERON_2205378 dorsal fin distal radial cartilage 7 +UBERON_0002204 musculoskeletal system UBERON_2205379 dorsal fin distal radial cartilage 8 +UBERON_0002204 musculoskeletal system UBERON_2205380 dorsal fin proximal radial cartilage 3 +UBERON_0002204 musculoskeletal system UBERON_2205381 dorsal fin proximal radial cartilage 4 +UBERON_0002204 musculoskeletal system UBERON_2205382 dorsal fin proximal radial cartilage 5 +UBERON_0002204 musculoskeletal system UBERON_2205383 dorsal fin proximal radial cartilage 6 +UBERON_0002204 musculoskeletal system UBERON_2205384 dorsal fin proximal radial cartilage 7 +UBERON_0002204 musculoskeletal system UBERON_2205385 dorsal fin proximal radial cartilage 8 +UBERON_0002204 musculoskeletal system UBERON_3000002 alary cartilage +UBERON_0002204 musculoskeletal system UBERON_3000003 alary process of premaxilla +UBERON_0002204 musculoskeletal system UBERON_3000006 alveolar foramen +UBERON_0002204 musculoskeletal system UBERON_3000012 angulosplenial coronoid process +UBERON_0002204 musculoskeletal system UBERON_3000015 anterior maxillary process +UBERON_0002204 musculoskeletal system UBERON_3000016 anterior nasal wall +UBERON_0002204 musculoskeletal system UBERON_3000017 anterior process of pars palatina of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000018 anterior ramus of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000020 anterolateral process of frontoparietal +UBERON_0002204 musculoskeletal system UBERON_3000022 antorbital process +UBERON_0002204 musculoskeletal system UBERON_3000031 ascending process of palatoquadrate +UBERON_0002204 musculoskeletal system UBERON_3000036 basal process of palatoquadrate +UBERON_0002204 musculoskeletal system UBERON_3000037 basicranial fenestra +UBERON_0002204 musculoskeletal system UBERON_3000038 basimandibulare +UBERON_0002204 musculoskeletal system UBERON_3000050 braincase and auditory apparatus +UBERON_0002204 musculoskeletal system UBERON_3000051 braincase and otic capsule opening +UBERON_0002204 musculoskeletal system UBERON_3000052 braincase and otic capsule skeleton +UBERON_0002204 musculoskeletal system UBERON_3000059 capsular process +UBERON_0002204 musculoskeletal system UBERON_3000068 cartilago ectochoanalis +UBERON_0002204 musculoskeletal system UBERON_3000069 cartilago infranarina +UBERON_0002204 musculoskeletal system UBERON_3000074 cartilago orbitalis +UBERON_0002204 musculoskeletal system UBERON_3000078 cartilago prootico-occipitalis +UBERON_0002204 musculoskeletal system UBERON_3000079 cartilago retronarina +UBERON_0002204 musculoskeletal system UBERON_3000101 hyale +UBERON_0002204 musculoskeletal system UBERON_3000110 crista contacta +UBERON_0002204 musculoskeletal system UBERON_3000111 crista dentalis of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000112 crista dentalis of premaxilla +UBERON_0002204 musculoskeletal system UBERON_3000113 crista intermedia +UBERON_0002204 musculoskeletal system UBERON_3000115 crista lateralis of premaxilla +UBERON_0002204 musculoskeletal system UBERON_3000117 crista subnasalis +UBERON_0002204 musculoskeletal system UBERON_3000118 crista supraorbitalis +UBERON_0002204 musculoskeletal system UBERON_3000131 dilatatio alaris +UBERON_0002204 musculoskeletal system UBERON_3000155 extremitas anterior +UBERON_0002204 musculoskeletal system UBERON_3000160 fenestra dorsalis nasi +UBERON_0002204 musculoskeletal system UBERON_3000161 fenestra endochoanalis +UBERON_0002204 musculoskeletal system UBERON_3000162 fenestra endonarina communis +UBERON_0002204 musculoskeletal system UBERON_3000164 fenestra lateralis nasi +UBERON_0002204 musculoskeletal system UBERON_3000166 fenestra nasobasalis +UBERON_0002204 musculoskeletal system UBERON_3000167 fenestra nasolateralis +UBERON_0002204 musculoskeletal system UBERON_3000170 fenestra precerebralis +UBERON_0002204 musculoskeletal system UBERON_3000171 fenestra prechoanalis +UBERON_0002204 musculoskeletal system UBERON_3000177 flange of quadratojugal +UBERON_0002204 musculoskeletal system UBERON_3000178 footplate of pars media plectri +UBERON_0002204 musculoskeletal system UBERON_3000179 foramen acusticum +UBERON_0002204 musculoskeletal system UBERON_3000180 foramen acusticum anterius +UBERON_0002204 musculoskeletal system UBERON_3000181 foramen acusticum maius +UBERON_0002204 musculoskeletal system UBERON_3000182 foramen acusticum minus +UBERON_0002204 musculoskeletal system UBERON_3000183 foramen acusticum posterius +UBERON_0002204 musculoskeletal system UBERON_3000185 foramen endolymphaticum +UBERON_0002204 musculoskeletal system UBERON_3000189 foramen orbitonasale laterale +UBERON_0002204 musculoskeletal system UBERON_3000190 foramen orbitonasale mediale +UBERON_0002204 musculoskeletal system UBERON_3000192 foramen perilymphaticum +UBERON_0002204 musculoskeletal system UBERON_3000193 foramen perilymphaticum accessorium +UBERON_0002204 musculoskeletal system UBERON_3000195 foramen perilymphaticus inferius +UBERON_0002204 musculoskeletal system UBERON_3000209 frontoparietal fontanelle +UBERON_0002204 musculoskeletal system UBERON_3000226 hyolaryngeal complex +UBERON_0002204 musculoskeletal system UBERON_3000234 inferior prenasal cartilage +UBERON_0002204 musculoskeletal system UBERON_3000237 infrarostral cartilage +UBERON_0002204 musculoskeletal system UBERON_3000254 lamella alaris +UBERON_0002204 musculoskeletal system UBERON_3000255 lamina anterior of pars facialis +UBERON_0002204 musculoskeletal system UBERON_3000259 lamina inferior +UBERON_0002204 musculoskeletal system UBERON_3000260 lamina nariochoanalis +UBERON_0002204 musculoskeletal system UBERON_3000263 lamina precerebralis +UBERON_0002204 musculoskeletal system UBERON_3000264 lamina superior +UBERON_0002204 musculoskeletal system UBERON_3000280 margo mandibularis of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000281 margo orbitalis of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000282 margo orbitalis of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000283 margo orbitalis of squamosal +UBERON_0002204 musculoskeletal system UBERON_3000284 margo tympanicus of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000288 maxillopalatine +UBERON_0002204 musculoskeletal system UBERON_3000290 medial inferior prenasal cartilage +UBERON_0002204 musculoskeletal system UBERON_3000291 medial orbitonasal foramen +UBERON_0002204 musculoskeletal system UBERON_3000292 medial ramus of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000294 median prenasal process +UBERON_0002204 musculoskeletal system UBERON_3000316 nasal opening +UBERON_0002204 musculoskeletal system UBERON_3000323 nasopremaxilla +UBERON_0002204 musculoskeletal system UBERON_3000329 oblique cartilage +UBERON_0002204 musculoskeletal system UBERON_3000332 oculomotor foramen +UBERON_0002204 musculoskeletal system UBERON_3000333 olfactory foramen +UBERON_0002204 musculoskeletal system UBERON_3000341 optic fenestra +UBERON_0002204 musculoskeletal system UBERON_3000344 orbitonasal foramen +UBERON_0002204 musculoskeletal system UBERON_3000348 os basale +UBERON_0002204 musculoskeletal system UBERON_3000363 otic ligament +UBERON_0002204 musculoskeletal system UBERON_3000364 otic plate of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000365 otic process +UBERON_0002204 musculoskeletal system UBERON_3000367 otic ramus of squamosal +UBERON_0002204 musculoskeletal system UBERON_3000368 otoccipital +UBERON_0002204 musculoskeletal system UBERON_3000375 palatine process of the pars facialis of the maxilla +UBERON_0002204 musculoskeletal system UBERON_3000380 palatoquadrate articular process +UBERON_0002204 musculoskeletal system UBERON_3000381 paranasal commissure +UBERON_0002204 musculoskeletal system UBERON_3000384 parasagittal crest +UBERON_0002204 musculoskeletal system UBERON_3000386 cultriform process +UBERON_0002204 musculoskeletal system UBERON_3000387 subotic alae +UBERON_0002204 musculoskeletal system UBERON_3000388 parasphenoid tooth +UBERON_0002204 musculoskeletal system UBERON_3000389 paries nasi +UBERON_0002204 musculoskeletal system UBERON_3000394 pars articularis of mandibular arch +UBERON_0002204 musculoskeletal system UBERON_3000399 pars externa plectri +UBERON_0002204 musculoskeletal system UBERON_3000400 pars facialis of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000401 pars facialis of maxillopalatine +UBERON_0002204 musculoskeletal system UBERON_3000406 pars interna plectri +UBERON_0002204 musculoskeletal system UBERON_3000408 pars media plectri +UBERON_0002204 musculoskeletal system UBERON_3000431 pila antoptica +UBERON_0002204 musculoskeletal system UBERON_3000432 pila metoptica +UBERON_0002204 musculoskeletal system UBERON_3000433 pineal foramen +UBERON_0002204 musculoskeletal system UBERON_3000434 planum antorbitale +UBERON_0002204 musculoskeletal system UBERON_3000437 planum conchale +UBERON_0002204 musculoskeletal system UBERON_3000438 planum internasale +UBERON_0002204 musculoskeletal system UBERON_3000440 planum terminale +UBERON_0002204 musculoskeletal system UBERON_3000441 planum triangulare +UBERON_0002204 musculoskeletal system UBERON_3000443 plectral apparatus +UBERON_0002204 musculoskeletal system UBERON_3000446 posterior condyle +UBERON_0002204 musculoskeletal system UBERON_3000448 posterior maxillary process +UBERON_0002204 musculoskeletal system UBERON_3000449 posterior maxillary process dorsal process +UBERON_0002204 musculoskeletal system UBERON_3000450 posterior mental process +UBERON_0002204 musculoskeletal system UBERON_3000451 posterior ramus of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000453 posterolateral vomerine process +UBERON_0002204 musculoskeletal system UBERON_3000454 postnasal wall +UBERON_0002204 musculoskeletal system UBERON_3000459 prearticular coronoid process +UBERON_0002204 musculoskeletal system UBERON_3000467 preorbital process of the pars facialis of the maxilla +UBERON_0002204 musculoskeletal system UBERON_3000486 processus ascendens plectri +UBERON_0002204 musculoskeletal system UBERON_3000492 processus infrafenestralis +UBERON_0002204 musculoskeletal system UBERON_3000493 processus internus of pseudoangular +UBERON_0002204 musculoskeletal system UBERON_3000494 processus lingualis of pterygoid +UBERON_0002204 musculoskeletal system UBERON_3000500 processus posterior of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000505 processus pterygoideus of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000509 processus suprafenestralis +UBERON_0002204 musculoskeletal system UBERON_3000512 processus zygomatico-maxillaris +UBERON_0002204 musculoskeletal system UBERON_3000515 pseudoangular +UBERON_0002204 musculoskeletal system UBERON_3000516 pseudobasal process +UBERON_0002204 musculoskeletal system UBERON_3000518 pseudodentary +UBERON_0002204 musculoskeletal system UBERON_3000519 pseudodentary tooth +UBERON_0002204 musculoskeletal system UBERON_3000523 pterygoid process of palatoquadrate +UBERON_0002204 musculoskeletal system UBERON_3000524 pterygoquadrate +UBERON_0002204 musculoskeletal system UBERON_3000527 quadrate process of palatoquadrate +UBERON_0002204 musculoskeletal system UBERON_3000539 recessus marsupiatus of premaxilla +UBERON_0002204 musculoskeletal system UBERON_3000540 recessus vaginiformis +UBERON_0002204 musculoskeletal system UBERON_3000543 retroarticular process +UBERON_0002204 musculoskeletal system UBERON_3000547 rostral process +UBERON_0002204 musculoskeletal system UBERON_3000563 seydels palatal process +UBERON_0002204 musculoskeletal system UBERON_3000565 skeletal support for eminentia olfactoria +UBERON_0002204 musculoskeletal system UBERON_3000569 solum nasi +UBERON_0002204 musculoskeletal system UBERON_3000572 sphenethmoid +UBERON_0002204 musculoskeletal system UBERON_3000580 stylus of pars media plectri +UBERON_0002204 musculoskeletal system UBERON_3000581 sulcus dentalis of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000582 sulcus dentalis of premaxilla +UBERON_0002204 musculoskeletal system UBERON_3000583 sulcus for Meckels cartilage +UBERON_0002204 musculoskeletal system UBERON_3000586 superior prenasal cartilage +UBERON_0002204 musculoskeletal system UBERON_3000590 supraorbital flange +UBERON_0002204 musculoskeletal system UBERON_3000591 suprasphenoid +UBERON_0002204 musculoskeletal system UBERON_3000599 taenia tecti marginalis +UBERON_0002204 musculoskeletal system UBERON_3000601 tectum nasi +UBERON_0002204 musculoskeletal system UBERON_3000605 tentacular foramen +UBERON_0002204 musculoskeletal system UBERON_3000610 trochlear foramen +UBERON_0002204 musculoskeletal system UBERON_3000619 tympanosquamosal +UBERON_0002204 musculoskeletal system UBERON_3000628 ventral ramus of squamosal +UBERON_0002204 musculoskeletal system UBERON_3000634 vomerine canal +UBERON_0002204 musculoskeletal system UBERON_3000639 zygomatic ramus of squamosal +UBERON_0002204 musculoskeletal system UBERON_3000640 arcus praeoccipitalis +UBERON_0002204 musculoskeletal system UBERON_3000642 maxillopalatine tooth +UBERON_0002204 musculoskeletal system UBERON_3000644 processus lingularis of nasal skeleton +UBERON_0002204 musculoskeletal system UBERON_3000645 corpus +UBERON_0002204 musculoskeletal system UBERON_3000646 margo libera +UBERON_0002204 musculoskeletal system UBERON_3000647 crista interna +UBERON_0002204 musculoskeletal system UBERON_3000648 crista praeopercularis +UBERON_0002204 musculoskeletal system UBERON_3000649 anterior process of vomer +UBERON_0002204 musculoskeletal system UBERON_3000650 processus frontalis of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000651 lamina anterior of maxilla +UBERON_0002204 musculoskeletal system UBERON_3000652 fossa maxillaris +UBERON_0002204 musculoskeletal system UBERON_3000653 pars glenoidalis of quadratojugal +UBERON_0002204 musculoskeletal system UBERON_3000654 pars jugalis +UBERON_0002204 musculoskeletal system UBERON_3000655 processus dorsalis of lamella alaris +UBERON_0002204 musculoskeletal system UBERON_3000656 processus posterodorsalis of lamella alaris +UBERON_0002204 musculoskeletal system UBERON_3000657 dentigerous process +UBERON_0002204 musculoskeletal system UBERON_3000658 prechoanal process +UBERON_0002204 musculoskeletal system UBERON_3000659 postchoanal process +UBERON_0002204 musculoskeletal system UBERON_3000660 margo choanalis +UBERON_0002204 musculoskeletal system UBERON_3000661 crista vomeri +UBERON_0002204 musculoskeletal system UBERON_3000662 processus posterior of parasphenoid +UBERON_0002204 musculoskeletal system UBERON_3000663 parahyoid +UBERON_0002204 musculoskeletal system UBERON_3000664 hyoid plate +UBERON_0002204 musculoskeletal system UBERON_3000667 pars reuniens +UBERON_0002204 musculoskeletal system UBERON_3000668 hyoglossal sinus +UBERON_0002204 musculoskeletal system UBERON_3000670 anterior process of hyoid apparatus +UBERON_0002204 musculoskeletal system UBERON_3000671 anterolateral process of hyoid plate +UBERON_0002204 musculoskeletal system UBERON_3000672 posterolateral process +UBERON_0002204 musculoskeletal system UBERON_3000673 posteromedial process +UBERON_0002204 musculoskeletal system UBERON_3000676 bronchial process +UBERON_0002204 musculoskeletal system UBERON_3000677 lateral process of cricoid cartilage +UBERON_0002204 musculoskeletal system UBERON_3000678 esophageal process +UBERON_0002204 musculoskeletal system UBERON_3000680 manubrium of hyale +UBERON_0002204 musculoskeletal system UBERON_3000681 hyoid apparatus opening +UBERON_0002204 musculoskeletal system UBERON_3000683 sinus nervi hypoglossi +UBERON_0002204 musculoskeletal system UBERON_3000685 foramen nervi hypoglossi +UBERON_0002204 musculoskeletal system UBERON_3000687 processus confluens +UBERON_0002204 musculoskeletal system UBERON_3000688 prominentia apicalis dorsalis +UBERON_0002204 musculoskeletal system UBERON_3000689 prominentia apicalis ventralis +UBERON_0002204 musculoskeletal system UBERON_3000692 pedicel +UBERON_0002204 musculoskeletal system UBERON_3000694 atlantal cotyle +UBERON_0002204 musculoskeletal system UBERON_3000696 posterior intervertebral notch +UBERON_0002204 musculoskeletal system UBERON_3000701 intervertebral space +UBERON_0002204 musculoskeletal system UBERON_3000704 anterior intervertebral notch +UBERON_0002204 musculoskeletal system UBERON_3000707 pleurapophysis +UBERON_0002204 musculoskeletal system UBERON_3000711 procoelous +UBERON_0002204 musculoskeletal system UBERON_3000712 opisthocoelous +UBERON_0002204 musculoskeletal system UBERON_3000713 epichordal +UBERON_0002204 musculoskeletal system UBERON_3000714 perichordal +UBERON_0002204 musculoskeletal system UBERON_3000715 heterocoelous +UBERON_0002204 musculoskeletal system UBERON_3000716 acoelous +UBERON_0002204 musculoskeletal system UBERON_3000717 amphicoelous +UBERON_0002204 musculoskeletal system UBERON_3000718 ectochordal +UBERON_0002204 musculoskeletal system UBERON_3000719 holochordal +UBERON_0002204 musculoskeletal system UBERON_3000720 stegochordal +UBERON_0002204 musculoskeletal system UBERON_3000727 haemal arch lamina +UBERON_0002204 musculoskeletal system UBERON_3000728 nucal keel +UBERON_0002204 musculoskeletal system UBERON_3000730 foramen nutritium +UBERON_0002204 musculoskeletal system UBERON_3000735 mid-dorsal keel +UBERON_0002204 musculoskeletal system UBERON_3000743 sacral condyle +UBERON_0002204 musculoskeletal system UBERON_3000744 urostyle cotyle +UBERON_0002204 musculoskeletal system UBERON_3000745 webbing of bone in vertebral column +UBERON_0002204 musculoskeletal system UBERON_3000746 urostyle ridge +UBERON_0002204 musculoskeletal system UBERON_3000748 suprascapula +UBERON_0002204 musculoskeletal system UBERON_3000752 pars acromialis +UBERON_0002204 musculoskeletal system UBERON_3000753 pars glenoidalis of scapula +UBERON_0002204 musculoskeletal system UBERON_3000755 pectoral girdle opening +UBERON_0002204 musculoskeletal system UBERON_3000756 crista dorsalis humeri +UBERON_0002204 musculoskeletal system UBERON_3000757 zonal area +UBERON_0002204 musculoskeletal system UBERON_3000759 omosternum +UBERON_0002204 musculoskeletal system UBERON_3000762 epicoracoid +UBERON_0002204 musculoskeletal system UBERON_3000763 epicoracoid bridge +UBERON_0002204 musculoskeletal system UBERON_3000767 pelvic girdle opening +UBERON_0002204 musculoskeletal system UBERON_3000771 acetabular depression +UBERON_0002204 musculoskeletal system UBERON_3000773 ilial ridge +UBERON_0002204 musculoskeletal system UBERON_3000774 ilial shaft +UBERON_0002204 musculoskeletal system UBERON_3000776 glenoid foramen +UBERON_0002204 musculoskeletal system UBERON_3000777 epicoracoid horn +UBERON_0002204 musculoskeletal system UBERON_3000778 supracoracoid foramen +UBERON_0002204 musculoskeletal system UBERON_3000779 pectoral fenestra +UBERON_0002204 musculoskeletal system UBERON_3000780 incisura coracoidea +UBERON_0002204 musculoskeletal system UBERON_3000783 fovea capitis of humerus +UBERON_0002204 musculoskeletal system UBERON_3000784 ulnar condyle +UBERON_0002204 musculoskeletal system UBERON_3000785 trochlear groove of humerus +UBERON_0002204 musculoskeletal system UBERON_3000786 fossa cubitalis ventralis +UBERON_0002204 musculoskeletal system UBERON_3000787 collum antibrachii +UBERON_0002204 musculoskeletal system UBERON_3000792 anterior ramus of cleithrum +UBERON_0002204 musculoskeletal system UBERON_3000793 anomocoelous +UBERON_0002204 musculoskeletal system UBERON_3000794 displasiocoelous +UBERON_0002204 musculoskeletal system UBERON_3000796 imbricate neural arch +UBERON_0002204 musculoskeletal system UBERON_3000797 non-imbricate neural arch +UBERON_0002204 musculoskeletal system UBERON_3000798 presacral shield +UBERON_0002204 musculoskeletal system UBERON_3000799 cartilago paraglenoidalis +UBERON_0002204 musculoskeletal system UBERON_3000800 intercotylar space +UBERON_0002204 musculoskeletal system UBERON_3000801 caput glenoidale +UBERON_0002204 musculoskeletal system UBERON_3000802 fossa glenoidalis +UBERON_0002204 musculoskeletal system UBERON_3000803 sulcus articularis lateralis +UBERON_0002204 musculoskeletal system UBERON_3000804 sulcus articularis medialis +UBERON_0002204 musculoskeletal system UBERON_3000805 carina proximalis +UBERON_0002204 musculoskeletal system UBERON_3000806 carina medialis +UBERON_0002204 musculoskeletal system UBERON_3000807 carina distalis +UBERON_0002204 musculoskeletal system UBERON_3000808 parasagittal processes +UBERON_0002204 musculoskeletal system UBERON_3000809 accessory articulation +UBERON_0002204 musculoskeletal system UBERON_3000810 fissura sagittalis +UBERON_0002204 musculoskeletal system UBERON_3000811 glenoid end of clavicle +UBERON_0002204 musculoskeletal system UBERON_3000813 sulcus pro cartilagine praecoracoidealis +UBERON_0002204 musculoskeletal system UBERON_3000814 glenoid head of coracoid +UBERON_0002204 musculoskeletal system UBERON_3000815 sternal head of coracoid +UBERON_0002204 musculoskeletal system UBERON_3000816 margo fenestralis +UBERON_0002204 musculoskeletal system UBERON_3000817 margo posterior +UBERON_0002204 musculoskeletal system UBERON_3000818 margo anterior of scapula +UBERON_0002204 musculoskeletal system UBERON_3000819 margo clavicularis +UBERON_0002204 musculoskeletal system UBERON_3000820 margo posterior of scapula +UBERON_0002204 musculoskeletal system UBERON_3000821 margo suprascapularis +UBERON_0002204 musculoskeletal system UBERON_3000822 pars suprascapularis +UBERON_0002204 musculoskeletal system UBERON_3000823 sinus interglenoidalis +UBERON_0002204 musculoskeletal system UBERON_3000824 tenuitas cristaeformis +UBERON_0002204 musculoskeletal system UBERON_3000825 crista longitudinalis scapula +UBERON_0002204 musculoskeletal system UBERON_3000827 margo anterior of cleithrum +UBERON_0002204 musculoskeletal system UBERON_3000828 margo posterior of cleithrum +UBERON_0002204 musculoskeletal system UBERON_3000829 margo scapularis +UBERON_0002204 musculoskeletal system UBERON_3000830 margo vertebralis +UBERON_0002204 musculoskeletal system UBERON_3000831 spina acromioidea +UBERON_0002204 musculoskeletal system UBERON_3000832 anterior lamina recurvata +UBERON_0002204 musculoskeletal system UBERON_3000833 sinus dorsalis +UBERON_0002204 musculoskeletal system UBERON_3000834 posterior lamina recurvata +UBERON_0002204 musculoskeletal system UBERON_3000836 crista lateralis humeri +UBERON_0002204 musculoskeletal system UBERON_3000837 crista medialis humeri +UBERON_0002204 musculoskeletal system UBERON_3000839 crista radii +UBERON_0002204 musculoskeletal system UBERON_3000840 capitulum of radius +UBERON_0002204 musculoskeletal system UBERON_3000842 capitulum ulnae +UBERON_0002204 musculoskeletal system UBERON_3000844 sulcus longitudinalis +UBERON_0002204 musculoskeletal system UBERON_3000846 element Y of fore mesopodium +UBERON_0002204 musculoskeletal system UBERON_3000856 intercalary element of fore digit +UBERON_0002204 musculoskeletal system UBERON_3000859 foramen perforans carpi +UBERON_0002204 musculoskeletal system UBERON_3000862 pubo-ischium +UBERON_0002204 musculoskeletal system UBERON_3000865 epileon +UBERON_0002204 musculoskeletal system UBERON_3000866 agger limitans anterior of ilium +UBERON_0002204 musculoskeletal system UBERON_3000867 agger limitans anterior of ischium +UBERON_0002204 musculoskeletal system UBERON_3000869 ilial protuberance +UBERON_0002204 musculoskeletal system UBERON_3000870 preacetabular expansion +UBERON_0002204 musculoskeletal system UBERON_3000871 fossula tuberis superioris +UBERON_0002204 musculoskeletal system UBERON_3000872 collum ilei +UBERON_0002204 musculoskeletal system UBERON_3000873 pars cylindriformis ilei +UBERON_0002204 musculoskeletal system UBERON_3000874 crista ischii +UBERON_0002204 musculoskeletal system UBERON_3000875 spina pelvis posterior +UBERON_0002204 musculoskeletal system UBERON_3000876 spina pelvis anterior +UBERON_0002204 musculoskeletal system UBERON_3000877 intumescentia bilateralis inferior +UBERON_0002204 musculoskeletal system UBERON_3000878 intumescentia bilateralis superior +UBERON_0002204 musculoskeletal system UBERON_3000879 incisura terminalis +UBERON_0002204 musculoskeletal system UBERON_3000880 crista hypertrophica ischium +UBERON_0002204 musculoskeletal system UBERON_3000882 interilial region +UBERON_0002204 musculoskeletal system UBERON_3000883 recessus coccygealis +UBERON_0002204 musculoskeletal system UBERON_3000884 epipubis +UBERON_0002204 musculoskeletal system UBERON_3000886 ypsiloid cartilage +UBERON_0002204 musculoskeletal system UBERON_3000894 femoral ridge +UBERON_0002204 musculoskeletal system UBERON_3000896 foveal depression +UBERON_0002204 musculoskeletal system UBERON_3000898 trochanteric crest +UBERON_0002204 musculoskeletal system UBERON_3000903 tibial crest +UBERON_0002204 musculoskeletal system UBERON_3000904 apophysis distalis of tibiofibula +UBERON_0002204 musculoskeletal system UBERON_3000905 caput ossis cruris +UBERON_0002204 musculoskeletal system UBERON_3000906 sulcus pro musculo extensori cruris brevis +UBERON_0002204 musculoskeletal system UBERON_3000907 eminentia arcuata +UBERON_0002204 musculoskeletal system UBERON_3000908 sulcus distalis ossis cruris +UBERON_0002204 musculoskeletal system UBERON_3000909 sulcus proximalis ossis cruris +UBERON_0002204 musculoskeletal system UBERON_3000911 foramen nutritium exterius +UBERON_0002204 musculoskeletal system UBERON_3000916 apophysis proximalis +UBERON_0002204 musculoskeletal system UBERON_3000917 apophysis distalis of tibiale fibulare +UBERON_0002204 musculoskeletal system UBERON_3000921 element Y of hind mesopodium +UBERON_0002204 musculoskeletal system UBERON_3000922 prehallux skeleton +UBERON_0002204 musculoskeletal system UBERON_3000931 intercalary element of hind digit +UBERON_0002204 musculoskeletal system UBERON_3000934 foramen perforans tarsi +UBERON_0002204 musculoskeletal system UBERON_3000936 zonal element +UBERON_0002204 musculoskeletal system UBERON_3000937 prezonal element +UBERON_0002204 musculoskeletal system UBERON_3000938 postzonal element +UBERON_0002204 musculoskeletal system UBERON_3000941 arciferal girdle +UBERON_0002204 musculoskeletal system UBERON_3000942 firmisternal girdle +UBERON_0002204 musculoskeletal system UBERON_3000943 pseudofirmisternal girdle +UBERON_0002204 musculoskeletal system UBERON_3000944 pseudoarciferal girdle +UBERON_0002204 musculoskeletal system UBERON_3000945 inscriptional rib +UBERON_0002204 musculoskeletal system UBERON_3000948 articular process +UBERON_0002204 musculoskeletal system UBERON_3000949 posterior ramus of cleithrum +UBERON_0002204 musculoskeletal system UBERON_3000950 os triangulare +UBERON_0002204 musculoskeletal system UBERON_3000951 anterior radial +UBERON_0002204 musculoskeletal system UBERON_3000952 posterior radial +UBERON_0002204 musculoskeletal system UBERON_3000953 ceratobranchials II--IV +UBERON_0002204 musculoskeletal system UBERON_3000954 hypobranchial I +UBERON_0002204 musculoskeletal system UBERON_3000955 ceratobranchial I +UBERON_0002204 musculoskeletal system UBERON_3000956 hypobranchial II +UBERON_0002204 musculoskeletal system UBERON_3000965 basale commune (carpal) +UBERON_0002204 musculoskeletal system UBERON_3000966 angulosplenial +UBERON_0002204 musculoskeletal system UBERON_3000993 otic and occipital +UBERON_0002204 musculoskeletal system UBERON_3000998 suprarostral cartilage +UBERON_0002204 musculoskeletal system UBERON_3001002 basale commune (tarsal) +UBERON_0002204 musculoskeletal system UBERON_3010013 larval chondrocranium +UBERON_0002204 musculoskeletal system UBERON_3010045 centrale 1 +UBERON_0002204 musculoskeletal system UBERON_3010060 centrale (fore) +UBERON_0002204 musculoskeletal system UBERON_3010061 anterior quadratocranial commissure +UBERON_0002204 musculoskeletal system UBERON_3010069 intermedium (fore) +UBERON_0002204 musculoskeletal system UBERON_3010073 centrale 2 +UBERON_0002204 musculoskeletal system UBERON_3010092 basitrabecular process +UBERON_0002204 musculoskeletal system UBERON_3010094 quadratoethmoid process +UBERON_0002204 musculoskeletal system UBERON_3010118 quadrato-orbital commissure +UBERON_0002204 musculoskeletal system UBERON_3010128 taeniae tecti marginalis +UBERON_0002204 musculoskeletal system UBERON_3010130 taenia tecti transversalis +UBERON_0002204 musculoskeletal system UBERON_3010131 orbital cartilages +UBERON_0002204 musculoskeletal system UBERON_3010132 taenia tecti medialis +UBERON_0002204 musculoskeletal system UBERON_3010138 trabecular horn +UBERON_0002204 musculoskeletal system UBERON_3010142 occipital arch +UBERON_0002204 musculoskeletal system UBERON_3010146 lacrimal +UBERON_0002204 musculoskeletal system UBERON_3010194 mediale +UBERON_0002204 musculoskeletal system UBERON_3010205 postminimus +UBERON_0002204 musculoskeletal system UBERON_3010240 Nobelian rod +UBERON_0002204 musculoskeletal system UBERON_3010262 capitulum of radio-ulna +UBERON_0002204 musculoskeletal system UBERON_3010458 suprarostral ala +UBERON_0002204 musculoskeletal system UBERON_3010525 frontoparietal fenestra +UBERON_0002204 musculoskeletal system UBERON_3010528 articular process of palatoquadrate +UBERON_0002204 musculoskeletal system UBERON_3010557 triangular process +UBERON_0002204 musculoskeletal system UBERON_3010559 retroarticular process of the palatoquadrate +UBERON_0002204 musculoskeletal system UBERON_3010560 anterior process of the palatoquadrate +UBERON_0002204 musculoskeletal system UBERON_3010562 suboccular foramen +UBERON_0002204 musculoskeletal system UBERON_3010563 craniopalatine foramen +UBERON_0002204 musculoskeletal system UBERON_3010564 carotid foramen +UBERON_0002204 musculoskeletal system UBERON_3010565 pila preoptica +UBERON_0002204 musculoskeletal system UBERON_3010566 prootic foramen +UBERON_0002204 musculoskeletal system UBERON_3010576 prenasal (amphibians) +UBERON_0002204 musculoskeletal system UBERON_3010583 basibranchial I +UBERON_0002204 musculoskeletal system UBERON_3010585 basibranchial II +UBERON_0002204 musculoskeletal system UBERON_3010614 cartilago lateralis of aryngo-tracheal chamber +UBERON_0002204 musculoskeletal system UBERON_3010624 subarticular sesamoid +UBERON_0002204 musculoskeletal system UBERON_3010675 bony nodule of terminal phalanx of hind digit +UBERON_0002204 musculoskeletal system UBERON_3010682 proximal-most prepollical element +UBERON_0002204 musculoskeletal system UBERON_3010683 distal-most prepollical element +UBERON_0002204 musculoskeletal system UBERON_3010684 proximal-most prehallical element +UBERON_0002204 musculoskeletal system UBERON_3010685 distal-most prehallical element +UBERON_0002204 musculoskeletal system UBERON_3010690 fetal tooth +UBERON_0002204 musculoskeletal system UBERON_3010719 dilated medial process of metacarpal IV +UBERON_0002204 musculoskeletal system UBERON_3010728 otic opercular element +UBERON_0002204 musculoskeletal system UBERON_3010746 T-shaped terminal phalanx +UBERON_0002204 musculoskeletal system UBERON_3010820 suboccular arch +UBERON_0002204 musculoskeletal system UBERON_3010821 hyoquadrate process +UBERON_0002204 musculoskeletal system UBERON_3010824 processus triangularis of palatoquadrate cartilage +UBERON_0002204 musculoskeletal system UBERON_3010827 anterior prenasal cartilage +UBERON_0002204 musculoskeletal system UBERON_3010828 commissura terminales of hyoid apparatus +UBERON_0002204 musculoskeletal system UBERON_3010830 spicule +UBERON_0002204 musculoskeletal system UBERON_3010831 occipito-petrosal +UBERON_0002204 musculoskeletal system UBERON_3010832 occipital segment +UBERON_0002204 musculoskeletal system UBERON_4000003 permanent cartilage +UBERON_0002204 musculoskeletal system UBERON_4000013 mineralized skeletal tissue +UBERON_0002204 musculoskeletal system UBERON_4000051 lepidosteoid scale +UBERON_0002204 musculoskeletal system UBERON_4000052 ganoid scale +UBERON_0002204 musculoskeletal system UBERON_4000053 vacuolated notochordal tissue +UBERON_0002204 musculoskeletal system UBERON_4000055 polypteroid scale +UBERON_0002204 musculoskeletal system UBERON_4000070 elasmoid scale +UBERON_0002204 musculoskeletal system UBERON_4000074 palaeoniscoid scale +UBERON_0002204 musculoskeletal system UBERON_4000077 non-mineralized chondroid tissue +UBERON_0002204 musculoskeletal system UBERON_4000078 chondroid tissue +UBERON_0002204 musculoskeletal system UBERON_4000080 keratin-based scale +UBERON_0002204 musculoskeletal system UBERON_4000081 cosmoid scale +UBERON_0002204 musculoskeletal system UBERON_4000086 secondary cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_4000087 cosmine +UBERON_0002204 musculoskeletal system UBERON_4000088 mineralized cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_4000090 integumentary skeleton +UBERON_0002204 musculoskeletal system UBERON_4000097 orthodentine +UBERON_0002204 musculoskeletal system UBERON_4000102 osteodentine +UBERON_0002204 musculoskeletal system UBERON_4000104 ganoine +UBERON_0002204 musculoskeletal system UBERON_4000105 limiting layer of elasmoid scale +UBERON_0002204 musculoskeletal system UBERON_4000106 vasodentine +UBERON_0002204 musculoskeletal system UBERON_4000107 elasmodine +UBERON_0002204 musculoskeletal system UBERON_4000108 non-mineralized hyaline cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_4000109 mineralized hyaline cartilage tissue +UBERON_0002204 musculoskeletal system UBERON_4000115 mineralized bone tissue +UBERON_0002204 musculoskeletal system UBERON_4000118 cellular bone tissue +UBERON_0002204 musculoskeletal system UBERON_4000119 non-mineralized avascular GAG-rich matrix +UBERON_0002204 musculoskeletal system UBERON_4000120 mineralized avascular GAG-rich matrix +UBERON_0002204 musculoskeletal system UBERON_4000122 acellular bone tissue +UBERON_0002204 musculoskeletal system UBERON_4000123 odontode tissue +UBERON_0002204 musculoskeletal system UBERON_4000134 ossified tendon +UBERON_0002204 musculoskeletal system UBERON_4000138 ligamentous replacement element +UBERON_0002204 musculoskeletal system UBERON_4000146 transient cartilaginous element +UBERON_0002204 musculoskeletal system UBERON_4000159 ossified ligament +UBERON_0002204 musculoskeletal system UBERON_4000160 anocleithrum +UBERON_0002204 musculoskeletal system UBERON_4000166 anal fin skeleton +UBERON_0002204 musculoskeletal system UBERON_4000167 caudal fin skeleton +UBERON_0002204 musculoskeletal system UBERON_4000168 dorsal fin skeleton +UBERON_0002204 musculoskeletal system UBERON_4000170 median fin skeleton +UBERON_0002204 musculoskeletal system UBERON_4000171 scapular complex +UBERON_0002204 musculoskeletal system UBERON_4000172 lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4000173 pelvic fin lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4000174 caudal fin lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4000175 pectoral fin lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4000176 anal fin lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4000177 dorsal fin lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4100000 skeletal element projection +UBERON_0002204 musculoskeletal system UBERON_4100003 articular surface +UBERON_0002204 musculoskeletal system UBERON_4100004 ischial peduncle +UBERON_0002204 musculoskeletal system UBERON_4100005 second phalanx +UBERON_0002204 musculoskeletal system UBERON_4100006 parasternal process +UBERON_0002204 musculoskeletal system UBERON_4100007 pectoral articular facet +UBERON_0002204 musculoskeletal system UBERON_4100009 pedal digit 7 phalanx +UBERON_0002204 musculoskeletal system UBERON_4100010 post-glenoid process +UBERON_0002204 musculoskeletal system UBERON_4100011 postacetabular buttress +UBERON_0002204 musculoskeletal system UBERON_4100012 postacetabular zone +UBERON_0002204 musculoskeletal system UBERON_4100013 postcoracoid +UBERON_0002204 musculoskeletal system UBERON_4100016 posterior process of ilium +UBERON_0002204 musculoskeletal system UBERON_4100100 parasphenoid flange +UBERON_0002204 musculoskeletal system UBERON_4100112 radial facet +UBERON_0002204 musculoskeletal system UBERON_4100113 dermal intracranial joint +UBERON_0002204 musculoskeletal system UBERON_4100114 anterior distal condyle of femur +UBERON_0002204 musculoskeletal system UBERON_4100115 spiracular notch +UBERON_0002204 musculoskeletal system UBERON_4100116 posterior distal condyle of femur +UBERON_0002204 musculoskeletal system UBERON_4100117 presacral rib +UBERON_0002204 musculoskeletal system UBERON_4100118 trunk rib +UBERON_0002204 musculoskeletal system UBERON_4100119 extratemporal bone +UBERON_0002204 musculoskeletal system UBERON_4200000 medial blade of ilium +UBERON_0002204 musculoskeletal system UBERON_4200001 postpubis +UBERON_0002204 musculoskeletal system UBERON_4200002 coracoid plate +UBERON_0002204 musculoskeletal system UBERON_4200004 intertrochanteric fossa +UBERON_0002204 musculoskeletal system UBERON_4200006 infraglenoid buttress +UBERON_0002204 musculoskeletal system UBERON_4200007 transverse pelvic ridge +UBERON_0002204 musculoskeletal system UBERON_4200008 inter-clavicle joint +UBERON_0002204 musculoskeletal system UBERON_4200009 hypochordal lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4200010 ventral humeral ridge +UBERON_0002204 musculoskeletal system UBERON_4200011 pedal centrale +UBERON_0002204 musculoskeletal system UBERON_4200012 ectepicondylar flange +UBERON_0002204 musculoskeletal system UBERON_4200013 flexor surface +UBERON_0002204 musculoskeletal system UBERON_4200014 lateral tuber of ulna +UBERON_0002204 musculoskeletal system UBERON_4200016 postbranchial lamina +UBERON_0002204 musculoskeletal system UBERON_4200018 calcaneal tuber +UBERON_0002204 musculoskeletal system UBERON_4200019 preacetabular process +UBERON_0002204 musculoskeletal system UBERON_4200020 suprascapular fossa +UBERON_0002204 musculoskeletal system UBERON_4200021 astragalus-calcaneum unit +UBERON_0002204 musculoskeletal system UBERON_4200022 extracleithrum +UBERON_0002204 musculoskeletal system UBERON_4200025 ascending process of the astragalus +UBERON_0002204 musculoskeletal system UBERON_4200026 supraglenoid foramen +UBERON_0002204 musculoskeletal system UBERON_4200027 supraglenoid buttress +UBERON_0002204 musculoskeletal system UBERON_4200028 adductor blade +UBERON_0002204 musculoskeletal system UBERON_4200029 adductor crest +UBERON_0002204 musculoskeletal system UBERON_4200030 antitrochanter +UBERON_0002204 musculoskeletal system UBERON_4200032 clavicle blade +UBERON_0002204 musculoskeletal system UBERON_4200033 cleithrum head +UBERON_0002204 musculoskeletal system UBERON_4200034 cnemial crest +UBERON_0002204 musculoskeletal system UBERON_4200036 internal trochanter +UBERON_0002204 musculoskeletal system UBERON_4200037 supinator process +UBERON_0002204 musculoskeletal system UBERON_4200038 subscapular fossa +UBERON_0002204 musculoskeletal system UBERON_4200039 supraacetabular buttress +UBERON_0002204 musculoskeletal system UBERON_4200040 acrocoracoid process +UBERON_0002204 musculoskeletal system UBERON_4200042 brevis shelf +UBERON_0002204 musculoskeletal system UBERON_4200043 brevis fossa +UBERON_0002204 musculoskeletal system UBERON_4200044 articular surface for the calcaneum on the astragalus +UBERON_0002204 musculoskeletal system UBERON_4200045 articular surface for the astragalus on the calcaneum +UBERON_0002204 musculoskeletal system UBERON_4200046 astragalo-calcaneal canal +UBERON_0002204 musculoskeletal system UBERON_4200047 attachment site +UBERON_0002204 musculoskeletal system UBERON_4200048 bicipital crest +UBERON_0002204 musculoskeletal system UBERON_4200049 cartilago sesamoides +UBERON_0002204 musculoskeletal system UBERON_4200050 cotyla +UBERON_0002204 musculoskeletal system UBERON_4200051 cotyloid notch +UBERON_0002204 musculoskeletal system UBERON_4200052 crista tibiofibularis +UBERON_0002204 musculoskeletal system UBERON_4200060 ectepicondylar foramen +UBERON_0002204 musculoskeletal system UBERON_4200062 epichordal lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4200063 ectocondylar tubercle +UBERON_0002204 musculoskeletal system UBERON_4200068 prepubic element +UBERON_0002204 musculoskeletal system UBERON_4200069 sternal keel +UBERON_0002204 musculoskeletal system UBERON_4200070 median fin spine +UBERON_0002204 musculoskeletal system UBERON_4200075 fin spine +UBERON_0002204 musculoskeletal system UBERON_4200076 trunk armor pectoral fenestra +UBERON_0002204 musculoskeletal system UBERON_4200078 clavicular facet +UBERON_0002204 musculoskeletal system UBERON_4200079 dorsal iliac process +UBERON_0002204 musculoskeletal system UBERON_4200080 fibular crest +UBERON_0002204 musculoskeletal system UBERON_4200081 hypocleideum +UBERON_0002204 musculoskeletal system UBERON_4200083 postaxial centrale +UBERON_0002204 musculoskeletal system UBERON_4200084 preaxial centrale +UBERON_0002204 musculoskeletal system UBERON_4200086 iliac neck +UBERON_0002204 musculoskeletal system UBERON_4200087 iliac peduncle +UBERON_0002204 musculoskeletal system UBERON_4200088 iliac peduncle of the pubis +UBERON_0002204 musculoskeletal system UBERON_4200089 fibular facet of the calcaneum +UBERON_0002204 musculoskeletal system UBERON_4200090 fibular facet of the astragalus +UBERON_0002204 musculoskeletal system UBERON_4200091 ethomosphenoid region +UBERON_0002204 musculoskeletal system UBERON_4200095 infraspinous process +UBERON_0002204 musculoskeletal system UBERON_4200096 intercondylar fossa +UBERON_0002204 musculoskeletal system UBERON_4200098 ischial foot +UBERON_0002204 musculoskeletal system UBERON_4200099 lateral extrascapular +UBERON_0002204 musculoskeletal system UBERON_4200100 latissimus dorsi process +UBERON_0002204 musculoskeletal system UBERON_4200102 median dorsal plate +UBERON_0002204 musculoskeletal system UBERON_4200103 median extrascapular +UBERON_0002204 musculoskeletal system UBERON_4200104 metacarpal extensor pit +UBERON_0002204 musculoskeletal system UBERON_4200106 muscle scar +UBERON_0002204 musculoskeletal system UBERON_4200107 obturator process of ischium +UBERON_0002204 musculoskeletal system UBERON_4200112 prepectoral space +UBERON_0002204 musculoskeletal system UBERON_4200113 predorsal scute +UBERON_0002204 musculoskeletal system UBERON_4200114 prepubic process +UBERON_0002204 musculoskeletal system UBERON_4200115 presupracleithrum +UBERON_0002204 musculoskeletal system UBERON_4200116 pteroid +UBERON_0002204 musculoskeletal system UBERON_4200117 pubic boot +UBERON_0002204 musculoskeletal system UBERON_4200118 pubic peduncle +UBERON_0002204 musculoskeletal system UBERON_4200119 pubis-ischium contact +UBERON_0002204 musculoskeletal system UBERON_4200120 puboischiadic plate +UBERON_0002204 musculoskeletal system UBERON_4200123 scapular process +UBERON_0002204 musculoskeletal system UBERON_4200124 sternal trabecula +UBERON_0002204 musculoskeletal system UBERON_4200125 supraacetabular crest +UBERON_0002204 musculoskeletal system UBERON_4200126 supraacetabular rim +UBERON_0002204 musculoskeletal system UBERON_4200127 suprascapula foramen +UBERON_0002204 musculoskeletal system UBERON_4200128 synarcual region of vertebral column +UBERON_0002204 musculoskeletal system UBERON_4200130 tibial facet of astragalus +UBERON_0002204 musculoskeletal system UBERON_4200131 trochanteric shelf +UBERON_0002204 musculoskeletal system UBERON_4200135 puboischiadic bar +UBERON_0002204 musculoskeletal system UBERON_4200139 palatoquadrate element +UBERON_0002204 musculoskeletal system UBERON_4200140 prepollical element +UBERON_0002204 musculoskeletal system UBERON_4200141 prehallical element +UBERON_0002204 musculoskeletal system UBERON_4200150 accessory foramen +UBERON_0002204 musculoskeletal system UBERON_4200152 intertarsale sesamoid +UBERON_0002204 musculoskeletal system UBERON_4200153 metatarsal bone of digit 6 +UBERON_0002204 musculoskeletal system UBERON_4200154 metapodium bone 6 +UBERON_0002204 musculoskeletal system UBERON_4200155 metapodium bone 7 +UBERON_0002204 musculoskeletal system UBERON_4200156 metapodium bone 8 +UBERON_0002204 musculoskeletal system UBERON_4200157 metatarsal bone of digit 7 +UBERON_0002204 musculoskeletal system UBERON_4200158 metatarsal bone of digit 8 +UBERON_0002204 musculoskeletal system UBERON_4200159 ventral ridge system +UBERON_0002204 musculoskeletal system UBERON_4200160 mesomere (fin) +UBERON_0002204 musculoskeletal system UBERON_4200161 mesomere 5 +UBERON_0002204 musculoskeletal system UBERON_4200162 mesomere 4 +UBERON_0002204 musculoskeletal system UBERON_4200166 hindlimb interepipodial space +UBERON_0002204 musculoskeletal system UBERON_4200167 mesial pelvic ridge +UBERON_0002204 musculoskeletal system UBERON_4200169 process 2 of entepicondyle +UBERON_0002204 musculoskeletal system UBERON_4200170 process 3 of entepicondyle +UBERON_0002204 musculoskeletal system UBERON_4200171 process 4 of entepicondyle +UBERON_0002204 musculoskeletal system UBERON_4200172 neck of humerus +UBERON_0002204 musculoskeletal system UBERON_4200173 dorsal ridge +UBERON_0002204 musculoskeletal system UBERON_4200174 distal condyle of humerus +UBERON_0002204 musculoskeletal system UBERON_4200175 supraglenoid region +UBERON_0002204 musculoskeletal system UBERON_4200176 ascending process of clavicle +UBERON_0002204 musculoskeletal system UBERON_4200177 supracondyle tubercle +UBERON_0002204 musculoskeletal system UBERON_4200178 proximal mesomere +UBERON_0002204 musculoskeletal system UBERON_4200180 semilunate carpal +UBERON_0002204 musculoskeletal system UBERON_4200181 astragalus head +UBERON_0002204 musculoskeletal system UBERON_4200182 lateral tubercle of astragalus +UBERON_0002204 musculoskeletal system UBERON_4200183 bicipital tuberosity +UBERON_0002204 musculoskeletal system UBERON_4200184 ulnar tuberosity +UBERON_0002204 musculoskeletal system UBERON_4200185 entepicondyle fossa +UBERON_0002204 musculoskeletal system UBERON_4200186 distal keel of metacarpal III +UBERON_0002204 musculoskeletal system UBERON_4200190 zygosphene +UBERON_0002204 musculoskeletal system UBERON_4200192 ulnar facet of the humerus +UBERON_0002204 musculoskeletal system UBERON_4200193 posterodorsal process of ilium +UBERON_0002204 musculoskeletal system UBERON_4200194 intercentrum +UBERON_0002204 musculoskeletal system UBERON_4200195 pleurocentrum +UBERON_0002204 musculoskeletal system UBERON_4200196 atlas intercentrum +UBERON_0002204 musculoskeletal system UBERON_4200197 anterior humeral ridge +UBERON_0002204 musculoskeletal system UBERON_4200198 incisor process +UBERON_0002204 musculoskeletal system UBERON_4200203 humeral facet on the ulna +UBERON_0002204 musculoskeletal system UBERON_4200204 humeral facet on radius +UBERON_0002204 musculoskeletal system UBERON_4200206 internal rim of coracoid foramen +UBERON_0002204 musculoskeletal system UBERON_4200207 external rim of the coracoid foramen +UBERON_0002204 musculoskeletal system UBERON_4200208 pectoral fin intermediate radial bone +UBERON_0002204 musculoskeletal system UBERON_4200209 postaxial process of the ulnare +UBERON_0002204 musculoskeletal system UBERON_4200210 postaxial process of the femur +UBERON_0002204 musculoskeletal system UBERON_4200211 postaxial process of the fibula +UBERON_0002204 musculoskeletal system UBERON_4200212 pectoral process of humerus +UBERON_0002204 musculoskeletal system UBERON_4200213 deltoid process +UBERON_0002204 musculoskeletal system UBERON_4200214 epipodial facet +UBERON_0002204 musculoskeletal system UBERON_4200215 suture +UBERON_0002204 musculoskeletal system UBERON_4200216 fibula facet of femur +UBERON_0002204 musculoskeletal system UBERON_4200217 tibial facet of femur +UBERON_0002204 musculoskeletal system UBERON_4200219 middle phalanx of manual digit 1 +UBERON_0002204 musculoskeletal system UBERON_4200220 iliac ramus +UBERON_0002204 musculoskeletal system UBERON_4200222 distal groove of humerus +UBERON_0002204 musculoskeletal system UBERON_4200223 foramen C +UBERON_0002204 musculoskeletal system UBERON_4200224 columnar area +UBERON_0002204 musculoskeletal system UBERON_4200226 anteroventral process of cleithrum +UBERON_0002204 musculoskeletal system UBERON_4200228 excurrent foramen of ectepicondylar foramen +UBERON_0002204 musculoskeletal system UBERON_4200229 incurrent foramen of ectepicondylar foramen +UBERON_0002204 musculoskeletal system UBERON_4200230 surface of bone +UBERON_0002204 musculoskeletal system UBERON_4200231 unfinished bone surface +UBERON_0002204 musculoskeletal system UBERON_4200232 finished bone surface +UBERON_0002204 musculoskeletal system UBERON_4200233 dorsal clavicular process +UBERON_0002204 musculoskeletal system UBERON_4200234 precoronoid bone +UBERON_0002204 musculoskeletal system UBERON_4200235 postcoronoid bone +UBERON_0002204 musculoskeletal system UBERON_4200236 anterior coronoid bone +UBERON_0002204 musculoskeletal system UBERON_4200237 posterior coronoid bone +UBERON_0002204 musculoskeletal system UBERON_4200238 coronoid fang +UBERON_0002204 musculoskeletal system UBERON_4200239 shagreen tooth field +UBERON_0002204 musculoskeletal system UBERON_4200240 fronto-ethmoidal shield +UBERON_0002204 musculoskeletal system UBERON_4200241 postrostral bone +UBERON_0002204 musculoskeletal system UBERON_4200242 median postrostral bone +UBERON_0002204 musculoskeletal system UBERON_4200243 surangular pit line +UBERON_0002204 musculoskeletal system UBERON_4200244 anterior supraorbital bone +UBERON_0002204 musculoskeletal system UBERON_4200245 parasymphysial plate +UBERON_0002204 musculoskeletal system UBERON_4200246 mesial parasymphysial foramen +UBERON_0002204 musculoskeletal system UBERON_4200247 lateral parasymphysial foramen +UBERON_0002204 musculoskeletal system UBERON_4200248 hypophysial region +UBERON_0002204 musculoskeletal system UBERON_4200250 meckelian bone +UBERON_0002204 musculoskeletal system UBERON_4200251 meckelian foramen +UBERON_0002204 musculoskeletal system UBERON_4300002 palatine prong +UBERON_0002204 musculoskeletal system UBERON_4300003 urodermal bone +UBERON_0002204 musculoskeletal system UBERON_4300007 medial pelvic process +UBERON_0002204 musculoskeletal system UBERON_4300013 paired fin radial skeleton +UBERON_0002204 musculoskeletal system UBERON_4300014 dorsal cleithrum +UBERON_0002204 musculoskeletal system UBERON_4300015 ventral cleithrum +UBERON_0002204 musculoskeletal system UBERON_4300016 pelvic cartilage +UBERON_0002204 musculoskeletal system UBERON_4300017 rostrodermethmoid +UBERON_0002204 musculoskeletal system UBERON_4300018 ventral marginal cartilage +UBERON_0002204 musculoskeletal system UBERON_4300019 dorsal fin basal cartilage (elasmobranchs) +UBERON_0002204 musculoskeletal system UBERON_4300020 anal fin basal cartilage +UBERON_0002204 musculoskeletal system UBERON_4300021 anterolateral plate +UBERON_0002204 musculoskeletal system UBERON_4300022 anteroventral plate +UBERON_0002204 musculoskeletal system UBERON_4300023 interolateral plate +UBERON_0002204 musculoskeletal system UBERON_4300024 spinal plate +UBERON_0002204 musculoskeletal system UBERON_4300025 posterior dorsolateral plate +UBERON_0002204 musculoskeletal system UBERON_4300026 anterior ventrolateral plate +UBERON_0002204 musculoskeletal system UBERON_4300028 posterior ventrolateral plate +UBERON_0002204 musculoskeletal system UBERON_4300029 dermal neck joint +UBERON_0002204 musculoskeletal system UBERON_4300032 posterior dorsal fin basal cartilage (elasmobranchs) +UBERON_0002204 musculoskeletal system UBERON_4300033 anterior dorsal fin basal cartilage (elasmobranchs) +UBERON_0002204 musculoskeletal system UBERON_4300034 antorbital cartilage +UBERON_0002204 musculoskeletal system UBERON_4300035 supraneural element +UBERON_0002204 musculoskeletal system UBERON_4300036 supraneural cartilage +UBERON_0002204 musculoskeletal system UBERON_4300037 bony fin ray +UBERON_0002204 musculoskeletal system UBERON_4300038 facet +UBERON_0002204 musculoskeletal system UBERON_4300081 mesopterygium element +UBERON_0002204 musculoskeletal system UBERON_4300082 metapterygium element +UBERON_0002204 musculoskeletal system UBERON_4300083 propterygium element +UBERON_0002204 musculoskeletal system UBERON_4300087 mesopterygium bone +UBERON_0002204 musculoskeletal system UBERON_4300088 metapterygium bone +UBERON_0002204 musculoskeletal system UBERON_4300089 propterygium bone +UBERON_0002204 musculoskeletal system UBERON_4300090 X bone +UBERON_0002204 musculoskeletal system UBERON_4300091 Y bone +UBERON_0002204 musculoskeletal system UBERON_4300092 mesocoracoid element +UBERON_0002204 musculoskeletal system UBERON_4300096 anal fin pterygiophore 1 +UBERON_0002204 musculoskeletal system UBERON_4300097 anal fin spine 1 +UBERON_0002204 musculoskeletal system UBERON_4300098 anal fin spine 2 +UBERON_0002204 musculoskeletal system UBERON_4300101 dorsal fin ceratotrichial spine (elasmobranchs) +UBERON_0002204 musculoskeletal system UBERON_4300102 postcleithral scale +UBERON_0002204 musculoskeletal system UBERON_4300103 rudimentary pectoral fin ray +UBERON_0002204 musculoskeletal system UBERON_4300104 ectocoracoid bone +UBERON_0002204 musculoskeletal system UBERON_4300105 caudal vertebra 1 +UBERON_0002204 musculoskeletal system UBERON_4300106 ventral limb of posttemporal +UBERON_0002204 musculoskeletal system UBERON_4300108 lepidotrichial segment +UBERON_0002204 musculoskeletal system UBERON_4300109 proximal segment of caudal ray +UBERON_0002204 musculoskeletal system UBERON_4300110 lateral ethmoid cartilage +UBERON_0002204 musculoskeletal system UBERON_4300111 lateral ethmoid element +UBERON_0002204 musculoskeletal system UBERON_4300112 distal segment of caudal ray +UBERON_0002204 musculoskeletal system UBERON_4300116 dorsal fin ray +UBERON_0002204 musculoskeletal system UBERON_4300117 pelvic fin ray +UBERON_0002204 musculoskeletal system UBERON_4300119 glenoid region +UBERON_0002204 musculoskeletal system UBERON_4300121 zygantrum +UBERON_0002204 musculoskeletal system UBERON_4300124 axis intercentrum +UBERON_0002204 musculoskeletal system UBERON_4300125 dorsal iliac ridge +UBERON_0002204 musculoskeletal system UBERON_4300127 nuchal crest +UBERON_0002204 musculoskeletal system UBERON_4300128 sacral rib +UBERON_0002204 musculoskeletal system UBERON_4300132 glossopharyngeal nerve foramen +UBERON_0002204 musculoskeletal system UBERON_4300134 lateral commissure +UBERON_0002204 musculoskeletal system UBERON_4300135 upper jaw symphyseal tooth +UBERON_0002204 musculoskeletal system UBERON_4300142 internal carotid foramen +UBERON_0002204 musculoskeletal system UBERON_4300143 anal fin radial skeleton +UBERON_0002204 musculoskeletal system UBERON_4300144 profundus foramen +UBERON_0002204 musculoskeletal system UBERON_4300151 pelvic intercleithral cartilage +UBERON_0002204 musculoskeletal system UBERON_4300154 procurrent spur +UBERON_0002204 musculoskeletal system UBERON_4300155 pectoral splint +UBERON_0002204 musculoskeletal system UBERON_4300156 anterodorsal crest +UBERON_0002204 musculoskeletal system UBERON_4300157 midshaft +UBERON_0002204 musculoskeletal system UBERON_4300158 ectepicondylar depression +UBERON_0002204 musculoskeletal system UBERON_4300175 procumbent dorsal fin spine +UBERON_0002204 musculoskeletal system UBERON_4300177 replacement tooth row +UBERON_0002204 musculoskeletal system UBERON_4300178 inner tooth row of dentary +UBERON_0002204 musculoskeletal system UBERON_4300179 inner tooth row of premaxilla +UBERON_0002204 musculoskeletal system UBERON_4300181 posterior sclerotic cartilage +UBERON_0002204 musculoskeletal system UBERON_4300182 anterior sclerotic cartilage +UBERON_0002204 musculoskeletal system UBERON_4300184 neural spine 5 +UBERON_0002204 musculoskeletal system UBERON_4300185 neural spine 6 +UBERON_0002204 musculoskeletal system UBERON_4300186 neural spine 7 +UBERON_0002204 musculoskeletal system UBERON_4300188 terminal scale +UBERON_0002204 musculoskeletal system UBERON_4300189 parapophysis 3 +UBERON_0002204 musculoskeletal system UBERON_4300190 claustrum element +UBERON_0002204 musculoskeletal system UBERON_4300192 branched pelvic fin ray +UBERON_0002204 musculoskeletal system UBERON_4300193 unbranched anal fin ray +UBERON_0002204 musculoskeletal system UBERON_4300196 processus descendens of sphenoid +UBERON_0002204 musculoskeletal system UBERON_4300197 Westoll line +UBERON_0002204 musculoskeletal system UBERON_4300198 epichordal radial +UBERON_0002204 musculoskeletal system UBERON_4300199 postsplenial +UBERON_0002204 musculoskeletal system UBERON_4300200 postparietal shield +UBERON_0002204 musculoskeletal system UBERON_4300201 subepiotic fossa +UBERON_0002204 musculoskeletal system UBERON_4300202 endoskeletal cranial joint +UBERON_0002204 musculoskeletal system UBERON_4300203 tectum orbitale +UBERON_0002204 musculoskeletal system UBERON_4300207 submandibular bone +UBERON_0002204 musculoskeletal system UBERON_4300211 lateral plate +UBERON_0002204 musculoskeletal system UBERON_4300212 acrodin +UBERON_0002204 musculoskeletal system UBERON_4300213 supraneural 1 element +UBERON_0002204 musculoskeletal system UBERON_4300214 supraneural 2 element +UBERON_0002204 musculoskeletal system UBERON_4300215 supraneural 3 element +UBERON_0002204 musculoskeletal system UBERON_4300216 supraneural 4 element +UBERON_0002204 musculoskeletal system UBERON_4300217 supraneural 5 element +UBERON_0002204 musculoskeletal system UBERON_4300218 supraneural 6 element +UBERON_0002204 musculoskeletal system UBERON_4300219 supraneural 7 element +UBERON_0002204 musculoskeletal system UBERON_4300220 supraneural 8 element +UBERON_0002204 musculoskeletal system UBERON_4300221 supraneural 9 element +UBERON_0002204 musculoskeletal system UBERON_4300222 axilar scale +UBERON_0002204 musculoskeletal system UBERON_4300223 precaudal vertebra +UBERON_0002204 musculoskeletal system UBERON_4300224 precaudal vertebra endochondral element +UBERON_0002204 musculoskeletal system UBERON_4300225 precaudal vertebra cartilage element +UBERON_0002204 musculoskeletal system UBERON_4300233 mammiliform tooth +UBERON_0002204 musculoskeletal system UBERON_4300235 spinoid scale +UBERON_0002204 musculoskeletal system UBERON_4300236 rib of vertebra 7 +UBERON_0002204 musculoskeletal system UBERON_4300237 rib of vertebra 8 +UBERON_0002204 musculoskeletal system UBERON_4300238 pored lateral line scale +UBERON_0002204 musculoskeletal system UBERON_4300240 rostral ossicle +UBERON_0002204 musculoskeletal system UBERON_4300242 lateral line scale 6 +UBERON_0002204 musculoskeletal system UBERON_4300243 premaxillary tooth 2 +UBERON_0002204 musculoskeletal system UBERON_4300244 premaxillary tooth 3 +UBERON_0002204 musculoskeletal system UBERON_4300246 dentary tooth 2 +UBERON_0002204 musculoskeletal system UBERON_4300247 dentary tooth 3 +UBERON_0002204 musculoskeletal system UBERON_4300248 fused hypural 1 and 2 +UBERON_0002204 musculoskeletal system UBERON_4300249 lateral occipital foramen +UBERON_0002204 musculoskeletal system UBERON_4300250 ventral caudal procurrent ray 3 +UBERON_0002204 musculoskeletal system UBERON_4300251 ventral caudal procurrent ray 4 +UBERON_0002204 musculoskeletal system UBERON_4300252 ethmo-palatine cartilage +UBERON_0002204 musculoskeletal system UBERON_4300261 pectoral fin hook +UBERON_0002204 musculoskeletal system UBERON_4300262 pelvic fin hook +UBERON_0002204 musculoskeletal system UBERON_4300263 supraneural 4 cartilage +UBERON_0002204 musculoskeletal system UBERON_4300264 supraneural 5 cartilage +UBERON_0002204 musculoskeletal system UBERON_4300265 supraneural 6 cartilage +UBERON_0002204 musculoskeletal system UBERON_4300266 supraneural 7 cartilage +UBERON_0002204 musculoskeletal system UBERON_4300267 supraneural 8 cartilage +UBERON_0002204 musculoskeletal system UBERON_4300268 supraneural 9 cartilage +UBERON_0002204 musculoskeletal system UBERON_4300269 epioccipital bridge +UBERON_0002204 musculoskeletal system UBERON_4300270 outer tooth row of premaxilla +UBERON_0002204 musculoskeletal system UBERON_4300271 interneural spine cartilage +UBERON_0002204 musculoskeletal system UBERON_4300272 interhaemal spine cartilage +UBERON_0002204 musculoskeletal system UBERON_4300274 adipose fin ray +UBERON_0002204 musculoskeletal system UBERON_4300275 suborbital stay +UBERON_0002204 musculoskeletal system UBERON_4300279 outer tooth row of dentary +UBERON_0002204 musculoskeletal system UBERON_4300280 metapterygoid tooth +UBERON_0002204 musculoskeletal system UBERON_4300281 dorsal fin hook +UBERON_0002204 musculoskeletal system UBERON_4300282 dorsal myorhabdoid bone +UBERON_0002204 musculoskeletal system UBERON_4300283 ventral myorhabdoid bone +UBERON_0002204 musculoskeletal system UBERON_4300284 fin hook +UBERON_0002204 musculoskeletal system UBERON_4300285 second preethmoid cartilage +UBERON_0002204 musculoskeletal system UBERON_4300286 second preethmoid element +UBERON_0002204 musculoskeletal system UBERON_4400000 metapterygium cartilage +UBERON_0002204 musculoskeletal system UBERON_4400001 ceratotrichium +UBERON_0002204 musculoskeletal system UBERON_4400005 fin ray +UBERON_0002204 musculoskeletal system UBERON_4400006 elastoidin fin ray +UBERON_0002204 musculoskeletal system UBERON_4400007 camptotrichium +UBERON_0002204 musculoskeletal system UBERON_4440008 fin radial skeleton +UBERON_0002204 musculoskeletal system UBERON_4440009 pectoral fin radial skeleton +UBERON_0002204 musculoskeletal system UBERON_4440010 pelvic fin radial skeleton +UBERON_0002204 musculoskeletal system UBERON_4440011 paired fin lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4500002 upper uroneural +UBERON_0002204 musculoskeletal system UBERON_4500003 predorsal scale +UBERON_0002204 musculoskeletal system UBERON_4500004 adipose fin skeleton +UBERON_0002204 musculoskeletal system UBERON_4500005 prenasal ossicle +UBERON_0002204 musculoskeletal system UBERON_4500006 anal fin ray +UBERON_0002204 musculoskeletal system UBERON_4500007 pectoral fin ray +UBERON_0002204 musculoskeletal system UBERON_4500008 median fin lepidotrichium +UBERON_0002204 musculoskeletal system UBERON_4500009 paired fin spine +UBERON_0002204 musculoskeletal system UBERON_4500010 unbranched pectoral fin ray +UBERON_0002204 musculoskeletal system UBERON_4500011 unbranched pelvic fin ray +UBERON_0002204 musculoskeletal system UBERON_4500012 hypobranchial series +UBERON_0002204 musculoskeletal system UBERON_4500013 pharyngobranchial series +UBERON_0002204 musculoskeletal system UBERON_4500014 basibranchial series +UBERON_0002204 musculoskeletal system UBERON_4500016 premaxilla articular process +UBERON_0002204 musculoskeletal system UBERON_4500017 interarcual bone +UBERON_0002204 musculoskeletal system UBERON_4500018 premaxilla maxillary process +UBERON_0002204 musculoskeletal system UBERON_4500020 pelvic fin distal radial cartilage +UBERON_0002204 musculoskeletal system UBERON_5101463 manual digit 1 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5101466 pedal digit digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5102389 manual digit digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5102544 individual digit of digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103622 manual digit 2 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103623 manual digit 3 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103624 manual digit 4 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103625 manual digit 5 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103631 pedal digit 1 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103632 pedal digit 2 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103633 pedal digit 3 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103634 pedal digit 4 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5103635 pedal digit 5 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5106048 digit 1 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5106049 digit 2 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5106050 digit 3 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5106051 digit 4 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5106052 digit 5 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5111981 manual digit 6 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5111982 manual digit 7 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5111983 manual digit 8 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5111984 pedal digit 6 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5112137 pedal digit 7 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5112138 pedal digit 8 digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5112260 alular digit digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5112261 manual major digit (Aves) digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_5112262 manual minor digit (Aves) digitopodial skeleton +UBERON_0002204 musculoskeletal system UBERON_7500033 distal-most point of medial condyle of femur +UBERON_0002204 musculoskeletal system UBERON_7500034 distal-most point of trochlea of humerus +UBERON_0002204 musculoskeletal system UBERON_7500046 proximal-most point of head of femur +UBERON_0002204 musculoskeletal system UBERON_7500047 proximal-most point of head of humerus +UBERON_0002204 musculoskeletal system UBERON_7500048 proximal-most point of ventral tubercle of humerus +UBERON_0002204 musculoskeletal system UBERON_7500049 proximal-most point of greater trochanter of femur +UBERON_0002204 musculoskeletal system UBERON_7500052 lower fourth secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_7500053 lower fourth secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_7500054 lower third secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_7500055 molar tooth 4 +UBERON_0002204 musculoskeletal system UBERON_7500056 premolar 3 +UBERON_0002204 musculoskeletal system UBERON_7500057 upper fourth secondary molar tooth +UBERON_0002204 musculoskeletal system UBERON_7500058 upper fourth secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_7500059 upper third secondary premolar tooth +UBERON_0002204 musculoskeletal system UBERON_7500061 trochlear ridge of humerus +UBERON_0002204 musculoskeletal system UBERON_7500062 tibial tuberosity +UBERON_0002204 musculoskeletal system UBERON_7500063 trochlea of talus +UBERON_0002204 musculoskeletal system UBERON_7500064 trochlear groove of talus +UBERON_0002204 musculoskeletal system UBERON_7500065 condyle of talus +UBERON_0002204 musculoskeletal system UBERON_7500066 medial condyle of talus +UBERON_0002204 musculoskeletal system UBERON_7500067 lateral condyle of talus +UBERON_0002204 musculoskeletal system UBERON_7500068 ridge of medial condyle of talus +UBERON_0002204 musculoskeletal system UBERON_7500069 ridge of lateral condyle of talus +UBERON_0002204 musculoskeletal system UBERON_7500070 sulcus tali +UBERON_0002204 musculoskeletal system UBERON_7500071 rostrum +UBERON_0002204 musculoskeletal system UBERON_7500073 left nasal bone +UBERON_0002204 musculoskeletal system UBERON_7500074 right nasal bone +UBERON_0002204 musculoskeletal system UBERON_7500075 left zygomatic arch +UBERON_0002204 musculoskeletal system UBERON_7500076 right zygomatic arch +UBERON_0002204 musculoskeletal system UBERON_7500077 trochlea of femur +UBERON_0002204 musculoskeletal system UBERON_7500078 styloid process of radius +UBERON_0002204 musculoskeletal system UBERON_7500079 ulnar notch of radius +UBERON_0002204 musculoskeletal system UBERON_7500080 articular surface for carpals +UBERON_0002204 musculoskeletal system UBERON_7500081 articular surface for the tibia on the talus +UBERON_0002204 musculoskeletal system UBERON_7500083 greater palatine foramen +UBERON_0002204 musculoskeletal system UBERON_7500084 lesser palatine foramen +UBERON_0002204 musculoskeletal system UBERON_7500085 endodontium +UBERON_0002204 musculoskeletal system UBERON_7500089 posterior articular facet for talus of calcaneus +UBERON_0002204 musculoskeletal system UBERON_7500091 middle articular facet for talus of calcaneus +UBERON_0002204 musculoskeletal system UBERON_7500092 anterior articular facet for talus of calcaneus +UBERON_0002204 musculoskeletal system UBERON_7500093 calcaneal body +UBERON_0002204 musculoskeletal system UBERON_7500094 tubercle of calcaneus +UBERON_0002204 musculoskeletal system UBERON_7500095 lateral tubercle of calcaneus +UBERON_0002204 musculoskeletal system UBERON_7500096 medial tubercle of calcaneus +UBERON_0002204 musculoskeletal system UBERON_7500101 antorbital notch +UBERON_0002204 musculoskeletal system UBERON_7500102 preorbital bone region +UBERON_0002204 musculoskeletal system UBERON_7500103 preorbital fossa +UBERON_0002204 musculoskeletal system UBERON_7500105 coracoid process of calcaneus +UBERON_0002204 musculoskeletal system UBERON_8000008 cementocyte lacuna +UBERON_0002204 musculoskeletal system UBERON_8410079 red bone marrow of iliac crest +UBERON_0002204 musculoskeletal system UBERON_8410080 red bone marrow of sternum +UBERON_0002330 exocrine system UBERON_0000017 exocrine pancreas +UBERON_0002330 exocrine system UBERON_0000325 gastric gland +UBERON_0002330 exocrine system UBERON_0000359 preputial gland +UBERON_0002330 exocrine system UBERON_0000382 apocrine sweat gland +UBERON_0002330 exocrine system UBERON_0000409 serous gland +UBERON_0002330 exocrine system UBERON_0000414 mucous gland +UBERON_0002330 exocrine system UBERON_0000423 eccrine sweat gland +UBERON_0002330 exocrine system UBERON_0000460 major vestibular gland +UBERON_0002330 exocrine system UBERON_0000461 minor vestibular gland +UBERON_0002330 exocrine system UBERON_0001044 saliva-secreting gland +UBERON_0002330 exocrine system UBERON_0001064 ventral pancreatic duct +UBERON_0002330 exocrine system UBERON_0001065 parotid main excretory duct +UBERON_0002330 exocrine system UBERON_0001113 lobe of liver +UBERON_0002330 exocrine system UBERON_0001114 right lobe of liver +UBERON_0002330 exocrine system UBERON_0001115 left lobe of liver +UBERON_0002330 exocrine system UBERON_0001116 quadrate lobe of liver +UBERON_0002330 exocrine system UBERON_0001117 caudate lobe of liver +UBERON_0002330 exocrine system UBERON_0001143 hepatic vein +UBERON_0002330 exocrine system UBERON_0001149 bare area of liver +UBERON_0002330 exocrine system UBERON_0001171 portal lobule +UBERON_0002330 exocrine system UBERON_0001172 hepatic acinus +UBERON_0002330 exocrine system UBERON_0001212 duodenal gland +UBERON_0002330 exocrine system UBERON_0001246 interlobular bile duct +UBERON_0002330 exocrine system UBERON_0001247 falciform ligament +UBERON_0002330 exocrine system UBERON_0001263 pancreatic acinus +UBERON_0002330 exocrine system UBERON_0001279 portal triad +UBERON_0002330 exocrine system UBERON_0001280 liver parenchyma +UBERON_0002330 exocrine system UBERON_0001281 hepatic sinusoid +UBERON_0002330 exocrine system UBERON_0001282 intralobular bile duct +UBERON_0002330 exocrine system UBERON_0001283 bile canaliculus +UBERON_0002330 exocrine system UBERON_0001338 urethral gland +UBERON_0002330 exocrine system UBERON_0001736 submandibular gland +UBERON_0002330 exocrine system UBERON_0001765 mammary duct +UBERON_0002330 exocrine system UBERON_0001817 lacrimal gland +UBERON_0002330 exocrine system UBERON_0001818 tarsal gland +UBERON_0002330 exocrine system UBERON_0001820 sweat gland +UBERON_0002330 exocrine system UBERON_0001821 sebaceous gland +UBERON_0002330 exocrine system UBERON_0001829 major salivary gland +UBERON_0002330 exocrine system UBERON_0001830 minor salivary gland +UBERON_0002330 exocrine system UBERON_0001831 parotid gland +UBERON_0002330 exocrine system UBERON_0001832 sublingual gland +UBERON_0002330 exocrine system UBERON_0001837 duct of salivary gland +UBERON_0002330 exocrine system UBERON_0001838 sublingual duct +UBERON_0002330 exocrine system UBERON_0001911 mammary gland +UBERON_0002330 exocrine system UBERON_0001912 lobule of mammary gland +UBERON_0002330 exocrine system UBERON_0002032 areola +UBERON_0002330 exocrine system UBERON_0002107 liver +UBERON_0002330 exocrine system UBERON_0002232 olfactory gland +UBERON_0002330 exocrine system UBERON_0002334 submandibular duct +UBERON_0002330 exocrine system UBERON_0002365 exocrine gland +UBERON_0002330 exocrine system UBERON_0002366 bulbo-urethral gland +UBERON_0002330 exocrine system UBERON_0002447 palatine gland +UBERON_0002330 exocrine system UBERON_0002451 endometrial gland +UBERON_0002330 exocrine system UBERON_0003214 mammary gland alveolus +UBERON_0002330 exocrine system UBERON_0003244 epithelium of mammary gland +UBERON_0002330 exocrine system UBERON_0003326 mesenchyme of mammary gland +UBERON_0002330 exocrine system UBERON_0003359 epithelium of submandibular gland +UBERON_0002330 exocrine system UBERON_0003360 epithelium of parotid gland +UBERON_0002330 exocrine system UBERON_0003361 epithelium of sublingual gland +UBERON_0002330 exocrine system UBERON_0003409 gland of tongue +UBERON_0002330 exocrine system UBERON_0003418 mesenchyme of submandibular gland +UBERON_0002330 exocrine system UBERON_0003419 mesenchyme of parotid +UBERON_0002330 exocrine system UBERON_0003420 mesenchyme of sublingual gland +UBERON_0002330 exocrine system UBERON_0003484 eye sebaceous gland +UBERON_0002330 exocrine system UBERON_0003485 vagina sebaceous gland +UBERON_0002330 exocrine system UBERON_0003487 skin sebaceous gland +UBERON_0002330 exocrine system UBERON_0003488 abdominal mammary gland +UBERON_0002330 exocrine system UBERON_0003584 mammary gland connective tissue +UBERON_0002330 exocrine system UBERON_0003704 intrahepatic bile duct +UBERON_0002330 exocrine system UBERON_0003985 major sublingual duct +UBERON_0002330 exocrine system UBERON_0003986 minor sublingual duct +UBERON_0002330 exocrine system UBERON_0004000 tarsal gland acinus +UBERON_0002330 exocrine system UBERON_0004058 biliary ductule +UBERON_0002330 exocrine system UBERON_0004180 mammary gland fat +UBERON_0002330 exocrine system UBERON_0004182 mammary gland cord +UBERON_0002330 exocrine system UBERON_0004187 Harderian gland +UBERON_0002330 exocrine system UBERON_0004235 mammary gland smooth muscle +UBERON_0002330 exocrine system UBERON_0004647 liver lobule +UBERON_0002330 exocrine system UBERON_0004694 Harderian gland epithelium +UBERON_0002330 exocrine system UBERON_0004789 larynx mucous gland +UBERON_0002330 exocrine system UBERON_0004790 skin mucous gland +UBERON_0002330 exocrine system UBERON_0004793 secretion of exocrine pancreas +UBERON_0002330 exocrine system UBERON_0004809 salivary gland epithelium +UBERON_0002330 exocrine system UBERON_0004817 lacrimal gland epithelium +UBERON_0002330 exocrine system UBERON_0004823 intrahepatic bile duct epithelium +UBERON_0002330 exocrine system UBERON_0005050 liver papillary process +UBERON_0002330 exocrine system UBERON_0005199 cervical mammary gland +UBERON_0002330 exocrine system UBERON_0005200 thoracic mammary gland +UBERON_0002330 exocrine system UBERON_0005203 trachea gland +UBERON_0002330 exocrine system UBERON_0005221 liver right lobe parenchyma +UBERON_0002330 exocrine system UBERON_0005222 liver left lobe parenchyma +UBERON_0002330 exocrine system UBERON_0005301 male preputial gland +UBERON_0002330 exocrine system UBERON_0005302 female preputial gland +UBERON_0002330 exocrine system UBERON_0005313 mammary duct terminal end bud +UBERON_0002330 exocrine system UBERON_0005429 dorsal pancreatic duct +UBERON_0002330 exocrine system UBERON_0005452 hepatic cord +UBERON_0002330 exocrine system UBERON_0005605 intrahepatic part of hepatic duct +UBERON_0002330 exocrine system UBERON_0006330 anterior lingual gland +UBERON_0002330 exocrine system UBERON_0006588 round ligament of liver +UBERON_0002330 exocrine system UBERON_0006727 liver left lateral lobe +UBERON_0002330 exocrine system UBERON_0006728 liver left medial lobe +UBERON_0002330 exocrine system UBERON_0006729 liver perisinusoidal space +UBERON_0002330 exocrine system UBERON_0006841 central vein of liver +UBERON_0002330 exocrine system UBERON_0006877 vasculature of liver +UBERON_0002330 exocrine system UBERON_0006954 mammary gland myoepithelium +UBERON_0002330 exocrine system UBERON_0007324 pancreatic lobule +UBERON_0002330 exocrine system UBERON_0007329 pancreatic duct +UBERON_0002330 exocrine system UBERON_0007773 scrotal sweat gland +UBERON_0002330 exocrine system UBERON_0007802 uropygial gland +UBERON_0002330 exocrine system UBERON_0008424 inguinal mammary gland +UBERON_0002330 exocrine system UBERON_0008859 cardiac gastric gland +UBERON_0002330 exocrine system UBERON_0008860 intermediate gastric gland +UBERON_0002330 exocrine system UBERON_0008861 pyloric gastric gland +UBERON_0002330 exocrine system UBERON_0008974 apocrine gland +UBERON_0002330 exocrine system UBERON_0008976 snake venom gland +UBERON_0002330 exocrine system UBERON_0008989 submucosal esophageal gland +UBERON_0002330 exocrine system UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0002330 exocrine system UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0002330 exocrine system UBERON_0009708 dorsal pancreas +UBERON_0002330 exocrine system UBERON_0009709 ventral pancreas +UBERON_0002330 exocrine system UBERON_0009970 epithelium of pancreatic duct +UBERON_0002330 exocrine system UBERON_0009971 principal gastric gland +UBERON_0002330 exocrine system UBERON_0010038 fundic gastric gland +UBERON_0002330 exocrine system UBERON_0010047 oral gland +UBERON_0002330 exocrine system UBERON_0010048 Duvernoy's gland +UBERON_0002330 exocrine system UBERON_0010049 supralabial gland +UBERON_0002330 exocrine system UBERON_0010050 infralabial gland +UBERON_0002330 exocrine system UBERON_0010150 duct of major vestibular gland +UBERON_0002330 exocrine system UBERON_0010151 duct of bulbourethral gland +UBERON_0002330 exocrine system UBERON_0010183 liver trabecula +UBERON_0002330 exocrine system UBERON_0010186 male urethral gland +UBERON_0002330 exocrine system UBERON_0010187 female urethral gland +UBERON_0002330 exocrine system UBERON_0010240 zygomatic gland +UBERON_0002330 exocrine system UBERON_0010241 molar gland +UBERON_0002330 exocrine system UBERON_0010242 anterior buccal gland +UBERON_0002330 exocrine system UBERON_0010243 merocrine gland +UBERON_0002330 exocrine system UBERON_0010704 parenchyma of quadrate lobe of liver +UBERON_0002330 exocrine system UBERON_0010706 parenchyma of caudate lobe of liver +UBERON_0002330 exocrine system UBERON_0011146 silk gland +UBERON_0002330 exocrine system UBERON_0011147 Verson's gland +UBERON_0002330 exocrine system UBERON_0011148 submucosal gland +UBERON_0002330 exocrine system UBERON_0011149 Marshall's gland +UBERON_0002330 exocrine system UBERON_0011186 Krause's gland +UBERON_0002330 exocrine system UBERON_0011252 scent gland +UBERON_0002330 exocrine system UBERON_0011253 gland of anal sac +UBERON_0002330 exocrine system UBERON_0011263 femoral gland +UBERON_0002330 exocrine system UBERON_0011264 femoral pore +UBERON_0002330 exocrine system UBERON_0011579 venom gland +UBERON_0002330 exocrine system UBERON_0011580 platypus crural gland +UBERON_0002330 exocrine system UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0002330 exocrine system UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0002330 exocrine system UBERON_0011827 areolar gland +UBERON_0002330 exocrine system UBERON_0011830 duct of lesser vestibular gland +UBERON_0002330 exocrine system UBERON_0011844 duct of areolar gland +UBERON_0002330 exocrine system UBERON_0011845 duct of sebaceous gland +UBERON_0002330 exocrine system UBERON_0011846 acinus of sebaceous gland +UBERON_0002330 exocrine system UBERON_0011847 acinus of parotid gland +UBERON_0002330 exocrine system UBERON_0011850 acinus of salivary gland +UBERON_0002330 exocrine system UBERON_0011854 acinus of areolar gland +UBERON_0002330 exocrine system UBERON_0011856 acinus of lactiferous gland +UBERON_0002330 exocrine system UBERON_0011857 acinus of lacrimal gland +UBERON_0002330 exocrine system UBERON_0011858 acinus of exocrine gland +UBERON_0002330 exocrine system UBERON_0011950 mammary gland luminal epithelium +UBERON_0002330 exocrine system UBERON_0011955 left hepatic vein +UBERON_0002330 exocrine system UBERON_0011956 right hepatic vein +UBERON_0002330 exocrine system UBERON_0011957 middle hepatic vein +UBERON_0002330 exocrine system UBERON_0012102 buccal salivary gland +UBERON_0002330 exocrine system UBERON_0012103 suspensory ligament of breast +UBERON_0002330 exocrine system UBERON_0012177 skin apocrine gland +UBERON_0002330 exocrine system UBERON_0012247 cervical gland +UBERON_0002330 exocrine system UBERON_0012278 gland of nasal mucosa +UBERON_0002330 exocrine system UBERON_0012281 perianal sebaceous gland +UBERON_0002330 exocrine system UBERON_0012282 mammary fat pad +UBERON_0002330 exocrine system UBERON_0012344 holocrine gland +UBERON_0002330 exocrine system UBERON_0013075 venom gland duct +UBERON_0002330 exocrine system UBERON_0013138 coronary ligament of liver +UBERON_0002330 exocrine system UBERON_0013139 ligament of liver +UBERON_0002330 exocrine system UBERON_0013211 cerumen gland +UBERON_0002330 exocrine system UBERON_0013224 Ciaccio's gland +UBERON_0002330 exocrine system UBERON_0013226 accessory lacrimal gland +UBERON_0002330 exocrine system UBERON_0013227 crypt of Henle +UBERON_0002330 exocrine system UBERON_0013228 sweat gland of eyelid +UBERON_0002330 exocrine system UBERON_0013231 sebaceous gland of eyelid +UBERON_0002330 exocrine system UBERON_0013232 serous acinus +UBERON_0002330 exocrine system UBERON_0013233 supraorbital gland +UBERON_0002330 exocrine system UBERON_0013234 violet gland +UBERON_0002330 exocrine system UBERON_0013475 gustatory gland +UBERON_0002330 exocrine system UBERON_0013697 exocrine pancreas epithelium +UBERON_0002330 exocrine system UBERON_0014391 palmar/plantar sweat gland +UBERON_0002330 exocrine system UBERON_0014400 hepatic sinusoidal space +UBERON_0002330 exocrine system UBERON_0014717 mucous acinus +UBERON_0002330 exocrine system UBERON_0014727 intercalated duct of salivary gland +UBERON_0002330 exocrine system UBERON_0014729 striated duct of salivary gland +UBERON_0002330 exocrine system UBERON_0014779 liver reticuloendothelial system +UBERON_0002330 exocrine system UBERON_0015132 extralobar lactiferous duct +UBERON_0002330 exocrine system UBERON_0015133 terminal lactiferous duct +UBERON_0002330 exocrine system UBERON_0015134 main lactiferous duct +UBERON_0002330 exocrine system UBERON_0015135 primary lactiferous duct +UBERON_0002330 exocrine system UBERON_0015136 secondary lactiferous duct +UBERON_0002330 exocrine system UBERON_0015137 tertiary lactiferous duct +UBERON_0002330 exocrine system UBERON_0015138 quarternary lactiferous duct +UBERON_0002330 exocrine system UBERON_0015142 falciform fat +UBERON_0002330 exocrine system UBERON_0015151 Harderian gland duct +UBERON_0002330 exocrine system UBERON_0015213 barnacle cement gland +UBERON_0002330 exocrine system UBERON_0015251 modified sebaceous gland +UBERON_0002330 exocrine system UBERON_0015280 pancreas left lobe +UBERON_0002330 exocrine system UBERON_0015281 pancreas right lobe +UBERON_0002330 exocrine system UBERON_0015445 anterior lingual gland duct +UBERON_0002330 exocrine system UBERON_0015455 accessory hepatic vein +UBERON_0002330 exocrine system UBERON_0015481 left hepatic artery +UBERON_0002330 exocrine system UBERON_0015482 right hepatic artery +UBERON_0002330 exocrine system UBERON_0015766 epithelium of duct of salivary gland +UBERON_0002330 exocrine system UBERON_0015784 duct of olfactory gland +UBERON_0002330 exocrine system UBERON_0015785 acinus of olfactory gland +UBERON_0002330 exocrine system UBERON_0015796 liver blood vessel +UBERON_0002330 exocrine system UBERON_0016478 liver stroma +UBERON_0002330 exocrine system UBERON_0016479 capsule of liver +UBERON_0002330 exocrine system UBERON_0016480 interlobular stroma of liver +UBERON_0002330 exocrine system UBERON_0016852 skin scent gland +UBERON_0002330 exocrine system UBERON_0016853 interdigital gland +UBERON_0002330 exocrine system UBERON_0016890 intrahepatic branch of portal vein +UBERON_0002330 exocrine system UBERON_0017161 hemipenial mucuous gland +UBERON_0002330 exocrine system UBERON_0017162 hemipenial holocrine gland +UBERON_0002330 exocrine system UBERON_0017653 intermaxillary salivary gland +UBERON_0002330 exocrine system UBERON_0017654 buccal gland +UBERON_0002330 exocrine system UBERON_0018140 mammary lobe +UBERON_0002330 exocrine system UBERON_0018232 axillary sweat gland +UBERON_0002330 exocrine system UBERON_0018233 gland of Zeis +UBERON_0002330 exocrine system UBERON_0019190 mucous gland of lung +UBERON_0002330 exocrine system UBERON_0019319 exocrine gland of integumental system +UBERON_0002330 exocrine system UBERON_0019324 intraorbital lacrimal gland +UBERON_0002330 exocrine system UBERON_0019325 exorbital lacrimal gland +UBERON_0002330 exocrine system UBERON_0022360 male mammary gland duct +UBERON_0002330 exocrine system UBERON_0034762 areolar sweat gland +UBERON_0002330 exocrine system UBERON_0034770 bulbourethral gland epithelium +UBERON_0002330 exocrine system UBERON_0034934 Weber's gland +UBERON_0002330 exocrine system UBERON_0035045 parotid gland intralobular duct +UBERON_0002330 exocrine system UBERON_0035046 parotid gland intercalated duct +UBERON_0002330 exocrine system UBERON_0035047 parotid gland striated duct +UBERON_0002330 exocrine system UBERON_0035048 parotid gland excretory duct +UBERON_0002330 exocrine system UBERON_0035049 excretory duct of salivary gland +UBERON_0002330 exocrine system UBERON_0035053 interlobular duct of salivary gland +UBERON_0002330 exocrine system UBERON_0035073 duct of eccrine sweat gland +UBERON_0002330 exocrine system UBERON_0035074 duct of apocrine sweat gland +UBERON_0002330 exocrine system UBERON_0035076 parotid gland myoepithelium +UBERON_0002330 exocrine system UBERON_0035077 lateral nasal gland +UBERON_0002330 exocrine system UBERON_0035078 parotid gland interlobular duct +UBERON_0002330 exocrine system UBERON_0035444 triangular ligament of liver +UBERON_0002330 exocrine system UBERON_0035756 capillary network of liver +UBERON_0002330 exocrine system UBERON_0036245 parenchyma of mammary gland +UBERON_0002330 exocrine system UBERON_0039222 cystic artery +UBERON_0002330 exocrine system UBERON_1000022 Zymbal's gland +UBERON_0002330 exocrine system UBERON_2005174 ventral liver lobe +UBERON_0002330 exocrine system UBERON_2005346 extrapancreatic duct +UBERON_0002330 exocrine system UBERON_3010404 capillary system of liver +UBERON_0002330 exocrine system UBERON_8400001 hepatic acinus zone 1 +UBERON_0002330 exocrine system UBERON_8400002 hepatic acinus zone 3 +UBERON_0002330 exocrine system UBERON_8400003 hepatic acinus zone 2 +UBERON_0002330 exocrine system UBERON_8400005 metabolic zone of liver +UBERON_0002330 exocrine system UBERON_8400006 liver lobule periportal region +UBERON_0002330 exocrine system UBERON_8400007 liver lobule centrilobular region +UBERON_0002330 exocrine system UBERON_8400008 liver lobule midzonal region +UBERON_0002330 exocrine system UBERON_8400021 liver serosa +UBERON_0002330 exocrine system UBERON_8400023 liver subserosa +UBERON_0002330 exocrine system UBERON_8400024 subcapsular region of liver +UBERON_0002330 exocrine system UBERON_8410043 bronchus submucosal gland +UBERON_0002330 exocrine system UBERON_8410077 airway submucosal gland +UBERON_0002384 connective tissue CL_0000057 fibroblast +UBERON_0002384 connective tissue CL_0000057 transformed skin fibroblast +UBERON_0002390 hematopoietic system CL_0000233 platelet +UBERON_0002390 hematopoietic system CL_0000576 monocyte +UBERON_0002390 hematopoietic system CL_0000623 natural killer cell +UBERON_0002390 hematopoietic system CL_0000738 leukocyte +UBERON_0002390 hematopoietic system UBERON_0000040 Leydig's organ +UBERON_0002390 hematopoietic system UBERON_0000178 blood +UBERON_0002390 hematopoietic system UBERON_0000332 yellow bone marrow +UBERON_0002390 hematopoietic system UBERON_0000361 red bone marrow +UBERON_0002390 hematopoietic system UBERON_0001248 hilum of spleen +UBERON_0002390 hematopoietic system UBERON_0001249 spleen lymphoid follicle +UBERON_0002390 hematopoietic system UBERON_0001250 red pulp of spleen +UBERON_0002390 hematopoietic system UBERON_0001251 marginal zone of spleen +UBERON_0002390 hematopoietic system UBERON_0001265 trabecula of spleen +UBERON_0002390 hematopoietic system UBERON_0001266 splenic cord +UBERON_0002390 hematopoietic system UBERON_0001959 white pulp of spleen +UBERON_0002390 hematopoietic system UBERON_0001960 periarterial lymphatic sheath +UBERON_0002390 hematopoietic system UBERON_0001969 blood plasma +UBERON_0002390 hematopoietic system UBERON_0001977 blood serum +UBERON_0002390 hematopoietic system UBERON_0002106 spleen +UBERON_0002390 hematopoietic system UBERON_0002122 capsule of thymus +UBERON_0002390 hematopoietic system UBERON_0002123 cortex of thymus +UBERON_0002390 hematopoietic system UBERON_0002124 medulla of thymus +UBERON_0002390 hematopoietic system UBERON_0002125 thymus lobule +UBERON_0002390 hematopoietic system UBERON_0002370 thymus +UBERON_0002390 hematopoietic system UBERON_0002371 bone marrow +UBERON_0002390 hematopoietic system UBERON_0003105 dorsal lateral plate region +UBERON_0002390 hematopoietic system UBERON_0003483 thymus lymphoid tissue +UBERON_0002390 hematopoietic system UBERON_0003846 thymus epithelium +UBERON_0002390 hematopoietic system UBERON_0003903 bursa of Fabricius +UBERON_0002390 hematopoietic system UBERON_0003904 bursal plica +UBERON_0002390 hematopoietic system UBERON_0003905 bursal follicle +UBERON_0002390 hematopoietic system UBERON_0003910 splenic sinusoid +UBERON_0002390 hematopoietic system UBERON_0003987 Hassall's corpuscle +UBERON_0002390 hematopoietic system UBERON_0003988 thymus corticomedullary boundary +UBERON_0002390 hematopoietic system UBERON_0004041 spleen primary B follicle +UBERON_0002390 hematopoietic system UBERON_0004042 spleen secondary B follicle +UBERON_0002390 hematopoietic system UBERON_0004177 hemopoietic organ +UBERON_0002390 hematopoietic system UBERON_0004238 spleen smooth muscle +UBERON_0002390 hematopoietic system UBERON_0004641 spleen capsule +UBERON_0002390 hematopoietic system UBERON_0004791 thymus trabecula +UBERON_0002390 hematopoietic system UBERON_0005196 spleen germinal center +UBERON_0002390 hematopoietic system UBERON_0005353 spleen perifollicular zone +UBERON_0002390 hematopoietic system UBERON_0005457 left thymus lobe +UBERON_0002390 hematopoietic system UBERON_0005469 right thymus lobe +UBERON_0002390 hematopoietic system UBERON_0005483 thymus lobe +UBERON_0002390 hematopoietic system UBERON_0006856 interrenal gland +UBERON_0002390 hematopoietic system UBERON_0006936 thymus subcapsular epithelium +UBERON_0002390 hematopoietic system UBERON_0007132 head kidney +UBERON_0002390 hematopoietic system UBERON_0007195 stroma of bone marrow +UBERON_0002390 hematopoietic system UBERON_0009099 typhlosole +UBERON_0002390 hematopoietic system UBERON_0009100 nephric fold +UBERON_0002390 hematopoietic system UBERON_0009102 supraneural body +UBERON_0002390 hematopoietic system UBERON_0009114 cervical thymus +UBERON_0002390 hematopoietic system UBERON_0009115 thoracic thymus +UBERON_0002390 hematopoietic system UBERON_0009116 thymoid +UBERON_0002390 hematopoietic system UBERON_0009967 spleen venous sinus +UBERON_0002390 hematopoietic system UBERON_0010014 epigonal organ +UBERON_0002390 hematopoietic system UBERON_0010015 ventral patch of Leydig's organ +UBERON_0002390 hematopoietic system UBERON_0010051 dorsal patch of Leydig's organ +UBERON_0002390 hematopoietic system UBERON_0010174 Schweigger-Seidel sheath +UBERON_0002390 hematopoietic system UBERON_0010398 spleen marginal sinus +UBERON_0002390 hematopoietic system UBERON_0010399 spleen trabecular artery +UBERON_0002390 hematopoietic system UBERON_0010400 spleen trabecular vein +UBERON_0002390 hematopoietic system UBERON_0010401 spleen central arteriole +UBERON_0002390 hematopoietic system UBERON_0010421 spleen B cell corona +UBERON_0002390 hematopoietic system UBERON_0010756 spleen follicular dendritic cell network +UBERON_0002390 hematopoietic system UBERON_0012168 umbilical cord blood +UBERON_0002390 hematopoietic system UBERON_0012429 hematopoietic tissue +UBERON_0002390 hematopoietic system UBERON_0013119 haemal node +UBERON_0002390 hematopoietic system UBERON_0013132 penicillar arteriole +UBERON_0002390 hematopoietic system UBERON_0013755 arterial blood +UBERON_0002390 hematopoietic system UBERON_0013756 venous blood +UBERON_0002390 hematopoietic system UBERON_0013757 capillary blood +UBERON_0002390 hematopoietic system UBERON_0018244 superficial cervical thymus +UBERON_0002390 hematopoietic system UBERON_0018245 deep cervical thymus +UBERON_0002390 hematopoietic system UBERON_0018549 ventral wall of dorsal aorta +UBERON_0002390 hematopoietic system UBERON_0022292 splenic arteriole +UBERON_0002390 hematopoietic system UBERON_0036301 vasculature of spleen +UBERON_0002390 hematopoietic system UBERON_1000023 spleen pulp +UBERON_0002390 hematopoietic system UBERON_1000024 parenchyma of spleen +UBERON_0002390 hematopoietic system UBERON_2000033 intermediate cell mass of mesoderm +UBERON_0002390 hematopoietic system UBERON_2005029 rostral blood island +UBERON_0002390 hematopoietic system UBERON_8410079 red bone marrow of iliac crest +UBERON_0002390 hematopoietic system UBERON_8410080 red bone marrow of sternum +UBERON_0002390 hematopoietic system UBERON_8470000 placental blood +UBERON_0002405 immune system CL_0000084 CD4-positive T cell +UBERON_0002405 immune system CL_0000084 CD8-positive T cell +UBERON_0002405 immune system CL_0000236 B cell +UBERON_0002405 immune system CL_0000542 EBV-transformed lymphocyte +UBERON_0002405 immune system CL_0000576 monocyte +UBERON_0002405 immune system CL_0000623 natural killer cell +UBERON_0002405 immune system CL_0000738 leukocyte +UBERON_0002405 immune system UBERON_0000029 lymph node +UBERON_0002405 immune system UBERON_0000040 Leydig's organ +UBERON_0002405 immune system UBERON_0000332 yellow bone marrow +UBERON_0002405 immune system UBERON_0000361 red bone marrow +UBERON_0002405 immune system UBERON_0000363 reticuloendothelial system +UBERON_0002405 immune system UBERON_0000444 lymphoid follicle +UBERON_0002405 immune system UBERON_0001097 axillary lymph node +UBERON_0002405 immune system UBERON_0001211 Peyer's patch +UBERON_0002405 immune system UBERON_0001248 hilum of spleen +UBERON_0002405 immune system UBERON_0001249 spleen lymphoid follicle +UBERON_0002405 immune system UBERON_0001250 red pulp of spleen +UBERON_0002405 immune system UBERON_0001251 marginal zone of spleen +UBERON_0002405 immune system UBERON_0001265 trabecula of spleen +UBERON_0002405 immune system UBERON_0001266 splenic cord +UBERON_0002405 immune system UBERON_0001422 facial lymphatic vessel +UBERON_0002405 immune system UBERON_0001425 pectoral lymphatic vessel +UBERON_0002405 immune system UBERON_0001426 jugular lymphatic vessel +UBERON_0002405 immune system UBERON_0001473 lymphatic vessel +UBERON_0002405 immune system UBERON_0001542 inguinal lymph node +UBERON_0002405 immune system UBERON_0001543 popliteal lymph node +UBERON_0002405 immune system UBERON_0001631 thoracic duct +UBERON_0002405 immune system UBERON_0001732 pharyngeal tonsil +UBERON_0002405 immune system UBERON_0001735 tonsillar ring +UBERON_0002405 immune system UBERON_0001744 lymphoid tissue +UBERON_0002405 immune system UBERON_0001745 secondary nodular lymphoid tissue +UBERON_0002405 immune system UBERON_0001959 white pulp of spleen +UBERON_0002405 immune system UBERON_0001960 periarterial lymphatic sheath +UBERON_0002405 immune system UBERON_0001961 mucosa-associated lymphoid tissue +UBERON_0002405 immune system UBERON_0001962 gut-associated lymphoid tissue +UBERON_0002405 immune system UBERON_0001963 bronchial-associated lymphoid tissue +UBERON_0002405 immune system UBERON_0002006 cortex of lymph node +UBERON_0002405 immune system UBERON_0002007 medulla of lymph node +UBERON_0002405 immune system UBERON_0002042 lymphatic vessel endothelium +UBERON_0002405 immune system UBERON_0002106 spleen +UBERON_0002405 immune system UBERON_0002122 capsule of thymus +UBERON_0002405 immune system UBERON_0002123 cortex of thymus +UBERON_0002405 immune system UBERON_0002124 medulla of thymus +UBERON_0002405 immune system UBERON_0002125 thymus lobule +UBERON_0002405 immune system UBERON_0002194 capsule of lymph node +UBERON_0002405 immune system UBERON_0002195 trabecula of lymph node +UBERON_0002405 immune system UBERON_0002370 thymus +UBERON_0002405 immune system UBERON_0002371 bone marrow +UBERON_0002405 immune system UBERON_0002372 tonsil +UBERON_0002405 immune system UBERON_0002373 palatine tonsil +UBERON_0002405 immune system UBERON_0002391 lymph +UBERON_0002405 immune system UBERON_0002429 cervical lymph node +UBERON_0002405 immune system UBERON_0002465 lymphoid system +UBERON_0002405 immune system UBERON_0002507 abdominal lymph node +UBERON_0002405 immune system UBERON_0002508 celiac lymph node +UBERON_0002405 immune system UBERON_0002509 mesenteric lymph node +UBERON_0002405 immune system UBERON_0002520 submandibular lymph node +UBERON_0002405 immune system UBERON_0002524 mediastinal lymph node +UBERON_0002405 immune system UBERON_0002525 brachial lymph node +UBERON_0002405 immune system UBERON_0002526 lumbar lymph node +UBERON_0002405 immune system UBERON_0002527 pancreatic lymph node +UBERON_0002405 immune system UBERON_0002528 sacral lymph node +UBERON_0002405 immune system UBERON_0003425 renal lymph node +UBERON_0002405 immune system UBERON_0003453 large intestine Peyer's patch +UBERON_0002405 immune system UBERON_0003454 small intestine Peyer's patch +UBERON_0002405 immune system UBERON_0003456 respiratory system lymphatic vessel +UBERON_0002405 immune system UBERON_0003483 thymus lymphoid tissue +UBERON_0002405 immune system UBERON_0003529 respiratory system lymphatic vessel endothelium +UBERON_0002405 immune system UBERON_0003846 thymus epithelium +UBERON_0002405 immune system UBERON_0003910 splenic sinusoid +UBERON_0002405 immune system UBERON_0003949 tubal tonsil +UBERON_0002405 immune system UBERON_0003968 peripheral lymph node +UBERON_0002405 immune system UBERON_0003987 Hassall's corpuscle +UBERON_0002405 immune system UBERON_0003988 thymus corticomedullary boundary +UBERON_0002405 immune system UBERON_0004041 spleen primary B follicle +UBERON_0002405 immune system UBERON_0004042 spleen secondary B follicle +UBERON_0002405 immune system UBERON_0004232 lymphatic vessel smooth muscle +UBERON_0002405 immune system UBERON_0004238 spleen smooth muscle +UBERON_0002405 immune system UBERON_0004296 respiratory system lymphatic vessel smooth muscle +UBERON_0002405 immune system UBERON_0004536 lymph vasculature +UBERON_0002405 immune system UBERON_0004641 spleen capsule +UBERON_0002405 immune system UBERON_0004693 Peyer's patch epithelium +UBERON_0002405 immune system UBERON_0004697 Peyer's patch germinal center +UBERON_0002405 immune system UBERON_0004722 deep cervical lymph node +UBERON_0002405 immune system UBERON_0004791 thymus trabecula +UBERON_0002405 immune system UBERON_0004850 lymph node endothelium +UBERON_0002405 immune system UBERON_0004870 superficial cervical lymph node +UBERON_0002405 immune system UBERON_0005057 immune organ +UBERON_0002405 immune system UBERON_0005196 spleen germinal center +UBERON_0002405 immune system UBERON_0005207 tonsil capsule +UBERON_0002405 immune system UBERON_0005353 spleen perifollicular zone +UBERON_0002405 immune system UBERON_0005435 upper part of cisterna chyli +UBERON_0002405 immune system UBERON_0005457 left thymus lobe +UBERON_0002405 immune system UBERON_0005463 subcapsular sinus of lymph node +UBERON_0002405 immune system UBERON_0005469 right thymus lobe +UBERON_0002405 immune system UBERON_0005483 thymus lobe +UBERON_0002405 immune system UBERON_0005562 thymus primordium +UBERON_0002405 immune system UBERON_0006558 lymphatic part of lymphoid system +UBERON_0002405 immune system UBERON_0006561 non-lymphatic part of lymphoid system +UBERON_0002405 immune system UBERON_0006842 lymphatic capillary +UBERON_0002405 immune system UBERON_0006936 thymus subcapsular epithelium +UBERON_0002405 immune system UBERON_0007195 stroma of bone marrow +UBERON_0002405 immune system UBERON_0007250 lingual tonsil +UBERON_0002405 immune system UBERON_0007384 appendage lymph vessel +UBERON_0002405 immune system UBERON_0007385 pectoral appendage lymph vessel +UBERON_0002405 immune system UBERON_0007386 pelvic appendage lymph vessel +UBERON_0002405 immune system UBERON_0007643 node of ligamentum arteriosum +UBERON_0002405 immune system UBERON_0007644 thoracic lymph node +UBERON_0002405 immune system UBERON_0008817 thymus primordium endoderm +UBERON_0002405 immune system UBERON_0009006 deep inguinal lymph node +UBERON_0002405 immune system UBERON_0009007 superficial inguinal lymph node +UBERON_0002405 immune system UBERON_0009039 lymph node germinal center +UBERON_0002405 immune system UBERON_0009102 supraneural body +UBERON_0002405 immune system UBERON_0009114 cervical thymus +UBERON_0002405 immune system UBERON_0009115 thoracic thymus +UBERON_0002405 immune system UBERON_0009116 thymoid +UBERON_0002405 immune system UBERON_0009744 lymph node medullary sinus +UBERON_0002405 immune system UBERON_0009745 lymph node medullary cord +UBERON_0002405 immune system UBERON_0009967 spleen venous sinus +UBERON_0002405 immune system UBERON_0010014 epigonal organ +UBERON_0002405 immune system UBERON_0010015 ventral patch of Leydig's organ +UBERON_0002405 immune system UBERON_0010051 dorsal patch of Leydig's organ +UBERON_0002405 immune system UBERON_0010160 lumen of lymphatic vessel +UBERON_0002405 immune system UBERON_0010174 Schweigger-Seidel sheath +UBERON_0002405 immune system UBERON_0010266 arthropod hepatopancreas +UBERON_0002405 immune system UBERON_0010386 Peyer's patch follicle +UBERON_0002405 immune system UBERON_0010387 Peyer's patch T cell area +UBERON_0002405 immune system UBERON_0010392 B cell domain +UBERON_0002405 immune system UBERON_0010393 T cell domain +UBERON_0002405 immune system UBERON_0010394 lymphocyte domain +UBERON_0002405 immune system UBERON_0010395 lymph node primary follicle +UBERON_0002405 immune system UBERON_0010396 afferent lymphatic vessel +UBERON_0002405 immune system UBERON_0010397 efferent lymphatic vessel +UBERON_0002405 immune system UBERON_0010398 spleen marginal sinus +UBERON_0002405 immune system UBERON_0010399 spleen trabecular artery +UBERON_0002405 immune system UBERON_0010400 spleen trabecular vein +UBERON_0002405 immune system UBERON_0010401 spleen central arteriole +UBERON_0002405 immune system UBERON_0010416 lymph node B cell domain +UBERON_0002405 immune system UBERON_0010417 lymph node T cell domain +UBERON_0002405 immune system UBERON_0010420 lymph node germinal center mantle zone +UBERON_0002405 immune system UBERON_0010421 spleen B cell corona +UBERON_0002405 immune system UBERON_0010422 primary nodular lymphoid tissue +UBERON_0002405 immune system UBERON_0010423 primary lymphoid nodule of tonsil +UBERON_0002405 immune system UBERON_0010748 lymph node follicle +UBERON_0002405 immune system UBERON_0010753 lymph node secondary follicle +UBERON_0002405 immune system UBERON_0010754 germinal center +UBERON_0002405 immune system UBERON_0010755 secondary follicle corona +UBERON_0002405 immune system UBERON_0010756 spleen follicular dendritic cell network +UBERON_0002405 immune system UBERON_0011363 cranial lymph vasculature +UBERON_0002405 immune system UBERON_0011765 jugular lymph sac +UBERON_0002405 immune system UBERON_0012069 epithelium-associated lymphoid tissue +UBERON_0002405 immune system UBERON_0012181 tonsil crypt +UBERON_0002405 immune system UBERON_0012236 intercostal lymph node +UBERON_0002405 immune system UBERON_0012306 lateral cervical lymph node +UBERON_0002405 immune system UBERON_0012307 anterior cervical lymph node +UBERON_0002405 immune system UBERON_0012308 superficial lateral cervical lymph node +UBERON_0002405 immune system UBERON_0012309 superficial anterior cervical lymph node +UBERON_0002405 immune system UBERON_0012310 deep lateral cervical lymph node +UBERON_0002405 immune system UBERON_0012311 deep anterior cervical lymph node +UBERON_0002405 immune system UBERON_0012330 nasal-associated lymphoid tissue +UBERON_0002405 immune system UBERON_0013119 haemal node +UBERON_0002405 immune system UBERON_0013132 penicillar arteriole +UBERON_0002405 immune system UBERON_0013478 cecal tonsil +UBERON_0002405 immune system UBERON_0013688 tonsil germinal center +UBERON_0002405 immune system UBERON_0013689 appendix lymphoid tissue +UBERON_0002405 immune system UBERON_0013696 tonsil epithelium +UBERON_0002405 immune system UBERON_0014779 liver reticuloendothelial system +UBERON_0002405 immune system UBERON_0015453 subcutaneous lymph node +UBERON_0002405 immune system UBERON_0015469 splenic lymph node +UBERON_0002405 immune system UBERON_0015472 tracheobronchial lymph node +UBERON_0002405 immune system UBERON_0015857 parotid lymph node +UBERON_0002405 immune system UBERON_0015859 hepatic lymph node +UBERON_0002405 immune system UBERON_0015860 visceral abdominal lymph node +UBERON_0002405 immune system UBERON_0015863 gastric lymph node +UBERON_0002405 immune system UBERON_0015865 pancreaticosplenic lymph node +UBERON_0002405 immune system UBERON_0015866 pyloric lymph node +UBERON_0002405 immune system UBERON_0015867 cystic lymph node +UBERON_0002405 immune system UBERON_0015868 lymph node of epiploic foramen +UBERON_0002405 immune system UBERON_0015869 retropharyngeal lymph node +UBERON_0002405 immune system UBERON_0015870 lymph node of head +UBERON_0002405 immune system UBERON_0015871 facial lymph node +UBERON_0002405 immune system UBERON_0015872 mandibular lymph node +UBERON_0002405 immune system UBERON_0015876 pelvic lymph node +UBERON_0002405 immune system UBERON_0015877 parietal pelvic lymph node +UBERON_0002405 immune system UBERON_0015878 common iliac lymph node +UBERON_0002405 immune system UBERON_0015880 external iliac lymph node +UBERON_0002405 immune system UBERON_0015881 internal iliac lymph node +UBERON_0002405 immune system UBERON_0015883 gluteal lymph node +UBERON_0002405 immune system UBERON_0015884 presymphysial lymph node +UBERON_0002405 immune system UBERON_0015895 proximal deep inguinal lymph node +UBERON_0002405 immune system UBERON_0015917 superficial lymph node +UBERON_0002405 immune system UBERON_0015918 deep lymph node +UBERON_0002405 immune system UBERON_0015922 accessory mandibular lymph node +UBERON_0002405 immune system UBERON_0015923 superficial parotid lymph node +UBERON_0002405 immune system UBERON_0015925 superficial intraparotid lymph node +UBERON_0002405 immune system UBERON_0015926 cranial deep lymph node +UBERON_0002405 immune system UBERON_0016374 sciatic lymph node +UBERON_0002405 immune system UBERON_0016378 ileocolic lymph node +UBERON_0002405 immune system UBERON_0016382 prescapular lymph node +UBERON_0002405 immune system UBERON_0016386 paraaortic lymph node +UBERON_0002405 immune system UBERON_0016390 auricular lymph node +UBERON_0002405 immune system UBERON_0016391 thymic lymph node +UBERON_0002405 immune system UBERON_0016392 mastoid lymph node +UBERON_0002405 immune system UBERON_0016393 deep parotid lymph node +UBERON_0002405 immune system UBERON_0016394 anterior auricular lymph node +UBERON_0002405 immune system UBERON_0016395 infra-auricular lymph node +UBERON_0002405 immune system UBERON_0016396 intraglandular lymph node +UBERON_0002405 immune system UBERON_0016397 submental lymph node +UBERON_0002405 immune system UBERON_0016398 lymph node of lower limb +UBERON_0002405 immune system UBERON_0016399 lymph node of upper limb +UBERON_0002405 immune system UBERON_0016401 pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0016402 mesocolic lymph node +UBERON_0002405 immune system UBERON_0016481 bronchial lymph node +UBERON_0002405 immune system UBERON_0018226 pulmonary part of lymphatic system +UBERON_0002405 immune system UBERON_0018227 pulmonary lymphatic vessel +UBERON_0002405 immune system UBERON_0018244 superficial cervical thymus +UBERON_0002405 immune system UBERON_0018245 deep cervical thymus +UBERON_0002405 immune system UBERON_0018410 lacteal +UBERON_0002405 immune system UBERON_0022292 splenic arteriole +UBERON_0002405 immune system UBERON_0034949 lymphatic valve +UBERON_0002405 immune system UBERON_0034950 lymph sac of lymph heart +UBERON_0002405 immune system UBERON_0034951 subcutaneous lymph sac +UBERON_0002405 immune system UBERON_0034952 intrapleuroperitoneal lymph sac +UBERON_0002405 immune system UBERON_0034953 embryonic lymph sac +UBERON_0002405 immune system UBERON_0034958 retroperitoneal embryonic lymph sac +UBERON_0002405 immune system UBERON_0035079 deep intraparotid lymph node +UBERON_0002405 immune system UBERON_0035080 intraparotid lymph node +UBERON_0002405 immune system UBERON_0035162 infraclavicular lymph node +UBERON_0002405 immune system UBERON_0035171 obturator lymph node +UBERON_0002405 immune system UBERON_0035198 superficial lymphatic vessel +UBERON_0002405 immune system UBERON_0035204 occipital lymph node +UBERON_0002405 immune system UBERON_0035219 parasternal lymph node +UBERON_0002405 immune system UBERON_0035228 tonsillar fossa +UBERON_0002405 immune system UBERON_0035279 supraclavicular lymph node +UBERON_0002405 immune system UBERON_0035371 retroperitoneal lymph node +UBERON_0002405 immune system UBERON_0035495 hilum of lymph node +UBERON_0002405 immune system UBERON_0035520 anterior mediastinal lymph node +UBERON_0002405 immune system UBERON_0035545 deep lymphatic vessel +UBERON_0002405 immune system UBERON_0035608 dura mater lymph vessel +UBERON_0002405 immune system UBERON_0035764 pulmonary lymph node +UBERON_0002405 immune system UBERON_0035765 subsegmental lymph node +UBERON_0002405 immune system UBERON_0036256 iliac lymph sac +UBERON_0002405 immune system UBERON_0036260 embryonic cisterna chyli +UBERON_0002405 immune system UBERON_0036274 tonsillar pillar +UBERON_0002405 immune system UBERON_0036301 vasculature of spleen +UBERON_0002405 immune system UBERON_0037480 supramammary lymph node +UBERON_0002405 immune system UBERON_0037494 paracardial gastric lymph node +UBERON_0002405 immune system UBERON_0037500 subscapular axillary lymph node +UBERON_0002405 immune system UBERON_0037501 pectoral axillary lymph node +UBERON_0002405 immune system UBERON_0037502 central axillary lymph node +UBERON_0002405 immune system UBERON_0037503 apical axillary lymph node +UBERON_0002405 immune system UBERON_0037514 intermediate mesenteric lymph node +UBERON_0002405 immune system UBERON_0037515 juxta-arterial mesenteric lymph node +UBERON_0002405 immune system UBERON_0037518 epicolic lymph node +UBERON_0002405 immune system UBERON_0037521 preterminal colic lymph node +UBERON_0002405 immune system UBERON_0037522 ileal lymph node +UBERON_0002405 immune system UBERON_0037527 superior pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0037528 inferior pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0037530 inferior pancreatic lymph node +UBERON_0002405 immune system UBERON_0037531 intestinal lymph node +UBERON_0002405 immune system UBERON_0037532 medial common iliac lymph node +UBERON_0002405 immune system UBERON_0037533 intermediate common iliac lymph node +UBERON_0002405 immune system UBERON_0037534 lateral common iliac lymph node +UBERON_0002405 immune system UBERON_0037535 subaortic common iliac lymph node +UBERON_0002405 immune system UBERON_0037536 promontory lymph node +UBERON_0002405 immune system UBERON_0037538 medial external iliac lymph node +UBERON_0002405 immune system UBERON_0037539 intermediate external iliac lymph node +UBERON_0002405 immune system UBERON_0037540 lateral external iliac lymph node +UBERON_0002405 immune system UBERON_0037541 interiliac lymph node +UBERON_0002405 immune system UBERON_0037548 superior gluteal lymph node +UBERON_0002405 immune system UBERON_0037549 inferior gluteal lymph node +UBERON_0002405 immune system UBERON_0037559 anorectal lymph node +UBERON_0002405 immune system UBERON_0037560 superficial axillary lymph node +UBERON_0002405 immune system UBERON_0037566 diaphragmatic lymph node +UBERON_0002405 immune system UBERON_0037580 left gastric lymph node +UBERON_0002405 immune system UBERON_0037590 lateral axillary lymph node +UBERON_0002405 immune system UBERON_0037601 left parietal lumbar lymph node +UBERON_0002405 immune system UBERON_0037614 appendicular lymph node +UBERON_0002405 immune system UBERON_0037615 pararectal lymph node +UBERON_0002405 immune system UBERON_0037722 right retropharyngeal lymph node +UBERON_0002405 immune system UBERON_0037723 left retropharyngeal lymph node +UBERON_0002405 immune system UBERON_0037763 lateral superior deep cervical lymph node +UBERON_0002405 immune system UBERON_0037764 anterior superior deep cervical lymph node +UBERON_0002405 immune system UBERON_0037765 lateral inferior deep cervical lymph node +UBERON_0002405 immune system UBERON_0037766 anterior inferior deep cervical lymph node +UBERON_0002405 immune system UBERON_0037787 right occipital lymph node +UBERON_0002405 immune system UBERON_0037788 left occipital lymph node +UBERON_0002405 immune system UBERON_0037789 right apical axillary lymph node +UBERON_0002405 immune system UBERON_0037790 left apical axillary lymph node +UBERON_0002405 immune system UBERON_0037793 right subscapular axillary lymph node +UBERON_0002405 immune system UBERON_0037794 left subscapular axillary lymph node +UBERON_0002405 immune system UBERON_0037795 right pectoral axillary lymph node +UBERON_0002405 immune system UBERON_0037796 left pectoral axillary lymph node +UBERON_0002405 immune system UBERON_0037797 right central axillary lymph node +UBERON_0002405 immune system UBERON_0037798 left central axillary lymph node +UBERON_0002405 immune system UBERON_0037865 jugular lymph node +UBERON_0002405 immune system UBERON_0037995 supramandibular lymph node +UBERON_0002405 immune system UBERON_0037998 external jugular lymph node +UBERON_0002405 immune system UBERON_0038001 sternal lymph node +UBERON_0002405 immune system UBERON_0038002 upper intercostal lymph node +UBERON_0002405 immune system UBERON_0038003 lower intercostal lymph node +UBERON_0002405 immune system UBERON_0038037 subclavian lymph node +UBERON_0002405 immune system UBERON_0038048 antebrachial lymph node +UBERON_0002405 immune system UBERON_0038053 cardiophrenic angle lymph node +UBERON_0002405 immune system UBERON_0038054 retrocrural lymph node +UBERON_0002405 immune system UBERON_0038093 jejunal lymph node +UBERON_0002405 immune system UBERON_0038094 inferior rectal lymph node +UBERON_0002405 immune system UBERON_0038124 medial diaphragmatic lymph node +UBERON_0002405 immune system UBERON_0038137 parietal pre-aortic lymph node +UBERON_0002405 immune system UBERON_0038139 retro-aortic lymph node +UBERON_0002405 immune system UBERON_0038587 paracardiac lymph node +UBERON_0002405 immune system UBERON_0038632 pericardial lymph node +UBERON_0002405 immune system UBERON_0038633 aortopulmonary lymph node +UBERON_0002405 immune system UBERON_0038634 para-aortic thoracic lymph node +UBERON_0002405 immune system UBERON_0038635 interlobar lymph node +UBERON_0002405 immune system UBERON_0038638 lobar lymph node +UBERON_0002405 immune system UBERON_0038641 segmental lymph node +UBERON_0002405 immune system UBERON_0038647 lymph node of inferior pulmonary ligament +UBERON_0002405 immune system UBERON_0038651 superior mediastinal lymph node +UBERON_0002405 immune system UBERON_0038684 superior left gastric lymph node +UBERON_0002405 immune system UBERON_0038685 inferior left gastric lymph node +UBERON_0002405 immune system UBERON_0038687 visceral lymph node of abdomen +UBERON_0002405 immune system UBERON_0038691 common hepatic lymph node +UBERON_0002405 immune system UBERON_0038694 hepatoportal lymph node +UBERON_0002405 immune system UBERON_0038695 proximal superior pancreatic lymph node +UBERON_0002405 immune system UBERON_0038696 distal superior pancreatic lymph node +UBERON_0002405 immune system UBERON_0038697 anterior superior pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0038698 posterior superior pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0038699 anterior inferior pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0038700 posterior inferior pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0038707 anterior pancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0038727 juxta-intestinal mesenteric lymph node +UBERON_0002405 immune system UBERON_0038734 visceral pre-aortic lymph node +UBERON_0002405 immune system UBERON_0038735 juxta-arterial jejunal lymph node +UBERON_0002405 immune system UBERON_0038736 juxta-arterial ileal lymph node +UBERON_0002405 immune system UBERON_0038737 intermediate jejunal lymph node +UBERON_0002405 immune system UBERON_0038738 intermediate ileal lymph node +UBERON_0002405 immune system UBERON_0038746 gastro-epiploic lymph node +UBERON_0002405 immune system UBERON_0038784 pararectal lymph node of pelvis +UBERON_0002405 immune system UBERON_0038787 superior ileocolic lymph node +UBERON_0002405 immune system UBERON_0038796 lymph node along bile duct +UBERON_0002405 immune system UBERON_0038818 posterior ancreaticoduodenal lymph node +UBERON_0002405 immune system UBERON_0038849 craniocervical lymph node +UBERON_0002405 immune system UBERON_0038853 superficial popliteal lymph node +UBERON_0002405 immune system UBERON_0038854 deep popliteal lymph node +UBERON_0002405 immune system UBERON_0038855 superior medial inguinal lymph node +UBERON_0002405 immune system UBERON_0038856 superior lateral inguinal lymph node +UBERON_0002405 immune system UBERON_0038857 inferior inguinal lymph node +UBERON_0002405 immune system UBERON_0038859 intermediate deep inguinal lymph node +UBERON_0002405 immune system UBERON_0038860 distal deep inguinal lymph node +UBERON_0002405 immune system UBERON_0038861 tibial lymph node +UBERON_0002405 immune system UBERON_0038864 fibular lymph node +UBERON_0002405 immune system UBERON_0038867 interpectoral lymph node +UBERON_0002405 immune system UBERON_0038868 paramammary lymph node +UBERON_0002405 immune system UBERON_0038870 cubital lymph node +UBERON_0002405 immune system UBERON_0038871 supratrochlear lymph node +UBERON_0002405 immune system UBERON_0038878 lateral diaphragmatic lymph node +UBERON_0002405 immune system UBERON_0038879 anterior diaphragmatic lymph node +UBERON_0002405 immune system UBERON_0038882 posterior diaphragmatic lymph node +UBERON_0002405 immune system UBERON_0038885 brachiocephalic lymph node +UBERON_0002405 immune system UBERON_0038888 posterior mediastinal lymph node +UBERON_0002405 immune system UBERON_0038894 paratracheal lymph node +UBERON_0002405 immune system UBERON_0038897 superior tracheobronchial lymph node +UBERON_0002405 immune system UBERON_0038900 inferior tracheobronchial lymph node +UBERON_0002405 immune system UBERON_0038920 buccinator lymph node +UBERON_0002405 immune system UBERON_0038922 nasolabial lymph node +UBERON_0002405 immune system UBERON_0038923 malar lymph node +UBERON_0002405 immune system UBERON_0038925 lingual lymph node +UBERON_0002405 immune system UBERON_0038929 infrahyoid lymph node +UBERON_0002405 immune system UBERON_0038930 prelaryngeal lymph node +UBERON_0002405 immune system UBERON_0038931 thyroid lymph node +UBERON_0002405 immune system UBERON_0038932 pretracheal lymph node +UBERON_0002405 immune system UBERON_0038934 superior deep lateral cervical lymph node +UBERON_0002405 immune system UBERON_0038935 inferior deep lateral cervical lymph node +UBERON_0002405 immune system UBERON_0038936 jugulodigastric lymph node +UBERON_0002405 immune system UBERON_0038938 accessory cervical lymph node +UBERON_0002405 immune system UBERON_0038943 superior diaphragmatic lymph node +UBERON_0002405 immune system UBERON_0038951 suprapyloric lymph node +UBERON_0002405 immune system UBERON_0038952 subpyloric lymph node +UBERON_0002405 immune system UBERON_0038953 retropyloric lymph node +UBERON_0002405 immune system UBERON_0039162 inferior ileocolic lymph node +UBERON_0002405 immune system UBERON_0039163 lateral sacral lymph node +UBERON_0002405 immune system UBERON_0039164 medial sacral lymph node +UBERON_0002405 immune system UBERON_0039167 bronchopulmonary lymph node +UBERON_0002405 immune system UBERON_0039168 colic lymph node +UBERON_0002405 immune system UBERON_1000023 spleen pulp +UBERON_0002405 immune system UBERON_1000024 parenchyma of spleen +UBERON_0002405 immune system UBERON_2005106 longitudinal lateral lymphatic vessel +UBERON_0002405 immune system UBERON_2005303 caudal fin lymph vessel +UBERON_0002405 immune system UBERON_2005319 intersegmental lymph vessel +UBERON_0002405 immune system UBERON_2005320 dorsal longitudinal lymphatic vessel +UBERON_0002405 immune system UBERON_8410002 small intestine lymphatic vessel +UBERON_0002405 immune system UBERON_8410013 afferent lymphatic vessel valve +UBERON_0002405 immune system UBERON_8410014 efferent lymphatic vessel valve +UBERON_0002405 immune system UBERON_8410029 lymphatic capillary of appendix +UBERON_0002405 immune system UBERON_8410030 lymphatic vessel of appendix +UBERON_0002405 immune system UBERON_8410032 trabecular sinus of lymph node +UBERON_0002405 immune system UBERON_8410035 medullary arteriole of lymph node +UBERON_0002405 immune system UBERON_8410036 medullary venule of lymph node +UBERON_0002405 immune system UBERON_8410038 high endothelial venule of lymph node +UBERON_0002405 immune system UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0002405 immune system UBERON_8410041 venule of lymph node +UBERON_0002405 immune system UBERON_8410042 arteriole of lymph node +UBERON_0002405 immune system UBERON_8410051 lymphatic vessel of colon +UBERON_0002405 immune system UBERON_8410052 lymph node germinal center light zone +UBERON_0002405 immune system UBERON_8410053 lymph node germinal center dark zone +UBERON_0002405 immune system UBERON_8410054 lymphatic capillary of colon +UBERON_0002405 immune system UBERON_8410055 lymphatic capillary of anorectum +UBERON_0002405 immune system UBERON_8410065 lymph node follicle marginal zone +UBERON_0002405 immune system UBERON_8410066 lymph node paracortex +UBERON_0002405 immune system UBERON_8410067 lymph node interfollicular cortex +UBERON_0002405 immune system UBERON_8410069 lymphoid nodule +UBERON_0002405 immune system UBERON_8410071 subcapsular sinus ceiling +UBERON_0002405 immune system UBERON_8410072 subcapsular sinus floor +UBERON_0002405 immune system UBERON_8410074 lymph node paracortical sinus +UBERON_0002405 immune system UBERON_8410075 lymph node paracortical cord +UBERON_0002405 immune system UBERON_8410078 right lymphatic duct +UBERON_0002405 immune system UBERON_8410079 red bone marrow of iliac crest +UBERON_0002405 immune system UBERON_8410080 red bone marrow of sternum +UBERON_0002405 immune system UBERON_8470001 sublumbar lymph node +UBERON_0002405 immune system UBERON_8480006 mesenteric lymphatic vessel +UBERON_0002416 integumental system UBERON_0000014 zone of skin +UBERON_0002416 integumental system UBERON_0000021 cutaneous appendage +UBERON_0002416 integumental system UBERON_0000022 feather +UBERON_0002416 integumental system UBERON_0000041 odontode scale +UBERON_0002416 integumental system UBERON_0000212 toilet claw +UBERON_0002416 integumental system UBERON_0000329 hair root +UBERON_0002416 integumental system UBERON_0000359 preputial gland +UBERON_0002416 integumental system UBERON_0000382 apocrine sweat gland +UBERON_0002416 integumental system UBERON_0000412 dermal papilla +UBERON_0002416 integumental system UBERON_0000423 eccrine sweat gland +UBERON_0002416 integumental system UBERON_0000460 major vestibular gland +UBERON_0002416 integumental system UBERON_0001001 chitin-based cuticle +UBERON_0002416 integumental system UBERON_0001003 epidermis +UBERON_0002416 integumental system UBERON_0001003 skin epidermis +UBERON_0002416 integumental system UBERON_0001013 adipose tissue +UBERON_0002416 integumental system UBERON_0001037 strand of hair +UBERON_0002416 integumental system UBERON_0001068 skin of back +UBERON_0002416 integumental system UBERON_0001084 skin of head +UBERON_0002416 integumental system UBERON_0001085 skin of trunk +UBERON_0002416 integumental system UBERON_0001331 skin of penis +UBERON_0002416 integumental system UBERON_0001415 skin of pelvis +UBERON_0002416 integumental system UBERON_0001416 skin of abdomen +UBERON_0002416 integumental system UBERON_0001417 skin of neck +UBERON_0002416 integumental system UBERON_0001418 skin of thorax +UBERON_0002416 integumental system UBERON_0001419 skin of limb +UBERON_0002416 integumental system UBERON_0001457 skin of eyelid +UBERON_0002416 integumental system UBERON_0001458 skin of lip +UBERON_0002416 integumental system UBERON_0001459 skin of external ear +UBERON_0002416 integumental system UBERON_0001471 skin of prepuce of penis +UBERON_0002416 integumental system UBERON_0001483 skin of shoulder +UBERON_0002416 integumental system UBERON_0001510 skin of knee +UBERON_0002416 integumental system UBERON_0001511 skin of leg +UBERON_0002416 integumental system UBERON_0001512 skin of ankle +UBERON_0002416 integumental system UBERON_0001513 skin of pes +UBERON_0002416 integumental system UBERON_0001517 skin of elbow +UBERON_0002416 integumental system UBERON_0001518 skin of wrist +UBERON_0002416 integumental system UBERON_0001519 skin of manus +UBERON_0002416 integumental system UBERON_0001554 skin of hip +UBERON_0002416 integumental system UBERON_0001702 eyelash +UBERON_0002416 integumental system UBERON_0001705 nail +UBERON_0002416 integumental system UBERON_0001765 mammary duct +UBERON_0002416 integumental system UBERON_0001818 tarsal gland +UBERON_0002416 integumental system UBERON_0001820 sweat gland +UBERON_0002416 integumental system UBERON_0001821 sebaceous gland +UBERON_0002416 integumental system UBERON_0001868 skin of chest +UBERON_0002416 integumental system UBERON_0001911 mammary gland +UBERON_0002416 integumental system UBERON_0001912 lobule of mammary gland +UBERON_0002416 integumental system UBERON_0001992 papillary layer of dermis +UBERON_0002416 integumental system UBERON_0001993 reticular layer of dermis +UBERON_0002416 integumental system UBERON_0002025 stratum basale of epidermis +UBERON_0002416 integumental system UBERON_0002026 stratum spinosum of epidermis +UBERON_0002416 integumental system UBERON_0002027 stratum corneum of epidermis +UBERON_0002416 integumental system UBERON_0002032 areola +UBERON_0002416 integumental system UBERON_0002033 arrector muscle of hair +UBERON_0002416 integumental system UBERON_0002067 dermis +UBERON_0002416 integumental system UBERON_0002069 stratum granulosum of epidermis +UBERON_0002416 integumental system UBERON_0002071 stratum lucidum of epidermis +UBERON_0002416 integumental system UBERON_0002072 hypodermis +UBERON_0002416 integumental system UBERON_0002073 hair follicle +UBERON_0002416 integumental system UBERON_0002074 hair shaft +UBERON_0002416 integumental system UBERON_0002076 cuticle of hair +UBERON_0002416 integumental system UBERON_0002077 cortex of hair +UBERON_0002416 integumental system UBERON_0002097 skin of body +UBERON_0002416 integumental system UBERON_0002190 subcutaneous adipose tissue +UBERON_0002416 integumental system UBERON_0002199 integument +UBERON_0002416 integumental system UBERON_0002243 cutaneous vein +UBERON_0002416 integumental system UBERON_0002283 nail matrix +UBERON_0002416 integumental system UBERON_0002284 hyponychium +UBERON_0002416 integumental system UBERON_0002419 skin gland +UBERON_0002416 integumental system UBERON_0002427 arm skin +UBERON_0002416 integumental system UBERON_0002542 scale +UBERON_0002416 integumental system UBERON_0003055 periderm +UBERON_0002416 integumental system UBERON_0003214 mammary gland alveolus +UBERON_0002416 integumental system UBERON_0003219 shell septum +UBERON_0002416 integumental system UBERON_0003244 epithelium of mammary gland +UBERON_0002416 integumental system UBERON_0003297 gland of integumental system +UBERON_0002416 integumental system UBERON_0003326 mesenchyme of mammary gland +UBERON_0002416 integumental system UBERON_0003403 skin of forearm +UBERON_0002416 integumental system UBERON_0003426 dermis adipose tissue +UBERON_0002416 integumental system UBERON_0003484 eye sebaceous gland +UBERON_0002416 integumental system UBERON_0003485 vagina sebaceous gland +UBERON_0002416 integumental system UBERON_0003487 skin sebaceous gland +UBERON_0002416 integumental system UBERON_0003488 abdominal mammary gland +UBERON_0002416 integumental system UBERON_0003530 pedal digit skin +UBERON_0002416 integumental system UBERON_0003531 forelimb skin +UBERON_0002416 integumental system UBERON_0003532 hindlimb skin +UBERON_0002416 integumental system UBERON_0003533 manual digit skin +UBERON_0002416 integumental system UBERON_0003534 tail skin +UBERON_0002416 integumental system UBERON_0003584 mammary gland connective tissue +UBERON_0002416 integumental system UBERON_0003585 dermis connective tissue +UBERON_0002416 integumental system UBERON_0003605 eye skin gland +UBERON_0002416 integumental system UBERON_0003719 Pacinian corpuscle +UBERON_0002416 integumental system UBERON_0003836 abdominal segment skin +UBERON_0002416 integumental system UBERON_0003967 cutaneous elastic tissue +UBERON_0002416 integumental system UBERON_0004000 tarsal gland acinus +UBERON_0002416 integumental system UBERON_0004014 labium minora +UBERON_0002416 integumental system UBERON_0004034 cutaneous microfibril +UBERON_0002416 integumental system UBERON_0004084 genital labium +UBERON_0002416 integumental system UBERON_0004085 labium majora +UBERON_0002416 integumental system UBERON_0004105 subungual region +UBERON_0002416 integumental system UBERON_0004180 mammary gland fat +UBERON_0002416 integumental system UBERON_0004182 mammary gland cord +UBERON_0002416 integumental system UBERON_0004235 mammary gland smooth muscle +UBERON_0002416 integumental system UBERON_0004253 skin muscle +UBERON_0002416 integumental system UBERON_0004262 upper leg skin +UBERON_0002416 integumental system UBERON_0004263 upper arm skin +UBERON_0002416 integumental system UBERON_0004264 lower leg skin +UBERON_0002416 integumental system UBERON_0004790 skin mucous gland +UBERON_0002416 integumental system UBERON_0004882 eponychium +UBERON_0002416 integumental system UBERON_0005083 nipple sheath +UBERON_0002416 integumental system UBERON_0005184 hair medulla +UBERON_0002416 integumental system UBERON_0005199 cervical mammary gland +UBERON_0002416 integumental system UBERON_0005200 thoracic mammary gland +UBERON_0002416 integumental system UBERON_0005273 nail bed +UBERON_0002416 integumental system UBERON_0005274 proximal nail bed +UBERON_0002416 integumental system UBERON_0005275 dorsal skin of digit +UBERON_0002416 integumental system UBERON_0005276 dorsal skin of finger +UBERON_0002416 integumental system UBERON_0005277 dorsal skin of toe +UBERON_0002416 integumental system UBERON_0005278 nail bed of finger +UBERON_0002416 integumental system UBERON_0005279 nail bed of toe +UBERON_0002416 integumental system UBERON_0005298 skin of clitoris +UBERON_0002416 integumental system UBERON_0005301 male preputial gland +UBERON_0002416 integumental system UBERON_0005302 female preputial gland +UBERON_0002416 integumental system UBERON_0005313 mammary duct terminal end bud +UBERON_0002416 integumental system UBERON_0005467 platysma +UBERON_0002416 integumental system UBERON_0005932 bulb of hair follicle +UBERON_0002416 integumental system UBERON_0005933 hair root sheath +UBERON_0002416 integumental system UBERON_0005941 hair inner root sheath +UBERON_0002416 integumental system UBERON_0005942 hair outer root sheath +UBERON_0002416 integumental system UBERON_0005943 hair root sheath matrix +UBERON_0002416 integumental system UBERON_0005968 infundibulum of hair follicle +UBERON_0002416 integumental system UBERON_0005975 hair follicle bulge +UBERON_0002416 integumental system UBERON_0006003 integumentary adnexa +UBERON_0002416 integumental system UBERON_0006004 hair follicle matrix region +UBERON_0002416 integumental system UBERON_0006005 hair follicle isthmus +UBERON_0002416 integumental system UBERON_0006378 strand of vibrissa hair +UBERON_0002416 integumental system UBERON_0006611 exoskeleton +UBERON_0002416 integumental system UBERON_0006612 shell +UBERON_0002416 integumental system UBERON_0006954 mammary gland myoepithelium +UBERON_0002416 integumental system UBERON_0007121 skin nerve field +UBERON_0002416 integumental system UBERON_0007330 rhamphotheca +UBERON_0002416 integumental system UBERON_0007331 maxillary rhamphotheca +UBERON_0002416 integumental system UBERON_0007332 mandibular rhamphotheca +UBERON_0002416 integumental system UBERON_0007377 stratum compactum of dermis +UBERON_0002416 integumental system UBERON_0007380 dermal scale +UBERON_0002416 integumental system UBERON_0007381 epidermal scale +UBERON_0002416 integumental system UBERON_0007623 comb and wattle +UBERON_0002416 integumental system UBERON_0007771 epidermis gland +UBERON_0002416 integumental system UBERON_0007773 scrotal sweat gland +UBERON_0002416 integumental system UBERON_0007809 fascia of Camper +UBERON_0002416 integumental system UBERON_0008198 nail plate +UBERON_0002416 integumental system UBERON_0008201 scute +UBERON_0002416 integumental system UBERON_0008270 mollusc shell +UBERON_0002416 integumental system UBERON_0008271 turtle shell +UBERON_0002416 integumental system UBERON_0008275 carapace +UBERON_0002416 integumental system UBERON_0008276 plastron +UBERON_0002416 integumental system UBERON_0008283 columnella +UBERON_0002416 integumental system UBERON_0008286 feather calamus +UBERON_0002416 integumental system UBERON_0008287 feather vane +UBERON_0002416 integumental system UBERON_0008288 feather rachis +UBERON_0002416 integumental system UBERON_0008290 afterfeather +UBERON_0002416 integumental system UBERON_0008291 down feather +UBERON_0002416 integumental system UBERON_0008292 vaned feather +UBERON_0002416 integumental system UBERON_0008293 filoplume feather +UBERON_0002416 integumental system UBERON_0008294 feather barb +UBERON_0002416 integumental system UBERON_0008295 feather barbule +UBERON_0002416 integumental system UBERON_0008297 pennaceous feather +UBERON_0002416 integumental system UBERON_0008424 inguinal mammary gland +UBERON_0002416 integumental system UBERON_0008802 cheek pouch +UBERON_0002416 integumental system UBERON_0008803 skin of cheek +UBERON_0002416 integumental system UBERON_0008838 metapodial pad +UBERON_0002416 integumental system UBERON_0008839 palmar pad +UBERON_0002416 integumental system UBERON_0008840 plantar pad +UBERON_0002416 integumental system UBERON_0008876 hypodermis skeletal muscle layer +UBERON_0002416 integumental system UBERON_0008877 epidermal-dermal junction +UBERON_0002416 integumental system UBERON_0008963 hoof +UBERON_0002416 integumental system UBERON_0008999 hoof lamina +UBERON_0002416 integumental system UBERON_0009014 lower back skin +UBERON_0002416 integumental system UBERON_0009015 upper back skin +UBERON_0002416 integumental system UBERON_0009200 limb epidermis +UBERON_0002416 integumental system UBERON_0009564 distal limb integumentary appendage +UBERON_0002416 integumental system UBERON_0009565 nail of manual digit +UBERON_0002416 integumental system UBERON_0009567 nail of pedal digit +UBERON_0002416 integumental system UBERON_0009648 eyelid subcutaneous connective tissue +UBERON_0002416 integumental system UBERON_0009754 blubber +UBERON_0002416 integumental system UBERON_0010083 future dermis +UBERON_0002416 integumental system UBERON_0010150 duct of major vestibular gland +UBERON_0002416 integumental system UBERON_0010171 strand of hair of face +UBERON_0002416 integumental system UBERON_0010402 epidermis suprabasal layer +UBERON_0002416 integumental system UBERON_0010419 vibrissa follicle +UBERON_0002416 integumental system UBERON_0010509 strand of pelage hair +UBERON_0002416 integumental system UBERON_0010510 strand of auchene hair +UBERON_0002416 integumental system UBERON_0010511 strand of awl hair +UBERON_0002416 integumental system UBERON_0010512 strand of guard hair +UBERON_0002416 integumental system UBERON_0010513 strand of zigzag hair +UBERON_0002416 integumental system UBERON_0010514 strand of duvet hair +UBERON_0002416 integumental system UBERON_0010515 brille +UBERON_0002416 integumental system UBERON_0010854 skin of front of neck +UBERON_0002416 integumental system UBERON_0010855 skin of forelimb wing +UBERON_0002416 integumental system UBERON_0010878 humeral patagium +UBERON_0002416 integumental system UBERON_0010880 gular fold +UBERON_0002416 integumental system UBERON_0011190 lunule of nail +UBERON_0002416 integumental system UBERON_0011255 Eimer's organ +UBERON_0002416 integumental system UBERON_0011263 femoral gland +UBERON_0002416 integumental system UBERON_0011264 femoral pore +UBERON_0002416 integumental system UBERON_0011272 embryonic skin basal layer +UBERON_0002416 integumental system UBERON_0011273 nail of manual digit 1 +UBERON_0002416 integumental system UBERON_0011274 nail of manual digit 2 +UBERON_0002416 integumental system UBERON_0011275 nail of manual digit 3 +UBERON_0002416 integumental system UBERON_0011276 nail of manual digit 4 +UBERON_0002416 integumental system UBERON_0011277 nail of manual digit 5 +UBERON_0002416 integumental system UBERON_0011278 nail of pedal digit 1 +UBERON_0002416 integumental system UBERON_0011279 nail of pedal digit 2 +UBERON_0002416 integumental system UBERON_0011280 nail of pedal digit 3 +UBERON_0002416 integumental system UBERON_0011281 nail of pedal digit 4 +UBERON_0002416 integumental system UBERON_0011282 nail of pedal digit 5 +UBERON_0002416 integumental system UBERON_0011302 tunicate tunic +UBERON_0002416 integumental system UBERON_0011375 skin of prepuce of clitoris +UBERON_0002416 integumental system UBERON_0011657 dermal element of plastron +UBERON_0002416 integumental system UBERON_0011658 epiplastron +UBERON_0002416 integumental system UBERON_0011659 entoplastron +UBERON_0002416 integumental system UBERON_0011660 hypoplastron +UBERON_0002416 integumental system UBERON_0011661 xiphiplastron +UBERON_0002416 integumental system UBERON_0011662 plastron-carapace bridge +UBERON_0002416 integumental system UBERON_0011663 anterior plastron-carapace bridge +UBERON_0002416 integumental system UBERON_0011664 posterior plastron-carapace bridge +UBERON_0002416 integumental system UBERON_0011665 carapace bone +UBERON_0002416 integumental system UBERON_0011666 peripheral plate of carapace +UBERON_0002416 integumental system UBERON_0011667 pleural plate of carapace +UBERON_0002416 integumental system UBERON_0011669 neural plate of carapace +UBERON_0002416 integumental system UBERON_0011670 pygal plate of carapace +UBERON_0002416 integumental system UBERON_0011671 nuchal plate of carapace +UBERON_0002416 integumental system UBERON_0011672 suprapygal plate of carapace +UBERON_0002416 integumental system UBERON_0011673 plastron scute +UBERON_0002416 integumental system UBERON_0011674 carapace scute +UBERON_0002416 integumental system UBERON_0011782 feather follicle +UBERON_0002416 integumental system UBERON_0011783 feather follicle placode +UBERON_0002416 integumental system UBERON_0011784 feather shaft +UBERON_0002416 integumental system UBERON_0011785 ramus of feather barb +UBERON_0002416 integumental system UBERON_0011786 ramus of feather barbule +UBERON_0002416 integumental system UBERON_0011792 feather muscle +UBERON_0002416 integumental system UBERON_0011793 flight feather +UBERON_0002416 integumental system UBERON_0011794 rectrix feather +UBERON_0002416 integumental system UBERON_0011795 remex feather +UBERON_0002416 integumental system UBERON_0011796 primary remex feather +UBERON_0002416 integumental system UBERON_0011797 secondary remex feather +UBERON_0002416 integumental system UBERON_0011798 tertial remex feather +UBERON_0002416 integumental system UBERON_0011799 cavity of feather shaft +UBERON_0002416 integumental system UBERON_0011800 dermal pulp of feather shaft +UBERON_0002416 integumental system UBERON_0011801 dermal condensation of feather follicle +UBERON_0002416 integumental system UBERON_0011805 cavity of feather follicle +UBERON_0002416 integumental system UBERON_0011806 dermis of feather follicle +UBERON_0002416 integumental system UBERON_0011807 epidermis of feather follicle +UBERON_0002416 integumental system UBERON_0011808 outer epidermal layer of feather follicle +UBERON_0002416 integumental system UBERON_0011809 inner epidermal layer of feather follicle +UBERON_0002416 integumental system UBERON_0011818 superficial fascia +UBERON_0002416 integumental system UBERON_0011827 areolar gland +UBERON_0002416 integumental system UBERON_0011844 duct of areolar gland +UBERON_0002416 integumental system UBERON_0011845 duct of sebaceous gland +UBERON_0002416 integumental system UBERON_0011846 acinus of sebaceous gland +UBERON_0002416 integumental system UBERON_0011854 acinus of areolar gland +UBERON_0002416 integumental system UBERON_0011856 acinus of lactiferous gland +UBERON_0002416 integumental system UBERON_0011901 hair matrix +UBERON_0002416 integumental system UBERON_0011931 nasal hair +UBERON_0002416 integumental system UBERON_0011932 pilosebaceous unit +UBERON_0002416 integumental system UBERON_0011933 vibrissa unit +UBERON_0002416 integumental system UBERON_0011936 vibrissa hair bulb +UBERON_0002416 integumental system UBERON_0011937 vibrissa root sheath +UBERON_0002416 integumental system UBERON_0011938 vibrissa inner root sheath +UBERON_0002416 integumental system UBERON_0011939 vibrissa outer root sheath +UBERON_0002416 integumental system UBERON_0011940 arrector pili muscle of vibrissa +UBERON_0002416 integumental system UBERON_0011950 mammary gland luminal epithelium +UBERON_0002416 integumental system UBERON_0012103 suspensory ligament of breast +UBERON_0002416 integumental system UBERON_0012127 feather barbicel +UBERON_0002416 integumental system UBERON_0012176 comb +UBERON_0002416 integumental system UBERON_0012177 skin apocrine gland +UBERON_0002416 integumental system UBERON_0012180 head or neck skin +UBERON_0002416 integumental system UBERON_0012243 nuptial pad +UBERON_0002416 integumental system UBERON_0012244 stratum intermedium of epidermis +UBERON_0002416 integumental system UBERON_0012281 perianal sebaceous gland +UBERON_0002416 integumental system UBERON_0012282 mammary fat pad +UBERON_0002416 integumental system UBERON_0012304 nasal diverticulum +UBERON_0002416 integumental system UBERON_0012305 marginal cutaneous pouch of ear +UBERON_0002416 integumental system UBERON_0012336 perianal skin +UBERON_0002416 integumental system UBERON_0012348 autopod pad +UBERON_0002416 integumental system UBERON_0012349 digital pad +UBERON_0002416 integumental system UBERON_0012350 carpal pad +UBERON_0002416 integumental system UBERON_0012447 podotheca +UBERON_0002416 integumental system UBERON_0012450 Meissner's corpuscle +UBERON_0002416 integumental system UBERON_0012456 Merkel nerve ending +UBERON_0002416 integumental system UBERON_0012457 Ruffini nerve ending +UBERON_0002416 integumental system UBERON_0012458 antler velvet +UBERON_0002416 integumental system UBERON_0013196 strand of wool +UBERON_0002416 integumental system UBERON_0013206 nasal tentacle +UBERON_0002416 integumental system UBERON_0013211 cerumen gland +UBERON_0002416 integumental system UBERON_0013228 sweat gland of eyelid +UBERON_0002416 integumental system UBERON_0013231 sebaceous gland of eyelid +UBERON_0002416 integumental system UBERON_0013487 epidermal ridge of digit +UBERON_0002416 integumental system UBERON_0013488 panniculus adiposus +UBERON_0002416 integumental system UBERON_0013489 superficial cervical fascia +UBERON_0002416 integumental system UBERON_0013494 keratin-coated spine +UBERON_0002416 integumental system UBERON_0013495 barbed keratin-coated spine +UBERON_0002416 integumental system UBERON_0013496 unbarbed keratin-coated spine +UBERON_0002416 integumental system UBERON_0013497 muscularis orbicularis +UBERON_0002416 integumental system UBERON_0013622 manual autopod pad +UBERON_0002416 integumental system UBERON_0013623 pedal autopod pad +UBERON_0002416 integumental system UBERON_0013626 medial metatarsal pad +UBERON_0002416 integumental system UBERON_0013627 lateral metatarsal pad +UBERON_0002416 integumental system UBERON_0013628 pollical pad +UBERON_0002416 integumental system UBERON_0013629 hallical pad +UBERON_0002416 integumental system UBERON_0013640 internal cheek pouch +UBERON_0002416 integumental system UBERON_0013641 external cheek pouch +UBERON_0002416 integumental system UBERON_0013698 strand of pubic hair +UBERON_0002416 integumental system UBERON_0013699 strand of axillary hair +UBERON_0002416 integumental system UBERON_0013703 integumentary projection +UBERON_0002416 integumental system UBERON_0013720 dartos muscle of labia majora +UBERON_0002416 integumental system UBERON_0013754 integumentary system layer +UBERON_0002416 integumental system UBERON_0013766 epicanthal fold +UBERON_0002416 integumental system UBERON_0013776 skin of palmar/plantar part of autopod +UBERON_0002416 integumental system UBERON_0013777 skin of palm of manus +UBERON_0002416 integumental system UBERON_0013778 skin of sole of pes +UBERON_0002416 integumental system UBERON_0014391 palmar/plantar sweat gland +UBERON_0002416 integumental system UBERON_0014455 subcutaneous abdominal adipose tissue +UBERON_0002416 integumental system UBERON_0014480 blood feather +UBERON_0002416 integumental system UBERON_0014481 sex skin +UBERON_0002416 integumental system UBERON_0014482 ischial callosity +UBERON_0002416 integumental system UBERON_0014707 hyoplastron +UBERON_0002416 integumental system UBERON_0014708 costal plate of carapace +UBERON_0002416 integumental system UBERON_0014931 periungual skin +UBERON_0002416 integumental system UBERON_0015132 extralobar lactiferous duct +UBERON_0002416 integumental system UBERON_0015133 terminal lactiferous duct +UBERON_0002416 integumental system UBERON_0015134 main lactiferous duct +UBERON_0002416 integumental system UBERON_0015135 primary lactiferous duct +UBERON_0002416 integumental system UBERON_0015136 secondary lactiferous duct +UBERON_0002416 integumental system UBERON_0015137 tertiary lactiferous duct +UBERON_0002416 integumental system UBERON_0015138 quarternary lactiferous duct +UBERON_0002416 integumental system UBERON_0015144 autopod hair +UBERON_0002416 integumental system UBERON_0015145 pes hair +UBERON_0002416 integumental system UBERON_0015146 manus hair +UBERON_0002416 integumental system UBERON_0015147 pinna hair +UBERON_0002416 integumental system UBERON_0015148 tail hair +UBERON_0002416 integumental system UBERON_0015149 ventral hair +UBERON_0002416 integumental system UBERON_0015150 dorsal hair +UBERON_0002416 integumental system UBERON_0015249 digit skin +UBERON_0002416 integumental system UBERON_0015251 modified sebaceous gland +UBERON_0002416 integumental system UBERON_0015252 coat hair follicle +UBERON_0002416 integumental system UBERON_0015453 subcutaneous lymph node +UBERON_0002416 integumental system UBERON_0015474 axilla skin +UBERON_0002416 integumental system UBERON_0015476 nose skin +UBERON_0002416 integumental system UBERON_0015479 scrotum skin +UBERON_0002416 integumental system UBERON_0015484 epidermis of metapodial pad +UBERON_0002416 integumental system UBERON_0015783 smooth muscle layer in fatty layer of subcutaneous tissue +UBERON_0002416 integumental system UBERON_0015790 autopod skin +UBERON_0002416 integumental system UBERON_0015873 heel skin +UBERON_0002416 integumental system UBERON_0015886 root of nail +UBERON_0002416 integumental system UBERON_0016446 hair of head +UBERON_0002416 integumental system UBERON_0016447 hair of trunk +UBERON_0002416 integumental system UBERON_0016462 periorbital skin +UBERON_0002416 integumental system UBERON_0016475 skin of forehead +UBERON_0002416 integumental system UBERON_0016624 lunge feeding vibrissa +UBERON_0002416 integumental system UBERON_0016852 skin scent gland +UBERON_0002416 integumental system UBERON_0016853 interdigital gland +UBERON_0002416 integumental system UBERON_0016915 vermilion +UBERON_0002416 integumental system UBERON_0016918 upper vermilion +UBERON_0002416 integumental system UBERON_0016919 lower vermilion +UBERON_0002416 integumental system UBERON_0017163 skin bony tubercle +UBERON_0002416 integumental system UBERON_0018134 rugal fold of scrotum +UBERON_0002416 integumental system UBERON_0018140 mammary lobe +UBERON_0002416 integumental system UBERON_0018150 skin of lower lip +UBERON_0002416 integumental system UBERON_0018151 skin of upper lip +UBERON_0002416 integumental system UBERON_0018232 axillary sweat gland +UBERON_0002416 integumental system UBERON_0018233 gland of Zeis +UBERON_0002416 integumental system UBERON_0018240 panniculus carnosus muscle +UBERON_0002416 integumental system UBERON_0018278 epidermal egg tooth +UBERON_0002416 integumental system UBERON_0018308 caudal melanophore spot +UBERON_0002416 integumental system UBERON_0018309 central figure of scute +UBERON_0002416 integumental system UBERON_0018310 cephalic dermal scale +UBERON_0002416 integumental system UBERON_0018312 cheek scale +UBERON_0002416 integumental system UBERON_0018317 dorsal osteoderm +UBERON_0002416 integumental system UBERON_0018340 midbody melanophore spot +UBERON_0002416 integumental system UBERON_0018355 rictal bristle +UBERON_0002416 integumental system UBERON_0018362 supracondylar tubercle +UBERON_0002416 integumental system UBERON_0018535 forelimb feather +UBERON_0002416 integumental system UBERON_0018536 wing feather +UBERON_0002416 integumental system UBERON_0018537 tail feather +UBERON_0002416 integumental system UBERON_0018538 breast feather +UBERON_0002416 integumental system UBERON_0018539 dorsal feather +UBERON_0002416 integumental system UBERON_0018656 puparium +UBERON_0002416 integumental system UBERON_0018688 hindlimb feather +UBERON_0002416 integumental system UBERON_0018689 crural feather +UBERON_0002416 integumental system UBERON_0019200 skin of anterior chest +UBERON_0002416 integumental system UBERON_0019204 skin epithelium +UBERON_0002416 integumental system UBERON_0019243 skin crease +UBERON_0002416 integumental system UBERON_0019246 palmar skin crease +UBERON_0002416 integumental system UBERON_0019247 plantar skin crease +UBERON_0002416 integumental system UBERON_0019254 upper eyelash +UBERON_0002416 integumental system UBERON_0019255 lower eyelash +UBERON_0002416 integumental system UBERON_0019319 exocrine gland of integumental system +UBERON_0002416 integumental system UBERON_0022279 strand of hair on external ear +UBERON_0002416 integumental system UBERON_0022285 strand of tylotrich hair +UBERON_0002416 integumental system UBERON_0022360 male mammary gland duct +UBERON_0002416 integumental system UBERON_0034717 integumental taste bud +UBERON_0002416 integumental system UBERON_0034718 barbel taste bud +UBERON_0002416 integumental system UBERON_0034720 head taste bud +UBERON_0002416 integumental system UBERON_0034726 trunk taste bud +UBERON_0002416 integumental system UBERON_0034762 areolar sweat gland +UBERON_0002416 integumental system UBERON_0034765 glabella skin +UBERON_0002416 integumental system UBERON_0034930 auricular feather +UBERON_0002416 integumental system UBERON_0034941 blood sinus of vibrissa +UBERON_0002416 integumental system UBERON_0034942 vibrissal follicle-sinus complex +UBERON_0002416 integumental system UBERON_0035073 duct of eccrine sweat gland +UBERON_0002416 integumental system UBERON_0035074 duct of apocrine sweat gland +UBERON_0002416 integumental system UBERON_0035501 unencapsulated tactile receptor +UBERON_0002416 integumental system UBERON_0035609 outer root sheath companion layer +UBERON_0002416 integumental system UBERON_0035610 hair canal +UBERON_0002416 integumental system UBERON_0035611 hair peg +UBERON_0002416 integumental system UBERON_0036149 suprapubic skin +UBERON_0002416 integumental system UBERON_0036150 skin appendage follicle +UBERON_0002416 integumental system UBERON_0036219 ungulate coronary band +UBERON_0002416 integumental system UBERON_0036245 parenchyma of mammary gland +UBERON_0002416 integumental system UBERON_0037458 hair of neck +UBERON_0002416 integumental system UBERON_0037459 hair of limb +UBERON_0002416 integumental system UBERON_0037461 primary hair +UBERON_0002416 integumental system UBERON_0037462 vellus hair +UBERON_0002416 integumental system UBERON_0037463 terminal hair +UBERON_0002416 integumental system UBERON_0037464 androgenic hair +UBERON_0002416 integumental system UBERON_0037465 catagen hair +UBERON_0002416 integumental system UBERON_0037466 telogen hair +UBERON_0002416 integumental system UBERON_0037467 anagen hair +UBERON_0002416 integumental system UBERON_1000003 dewlap +UBERON_0002416 integumental system UBERON_1000010 mole +UBERON_0002416 integumental system UBERON_1000015 skin of snout +UBERON_0002416 integumental system UBERON_1000021 skin of face +UBERON_0002416 integumental system UBERON_1000022 Zymbal's gland +UBERON_0002416 integumental system UBERON_2000622 barbel +UBERON_0002416 integumental system UBERON_2001160 dorsal scute +UBERON_0002416 integumental system UBERON_2001179 epidermal superficial stratum +UBERON_0002416 integumental system UBERON_2001181 epidermal intermediate stratum +UBERON_0002416 integumental system UBERON_2001183 dermal superficial region +UBERON_0002416 integumental system UBERON_2001186 collagenous dermal stroma +UBERON_0002416 integumental system UBERON_2001463 melanophore stripe +UBERON_0002416 integumental system UBERON_2001547 abdominal scute +UBERON_0002416 integumental system UBERON_2001606 caudal scute +UBERON_0002416 integumental system UBERON_2001624 type 2 odontode +UBERON_0002416 integumental system UBERON_2001824 lateral line scale +UBERON_0002416 integumental system UBERON_2001931 infranuchal scute +UBERON_0002416 integumental system UBERON_2001936 posterior nasal barbel +UBERON_0002416 integumental system UBERON_2001937 anterior nasal barbel +UBERON_0002416 integumental system UBERON_2001938 maxillary barbel +UBERON_0002416 integumental system UBERON_2001951 skin flap +UBERON_0002416 integumental system UBERON_2001968 outer mental barbel +UBERON_0002416 integumental system UBERON_2001969 inner mental barbel +UBERON_0002416 integumental system UBERON_2001977 pad +UBERON_0002416 integumental system UBERON_2002024 mental barbel +UBERON_0002416 integumental system UBERON_2002051 scale circulus +UBERON_0002416 integumental system UBERON_2002053 bony plate +UBERON_0002416 integumental system UBERON_2002118 scale radius +UBERON_0002416 integumental system UBERON_2002119 dermal scale focus +UBERON_0002416 integumental system UBERON_2002122 pouch scale +UBERON_0002416 integumental system UBERON_2002195 epidermal placode +UBERON_0002416 integumental system UBERON_2002242 scale primordium +UBERON_0002416 integumental system UBERON_2002249 ctenius +UBERON_0002416 integumental system UBERON_2002273 ctenoid scale +UBERON_0002416 integumental system UBERON_2002274 transforming ctenoid scale +UBERON_0002416 integumental system UBERON_2002283 melanophore spot +UBERON_0002416 integumental system UBERON_2002284 body marking +UBERON_0002416 integumental system UBERON_2002285 cycloid scale +UBERON_0002416 integumental system UBERON_2002294 fish scute +UBERON_0002416 integumental system UBERON_2005220 larval melanophore stripe +UBERON_0002416 integumental system UBERON_2005221 dorsal larval melanophore stripe +UBERON_0002416 integumental system UBERON_2005222 ventral larval melanophore stripe +UBERON_0002416 integumental system UBERON_2005223 lateral larval melanophore stripe +UBERON_0002416 integumental system UBERON_2005224 yolk larval melanophore stripe +UBERON_0002416 integumental system UBERON_3000961 external integument structure +UBERON_0002416 integumental system UBERON_3000972 head external integument structure +UBERON_0002416 integumental system UBERON_3000977 body external integument structure +UBERON_0002416 integumental system UBERON_3000981 limb external integument structure +UBERON_0002416 integumental system UBERON_3000982 tail external integument structure +UBERON_0002416 integumental system UBERON_3000989 pectoral fold +UBERON_0002416 integumental system UBERON_3000991 dorsal folds +UBERON_0002416 integumental system UBERON_3000994 longitudinal dorsal folds +UBERON_0002416 integumental system UBERON_3000995 transversal dorsal folds +UBERON_0002416 integumental system UBERON_3000999 dorsal pouch +UBERON_0002416 integumental system UBERON_3001003 cloacal fold +UBERON_0002416 integumental system UBERON_3001005 dorsolateral fold +UBERON_0002416 integumental system UBERON_3001007 body granules +UBERON_0002416 integumental system UBERON_3001008 body wart +UBERON_0002416 integumental system UBERON_3001009 body spicule +UBERON_0002416 integumental system UBERON_3001010 body tubercle +UBERON_0002416 integumental system UBERON_3010006 dorsal skin texture +UBERON_0002416 integumental system UBERON_3010010 ventral skin texture +UBERON_0002416 integumental system UBERON_3010011 axillary glands +UBERON_0002416 integumental system UBERON_3010014 inguinal glands +UBERON_0002416 integumental system UBERON_3010021 dorsal glands +UBERON_0002416 integumental system UBERON_3010031 ventral glands +UBERON_0002416 integumental system UBERON_3010044 dorsal crest +UBERON_0002416 integumental system UBERON_3010058 dermal annular fold +UBERON_0002416 integumental system UBERON_3010071 cranial crest +UBERON_0002416 integumental system UBERON_3010075 tympanic fold +UBERON_0002416 integumental system UBERON_3010079 upper eyelid protuberances +UBERON_0002416 integumental system UBERON_3010080 snout protuberances +UBERON_0002416 integumental system UBERON_3010081 interorbital fold +UBERON_0002416 integumental system UBERON_3010085 postrictal protuberances +UBERON_0002416 integumental system UBERON_3010091 upper lip protuberances +UBERON_0002416 integumental system UBERON_3010093 villosities +UBERON_0002416 integumental system UBERON_3010096 vocal sac +UBERON_0002416 integumental system UBERON_3010100 mental gland +UBERON_0002416 integumental system UBERON_3010103 vocal sac glands +UBERON_0002416 integumental system UBERON_3010104 pectoral glands +UBERON_0002416 integumental system UBERON_3010106 tympanic papilla +UBERON_0002416 integumental system UBERON_3010123 finger fringes +UBERON_0002416 integumental system UBERON_3010124 toe fringes +UBERON_0002416 integumental system UBERON_3010127 fringe on postaxial edge of finger IV +UBERON_0002416 integumental system UBERON_3010163 metacarpal fold +UBERON_0002416 integumental system UBERON_3010164 ulnar fold +UBERON_0002416 integumental system UBERON_3010166 fringe on postaxial edge of toe V +UBERON_0002416 integumental system UBERON_3010167 metatarsal fold +UBERON_0002416 integumental system UBERON_3010168 tarsal fringe +UBERON_0002416 integumental system UBERON_3010170 ungual flap +UBERON_0002416 integumental system UBERON_3010175 circumferential groove +UBERON_0002416 integumental system UBERON_3010178 finger glands +UBERON_0002416 integumental system UBERON_3010179 web glands +UBERON_0002416 integumental system UBERON_3010181 humeral glands +UBERON_0002416 integumental system UBERON_3010182 tibial glands +UBERON_0002416 integumental system UBERON_3010183 femoral glands +UBERON_0002416 integumental system UBERON_3010189 ulnar protuberances +UBERON_0002416 integumental system UBERON_3010190 tibial protuberances +UBERON_0002416 integumental system UBERON_3010191 calcar anterior +UBERON_0002416 integumental system UBERON_3010192 calcar posterior +UBERON_0002416 integumental system UBERON_3010193 prepollical protuberances +UBERON_0002416 integumental system UBERON_3010200 vasculature of respiratory integument +UBERON_0002416 integumental system UBERON_3010201 dorsal tail tubercle +UBERON_0002416 integumental system UBERON_3010202 tail base gland +UBERON_0002416 integumental system UBERON_3010203 dorsal tail fin +UBERON_0002416 integumental system UBERON_3010204 ventral tail fin +UBERON_0002416 integumental system UBERON_3010209 keratinous claw +UBERON_0002416 integumental system UBERON_3010226 postiliac glands +UBERON_0002416 integumental system UBERON_3010227 costal protuberances +UBERON_0002416 integumental system UBERON_3010229 costal grooves +UBERON_0002416 integumental system UBERON_3010231 costal folds +UBERON_0002416 integumental system UBERON_3010235 nuchal groove +UBERON_0002416 integumental system UBERON_3010239 subocular groove +UBERON_0002416 integumental system UBERON_3010241 labial fold +UBERON_0002416 integumental system UBERON_3010242 nasolabial groove +UBERON_0002416 integumental system UBERON_3010599 stratum spongiosum +UBERON_0002416 integumental system UBERON_3010603 body gland +UBERON_0002416 integumental system UBERON_3010604 cranial glands +UBERON_0002416 integumental system UBERON_3010606 limb gland +UBERON_0002416 integumental system UBERON_3010721 limb villosities +UBERON_0002416 integumental system UBERON_3010802 courtship gland +UBERON_0002416 integumental system UBERON_3010813 vent glands +UBERON_0002416 integumental system UBERON_4000051 lepidosteoid scale +UBERON_0002416 integumental system UBERON_4000052 ganoid scale +UBERON_0002416 integumental system UBERON_4000055 polypteroid scale +UBERON_0002416 integumental system UBERON_4000070 elasmoid scale +UBERON_0002416 integumental system UBERON_4000074 palaeoniscoid scale +UBERON_0002416 integumental system UBERON_4000080 keratin-based scale +UBERON_0002416 integumental system UBERON_4000081 cosmoid scale +UBERON_0002416 integumental system UBERON_4000104 ganoine +UBERON_0002416 integumental system UBERON_4000105 limiting layer of elasmoid scale +UBERON_0002416 integumental system UBERON_4000107 elasmodine +UBERON_0002416 integumental system UBERON_4200092 flexor tubercle of ungual +UBERON_0002416 integumental system UBERON_4200093 guard scale +UBERON_0002416 integumental system UBERON_4200113 predorsal scute +UBERON_0002416 integumental system UBERON_4200151 toe disc +UBERON_0002416 integumental system UBERON_4200165 basal scute +UBERON_0002416 integumental system UBERON_4200188 manual toe disc +UBERON_0002416 integumental system UBERON_4200189 pedal toe disc +UBERON_0002416 integumental system UBERON_4300004 scale pocket +UBERON_0002416 integumental system UBERON_4300031 fin web +UBERON_0002416 integumental system UBERON_4300102 postcleithral scale +UBERON_0002416 integumental system UBERON_4300188 terminal scale +UBERON_0002416 integumental system UBERON_4300211 lateral plate +UBERON_0002416 integumental system UBERON_4300222 axilar scale +UBERON_0002416 integumental system UBERON_4300235 spinoid scale +UBERON_0002416 integumental system UBERON_4300238 pored lateral line scale +UBERON_0002416 integumental system UBERON_4300242 lateral line scale 6 +UBERON_0002416 integumental system UBERON_4300287 nasal barbel +UBERON_0002416 integumental system UBERON_4300288 rictal barbel +UBERON_0002416 integumental system UBERON_4500003 predorsal scale +UBERON_0002416 integumental system UBERON_6001845 insect cephalopharyngeal skeleton +UBERON_0002416 integumental system UBERON_6001848 insect epipharyngeal sclerite +UBERON_0002416 integumental system UBERON_6004340 insect wing hair +UBERON_0002416 integumental system UBERON_6004475 insect sclerite +UBERON_0002416 integumental system UBERON_6004476 insect tergite +UBERON_0002416 integumental system UBERON_6004477 insect sternite +UBERON_0002416 integumental system UBERON_6004481 insect adult external head +UBERON_0002416 integumental system UBERON_6004520 insect mouthpart +UBERON_0002416 integumental system UBERON_6004521 insect clypeus +UBERON_0002416 integumental system UBERON_6004535 insect proboscis +UBERON_0002416 integumental system UBERON_6004540 insect basiproboscis +UBERON_0002416 integumental system UBERON_6004551 insect adult external thorax +UBERON_0002416 integumental system UBERON_6004552 insect tergum +UBERON_0002416 integumental system UBERON_6004578 insect adult external mesothorax +UBERON_0002416 integumental system UBERON_6004579 insect dorsal mesothorax +UBERON_0002416 integumental system UBERON_6004580 insect mesothoracic tergum +UBERON_0002416 integumental system UBERON_6004788 insect adult external abdomen +UBERON_0002416 integumental system UBERON_6004823 insect analia +UBERON_0002416 integumental system UBERON_6004824 insect female analia +UBERON_0002416 integumental system UBERON_6004825 insect male analia +UBERON_0002416 integumental system UBERON_6004979 insect trichome +UBERON_0002416 integumental system UBERON_6004983 insect embryonic/larval cuticle +UBERON_0002416 integumental system UBERON_6004986 insect third instar larval cuticle +UBERON_0002416 integumental system UBERON_6005054 insect spiracle +UBERON_0002416 integumental system UBERON_6005378 insect wing margin +UBERON_0002416 integumental system UBERON_6005393 insect embryonic/larval integumentary system +UBERON_0002416 integumental system UBERON_6005396 insect adult integumentary system +UBERON_0002416 integumental system UBERON_6005913 insect arista lateral +UBERON_0002416 integumental system UBERON_6007245 insect cuticular specialization +UBERON_0002416 integumental system UBERON_6007284 insect region of integument +UBERON_0002416 integumental system UBERON_6007285 insect segmental subdivision of integument +UBERON_0002416 integumental system UBERON_6007288 insect integumentary specialisation +UBERON_0002416 integumental system UBERON_6007289 insect tagmatic subdivision of integument +UBERON_0002416 integumental system UBERON_7500040 tip of nail +UBERON_0002416 integumental system UBERON_8300000 skin of scalp +UBERON_0002416 integumental system UBERON_8410021 inguinal region skin +UBERON_0002416 integumental system UBERON_8420000 hair of scalp +UBERON_0002465 lymphoid system CL_0000084 CD4-positive T cell +UBERON_0002465 lymphoid system CL_0000084 CD8-positive T cell +UBERON_0002465 lymphoid system CL_0000236 B cell +UBERON_0002465 lymphoid system CL_0000542 EBV-transformed lymphocyte +UBERON_0002465 lymphoid system UBERON_0000029 lymph node +UBERON_0002465 lymphoid system UBERON_0000444 lymphoid follicle +UBERON_0002465 lymphoid system UBERON_0001097 axillary lymph node +UBERON_0002465 lymphoid system UBERON_0001211 Peyer's patch +UBERON_0002465 lymphoid system UBERON_0001249 spleen lymphoid follicle +UBERON_0002465 lymphoid system UBERON_0001422 facial lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0001425 pectoral lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0001426 jugular lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0001473 lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0001542 inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0001543 popliteal lymph node +UBERON_0002465 lymphoid system UBERON_0001631 thoracic duct +UBERON_0002465 lymphoid system UBERON_0001732 pharyngeal tonsil +UBERON_0002465 lymphoid system UBERON_0001735 tonsillar ring +UBERON_0002465 lymphoid system UBERON_0001744 lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0001745 secondary nodular lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0001960 periarterial lymphatic sheath +UBERON_0002465 lymphoid system UBERON_0001961 mucosa-associated lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0001962 gut-associated lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0001963 bronchial-associated lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0002006 cortex of lymph node +UBERON_0002465 lymphoid system UBERON_0002007 medulla of lymph node +UBERON_0002465 lymphoid system UBERON_0002042 lymphatic vessel endothelium +UBERON_0002465 lymphoid system UBERON_0002194 capsule of lymph node +UBERON_0002465 lymphoid system UBERON_0002195 trabecula of lymph node +UBERON_0002465 lymphoid system UBERON_0002372 tonsil +UBERON_0002465 lymphoid system UBERON_0002373 palatine tonsil +UBERON_0002465 lymphoid system UBERON_0002391 lymph +UBERON_0002465 lymphoid system UBERON_0002429 cervical lymph node +UBERON_0002465 lymphoid system UBERON_0002507 abdominal lymph node +UBERON_0002465 lymphoid system UBERON_0002508 celiac lymph node +UBERON_0002465 lymphoid system UBERON_0002509 mesenteric lymph node +UBERON_0002465 lymphoid system UBERON_0002520 submandibular lymph node +UBERON_0002465 lymphoid system UBERON_0002524 mediastinal lymph node +UBERON_0002465 lymphoid system UBERON_0002525 brachial lymph node +UBERON_0002465 lymphoid system UBERON_0002526 lumbar lymph node +UBERON_0002465 lymphoid system UBERON_0002527 pancreatic lymph node +UBERON_0002465 lymphoid system UBERON_0002528 sacral lymph node +UBERON_0002465 lymphoid system UBERON_0003425 renal lymph node +UBERON_0002465 lymphoid system UBERON_0003453 large intestine Peyer's patch +UBERON_0002465 lymphoid system UBERON_0003454 small intestine Peyer's patch +UBERON_0002465 lymphoid system UBERON_0003456 respiratory system lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0003483 thymus lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0003529 respiratory system lymphatic vessel endothelium +UBERON_0002465 lymphoid system UBERON_0003949 tubal tonsil +UBERON_0002465 lymphoid system UBERON_0003968 peripheral lymph node +UBERON_0002465 lymphoid system UBERON_0004041 spleen primary B follicle +UBERON_0002465 lymphoid system UBERON_0004042 spleen secondary B follicle +UBERON_0002465 lymphoid system UBERON_0004232 lymphatic vessel smooth muscle +UBERON_0002465 lymphoid system UBERON_0004296 respiratory system lymphatic vessel smooth muscle +UBERON_0002465 lymphoid system UBERON_0004536 lymph vasculature +UBERON_0002465 lymphoid system UBERON_0004693 Peyer's patch epithelium +UBERON_0002465 lymphoid system UBERON_0004697 Peyer's patch germinal center +UBERON_0002465 lymphoid system UBERON_0004722 deep cervical lymph node +UBERON_0002465 lymphoid system UBERON_0004850 lymph node endothelium +UBERON_0002465 lymphoid system UBERON_0004870 superficial cervical lymph node +UBERON_0002465 lymphoid system UBERON_0005196 spleen germinal center +UBERON_0002465 lymphoid system UBERON_0005207 tonsil capsule +UBERON_0002465 lymphoid system UBERON_0005435 upper part of cisterna chyli +UBERON_0002465 lymphoid system UBERON_0005463 subcapsular sinus of lymph node +UBERON_0002465 lymphoid system UBERON_0006558 lymphatic part of lymphoid system +UBERON_0002465 lymphoid system UBERON_0006561 non-lymphatic part of lymphoid system +UBERON_0002465 lymphoid system UBERON_0006842 lymphatic capillary +UBERON_0002465 lymphoid system UBERON_0007250 lingual tonsil +UBERON_0002465 lymphoid system UBERON_0007384 appendage lymph vessel +UBERON_0002465 lymphoid system UBERON_0007385 pectoral appendage lymph vessel +UBERON_0002465 lymphoid system UBERON_0007386 pelvic appendage lymph vessel +UBERON_0002465 lymphoid system UBERON_0007643 node of ligamentum arteriosum +UBERON_0002465 lymphoid system UBERON_0007644 thoracic lymph node +UBERON_0002465 lymphoid system UBERON_0009006 deep inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0009007 superficial inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0009039 lymph node germinal center +UBERON_0002465 lymphoid system UBERON_0009744 lymph node medullary sinus +UBERON_0002465 lymphoid system UBERON_0009745 lymph node medullary cord +UBERON_0002465 lymphoid system UBERON_0010160 lumen of lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0010386 Peyer's patch follicle +UBERON_0002465 lymphoid system UBERON_0010387 Peyer's patch T cell area +UBERON_0002465 lymphoid system UBERON_0010392 B cell domain +UBERON_0002465 lymphoid system UBERON_0010393 T cell domain +UBERON_0002465 lymphoid system UBERON_0010394 lymphocyte domain +UBERON_0002465 lymphoid system UBERON_0010395 lymph node primary follicle +UBERON_0002465 lymphoid system UBERON_0010396 afferent lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0010397 efferent lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0010416 lymph node B cell domain +UBERON_0002465 lymphoid system UBERON_0010417 lymph node T cell domain +UBERON_0002465 lymphoid system UBERON_0010420 lymph node germinal center mantle zone +UBERON_0002465 lymphoid system UBERON_0010421 spleen B cell corona +UBERON_0002465 lymphoid system UBERON_0010422 primary nodular lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0010423 primary lymphoid nodule of tonsil +UBERON_0002465 lymphoid system UBERON_0010748 lymph node follicle +UBERON_0002465 lymphoid system UBERON_0010753 lymph node secondary follicle +UBERON_0002465 lymphoid system UBERON_0010754 germinal center +UBERON_0002465 lymphoid system UBERON_0010755 secondary follicle corona +UBERON_0002465 lymphoid system UBERON_0010756 spleen follicular dendritic cell network +UBERON_0002465 lymphoid system UBERON_0011363 cranial lymph vasculature +UBERON_0002465 lymphoid system UBERON_0011765 jugular lymph sac +UBERON_0002465 lymphoid system UBERON_0012069 epithelium-associated lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0012181 tonsil crypt +UBERON_0002465 lymphoid system UBERON_0012236 intercostal lymph node +UBERON_0002465 lymphoid system UBERON_0012306 lateral cervical lymph node +UBERON_0002465 lymphoid system UBERON_0012307 anterior cervical lymph node +UBERON_0002465 lymphoid system UBERON_0012308 superficial lateral cervical lymph node +UBERON_0002465 lymphoid system UBERON_0012309 superficial anterior cervical lymph node +UBERON_0002465 lymphoid system UBERON_0012310 deep lateral cervical lymph node +UBERON_0002465 lymphoid system UBERON_0012311 deep anterior cervical lymph node +UBERON_0002465 lymphoid system UBERON_0012330 nasal-associated lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0013478 cecal tonsil +UBERON_0002465 lymphoid system UBERON_0013688 tonsil germinal center +UBERON_0002465 lymphoid system UBERON_0013689 appendix lymphoid tissue +UBERON_0002465 lymphoid system UBERON_0013696 tonsil epithelium +UBERON_0002465 lymphoid system UBERON_0015453 subcutaneous lymph node +UBERON_0002465 lymphoid system UBERON_0015469 splenic lymph node +UBERON_0002465 lymphoid system UBERON_0015472 tracheobronchial lymph node +UBERON_0002465 lymphoid system UBERON_0015857 parotid lymph node +UBERON_0002465 lymphoid system UBERON_0015859 hepatic lymph node +UBERON_0002465 lymphoid system UBERON_0015860 visceral abdominal lymph node +UBERON_0002465 lymphoid system UBERON_0015863 gastric lymph node +UBERON_0002465 lymphoid system UBERON_0015865 pancreaticosplenic lymph node +UBERON_0002465 lymphoid system UBERON_0015866 pyloric lymph node +UBERON_0002465 lymphoid system UBERON_0015867 cystic lymph node +UBERON_0002465 lymphoid system UBERON_0015868 lymph node of epiploic foramen +UBERON_0002465 lymphoid system UBERON_0015869 retropharyngeal lymph node +UBERON_0002465 lymphoid system UBERON_0015870 lymph node of head +UBERON_0002465 lymphoid system UBERON_0015871 facial lymph node +UBERON_0002465 lymphoid system UBERON_0015872 mandibular lymph node +UBERON_0002465 lymphoid system UBERON_0015876 pelvic lymph node +UBERON_0002465 lymphoid system UBERON_0015877 parietal pelvic lymph node +UBERON_0002465 lymphoid system UBERON_0015878 common iliac lymph node +UBERON_0002465 lymphoid system UBERON_0015880 external iliac lymph node +UBERON_0002465 lymphoid system UBERON_0015881 internal iliac lymph node +UBERON_0002465 lymphoid system UBERON_0015883 gluteal lymph node +UBERON_0002465 lymphoid system UBERON_0015884 presymphysial lymph node +UBERON_0002465 lymphoid system UBERON_0015895 proximal deep inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0015917 superficial lymph node +UBERON_0002465 lymphoid system UBERON_0015918 deep lymph node +UBERON_0002465 lymphoid system UBERON_0015922 accessory mandibular lymph node +UBERON_0002465 lymphoid system UBERON_0015923 superficial parotid lymph node +UBERON_0002465 lymphoid system UBERON_0015925 superficial intraparotid lymph node +UBERON_0002465 lymphoid system UBERON_0015926 cranial deep lymph node +UBERON_0002465 lymphoid system UBERON_0016374 sciatic lymph node +UBERON_0002465 lymphoid system UBERON_0016378 ileocolic lymph node +UBERON_0002465 lymphoid system UBERON_0016382 prescapular lymph node +UBERON_0002465 lymphoid system UBERON_0016386 paraaortic lymph node +UBERON_0002465 lymphoid system UBERON_0016390 auricular lymph node +UBERON_0002465 lymphoid system UBERON_0016391 thymic lymph node +UBERON_0002465 lymphoid system UBERON_0016392 mastoid lymph node +UBERON_0002465 lymphoid system UBERON_0016393 deep parotid lymph node +UBERON_0002465 lymphoid system UBERON_0016394 anterior auricular lymph node +UBERON_0002465 lymphoid system UBERON_0016395 infra-auricular lymph node +UBERON_0002465 lymphoid system UBERON_0016396 intraglandular lymph node +UBERON_0002465 lymphoid system UBERON_0016397 submental lymph node +UBERON_0002465 lymphoid system UBERON_0016398 lymph node of lower limb +UBERON_0002465 lymphoid system UBERON_0016399 lymph node of upper limb +UBERON_0002465 lymphoid system UBERON_0016401 pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0016402 mesocolic lymph node +UBERON_0002465 lymphoid system UBERON_0016481 bronchial lymph node +UBERON_0002465 lymphoid system UBERON_0018226 pulmonary part of lymphatic system +UBERON_0002465 lymphoid system UBERON_0018227 pulmonary lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0018410 lacteal +UBERON_0002465 lymphoid system UBERON_0034949 lymphatic valve +UBERON_0002465 lymphoid system UBERON_0034950 lymph sac of lymph heart +UBERON_0002465 lymphoid system UBERON_0034951 subcutaneous lymph sac +UBERON_0002465 lymphoid system UBERON_0034952 intrapleuroperitoneal lymph sac +UBERON_0002465 lymphoid system UBERON_0034953 embryonic lymph sac +UBERON_0002465 lymphoid system UBERON_0034958 retroperitoneal embryonic lymph sac +UBERON_0002465 lymphoid system UBERON_0035079 deep intraparotid lymph node +UBERON_0002465 lymphoid system UBERON_0035080 intraparotid lymph node +UBERON_0002465 lymphoid system UBERON_0035162 infraclavicular lymph node +UBERON_0002465 lymphoid system UBERON_0035171 obturator lymph node +UBERON_0002465 lymphoid system UBERON_0035198 superficial lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0035204 occipital lymph node +UBERON_0002465 lymphoid system UBERON_0035219 parasternal lymph node +UBERON_0002465 lymphoid system UBERON_0035228 tonsillar fossa +UBERON_0002465 lymphoid system UBERON_0035279 supraclavicular lymph node +UBERON_0002465 lymphoid system UBERON_0035371 retroperitoneal lymph node +UBERON_0002465 lymphoid system UBERON_0035495 hilum of lymph node +UBERON_0002465 lymphoid system UBERON_0035520 anterior mediastinal lymph node +UBERON_0002465 lymphoid system UBERON_0035545 deep lymphatic vessel +UBERON_0002465 lymphoid system UBERON_0035608 dura mater lymph vessel +UBERON_0002465 lymphoid system UBERON_0035764 pulmonary lymph node +UBERON_0002465 lymphoid system UBERON_0035765 subsegmental lymph node +UBERON_0002465 lymphoid system UBERON_0036256 iliac lymph sac +UBERON_0002465 lymphoid system UBERON_0036260 embryonic cisterna chyli +UBERON_0002465 lymphoid system UBERON_0036274 tonsillar pillar +UBERON_0002465 lymphoid system UBERON_0037480 supramammary lymph node +UBERON_0002465 lymphoid system UBERON_0037494 paracardial gastric lymph node +UBERON_0002465 lymphoid system UBERON_0037500 subscapular axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037501 pectoral axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037502 central axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037503 apical axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037514 intermediate mesenteric lymph node +UBERON_0002465 lymphoid system UBERON_0037515 juxta-arterial mesenteric lymph node +UBERON_0002465 lymphoid system UBERON_0037518 epicolic lymph node +UBERON_0002465 lymphoid system UBERON_0037521 preterminal colic lymph node +UBERON_0002465 lymphoid system UBERON_0037522 ileal lymph node +UBERON_0002465 lymphoid system UBERON_0037527 superior pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0037528 inferior pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0037530 inferior pancreatic lymph node +UBERON_0002465 lymphoid system UBERON_0037531 intestinal lymph node +UBERON_0002465 lymphoid system UBERON_0037532 medial common iliac lymph node +UBERON_0002465 lymphoid system UBERON_0037533 intermediate common iliac lymph node +UBERON_0002465 lymphoid system UBERON_0037534 lateral common iliac lymph node +UBERON_0002465 lymphoid system UBERON_0037535 subaortic common iliac lymph node +UBERON_0002465 lymphoid system UBERON_0037536 promontory lymph node +UBERON_0002465 lymphoid system UBERON_0037538 medial external iliac lymph node +UBERON_0002465 lymphoid system UBERON_0037539 intermediate external iliac lymph node +UBERON_0002465 lymphoid system UBERON_0037540 lateral external iliac lymph node +UBERON_0002465 lymphoid system UBERON_0037541 interiliac lymph node +UBERON_0002465 lymphoid system UBERON_0037548 superior gluteal lymph node +UBERON_0002465 lymphoid system UBERON_0037549 inferior gluteal lymph node +UBERON_0002465 lymphoid system UBERON_0037559 anorectal lymph node +UBERON_0002465 lymphoid system UBERON_0037560 superficial axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037566 diaphragmatic lymph node +UBERON_0002465 lymphoid system UBERON_0037580 left gastric lymph node +UBERON_0002465 lymphoid system UBERON_0037590 lateral axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037601 left parietal lumbar lymph node +UBERON_0002465 lymphoid system UBERON_0037614 appendicular lymph node +UBERON_0002465 lymphoid system UBERON_0037615 pararectal lymph node +UBERON_0002465 lymphoid system UBERON_0037722 right retropharyngeal lymph node +UBERON_0002465 lymphoid system UBERON_0037723 left retropharyngeal lymph node +UBERON_0002465 lymphoid system UBERON_0037763 lateral superior deep cervical lymph node +UBERON_0002465 lymphoid system UBERON_0037764 anterior superior deep cervical lymph node +UBERON_0002465 lymphoid system UBERON_0037765 lateral inferior deep cervical lymph node +UBERON_0002465 lymphoid system UBERON_0037766 anterior inferior deep cervical lymph node +UBERON_0002465 lymphoid system UBERON_0037787 right occipital lymph node +UBERON_0002465 lymphoid system UBERON_0037788 left occipital lymph node +UBERON_0002465 lymphoid system UBERON_0037789 right apical axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037790 left apical axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037793 right subscapular axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037794 left subscapular axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037795 right pectoral axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037796 left pectoral axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037797 right central axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037798 left central axillary lymph node +UBERON_0002465 lymphoid system UBERON_0037865 jugular lymph node +UBERON_0002465 lymphoid system UBERON_0037995 supramandibular lymph node +UBERON_0002465 lymphoid system UBERON_0037998 external jugular lymph node +UBERON_0002465 lymphoid system UBERON_0038001 sternal lymph node +UBERON_0002465 lymphoid system UBERON_0038002 upper intercostal lymph node +UBERON_0002465 lymphoid system UBERON_0038003 lower intercostal lymph node +UBERON_0002465 lymphoid system UBERON_0038037 subclavian lymph node +UBERON_0002465 lymphoid system UBERON_0038048 antebrachial lymph node +UBERON_0002465 lymphoid system UBERON_0038053 cardiophrenic angle lymph node +UBERON_0002465 lymphoid system UBERON_0038054 retrocrural lymph node +UBERON_0002465 lymphoid system UBERON_0038093 jejunal lymph node +UBERON_0002465 lymphoid system UBERON_0038094 inferior rectal lymph node +UBERON_0002465 lymphoid system UBERON_0038124 medial diaphragmatic lymph node +UBERON_0002465 lymphoid system UBERON_0038137 parietal pre-aortic lymph node +UBERON_0002465 lymphoid system UBERON_0038139 retro-aortic lymph node +UBERON_0002465 lymphoid system UBERON_0038587 paracardiac lymph node +UBERON_0002465 lymphoid system UBERON_0038632 pericardial lymph node +UBERON_0002465 lymphoid system UBERON_0038633 aortopulmonary lymph node +UBERON_0002465 lymphoid system UBERON_0038634 para-aortic thoracic lymph node +UBERON_0002465 lymphoid system UBERON_0038635 interlobar lymph node +UBERON_0002465 lymphoid system UBERON_0038638 lobar lymph node +UBERON_0002465 lymphoid system UBERON_0038641 segmental lymph node +UBERON_0002465 lymphoid system UBERON_0038647 lymph node of inferior pulmonary ligament +UBERON_0002465 lymphoid system UBERON_0038651 superior mediastinal lymph node +UBERON_0002465 lymphoid system UBERON_0038684 superior left gastric lymph node +UBERON_0002465 lymphoid system UBERON_0038685 inferior left gastric lymph node +UBERON_0002465 lymphoid system UBERON_0038687 visceral lymph node of abdomen +UBERON_0002465 lymphoid system UBERON_0038691 common hepatic lymph node +UBERON_0002465 lymphoid system UBERON_0038694 hepatoportal lymph node +UBERON_0002465 lymphoid system UBERON_0038695 proximal superior pancreatic lymph node +UBERON_0002465 lymphoid system UBERON_0038696 distal superior pancreatic lymph node +UBERON_0002465 lymphoid system UBERON_0038697 anterior superior pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0038698 posterior superior pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0038699 anterior inferior pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0038700 posterior inferior pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0038707 anterior pancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0038727 juxta-intestinal mesenteric lymph node +UBERON_0002465 lymphoid system UBERON_0038734 visceral pre-aortic lymph node +UBERON_0002465 lymphoid system UBERON_0038735 juxta-arterial jejunal lymph node +UBERON_0002465 lymphoid system UBERON_0038736 juxta-arterial ileal lymph node +UBERON_0002465 lymphoid system UBERON_0038737 intermediate jejunal lymph node +UBERON_0002465 lymphoid system UBERON_0038738 intermediate ileal lymph node +UBERON_0002465 lymphoid system UBERON_0038746 gastro-epiploic lymph node +UBERON_0002465 lymphoid system UBERON_0038784 pararectal lymph node of pelvis +UBERON_0002465 lymphoid system UBERON_0038787 superior ileocolic lymph node +UBERON_0002465 lymphoid system UBERON_0038796 lymph node along bile duct +UBERON_0002465 lymphoid system UBERON_0038818 posterior ancreaticoduodenal lymph node +UBERON_0002465 lymphoid system UBERON_0038849 craniocervical lymph node +UBERON_0002465 lymphoid system UBERON_0038853 superficial popliteal lymph node +UBERON_0002465 lymphoid system UBERON_0038854 deep popliteal lymph node +UBERON_0002465 lymphoid system UBERON_0038855 superior medial inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0038856 superior lateral inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0038857 inferior inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0038859 intermediate deep inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0038860 distal deep inguinal lymph node +UBERON_0002465 lymphoid system UBERON_0038861 tibial lymph node +UBERON_0002465 lymphoid system UBERON_0038864 fibular lymph node +UBERON_0002465 lymphoid system UBERON_0038867 interpectoral lymph node +UBERON_0002465 lymphoid system UBERON_0038868 paramammary lymph node +UBERON_0002465 lymphoid system UBERON_0038870 cubital lymph node +UBERON_0002465 lymphoid system UBERON_0038871 supratrochlear lymph node +UBERON_0002465 lymphoid system UBERON_0038878 lateral diaphragmatic lymph node +UBERON_0002465 lymphoid system UBERON_0038879 anterior diaphragmatic lymph node +UBERON_0002465 lymphoid system UBERON_0038882 posterior diaphragmatic lymph node +UBERON_0002465 lymphoid system UBERON_0038885 brachiocephalic lymph node +UBERON_0002465 lymphoid system UBERON_0038888 posterior mediastinal lymph node +UBERON_0002465 lymphoid system UBERON_0038894 paratracheal lymph node +UBERON_0002465 lymphoid system UBERON_0038897 superior tracheobronchial lymph node +UBERON_0002465 lymphoid system UBERON_0038900 inferior tracheobronchial lymph node +UBERON_0002465 lymphoid system UBERON_0038920 buccinator lymph node +UBERON_0002465 lymphoid system UBERON_0038922 nasolabial lymph node +UBERON_0002465 lymphoid system UBERON_0038923 malar lymph node +UBERON_0002465 lymphoid system UBERON_0038925 lingual lymph node +UBERON_0002465 lymphoid system UBERON_0038929 infrahyoid lymph node +UBERON_0002465 lymphoid system UBERON_0038930 prelaryngeal lymph node +UBERON_0002465 lymphoid system UBERON_0038931 thyroid lymph node +UBERON_0002465 lymphoid system UBERON_0038932 pretracheal lymph node +UBERON_0002465 lymphoid system UBERON_0038934 superior deep lateral cervical lymph node +UBERON_0002465 lymphoid system UBERON_0038935 inferior deep lateral cervical lymph node +UBERON_0002465 lymphoid system UBERON_0038936 jugulodigastric lymph node +UBERON_0002465 lymphoid system UBERON_0038938 accessory cervical lymph node +UBERON_0002465 lymphoid system UBERON_0038943 superior diaphragmatic lymph node +UBERON_0002465 lymphoid system UBERON_0038951 suprapyloric lymph node +UBERON_0002465 lymphoid system UBERON_0038952 subpyloric lymph node +UBERON_0002465 lymphoid system UBERON_0038953 retropyloric lymph node +UBERON_0002465 lymphoid system UBERON_0039162 inferior ileocolic lymph node +UBERON_0002465 lymphoid system UBERON_0039163 lateral sacral lymph node +UBERON_0002465 lymphoid system UBERON_0039164 medial sacral lymph node +UBERON_0002465 lymphoid system UBERON_0039167 bronchopulmonary lymph node +UBERON_0002465 lymphoid system UBERON_0039168 colic lymph node +UBERON_0002465 lymphoid system UBERON_2005106 longitudinal lateral lymphatic vessel +UBERON_0002465 lymphoid system UBERON_2005303 caudal fin lymph vessel +UBERON_0002465 lymphoid system UBERON_2005319 intersegmental lymph vessel +UBERON_0002465 lymphoid system UBERON_2005320 dorsal longitudinal lymphatic vessel +UBERON_0002465 lymphoid system UBERON_8410002 small intestine lymphatic vessel +UBERON_0002465 lymphoid system UBERON_8410013 afferent lymphatic vessel valve +UBERON_0002465 lymphoid system UBERON_8410014 efferent lymphatic vessel valve +UBERON_0002465 lymphoid system UBERON_8410029 lymphatic capillary of appendix +UBERON_0002465 lymphoid system UBERON_8410030 lymphatic vessel of appendix +UBERON_0002465 lymphoid system UBERON_8410032 trabecular sinus of lymph node +UBERON_0002465 lymphoid system UBERON_8410035 medullary arteriole of lymph node +UBERON_0002465 lymphoid system UBERON_8410036 medullary venule of lymph node +UBERON_0002465 lymphoid system UBERON_8410038 high endothelial venule of lymph node +UBERON_0002465 lymphoid system UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0002465 lymphoid system UBERON_8410041 venule of lymph node +UBERON_0002465 lymphoid system UBERON_8410042 arteriole of lymph node +UBERON_0002465 lymphoid system UBERON_8410051 lymphatic vessel of colon +UBERON_0002465 lymphoid system UBERON_8410052 lymph node germinal center light zone +UBERON_0002465 lymphoid system UBERON_8410053 lymph node germinal center dark zone +UBERON_0002465 lymphoid system UBERON_8410054 lymphatic capillary of colon +UBERON_0002465 lymphoid system UBERON_8410055 lymphatic capillary of anorectum +UBERON_0002465 lymphoid system UBERON_8410065 lymph node follicle marginal zone +UBERON_0002465 lymphoid system UBERON_8410066 lymph node paracortex +UBERON_0002465 lymphoid system UBERON_8410067 lymph node interfollicular cortex +UBERON_0002465 lymphoid system UBERON_8410069 lymphoid nodule +UBERON_0002465 lymphoid system UBERON_8410071 subcapsular sinus ceiling +UBERON_0002465 lymphoid system UBERON_8410072 subcapsular sinus floor +UBERON_0002465 lymphoid system UBERON_8410074 lymph node paracortical sinus +UBERON_0002465 lymphoid system UBERON_8410075 lymph node paracortical cord +UBERON_0002465 lymphoid system UBERON_8410078 right lymphatic duct +UBERON_0002465 lymphoid system UBERON_8470001 sublumbar lymph node +UBERON_0002465 lymphoid system UBERON_8480006 mesenteric lymphatic vessel +UBERON_0004122 genitourinary system UBERON_0000162 cloaca +UBERON_0004122 genitourinary system UBERON_0000163 embryonic cloaca +UBERON_0004122 genitourinary system UBERON_0000164 primitive urogenital sinus +UBERON_0004122 genitourinary system UBERON_0000460 major vestibular gland +UBERON_0004122 genitourinary system UBERON_0000461 minor vestibular gland +UBERON_0004122 genitourinary system UBERON_0000989 penis +UBERON_0004122 genitourinary system UBERON_0000997 mammalian vulva +UBERON_0004122 genitourinary system UBERON_0001299 glans penis +UBERON_0004122 genitourinary system UBERON_0001300 scrotum +UBERON_0004122 genitourinary system UBERON_0001331 skin of penis +UBERON_0004122 genitourinary system UBERON_0001332 prepuce of penis +UBERON_0004122 genitourinary system UBERON_0001337 spongiose part of urethra +UBERON_0004122 genitourinary system UBERON_0001340 dorsal artery of penis +UBERON_0004122 genitourinary system UBERON_0001471 skin of prepuce of penis +UBERON_0004122 genitourinary system UBERON_0002411 clitoris +UBERON_0004122 genitourinary system UBERON_0003480 vein of clitoris +UBERON_0004122 genitourinary system UBERON_0003820 prostate bud +UBERON_0004122 genitourinary system UBERON_0003903 bursa of Fabricius +UBERON_0004122 genitourinary system UBERON_0003904 bursal plica +UBERON_0004122 genitourinary system UBERON_0003905 bursal follicle +UBERON_0004122 genitourinary system UBERON_0004014 labium minora +UBERON_0004122 genitourinary system UBERON_0004053 external male genitalia +UBERON_0004122 genitourinary system UBERON_0004084 genital labium +UBERON_0004122 genitourinary system UBERON_0004085 labium majora +UBERON_0004122 genitourinary system UBERON_0004176 external genitalia +UBERON_0004122 genitourinary system UBERON_0004713 corpus cavernosum penis +UBERON_0004122 genitourinary system UBERON_0004803 penis epithelium +UBERON_0004122 genitourinary system UBERON_0004812 male prepuce epithelium +UBERON_0004122 genitourinary system UBERON_0004876 urogenital fold +UBERON_0004122 genitourinary system UBERON_0004902 urogenital sinus epithelium +UBERON_0004122 genitourinary system UBERON_0005056 external female genitalia +UBERON_0004122 genitourinary system UBERON_0005294 gonadal ridge +UBERON_0004122 genitourinary system UBERON_0005298 skin of clitoris +UBERON_0004122 genitourinary system UBERON_0005299 prepuce of clitoris +UBERON_0004122 genitourinary system UBERON_0005301 male preputial gland +UBERON_0004122 genitourinary system UBERON_0005792 nephric ridge +UBERON_0004122 genitourinary system UBERON_0005876 undifferentiated genital tubercle +UBERON_0004122 genitourinary system UBERON_0006217 cloacal membrane +UBERON_0004122 genitourinary system UBERON_0006233 female genital tubercle +UBERON_0004122 genitourinary system UBERON_0006261 male genital tubercle +UBERON_0004122 genitourinary system UBERON_0006307 urogenital membrane +UBERON_0004122 genitourinary system UBERON_0006435 os penis +UBERON_0004122 genitourinary system UBERON_0006440 os clitoris +UBERON_0004122 genitourinary system UBERON_0006608 corpus cavernosum clitoridis +UBERON_0004122 genitourinary system UBERON_0006639 crus of penis +UBERON_0004122 genitourinary system UBERON_0006640 crus of clitoris +UBERON_0004122 genitourinary system UBERON_0006653 glans clitoris +UBERON_0004122 genitourinary system UBERON_0006655 septum of scrotum +UBERON_0004122 genitourinary system UBERON_0006656 deep dorsal vein of penis +UBERON_0004122 genitourinary system UBERON_0006690 deep dorsal vein of clitoris +UBERON_0004122 genitourinary system UBERON_0007773 scrotal sweat gland +UBERON_0004122 genitourinary system UBERON_0008311 penile bulb artery +UBERON_0004122 genitourinary system UBERON_0008320 common penile artery +UBERON_0004122 genitourinary system UBERON_0008321 deep artery of penis +UBERON_0004122 genitourinary system UBERON_0008322 deep artery of clitoris +UBERON_0004122 genitourinary system UBERON_0008323 dorsal artery of clitoris +UBERON_0004122 genitourinary system UBERON_0008330 vestibule of vagina +UBERON_0004122 genitourinary system UBERON_0008331 clitoral smooth muscle +UBERON_0004122 genitourinary system UBERON_0008811 intromittent organ +UBERON_0004122 genitourinary system UBERON_0008812 hemipenis +UBERON_0004122 genitourinary system UBERON_0008842 suspensory ligament of testis +UBERON_0004122 genitourinary system UBERON_0009117 indifferent gonad +UBERON_0004122 genitourinary system UBERON_0009196 indifferent external genitalia +UBERON_0004122 genitourinary system UBERON_0009669 embryonic cloacal lumen +UBERON_0004122 genitourinary system UBERON_0009844 urogenital sinus lumen +UBERON_0004122 genitourinary system UBERON_0009846 embryonic cloacal epithelium +UBERON_0004122 genitourinary system UBERON_0009847 prostate field +UBERON_0004122 genitourinary system UBERON_0010141 primitive sex cord of indifferent gonad +UBERON_0004122 genitourinary system UBERON_0010145 paraurethral gland +UBERON_0004122 genitourinary system UBERON_0010146 paraurethral duct +UBERON_0004122 genitourinary system UBERON_0010150 duct of major vestibular gland +UBERON_0004122 genitourinary system UBERON_0010516 clasper +UBERON_0004122 genitourinary system UBERON_0010517 cephalic clasper +UBERON_0004122 genitourinary system UBERON_0010518 pelvic fin clasper +UBERON_0004122 genitourinary system UBERON_0011183 corpus spongiosum of penis +UBERON_0004122 genitourinary system UBERON_0011375 skin of prepuce of clitoris +UBERON_0004122 genitourinary system UBERON_0011510 cloacal bursa +UBERON_0004122 genitourinary system UBERON_0011754 genital swelling +UBERON_0004122 genitourinary system UBERON_0011755 female labial swelling +UBERON_0004122 genitourinary system UBERON_0011756 male genital swelling +UBERON_0004122 genitourinary system UBERON_0011757 differentiated genital tubercle +UBERON_0004122 genitourinary system UBERON_0011826 vestibular gland +UBERON_0004122 genitourinary system UBERON_0011830 duct of lesser vestibular gland +UBERON_0004122 genitourinary system UBERON_0011831 duct of vestibular gland +UBERON_0004122 genitourinary system UBERON_0012241 male urethral meatus +UBERON_0004122 genitourinary system UBERON_0012294 navicular fossa of spongiose part of urethra +UBERON_0004122 genitourinary system UBERON_0012295 GuΓ©rin's valve +UBERON_0004122 genitourinary system UBERON_0012327 pearly penile papule +UBERON_0004122 genitourinary system UBERON_0012328 penile spine +UBERON_0004122 genitourinary system UBERON_0012420 coprodeum +UBERON_0004122 genitourinary system UBERON_0012421 urodeum +UBERON_0004122 genitourinary system UBERON_0012462 proctodeum portion of cloaca +UBERON_0004122 genitourinary system UBERON_0012463 cloacal lumen +UBERON_0004122 genitourinary system UBERON_0012464 cloacal vent +UBERON_0004122 genitourinary system UBERON_0012478 cloacal gland +UBERON_0004122 genitourinary system UBERON_0012479 urodeal gland +UBERON_0004122 genitourinary system UBERON_0012480 cloacal mucosa +UBERON_0004122 genitourinary system UBERON_0012481 cloacal epithelium +UBERON_0004122 genitourinary system UBERON_0012482 submucosa of cloaca +UBERON_0004122 genitourinary system UBERON_0012483 serosa of cloaca +UBERON_0004122 genitourinary system UBERON_0012485 cloacal villus +UBERON_0004122 genitourinary system UBERON_0012486 muscle layer of cloaca +UBERON_0004122 genitourinary system UBERON_0013128 bulb of penis +UBERON_0004122 genitourinary system UBERON_0013129 bulb of vestibule +UBERON_0004122 genitourinary system UBERON_0013237 genital papilla of vulva +UBERON_0004122 genitourinary system UBERON_0013238 future glans +UBERON_0004122 genitourinary system UBERON_0013239 future glans penis +UBERON_0004122 genitourinary system UBERON_0013240 future glans clitoris +UBERON_0004122 genitourinary system UBERON_0013244 vaginal plate +UBERON_0004122 genitourinary system UBERON_0013245 sinovaginal bulb +UBERON_0004122 genitourinary system UBERON_0013501 cloacal sphincter +UBERON_0004122 genitourinary system UBERON_0013672 priapium +UBERON_0004122 genitourinary system UBERON_0013673 os priapium +UBERON_0004122 genitourinary system UBERON_0013674 ctenactinium +UBERON_0004122 genitourinary system UBERON_0013675 toxactinium +UBERON_0004122 genitourinary system UBERON_0013676 aproctal bone of priapium +UBERON_0004122 genitourinary system UBERON_0013677 serrated projection of ctenactinium +UBERON_0004122 genitourinary system UBERON_0013719 dartos muscle of scrotum +UBERON_0004122 genitourinary system UBERON_0013720 dartos muscle of labia majora +UBERON_0004122 genitourinary system UBERON_0014783 cloacal muscle +UBERON_0004122 genitourinary system UBERON_0014784 transverse cloacal muscle +UBERON_0004122 genitourinary system UBERON_0014785 levator cloacae +UBERON_0004122 genitourinary system UBERON_0015174 helicine artery of penis +UBERON_0004122 genitourinary system UBERON_0015479 scrotum skin +UBERON_0004122 genitourinary system UBERON_0016408 corona of glans penis +UBERON_0004122 genitourinary system UBERON_0016409 base of glans penis +UBERON_0004122 genitourinary system UBERON_0016505 Mullerian tubercle +UBERON_0004122 genitourinary system UBERON_0016524 muscle layer of spongiose part of urethra +UBERON_0004122 genitourinary system UBERON_0017160 lumen of hemipenial sheath +UBERON_0004122 genitourinary system UBERON_0017161 hemipenial mucuous gland +UBERON_0004122 genitourinary system UBERON_0017162 hemipenial holocrine gland +UBERON_0004122 genitourinary system UBERON_0017164 dorsal cloacal gland +UBERON_0004122 genitourinary system UBERON_0017180 hemipenis keratinized epithelium +UBERON_0004122 genitourinary system UBERON_0017294 horn of hemipenis +UBERON_0004122 genitourinary system UBERON_0017623 prepelvic clasper +UBERON_0004122 genitourinary system UBERON_0017624 pseudoclasper +UBERON_0004122 genitourinary system UBERON_0017659 ventral surface of penis +UBERON_0004122 genitourinary system UBERON_0017732 raphe of scrotum +UBERON_0004122 genitourinary system UBERON_0018134 rugal fold of scrotum +UBERON_0004122 genitourinary system UBERON_0018315 clasper plate +UBERON_0004122 genitourinary system UBERON_0019197 dorsal nerve of penis +UBERON_0004122 genitourinary system UBERON_0019198 dorsal nerve of clitoris +UBERON_0004122 genitourinary system UBERON_0034691 internal spermatic fascia +UBERON_0004122 genitourinary system UBERON_0034928 dorsal surface of penis +UBERON_0004122 genitourinary system UBERON_0035004 preputial swelling +UBERON_0004122 genitourinary system UBERON_0035005 preputial swelling of male +UBERON_0004122 genitourinary system UBERON_0035006 preputial swelling of female +UBERON_0004122 genitourinary system UBERON_0035098 hemipenis transversus muscle +UBERON_0004122 genitourinary system UBERON_0035104 raphe of penis +UBERON_0004122 genitourinary system UBERON_0035105 sac of scrotum +UBERON_0004122 genitourinary system UBERON_0035142 preputial space of male +UBERON_0004122 genitourinary system UBERON_0035143 preputial space of female +UBERON_0004122 genitourinary system UBERON_0035258 mons pubis +UBERON_0004122 genitourinary system UBERON_0039288 rima vulvae +UBERON_0004122 genitourinary system UBERON_0039421 superficial dorsal vein of penis +UBERON_0004122 genitourinary system UBERON_0039422 dorsal vein of penis +UBERON_0004122 genitourinary system UBERON_3001003 cloacal fold +UBERON_0004122 genitourinary system UBERON_3010240 Nobelian rod +UBERON_0004122 genitourinary system UBERON_3010259 phallodeum +UBERON_0004122 genitourinary system UBERON_3010260 intromittent organ (Ascaphus type) +UBERON_0004122 genitourinary system UBERON_3010589 cloacal papilla +UBERON_0004122 genitourinary system UBERON_3010590 amphibian cloacal gland +UBERON_0004122 genitourinary system UBERON_3011048 genital system +UBERON_0004122 genitourinary system UBERON_4100111 hemipenal sheath +UBERON_0004122 genitourinary system UBERON_4300018 ventral marginal cartilage +UBERON_0004122 genitourinary system UBERON_4300129 dorsal pelvic gland +UBERON_0004122 genitourinary system UBERON_4300130 lateral pelvic gland +UBERON_0007651 anatomical junction UBERON_0007650 esophagogastric junction +UBERON_0034929 external soft tissue zone UBERON_0000310 breast +UBERON_0034929 external soft tissue zone UBERON_0000341 throat diff --git a/docker/prepare-dev-environment/volumes/atlas-data/ontology/organs.txt b/docker/prepare-dev-environment/volumes/atlas-data/ontology/organs.txt new file mode 100644 index 00000000..19e87996 --- /dev/null +++ b/docker/prepare-dev-environment/volumes/atlas-data/ontology/organs.txt @@ -0,0 +1,13704 @@ +#organ id organ name tissue id tissue name +UBERON_0000020 sense organ UBERON_0000004 nose +UBERON_0000020 sense organ UBERON_0000004 olfactory apparatus +UBERON_0000020 sense organ UBERON_0000005 chemosensory organ +UBERON_0000020 sense organ UBERON_0000018 compound eye +UBERON_0000020 sense organ UBERON_0000019 camera-type eye +UBERON_0000020 sense organ UBERON_0000020 sense organ +UBERON_0000020 sense organ UBERON_0000046 stemma +UBERON_0000020 sense organ UBERON_0000047 simple eye +UBERON_0000020 sense organ UBERON_0000048 pinhole eye +UBERON_0000020 sense organ UBERON_0000049 spherical lensed eye +UBERON_0000020 sense organ UBERON_0000050 simple eye with multiple lenses +UBERON_0000020 sense organ UBERON_0000053 macula lutea +UBERON_0000020 sense organ UBERON_0000054 macula +UBERON_0000020 sense organ UBERON_0000207 compound eye corneal lens +UBERON_0000020 sense organ UBERON_0000389 lens cortex +UBERON_0000020 sense organ UBERON_0000390 lens nucleus +UBERON_0000020 sense organ UBERON_0000396 vallate papilla +UBERON_0000020 sense organ UBERON_0000402 nasal vestibule +UBERON_0000020 sense organ UBERON_0000963 head sensillum +UBERON_0000020 sense organ UBERON_0000964 cornea +UBERON_0000020 sense organ UBERON_0000965 lens of camera-type eye +UBERON_0000020 sense organ UBERON_0000966 retina +UBERON_0000020 sense organ UBERON_0000970 eye +UBERON_0000020 sense organ UBERON_0000971 ommatidium +UBERON_0000020 sense organ UBERON_0001038 chordotonal organ +UBERON_0000020 sense organ UBERON_0001351 lacrimal sac +UBERON_0000020 sense organ UBERON_0001352 external acoustic meatus +UBERON_0000020 sense organ UBERON_0001457 skin of eyelid +UBERON_0000020 sense organ UBERON_0001459 skin of external ear +UBERON_0000020 sense organ UBERON_0001576 intrinsic muscle of tongue +UBERON_0000020 sense organ UBERON_0001578 orbicularis oculi muscle +UBERON_0000020 sense organ UBERON_0001583 extrinsic auricular muscle +UBERON_0000020 sense organ UBERON_0001595 auricular muscle +UBERON_0000020 sense organ UBERON_0001596 intrinsic auricular muscle +UBERON_0000020 sense organ UBERON_0001599 stapedius muscle +UBERON_0000020 sense organ UBERON_0001600 tensor tympani +UBERON_0000020 sense organ UBERON_0001601 extra-ocular muscle +UBERON_0000020 sense organ UBERON_0001602 medial rectus extraocular muscle +UBERON_0000020 sense organ UBERON_0001603 lateral rectus extra-ocular muscle +UBERON_0000020 sense organ UBERON_0001604 levator palpebrae superioris +UBERON_0000020 sense organ UBERON_0001605 ciliary muscle +UBERON_0000020 sense organ UBERON_0001606 muscle of iris +UBERON_0000020 sense organ UBERON_0001607 sphincter pupillae +UBERON_0000020 sense organ UBERON_0001608 dilatator pupillae +UBERON_0000020 sense organ UBERON_0001610 lingual artery +UBERON_0000020 sense organ UBERON_0001611 sublingual artery +UBERON_0000020 sense organ UBERON_0001620 central retinal artery +UBERON_0000020 sense organ UBERON_0001673 central retinal vein +UBERON_0000020 sense organ UBERON_0001681 nasal bone +UBERON_0000020 sense organ UBERON_0001686 auditory ossicle bone +UBERON_0000020 sense organ UBERON_0001687 stapes bone +UBERON_0000020 sense organ UBERON_0001688 incus bone +UBERON_0000020 sense organ UBERON_0001689 malleus bone +UBERON_0000020 sense organ UBERON_0001690 ear +UBERON_0000020 sense organ UBERON_0001691 external ear +UBERON_0000020 sense organ UBERON_0001706 nasal septum +UBERON_0000020 sense organ UBERON_0001707 nasal cavity +UBERON_0000020 sense organ UBERON_0001711 eyelid +UBERON_0000020 sense organ UBERON_0001712 upper eyelid +UBERON_0000020 sense organ UBERON_0001713 lower eyelid +UBERON_0000020 sense organ UBERON_0001723 tongue +UBERON_0000020 sense organ UBERON_0001726 papilla of tongue +UBERON_0000020 sense organ UBERON_0001727 taste bud +UBERON_0000020 sense organ UBERON_0001750 lacrimal apparatus +UBERON_0000020 sense organ UBERON_0001756 middle ear +UBERON_0000020 sense organ UBERON_0001757 pinna +UBERON_0000020 sense organ UBERON_0001766 anterior chamber of eyeball +UBERON_0000020 sense organ UBERON_0001767 posterior chamber of eyeball +UBERON_0000020 sense organ UBERON_0001768 uvea +UBERON_0000020 sense organ UBERON_0001769 iris +UBERON_0000020 sense organ UBERON_0001770 lacrimal canaliculus +UBERON_0000020 sense organ UBERON_0001771 pupil +UBERON_0000020 sense organ UBERON_0001772 corneal epithelium +UBERON_0000020 sense organ UBERON_0001773 sclera +UBERON_0000020 sense organ UBERON_0001775 ciliary body +UBERON_0000020 sense organ UBERON_0001776 optic choroid +UBERON_0000020 sense organ UBERON_0001777 substantia propria of cornea +UBERON_0000020 sense organ UBERON_0001778 ciliary epithelium +UBERON_0000020 sense organ UBERON_0001779 iris stroma +UBERON_0000020 sense organ UBERON_0001781 layer of retina +UBERON_0000020 sense organ UBERON_0001782 pigmented layer of retina +UBERON_0000020 sense organ UBERON_0001783 optic disc +UBERON_0000020 sense organ UBERON_0001786 fovea centralis +UBERON_0000020 sense organ UBERON_0001787 photoreceptor layer of retina +UBERON_0000020 sense organ UBERON_0001788 outer limiting layer of retina +UBERON_0000020 sense organ UBERON_0001789 outer nuclear layer of retina +UBERON_0000020 sense organ UBERON_0001790 outer plexiform layer of retina +UBERON_0000020 sense organ UBERON_0001791 inner nuclear layer of retina +UBERON_0000020 sense organ UBERON_0001792 ganglionic layer of retina +UBERON_0000020 sense organ UBERON_0001793 nerve fiber layer of retina +UBERON_0000020 sense organ UBERON_0001794 inner limiting layer of retina +UBERON_0000020 sense organ UBERON_0001795 inner plexiform layer of retina +UBERON_0000020 sense organ UBERON_0001796 aqueous humor of eyeball +UBERON_0000020 sense organ UBERON_0001797 vitreous humor +UBERON_0000020 sense organ UBERON_0001798 vitreous body +UBERON_0000020 sense organ UBERON_0001799 vitreous chamber of eyeball +UBERON_0000020 sense organ UBERON_0001801 anterior segment of eyeball +UBERON_0000020 sense organ UBERON_0001802 posterior segment of eyeball +UBERON_0000020 sense organ UBERON_0001803 epithelium of lens +UBERON_0000020 sense organ UBERON_0001804 capsule of lens +UBERON_0000020 sense organ UBERON_0001811 conjunctiva +UBERON_0000020 sense organ UBERON_0001812 palpebral conjunctiva +UBERON_0000020 sense organ UBERON_0001817 lacrimal gland +UBERON_0000020 sense organ UBERON_0001818 tarsal gland +UBERON_0000020 sense organ UBERON_0001819 palpebral fissure +UBERON_0000020 sense organ UBERON_0001822 orbital septum +UBERON_0000020 sense organ UBERON_0001823 nasal cartilage +UBERON_0000020 sense organ UBERON_0001826 nasal cavity mucosa +UBERON_0000020 sense organ UBERON_0001839 bony labyrinth +UBERON_0000020 sense organ UBERON_0001840 semicircular canal +UBERON_0000020 sense organ UBERON_0001841 anterior semicircular canal +UBERON_0000020 sense organ UBERON_0001842 posterior semicircular canal +UBERON_0000020 sense organ UBERON_0001843 lateral semicircular canal +UBERON_0000020 sense organ UBERON_0001844 cochlea +UBERON_0000020 sense organ UBERON_0001845 perilymph +UBERON_0000020 sense organ UBERON_0001846 internal ear +UBERON_0000020 sense organ UBERON_0001847 lobule of pinna +UBERON_0000020 sense organ UBERON_0001848 auricular cartilage +UBERON_0000020 sense organ UBERON_0001849 membranous labyrinth +UBERON_0000020 sense organ UBERON_0001850 lacrimal drainage system +UBERON_0000020 sense organ UBERON_0001852 endolymph +UBERON_0000020 sense organ UBERON_0001853 utricle of membranous labyrinth +UBERON_0000020 sense organ UBERON_0001854 saccule of membranous labyrinth +UBERON_0000020 sense organ UBERON_0001855 cochlear duct of membranous labyrinth +UBERON_0000020 sense organ UBERON_0001856 semicircular duct +UBERON_0000020 sense organ UBERON_0001857 anterior semicircular duct +UBERON_0000020 sense organ UBERON_0001858 posterior semicircular duct +UBERON_0000020 sense organ UBERON_0001859 lateral semicircular duct +UBERON_0000020 sense organ UBERON_0001860 endolymphatic duct +UBERON_0000020 sense organ UBERON_0001861 ductus reuniens +UBERON_0000020 sense organ UBERON_0001862 vestibular labyrinth +UBERON_0000020 sense organ UBERON_0001863 scala vestibuli +UBERON_0000020 sense organ UBERON_0001864 scala tympani +UBERON_0000020 sense organ UBERON_0001865 cartilaginous external acoustic tube +UBERON_0000020 sense organ UBERON_0001867 cartilage of external ear +UBERON_0000020 sense organ UBERON_0001985 corneal endothelium +UBERON_0000020 sense organ UBERON_0001997 olfactory epithelium +UBERON_0000020 sense organ UBERON_0002109 pair of nares +UBERON_0000020 sense organ UBERON_0002203 vasculature of eye +UBERON_0000020 sense organ UBERON_0002212 macula of saccule of membranous labyrinth +UBERON_0000020 sense organ UBERON_0002214 macula of utricle of membranous labyrinth +UBERON_0000020 sense organ UBERON_0002218 tympanic ring +UBERON_0000020 sense organ UBERON_0002223 endolymphatic sac +UBERON_0000020 sense organ UBERON_0002226 basilar membrane of cochlea +UBERON_0000020 sense organ UBERON_0002227 spiral organ of cochlea +UBERON_0000020 sense organ UBERON_0002232 olfactory gland +UBERON_0000020 sense organ UBERON_0002233 tectorial membrane of cochlea +UBERON_0000020 sense organ UBERON_0002255 vomeronasal organ +UBERON_0000020 sense organ UBERON_0002268 olfactory organ +UBERON_0000020 sense organ UBERON_0002269 pupillary membrane +UBERON_0000020 sense organ UBERON_0002270 hyaloid artery +UBERON_0000020 sense organ UBERON_0002276 lamina of spiral limbus +UBERON_0000020 sense organ UBERON_0002277 spiral sulcus +UBERON_0000020 sense organ UBERON_0002278 perilymphatic space +UBERON_0000020 sense organ UBERON_0002279 vestibular aqueduct +UBERON_0000020 sense organ UBERON_0002280 otolith +UBERON_0000020 sense organ UBERON_0002281 vestibular membrane of cochlear duct +UBERON_0000020 sense organ UBERON_0002282 stria vascularis of cochlear duct +UBERON_0000020 sense organ UBERON_0002295 scala media +UBERON_0000020 sense organ UBERON_0002364 tympanic membrane +UBERON_0000020 sense organ UBERON_0002392 nasolacrimal duct +UBERON_0000020 sense organ UBERON_0002393 pharyngotympanic tube +UBERON_0000020 sense organ UBERON_0002443 choroidal blood vessel +UBERON_0000020 sense organ UBERON_0002444 lens fiber +UBERON_0000020 sense organ UBERON_0002448 fungiform papilla +UBERON_0000020 sense organ UBERON_0002467 filiform papilla +UBERON_0000020 sense organ UBERON_0002468 foliate papilla +UBERON_0000020 sense organ UBERON_0002488 helix of outer ear +UBERON_0000020 sense organ UBERON_0002496 stapes base +UBERON_0000020 sense organ UBERON_0002499 cochlear labyrinth +UBERON_0000020 sense organ UBERON_0002505 spiral modiolar artery +UBERON_0000020 sense organ UBERON_0002506 iris epithelium +UBERON_0000020 sense organ UBERON_0002518 otolith organ +UBERON_0000020 sense organ UBERON_0002519 otolithic part of statoconial membrane +UBERON_0000020 sense organ UBERON_0002536 arthropod sensillum +UBERON_0000020 sense organ UBERON_0002819 apex of cochlea +UBERON_0000020 sense organ UBERON_0002820 zona arcuata of basilar membrane of cochlea +UBERON_0000020 sense organ UBERON_0002822 macula lutea proper +UBERON_0000020 sense organ UBERON_0002823 clivus of fovea centralis +UBERON_0000020 sense organ UBERON_0002824 vestibular ganglion +UBERON_0000020 sense organ UBERON_0002825 superior part of vestibular ganglion +UBERON_0000020 sense organ UBERON_0002826 inferior part of vestibular ganglion +UBERON_0000020 sense organ UBERON_0003065 ciliary marginal zone +UBERON_0000020 sense organ UBERON_0003069 otic placode +UBERON_0000020 sense organ UBERON_0003161 dorsal ocellus +UBERON_0000020 sense organ UBERON_0003162 lateral ocellus +UBERON_0000020 sense organ UBERON_0003211 median eye +UBERON_0000020 sense organ UBERON_0003212 gustatory organ +UBERON_0000020 sense organ UBERON_0003238 epithelium of superior semicircular canal +UBERON_0000020 sense organ UBERON_0003239 epithelium of posterior semicircular canal +UBERON_0000020 sense organ UBERON_0003240 epithelium of lateral semicircular canal +UBERON_0000020 sense organ UBERON_0003241 epithelium of utricle +UBERON_0000020 sense organ UBERON_0003242 epithelium of saccule +UBERON_0000020 sense organ UBERON_0003243 epithelium of cochlear duct +UBERON_0000020 sense organ UBERON_0003246 epithelium of endolymphatic sac +UBERON_0000020 sense organ UBERON_0003249 epithelium of otic placode +UBERON_0000020 sense organ UBERON_0003269 skeletal muscle tissue of eye +UBERON_0000020 sense organ UBERON_0003314 eye mesenchyme +UBERON_0000020 sense organ UBERON_0003325 mesenchyme of pinna +UBERON_0000020 sense organ UBERON_0003356 epithelium of nasal septum +UBERON_0000020 sense organ UBERON_0003357 epithelium of tongue +UBERON_0000020 sense organ UBERON_0003362 epithelium of endolymphatic duct +UBERON_0000020 sense organ UBERON_0003363 epithelium of ductus reuniens +UBERON_0000020 sense organ UBERON_0003367 epithelium of vomeronasal organ +UBERON_0000020 sense organ UBERON_0003386 smooth muscle of eye +UBERON_0000020 sense organ UBERON_0003407 cartilage of nasal septum +UBERON_0000020 sense organ UBERON_0003409 gland of tongue +UBERON_0000020 sense organ UBERON_0003415 mesenchyme of nasal septum +UBERON_0000020 sense organ UBERON_0003416 mesenchyme of tongue +UBERON_0000020 sense organ UBERON_0003421 mesenchyme of vomeronasal organ +UBERON_0000020 sense organ UBERON_0003484 eye sebaceous gland +UBERON_0000020 sense organ UBERON_0003500 corneal blood vessel +UBERON_0000020 sense organ UBERON_0003501 retina blood vessel +UBERON_0000020 sense organ UBERON_0003510 eyelid blood vessel +UBERON_0000020 sense organ UBERON_0003511 iris blood vessel +UBERON_0000020 sense organ UBERON_0003581 eyelid connective tissue +UBERON_0000020 sense organ UBERON_0003605 eye skin gland +UBERON_0000020 sense organ UBERON_0003844 upper eyelid epithelium +UBERON_0000020 sense organ UBERON_0003845 lower eyelid epithelium +UBERON_0000020 sense organ UBERON_0003857 upper eyelid mesenchyme +UBERON_0000020 sense organ UBERON_0003858 lower eyelid mesenchyme +UBERON_0000020 sense organ UBERON_0003902 retinal neural layer +UBERON_0000020 sense organ UBERON_0003925 photoreceptor inner segment layer +UBERON_0000020 sense organ UBERON_0003926 photoreceptor outer segment layer +UBERON_0000020 sense organ UBERON_0003950 inner ear canal +UBERON_0000020 sense organ UBERON_0003951 ocular fundus +UBERON_0000020 sense organ UBERON_0003952 anterior stroma of cornea +UBERON_0000020 sense organ UBERON_0003953 posterior stroma of cornea +UBERON_0000020 sense organ UBERON_0003956 aqueous drainage system +UBERON_0000020 sense organ UBERON_0003957 Bruch's membrane +UBERON_0000020 sense organ UBERON_0003966 gonial bone +UBERON_0000020 sense organ UBERON_0003976 saccule duct +UBERON_0000020 sense organ UBERON_0003977 utricle duct +UBERON_0000020 sense organ UBERON_0003979 utricle valve +UBERON_0000020 sense organ UBERON_0004000 tarsal gland acinus +UBERON_0000020 sense organ UBERON_0004012 golgi tendon organ +UBERON_0000020 sense organ UBERON_0004029 canal of Schlemm +UBERON_0000020 sense organ UBERON_0004030 aqueous vein +UBERON_0000020 sense organ UBERON_0004043 semicircular canal ampulla +UBERON_0000020 sense organ UBERON_0004101 nasolabial region +UBERON_0000020 sense organ UBERON_0004106 crus of ear +UBERON_0000020 sense organ UBERON_0004110 midnasal cavity +UBERON_0000020 sense organ UBERON_0004113 muscle of auditory ossicle +UBERON_0000020 sense organ UBERON_0004114 tympanic cavity +UBERON_0000020 sense organ UBERON_0004115 blood vessel of tympanic cavity +UBERON_0000020 sense organ UBERON_0004116 nerve of tympanic cavity +UBERON_0000020 sense organ UBERON_0004118 vasculature of iris +UBERON_0000020 sense organ UBERON_0004187 Harderian gland +UBERON_0000020 sense organ UBERON_0004234 iris smooth muscle +UBERON_0000020 sense organ UBERON_0004277 eye muscle +UBERON_0000020 sense organ UBERON_0004367 Descemet's membrane +UBERON_0000020 sense organ UBERON_0004370 anterior limiting lamina of cornea +UBERON_0000020 sense organ UBERON_0004505 skeletal muscle tissue of orbicularis oculi +UBERON_0000020 sense organ UBERON_0004508 skeletal muscle tissue of levator palpebrae superioris +UBERON_0000020 sense organ UBERON_0004548 left eye +UBERON_0000020 sense organ UBERON_0004549 right eye +UBERON_0000020 sense organ UBERON_0004637 otic capsule +UBERON_0000020 sense organ UBERON_0004650 tongue keratinized epithelium +UBERON_0000020 sense organ UBERON_0004692 external naris epithelium +UBERON_0000020 sense organ UBERON_0004694 Harderian gland epithelium +UBERON_0000020 sense organ UBERON_0004721 crista ampullaris +UBERON_0000020 sense organ UBERON_0004724 medial palpebral ligament +UBERON_0000020 sense organ UBERON_0004772 eyelid tarsus +UBERON_0000020 sense organ UBERON_0004773 superior eyelid tarsus +UBERON_0000020 sense organ UBERON_0004774 inferior eyelid tarsus +UBERON_0000020 sense organ UBERON_0004817 lacrimal gland epithelium +UBERON_0000020 sense organ UBERON_0004859 eye gland +UBERON_0000020 sense organ UBERON_0004864 vasculature of retina +UBERON_0000020 sense organ UBERON_0004868 tapetum lucidum of camera-type eye +UBERON_0000020 sense organ UBERON_0005017 mucosa of lacrimal sac +UBERON_0000020 sense organ UBERON_0005018 mucosa of nasal septum +UBERON_0000020 sense organ UBERON_0005020 mucosa of tongue +UBERON_0000020 sense organ UBERON_0005026 mucosa of middle ear +UBERON_0000020 sense organ UBERON_0005029 mucosa of lacrimal canaliculus +UBERON_0000020 sense organ UBERON_0005042 inner epithelial layer of tympanic membrane +UBERON_0000020 sense organ UBERON_0005043 mucosa of nasolacrimal duct +UBERON_0000020 sense organ UBERON_0005044 mucosa of pharyngotympanic tube +UBERON_0000020 sense organ UBERON_0005067 amphid sensory organ +UBERON_0000020 sense organ UBERON_0005236 osseus labyrinth vestibule +UBERON_0000020 sense organ UBERON_0005336 capillary layer of choroid +UBERON_0000020 sense organ UBERON_0005342 malleus head +UBERON_0000020 sense organ UBERON_0005354 malleus processus brevis +UBERON_0000020 sense organ UBERON_0005355 malleus neck +UBERON_0000020 sense organ UBERON_0005384 nasal cavity epithelium +UBERON_0000020 sense organ UBERON_0005385 nasal cavity respiratory epithelium +UBERON_0000020 sense organ UBERON_0005386 olfactory segment of nasal mucosa +UBERON_0000020 sense organ UBERON_0005388 photoreceptor array +UBERON_0000020 sense organ UBERON_0005389 transparent eye structure +UBERON_0000020 sense organ UBERON_0005410 cartilaginous otic capsule +UBERON_0000020 sense organ UBERON_0005411 bony otic capsule +UBERON_0000020 sense organ UBERON_0005427 corneal primordium +UBERON_0000020 sense organ UBERON_0005492 hyaloid vessel +UBERON_0000020 sense organ UBERON_0005600 crus commune +UBERON_0000020 sense organ UBERON_0005606 hyaloid cavity +UBERON_0000020 sense organ UBERON_0005611 inner canthus +UBERON_0000020 sense organ UBERON_0005614 lens anterior epithelium +UBERON_0000020 sense organ UBERON_0005615 lens equatorial epithelium +UBERON_0000020 sense organ UBERON_0005625 tubotympanic recess lumen +UBERON_0000020 sense organ UBERON_0005638 anterior chamber epithelium +UBERON_0000020 sense organ UBERON_0005657 crus commune epithelium +UBERON_0000020 sense organ UBERON_0005870 olfactory pit +UBERON_0000020 sense organ UBERON_0005908 conjunctival sac +UBERON_0000020 sense organ UBERON_0005928 external naris +UBERON_0000020 sense organ UBERON_0005931 primary choana +UBERON_0000020 sense organ UBERON_0005969 eye trabecular meshwork +UBERON_0000020 sense organ UBERON_0005972 tunnel of Corti +UBERON_0000020 sense organ UBERON_0005973 blood-inner ear barrier +UBERON_0000020 sense organ UBERON_0006010 hyaloid canal +UBERON_0000020 sense organ UBERON_0006011 hyaloid vein +UBERON_0000020 sense organ UBERON_0006106 cochlear canal +UBERON_0000020 sense organ UBERON_0006203 conchal part of pinna +UBERON_0000020 sense organ UBERON_0006206 iridocorneal angle +UBERON_0000020 sense organ UBERON_0006208 auditory hillocks +UBERON_0000020 sense organ UBERON_0006230 extrinsic ocular pre-muscle mass +UBERON_0000020 sense organ UBERON_0006248 incus pre-cartilage condensation +UBERON_0000020 sense organ UBERON_0006253 embryonic intraretinal space +UBERON_0000020 sense organ UBERON_0006259 lens pit +UBERON_0000020 sense organ UBERON_0006262 malleus pre-cartilage condensation +UBERON_0000020 sense organ UBERON_0006266 nasolacrimal groove +UBERON_0000020 sense organ UBERON_0006273 otic pit +UBERON_0000020 sense organ UBERON_0006276 perioptic mesenchyme +UBERON_0000020 sense organ UBERON_0006294 stapes pre-cartilage condensation +UBERON_0000020 sense organ UBERON_0006311 chamber of eyeball +UBERON_0000020 sense organ UBERON_0006312 ocular refractive media +UBERON_0000020 sense organ UBERON_0006318 orbitalis muscle +UBERON_0000020 sense organ UBERON_0006320 inferior oblique extraocular muscle +UBERON_0000020 sense organ UBERON_0006321 superior oblique extraocular muscle +UBERON_0000020 sense organ UBERON_0006322 inferior rectus extraocular muscle +UBERON_0000020 sense organ UBERON_0006323 superior rectus extraocular muscle +UBERON_0000020 sense organ UBERON_0006330 anterior lingual gland +UBERON_0000020 sense organ UBERON_0006332 nasal capsule +UBERON_0000020 sense organ UBERON_0006345 stapedial artery +UBERON_0000020 sense organ UBERON_0006360 tongue intermolar eminence +UBERON_0000020 sense organ UBERON_0006495 osseus cochlear canal +UBERON_0000020 sense organ UBERON_0006496 external acoustic meatus osseus part +UBERON_0000020 sense organ UBERON_0006531 oculomotor muscle +UBERON_0000020 sense organ UBERON_0006532 oblique extraocular muscle +UBERON_0000020 sense organ UBERON_0006533 rectus extraocular muscle +UBERON_0000020 sense organ UBERON_0006582 statolith +UBERON_0000020 sense organ UBERON_0006583 statocyst +UBERON_0000020 sense organ UBERON_0006586 otolymph +UBERON_0000020 sense organ UBERON_0006616 right external ear +UBERON_0000020 sense organ UBERON_0006617 left external ear +UBERON_0000020 sense organ UBERON_0006688 sublingual caruncle +UBERON_0000020 sense organ UBERON_0006689 frenulum of tongue +UBERON_0000020 sense organ UBERON_0006699 foramen cecum of tongue +UBERON_0000020 sense organ UBERON_0006722 manubrium of malleus +UBERON_0000020 sense organ UBERON_0006723 cochlear modiolus +UBERON_0000020 sense organ UBERON_0006724 osseus spiral lamina +UBERON_0000020 sense organ UBERON_0006725 spiral ligament +UBERON_0000020 sense organ UBERON_0006726 outer canthus +UBERON_0000020 sense organ UBERON_0006742 canthus +UBERON_0000020 sense organ UBERON_0006761 corneo-scleral junction +UBERON_0000020 sense organ UBERON_0006762 suspensory ligament of lens +UBERON_0000020 sense organ UBERON_0006763 epithelium of conjunctiva +UBERON_0000020 sense organ UBERON_0006813 nasal skeleton +UBERON_0000020 sense organ UBERON_0006837 tegmen tympani +UBERON_0000020 sense organ UBERON_0006906 ala of nose +UBERON_0000020 sense organ UBERON_0006916 non-keratinized epithelium of tongue +UBERON_0000020 sense organ UBERON_0006918 parakeratinized epithelium of tongue +UBERON_0000020 sense organ UBERON_0006919 tongue squamous epithelium +UBERON_0000020 sense organ UBERON_0006932 vestibular epithelium +UBERON_0000020 sense organ UBERON_0006935 crista ampullaris neuroepithelium +UBERON_0000020 sense organ UBERON_0006937 inner ear epithelium +UBERON_0000020 sense organ UBERON_0006938 pinna surface epithelium +UBERON_0000020 sense organ UBERON_0007163 superior nasal meatus +UBERON_0000020 sense organ UBERON_0007223 osseus cochlea +UBERON_0000020 sense organ UBERON_0007250 lingual tonsil +UBERON_0000020 sense organ UBERON_0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth +UBERON_0000020 sense organ UBERON_0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth +UBERON_0000020 sense organ UBERON_0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth +UBERON_0000020 sense organ UBERON_0007352 stria vascularis vasculature +UBERON_0000020 sense organ UBERON_0007354 cartilage of pharyngotympanic tube +UBERON_0000020 sense organ UBERON_0007355 bony part of pharyngotympanic tube +UBERON_0000020 sense organ UBERON_0007367 surface of tongue +UBERON_0000020 sense organ UBERON_0007371 superior surface of tongue +UBERON_0000020 sense organ UBERON_0007373 inferior surface of tongue +UBERON_0000020 sense organ UBERON_0007374 incus cartilage element +UBERON_0000020 sense organ UBERON_0007619 limiting membrane of retina +UBERON_0000020 sense organ UBERON_0007622 pecten oculi +UBERON_0000020 sense organ UBERON_0007625 pigment epithelium of eye +UBERON_0000020 sense organ UBERON_0007691 gustatory pore +UBERON_0000020 sense organ UBERON_0007770 osphradium +UBERON_0000020 sense organ UBERON_0007804 sclerotic ring +UBERON_0000020 sense organ UBERON_0007818 major alar cartilage +UBERON_0000020 sense organ UBERON_0007819 minor alar cartilage +UBERON_0000020 sense organ UBERON_0007820 accessory nasal cartilage +UBERON_0000020 sense organ UBERON_0007821 lateral nasal cartilage +UBERON_0000020 sense organ UBERON_0007822 vomeronasal cartilage +UBERON_0000020 sense organ UBERON_0007825 reticular membrane of spiral organ +UBERON_0000020 sense organ UBERON_0007827 external nose +UBERON_0000020 sense organ UBERON_0007833 osseus semicircular canal +UBERON_0000020 sense organ UBERON_0008340 nasal bridge +UBERON_0000020 sense organ UBERON_0008341 columella nasi +UBERON_0000020 sense organ UBERON_0008522 nasal muscle +UBERON_0000020 sense organ UBERON_0008582 superior longitudinal muscle of tongue +UBERON_0000020 sense organ UBERON_0008583 transverse muscle of tongue +UBERON_0000020 sense organ UBERON_0008584 vertical muscle of tongue +UBERON_0000020 sense organ UBERON_0008588 procerus +UBERON_0000020 sense organ UBERON_0008589 depressor septi nasi +UBERON_0000020 sense organ UBERON_0008603 helicis major +UBERON_0000020 sense organ UBERON_0008604 helicis minor +UBERON_0000020 sense organ UBERON_0008605 tragicus muscle +UBERON_0000020 sense organ UBERON_0008606 antitragicus muscle +UBERON_0000020 sense organ UBERON_0008607 transverse muscle of auricle +UBERON_0000020 sense organ UBERON_0008608 oblique muscle of auricle +UBERON_0000020 sense organ UBERON_0008813 helicotrema +UBERON_0000020 sense organ UBERON_0008831 inner spiral sulcus +UBERON_0000020 sense organ UBERON_0008832 outer spiral sulcus +UBERON_0000020 sense organ UBERON_0008879 ligament of pinna +UBERON_0000020 sense organ UBERON_0008904 neuromast +UBERON_0000020 sense organ UBERON_0008917 ampullary organ +UBERON_0000020 sense organ UBERON_0008918 ampulla of Lorenzini +UBERON_0000020 sense organ UBERON_0008921 substratum of layer of retina +UBERON_0000020 sense organ UBERON_0008922 sublaminar layer S1 +UBERON_0000020 sense organ UBERON_0008923 sublaminar layer S2 +UBERON_0000020 sense organ UBERON_0008924 sublaminar layer S3 +UBERON_0000020 sense organ UBERON_0008925 sublaminar layer S4 +UBERON_0000020 sense organ UBERON_0008926 sublaminar layer S5 +UBERON_0000020 sense organ UBERON_0008927 sublaminar layers S1 or S2 +UBERON_0000020 sense organ UBERON_0008928 sublaminar layers S2 or S3 +UBERON_0000020 sense organ UBERON_0008929 sublaminar layers S4 or S5 +UBERON_0000020 sense organ UBERON_0008959 auditory bulla +UBERON_0000020 sense organ UBERON_0009016 ciliary stroma +UBERON_0000020 sense organ UBERON_0009038 sulcus ampullaris +UBERON_0000020 sense organ UBERON_0009471 dorsum of tongue +UBERON_0000020 sense organ UBERON_0009477 associated mesenchyme of otic placode +UBERON_0000020 sense organ UBERON_0009506 mesenchyme of middle ear +UBERON_0000020 sense organ UBERON_0009647 tympanic membrane epithelium +UBERON_0000020 sense organ UBERON_0009648 eyelid subcutaneous connective tissue +UBERON_0000020 sense organ UBERON_0009671 nasal fin +UBERON_0000020 sense organ UBERON_0009672 oronasal membrane +UBERON_0000020 sense organ UBERON_0009692 lumen of pharyngotympanic tube +UBERON_0000020 sense organ UBERON_0009716 cupular organ +UBERON_0000020 sense organ UBERON_0009717 coronal organ +UBERON_0000020 sense organ UBERON_0009731 sublaminar layers S3 or S4 +UBERON_0000020 sense organ UBERON_0009732 sublaminar layers S1 or S2 or S5 +UBERON_0000020 sense organ UBERON_0009733 sublaminar layers S1 or S2 or S3 +UBERON_0000020 sense organ UBERON_0009734 sublaminar layers S2 or S3 or S4 +UBERON_0000020 sense organ UBERON_0009735 sublaminar layers S1 or S3 or S4 +UBERON_0000020 sense organ UBERON_0009736 sublaminar layers S3 or S4 or S5 +UBERON_0000020 sense organ UBERON_0009737 sublaminar layers S1 or S2 or S3 or S4 +UBERON_0000020 sense organ UBERON_0009738 border of sublaminar layers S1 and S2 +UBERON_0000020 sense organ UBERON_0009739 border of sublaminar layers S3 and S4 +UBERON_0000020 sense organ UBERON_0009740 border between sublaminar layers +UBERON_0000020 sense organ UBERON_0009851 border of sublaminar layers S4 and S5 +UBERON_0000020 sense organ UBERON_0009852 border of sublaminar layers S2 and S3 +UBERON_0000020 sense organ UBERON_0009892 ascidian anterior sensory vesicle +UBERON_0000020 sense organ UBERON_0009893 ascidian ocellus +UBERON_0000020 sense organ UBERON_0009956 corpuscle of de Quatrefage +UBERON_0000020 sense organ UBERON_0010020 tubotympanic recess epithelium +UBERON_0000020 sense organ UBERON_0010032 anterior part of tongue +UBERON_0000020 sense organ UBERON_0010033 posterior part of tongue +UBERON_0000020 sense organ UBERON_0010052 mucosa of dorsum of tongue +UBERON_0000020 sense organ UBERON_0010054 malleus cartilage element +UBERON_0000020 sense organ UBERON_0010055 stapes cartilage element +UBERON_0000020 sense organ UBERON_0010062 pharyngotympanic tube epithelium +UBERON_0000020 sense organ UBERON_0010063 tympanic cavity epithelium +UBERON_0000020 sense organ UBERON_0010065 auditory meatus epithelium +UBERON_0000020 sense organ UBERON_0010069 outer epithelial layer of tympanic membrane +UBERON_0000020 sense organ UBERON_0010070 intermediate layer of tympanic membrane +UBERON_0000020 sense organ UBERON_0010071 layer of tympanic membrane +UBERON_0000020 sense organ UBERON_0010078 optic choroid vascular plexus +UBERON_0000020 sense organ UBERON_0010207 nictitating membrane +UBERON_0000020 sense organ UBERON_0010209 plica semilunaris of conjunctiva +UBERON_0000020 sense organ UBERON_0010223 left pupil +UBERON_0000020 sense organ UBERON_0010224 right pupil +UBERON_0000020 sense organ UBERON_0010230 eyeball of camera-type eye +UBERON_0000020 sense organ UBERON_0010244 choroid tapetum lucidum +UBERON_0000020 sense organ UBERON_0010245 retinal tapetum lucidum +UBERON_0000020 sense organ UBERON_0010246 choroidal guanine tapetum +UBERON_0000020 sense organ UBERON_0010247 choroidal tapetum cellulosum +UBERON_0000020 sense organ UBERON_0010248 choroidal tapetum fibrosum +UBERON_0000020 sense organ UBERON_0010271 musculus retractor bulbi +UBERON_0000020 sense organ UBERON_0010284 lacrimal punctum +UBERON_0000020 sense organ UBERON_0010289 scleral cartilage +UBERON_0000020 sense organ UBERON_0010290 scleral ossicle +UBERON_0000020 sense organ UBERON_0010291 layer of sclera +UBERON_0000020 sense organ UBERON_0010292 episcleral layer of eyeball +UBERON_0000020 sense organ UBERON_0010293 suprachoroid lamina +UBERON_0000020 sense organ UBERON_0010294 scleral endothelium +UBERON_0000020 sense organ UBERON_0010295 substantia propria of sclera +UBERON_0000020 sense organ UBERON_0010296 scleral skeletal element +UBERON_0000020 sense organ UBERON_0010297 endochondral scleral ossicle +UBERON_0000020 sense organ UBERON_0010298 intramembranous scleral ossicle +UBERON_0000020 sense organ UBERON_0010305 subdivision of conjunctiva +UBERON_0000020 sense organ UBERON_0010306 bulbar conjunctiva +UBERON_0000020 sense organ UBERON_0010307 conjunctival fornix +UBERON_0000020 sense organ UBERON_0010308 os opticus +UBERON_0000020 sense organ UBERON_0010309 palpebral bone +UBERON_0000020 sense organ UBERON_0010310 nictitating membrane lamina +UBERON_0000020 sense organ UBERON_0010311 scleral sesamoid bone +UBERON_0000020 sense organ UBERON_0010330 eyelid mesenchyme +UBERON_0000020 sense organ UBERON_0010349 otic capsule pre-cartilage condensation +UBERON_0000020 sense organ UBERON_0010366 conjunctival vasculature +UBERON_0000020 sense organ UBERON_0010367 conjunctival vein +UBERON_0000020 sense organ UBERON_0010379 superior tarsal muscle +UBERON_0000020 sense organ UBERON_0010409 ocular surface region +UBERON_0000020 sense organ UBERON_0010427 ciliary processes +UBERON_0000020 sense organ UBERON_0010515 brille +UBERON_0000020 sense organ UBERON_0010521 electroreceptor organ +UBERON_0000020 sense organ UBERON_0010887 tragus +UBERON_0000020 sense organ UBERON_0010893 median external naris +UBERON_0000020 sense organ UBERON_0010910 opisthotic +UBERON_0000020 sense organ UBERON_0010929 stapedius pre-muscle condensation +UBERON_0000020 sense organ UBERON_0010935 tensor tympani pre-muscle condensation +UBERON_0000020 sense organ UBERON_0010953 nasalis muscle +UBERON_0000020 sense organ UBERON_0011060 perilymphatic channel +UBERON_0000020 sense organ UBERON_0011078 endolymphatic space +UBERON_0000020 sense organ UBERON_0011167 septomaxilla bone +UBERON_0000020 sense organ UBERON_0011186 Krause's gland +UBERON_0000020 sense organ UBERON_0011221 ora serrata of retina +UBERON_0000020 sense organ UBERON_0011222 intra-ocular muscle +UBERON_0000020 sense organ UBERON_0011255 Eimer's organ +UBERON_0000020 sense organ UBERON_0011256 rhinarium +UBERON_0000020 sense organ UBERON_0011287 rostral organ +UBERON_0000020 sense organ UBERON_0011385 parotidoauricular muscle +UBERON_0000020 sense organ UBERON_0011599 lenticular process of incus bone +UBERON_0000020 sense organ UBERON_0011774 utriculosaccular duct +UBERON_0000020 sense organ UBERON_0011857 acinus of lacrimal gland +UBERON_0000020 sense organ UBERON_0011859 internal acoustic meatus +UBERON_0000020 sense organ UBERON_0011865 corneal stroma collagen fibril +UBERON_0000020 sense organ UBERON_0011876 body of tongue +UBERON_0000020 sense organ UBERON_0011877 margin of tongue +UBERON_0000020 sense organ UBERON_0011892 anterior uvea +UBERON_0000020 sense organ UBERON_0011918 line of Schwalbe +UBERON_0000020 sense organ UBERON_0011922 cochlear basement membrane +UBERON_0000020 sense organ UBERON_0011931 nasal hair +UBERON_0000020 sense organ UBERON_0012128 nose tip +UBERON_0000020 sense organ UBERON_0012278 gland of nasal mucosa +UBERON_0000020 sense organ UBERON_0012304 nasal diverticulum +UBERON_0000020 sense organ UBERON_0012305 marginal cutaneous pouch of ear +UBERON_0000020 sense organ UBERON_0012430 tunica fibrosa of eyeball +UBERON_0000020 sense organ UBERON_0013120 eyelid submuscular connective tissue +UBERON_0000020 sense organ UBERON_0013174 sigmoid process of tympanic bone +UBERON_0000020 sense organ UBERON_0013190 entotympanic bone +UBERON_0000020 sense organ UBERON_0013208 Grueneberg ganglion +UBERON_0000020 sense organ UBERON_0013211 cerumen gland +UBERON_0000020 sense organ UBERON_0013224 Ciaccio's gland +UBERON_0000020 sense organ UBERON_0013226 accessory lacrimal gland +UBERON_0000020 sense organ UBERON_0013227 crypt of Henle +UBERON_0000020 sense organ UBERON_0013228 sweat gland of eyelid +UBERON_0000020 sense organ UBERON_0013229 eyelid gland +UBERON_0000020 sense organ UBERON_0013230 nictitans gland +UBERON_0000020 sense organ UBERON_0013231 sebaceous gland of eyelid +UBERON_0000020 sense organ UBERON_0013233 supraorbital gland +UBERON_0000020 sense organ UBERON_0013397 stratum argenteum of choroid +UBERON_0000020 sense organ UBERON_0013398 choroidal gland +UBERON_0000020 sense organ UBERON_0013399 blood vessel layer of choroid +UBERON_0000020 sense organ UBERON_0013475 gustatory gland +UBERON_0000020 sense organ UBERON_0013476 dermal layer of tongue +UBERON_0000020 sense organ UBERON_0013477 blowhole +UBERON_0000020 sense organ UBERON_0013638 horny papilla of tongue +UBERON_0000020 sense organ UBERON_0013639 mechanical papilla of tongue +UBERON_0000020 sense organ UBERON_0013679 inner canthus of right eye +UBERON_0000020 sense organ UBERON_0013680 inner canthus of left eye +UBERON_0000020 sense organ UBERON_0013682 peripheral region of retina +UBERON_0000020 sense organ UBERON_0013731 basilar papilla +UBERON_0000020 sense organ UBERON_0013732 vestibule of nasal cavity +UBERON_0000020 sense organ UBERON_0013764 common crus of semicircular duct +UBERON_0000020 sense organ UBERON_0013766 epicanthal fold +UBERON_0000020 sense organ UBERON_0014389 gustatory papilla of tongue +UBERON_0000020 sense organ UBERON_0014397 lateral process of malleus +UBERON_0000020 sense organ UBERON_0014451 tongue taste bud +UBERON_0000020 sense organ UBERON_0014452 gustatory epithelium of tongue +UBERON_0000020 sense organ UBERON_0014624 basis modioli +UBERON_0000020 sense organ UBERON_0014626 base of cochlear canal +UBERON_0000020 sense organ UBERON_0014628 vestibular fissure of the cochlear canal +UBERON_0000020 sense organ UBERON_0014629 terminal part of the cochlear canal +UBERON_0000020 sense organ UBERON_0014698 lacrimal caruncle +UBERON_0000020 sense organ UBERON_0014790 lingual septum +UBERON_0000020 sense organ UBERON_0015016 stapes endochondral element +UBERON_0000020 sense organ UBERON_0015017 incus endochondral element +UBERON_0000020 sense organ UBERON_0015018 malleus endochondral element +UBERON_0000020 sense organ UBERON_0015120 right outer canthus +UBERON_0000020 sense organ UBERON_0015121 left outer canthus +UBERON_0000020 sense organ UBERON_0015147 pinna hair +UBERON_0000020 sense organ UBERON_0015151 Harderian gland duct +UBERON_0000020 sense organ UBERON_0015155 conjunctival space +UBERON_0000020 sense organ UBERON_0015165 multi-unit eye +UBERON_0000020 sense organ UBERON_0015169 tapetum +UBERON_0000020 sense organ UBERON_0015170 nauplius eye +UBERON_0000020 sense organ UBERON_0015216 nasal meatus +UBERON_0000020 sense organ UBERON_0015219 middle nasal meatus +UBERON_0000020 sense organ UBERON_0015220 inferior nasal meatus +UBERON_0000020 sense organ UBERON_0015221 common nasal meatus +UBERON_0000020 sense organ UBERON_0015222 ventral nasal meatus +UBERON_0000020 sense organ UBERON_0015223 dorsal nasal meatus +UBERON_0000020 sense organ UBERON_0015245 septal olfactory organ +UBERON_0000020 sense organ UBERON_0015246 septal organ of Masera +UBERON_0000020 sense organ UBERON_0015430 levator auris longus muscle +UBERON_0000020 sense organ UBERON_0015445 anterior lingual gland duct +UBERON_0000020 sense organ UBERON_0015476 nose skin +UBERON_0000020 sense organ UBERON_0015751 inferior tarsal muscle +UBERON_0000020 sense organ UBERON_0015784 duct of olfactory gland +UBERON_0000020 sense organ UBERON_0015785 acinus of olfactory gland +UBERON_0000020 sense organ UBERON_0015786 respiratory segment of nasal mucosa +UBERON_0000020 sense organ UBERON_0015788 olfactory apparatus chamber +UBERON_0000020 sense organ UBERON_0015807 ear epithelium +UBERON_0000020 sense organ UBERON_0015808 eye epithelium +UBERON_0000020 sense organ UBERON_0015813 middle ear epithelium +UBERON_0000020 sense organ UBERON_0015814 outer ear epithelium +UBERON_0000020 sense organ UBERON_0015885 cymba conchae of pinna +UBERON_0000020 sense organ UBERON_0016459 posterior pole of lens +UBERON_0000020 sense organ UBERON_0016464 dorsum of nose +UBERON_0000020 sense organ UBERON_0016466 antihelix +UBERON_0000020 sense organ UBERON_0016467 antitragus +UBERON_0000020 sense organ UBERON_0016567 statoconial membrane +UBERON_0000020 sense organ UBERON_0016568 gelatinous layer of statoconial membrane +UBERON_0000020 sense organ UBERON_0016569 subcupular meshwork of statoconial membrane +UBERON_0000020 sense organ UBERON_0016611 auditory hillocks, pharyngeal arch 1 derived +UBERON_0000020 sense organ UBERON_0016612 auditory hillocks, pharyngeal arch 2 derived +UBERON_0000020 sense organ UBERON_0016621 lunge feeding organ +UBERON_0000020 sense organ UBERON_0016622 lunge feeding organ papilla +UBERON_0000020 sense organ UBERON_0017629 mormyromast organ +UBERON_0000020 sense organ UBERON_0018104 parafoveal part of retina +UBERON_0000020 sense organ UBERON_0018105 perifoveal part of retina +UBERON_0000020 sense organ UBERON_0018107 foveola of retina +UBERON_0000020 sense organ UBERON_0018108 superior auricular muscle +UBERON_0000020 sense organ UBERON_0018109 anterior auricular muscle +UBERON_0000020 sense organ UBERON_0018110 posterior auricular muscle +UBERON_0000020 sense organ UBERON_0018152 pars flaccida of tympanic membrane +UBERON_0000020 sense organ UBERON_0018153 pars tensa of tympanic membrane +UBERON_0000020 sense organ UBERON_0018154 ligament of middle ear +UBERON_0000020 sense organ UBERON_0018155 posterior incudal ligament +UBERON_0000020 sense organ UBERON_0018156 malleal ligament +UBERON_0000020 sense organ UBERON_0018157 lateral malleal ligament +UBERON_0000020 sense organ UBERON_0018158 superior malleal ligament +UBERON_0000020 sense organ UBERON_0018159 anterior malleal ligament +UBERON_0000020 sense organ UBERON_0018160 anterior process of malleus +UBERON_0000020 sense organ UBERON_0018231 labyrinthine artery +UBERON_0000020 sense organ UBERON_0018233 gland of Zeis +UBERON_0000020 sense organ UBERON_0018323 hyoid articular area +UBERON_0000020 sense organ UBERON_0018339 metotic fissure +UBERON_0000020 sense organ UBERON_0018356 rostral entotympanic element +UBERON_0000020 sense organ UBERON_0018374 sallet +UBERON_0000020 sense organ UBERON_0018508 foramen of nasal bone +UBERON_0000020 sense organ UBERON_0018655 pars endotympanica +UBERON_0000020 sense organ UBERON_0018663 recessus basilaris +UBERON_0000020 sense organ UBERON_0019206 tongue papilla epithelium +UBERON_0000020 sense organ UBERON_0019207 chorioretinal region +UBERON_0000020 sense organ UBERON_0019208 anterior pole of lens +UBERON_0000020 sense organ UBERON_0019210 pole of lens +UBERON_0000020 sense organ UBERON_0019211 supcapsular region of anterior region of lens +UBERON_0000020 sense organ UBERON_0019212 supcapsular region of posterior region of lens +UBERON_0000020 sense organ UBERON_0019254 upper eyelash +UBERON_0000020 sense organ UBERON_0019255 lower eyelash +UBERON_0000020 sense organ UBERON_0019304 sensory organ epithelium +UBERON_0000020 sense organ UBERON_0019306 nose epithelium +UBERON_0000020 sense organ UBERON_0019307 epithelium of external nose +UBERON_0000020 sense organ UBERON_0019315 meibum +UBERON_0000020 sense organ UBERON_0019324 intraorbital lacrimal gland +UBERON_0000020 sense organ UBERON_0019325 exorbital lacrimal gland +UBERON_0000020 sense organ UBERON_0022273 lacrimal lake +UBERON_0000020 sense organ UBERON_0022274 lacrimal papilla +UBERON_0000020 sense organ UBERON_0022279 strand of hair on external ear +UBERON_0000020 sense organ UBERON_0022284 lacrimal gland bud +UBERON_0000020 sense organ UBERON_0022287 tear film +UBERON_0000020 sense organ UBERON_0022288 surface of eyeball +UBERON_0000020 sense organ UBERON_0023541 conical papilla +UBERON_0000020 sense organ UBERON_0028194 spiral prominence of cochlear duct +UBERON_0000020 sense organ UBERON_0034670 palatal taste bud +UBERON_0000020 sense organ UBERON_0034717 integumental taste bud +UBERON_0000020 sense organ UBERON_0034718 barbel taste bud +UBERON_0000020 sense organ UBERON_0034719 lip taste bud +UBERON_0000020 sense organ UBERON_0034720 head taste bud +UBERON_0000020 sense organ UBERON_0034721 pharyngeal taste bud +UBERON_0000020 sense organ UBERON_0034722 mouth roof taste bud +UBERON_0000020 sense organ UBERON_0034723 fin taste bud +UBERON_0000020 sense organ UBERON_0034724 esophageal taste bud +UBERON_0000020 sense organ UBERON_0034726 trunk taste bud +UBERON_0000020 sense organ UBERON_0034772 margin of eyelid +UBERON_0000020 sense organ UBERON_0034934 Weber's gland +UBERON_0000020 sense organ UBERON_0034935 pars plicata of ciliary body +UBERON_0000020 sense organ UBERON_0034936 pars plana of ciliary body +UBERON_0000020 sense organ UBERON_0035034 eyelid epithelium +UBERON_0000020 sense organ UBERON_0035077 lateral nasal gland +UBERON_0000020 sense organ UBERON_0035130 auditory ossicle endochondral element +UBERON_0000020 sense organ UBERON_0035131 auditory ossicle cartilage element +UBERON_0000020 sense organ UBERON_0035132 auditory ossicle pre-cartilage element +UBERON_0000020 sense organ UBERON_0035174 right ear +UBERON_0000020 sense organ UBERON_0035295 left ear +UBERON_0000020 sense organ UBERON_0035555 lateral line sense organ +UBERON_0000020 sense organ UBERON_0035606 cartilage of external acoustic meatus +UBERON_0000020 sense organ UBERON_0035806 Hensen stripe +UBERON_0000020 sense organ UBERON_0035941 Kimura membrane +UBERON_0000020 sense organ UBERON_0035964 promontory of tympanic cavity +UBERON_0000020 sense organ UBERON_0035966 scleral lamina cribrosa +UBERON_0000020 sense organ UBERON_0036167 Sattler's layer +UBERON_0000020 sense organ UBERON_0036168 Haller's layer +UBERON_0000020 sense organ UBERON_0036212 intertragic incisure +UBERON_0000020 sense organ UBERON_0036249 zona pectinata of basilar membrane of cochlea +UBERON_0000020 sense organ UBERON_0036250 zone of basilar membrane of cochlea +UBERON_0000020 sense organ UBERON_0036254 piriform aperture +UBERON_0000020 sense organ UBERON_0036265 conjunctival papilla +UBERON_0000020 sense organ UBERON_0036300 tributary of central retinal vein +UBERON_0000020 sense organ UBERON_0036925 wall of eyeball +UBERON_0000020 sense organ UBERON_0036990 wall of pharyngotympanic tube +UBERON_0000020 sense organ UBERON_0037191 wall of membranous labyrinth +UBERON_0000020 sense organ UBERON_0037237 wall of lacrimal duct +UBERON_0000020 sense organ UBERON_1000004 collection of hair on external ear +UBERON_0000020 sense organ UBERON_1000005 external ear margin +UBERON_0000020 sense organ UBERON_1000012 nose anterior margin +UBERON_0000020 sense organ UBERON_1000013 nose vertex +UBERON_0000020 sense organ UBERON_1000017 tip of external ear +UBERON_0000020 sense organ UBERON_1000022 Zymbal's gland +UBERON_0000020 sense organ UBERON_2000116 macula lagena +UBERON_0000020 sense organ UBERON_2000125 mandibular lateral line neuromast +UBERON_0000020 sense organ UBERON_2000136 otic lateral line neuromast +UBERON_0000020 sense organ UBERON_2000168 anterior macula +UBERON_0000020 sense organ UBERON_2000225 lateral crista primordium +UBERON_0000020 sense organ UBERON_2000232 lateral semicircular canal primordium +UBERON_0000020 sense organ UBERON_2000234 macula neglecta +UBERON_0000020 sense organ UBERON_2000315 asteriscus +UBERON_0000020 sense organ UBERON_2000411 posterior crista primordium +UBERON_0000020 sense organ UBERON_2000412 posterior semicircular canal primordium +UBERON_0000020 sense organ UBERON_2000469 anterior semicircular canal primordium +UBERON_0000020 sense organ UBERON_2000530 lapillus +UBERON_0000020 sense organ UBERON_2000558 posterior macula +UBERON_0000020 sense organ UBERON_2000676 sagitta +UBERON_0000020 sense organ UBERON_2000813 infraorbital lateral line neuromast +UBERON_0000020 sense organ UBERON_2000814 opercular lateral line neuromast +UBERON_0000020 sense organ UBERON_2000939 middle lateral line neuromast +UBERON_0000020 sense organ UBERON_2000940 posterior lateral line neuromast +UBERON_0000020 sense organ UBERON_2001025 occipital lateral line neuromast +UBERON_0000020 sense organ UBERON_2001026 supraorbital lateral line neuromast +UBERON_0000020 sense organ UBERON_2001426 posterior naris +UBERON_0000020 sense organ UBERON_2001427 anterior naris +UBERON_0000020 sense organ UBERON_2001428 olfactory rosette +UBERON_0000020 sense organ UBERON_2001432 anterior sclerotic bone +UBERON_0000020 sense organ UBERON_2001433 posterior sclerotic bone +UBERON_0000020 sense organ UBERON_2001472 anterior lateral line neuromast +UBERON_0000020 sense organ UBERON_2002193 dorsolateral septum +UBERON_0000020 sense organ UBERON_2002206 macula communis +UBERON_0000020 sense organ UBERON_2002223 pillar of the semicircular canal +UBERON_0000020 sense organ UBERON_2002275 Jakubowski's organ +UBERON_0000020 sense organ UBERON_2005054 inner optic circle +UBERON_0000020 sense organ UBERON_2005113 dorsal lateral line neuromast +UBERON_0000020 sense organ UBERON_2005409 pars superior ear +UBERON_0000020 sense organ UBERON_2005410 pars inferior ear +UBERON_0000020 sense organ UBERON_2005411 common crus +UBERON_0000020 sense organ UBERON_2005415 inner ear foramen +UBERON_0000020 sense organ UBERON_2005416 sacculoagenar foramen +UBERON_0000020 sense organ UBERON_2007054 pillar of the anterior semicircular canal +UBERON_0000020 sense organ UBERON_2007055 pillar of the lateral semicircular canal +UBERON_0000020 sense organ UBERON_3000002 alary cartilage +UBERON_0000020 sense organ UBERON_3000015 anterior maxillary process +UBERON_0000020 sense organ UBERON_3000016 anterior nasal wall +UBERON_0000020 sense organ UBERON_3000057 canalis semicircularis anterior +UBERON_0000020 sense organ UBERON_3000059 capsular process +UBERON_0000020 sense organ UBERON_3000068 cartilago ectochoanalis +UBERON_0000020 sense organ UBERON_3000069 cartilago infranarina +UBERON_0000020 sense organ UBERON_3000079 cartilago retronarina +UBERON_0000020 sense organ UBERON_3000085 cavum inferius +UBERON_0000020 sense organ UBERON_3000086 cavum internasale +UBERON_0000020 sense organ UBERON_3000087 cavum medius +UBERON_0000020 sense organ UBERON_3000088 cavum praenasale +UBERON_0000020 sense organ UBERON_3000089 cavum principale +UBERON_0000020 sense organ UBERON_3000110 crista contacta +UBERON_0000020 sense organ UBERON_3000113 crista intermedia +UBERON_0000020 sense organ UBERON_3000117 crista subnasalis +UBERON_0000020 sense organ UBERON_3000118 crista supraorbitalis +UBERON_0000020 sense organ UBERON_3000141 endolymphatic system +UBERON_0000020 sense organ UBERON_3000155 extremitas anterior +UBERON_0000020 sense organ UBERON_3000160 fenestra dorsalis nasi +UBERON_0000020 sense organ UBERON_3000161 fenestra endochoanalis +UBERON_0000020 sense organ UBERON_3000162 fenestra endonarina communis +UBERON_0000020 sense organ UBERON_3000164 fenestra lateralis nasi +UBERON_0000020 sense organ UBERON_3000166 fenestra nasobasalis +UBERON_0000020 sense organ UBERON_3000167 fenestra nasolateralis +UBERON_0000020 sense organ UBERON_3000170 fenestra precerebralis +UBERON_0000020 sense organ UBERON_3000171 fenestra prechoanalis +UBERON_0000020 sense organ UBERON_3000178 footplate of pars media plectri +UBERON_0000020 sense organ UBERON_3000189 foramen orbitonasale laterale +UBERON_0000020 sense organ UBERON_3000190 foramen orbitonasale mediale +UBERON_0000020 sense organ UBERON_3000234 inferior prenasal cartilage +UBERON_0000020 sense organ UBERON_3000259 lamina inferior +UBERON_0000020 sense organ UBERON_3000260 lamina nariochoanalis +UBERON_0000020 sense organ UBERON_3000263 lamina precerebralis +UBERON_0000020 sense organ UBERON_3000264 lamina superior +UBERON_0000020 sense organ UBERON_3000290 medial inferior prenasal cartilage +UBERON_0000020 sense organ UBERON_3000291 medial orbitonasal foramen +UBERON_0000020 sense organ UBERON_3000294 median prenasal process +UBERON_0000020 sense organ UBERON_3000316 nasal opening +UBERON_0000020 sense organ UBERON_3000329 oblique cartilage +UBERON_0000020 sense organ UBERON_3000333 olfactory foramen +UBERON_0000020 sense organ UBERON_3000381 paranasal commissure +UBERON_0000020 sense organ UBERON_3000389 paries nasi +UBERON_0000020 sense organ UBERON_3000393 pars amphibiorum +UBERON_0000020 sense organ UBERON_3000395 pars basilaris +UBERON_0000020 sense organ UBERON_3000399 pars externa plectri +UBERON_0000020 sense organ UBERON_3000405 pars inferior of labyrinth +UBERON_0000020 sense organ UBERON_3000406 pars interna plectri +UBERON_0000020 sense organ UBERON_3000408 pars media plectri +UBERON_0000020 sense organ UBERON_3000428 perilymphatic system +UBERON_0000020 sense organ UBERON_3000434 planum antorbitale +UBERON_0000020 sense organ UBERON_3000437 planum conchale +UBERON_0000020 sense organ UBERON_3000438 planum internasale +UBERON_0000020 sense organ UBERON_3000440 planum terminale +UBERON_0000020 sense organ UBERON_3000441 planum triangulare +UBERON_0000020 sense organ UBERON_3000443 plectral apparatus +UBERON_0000020 sense organ UBERON_3000448 posterior maxillary process +UBERON_0000020 sense organ UBERON_3000449 posterior maxillary process dorsal process +UBERON_0000020 sense organ UBERON_3000454 postnasal wall +UBERON_0000020 sense organ UBERON_3000486 processus ascendens plectri +UBERON_0000020 sense organ UBERON_3000492 processus infrafenestralis +UBERON_0000020 sense organ UBERON_3000509 processus suprafenestralis +UBERON_0000020 sense organ UBERON_3000538 recessus fenestrae ovalis +UBERON_0000020 sense organ UBERON_3000547 rostral process +UBERON_0000020 sense organ UBERON_3000560 septum semicircularium anterior +UBERON_0000020 sense organ UBERON_3000561 septum semicircularium laterale +UBERON_0000020 sense organ UBERON_3000562 septum semircularium posterior +UBERON_0000020 sense organ UBERON_3000563 seydels palatal process +UBERON_0000020 sense organ UBERON_3000565 skeletal support for eminentia olfactoria +UBERON_0000020 sense organ UBERON_3000569 solum nasi +UBERON_0000020 sense organ UBERON_3000570 spatium sacculare +UBERON_0000020 sense organ UBERON_3000580 stylus of pars media plectri +UBERON_0000020 sense organ UBERON_3000586 superior prenasal cartilage +UBERON_0000020 sense organ UBERON_3000601 tectum nasi +UBERON_0000020 sense organ UBERON_3000644 processus lingularis of nasal skeleton +UBERON_0000020 sense organ UBERON_3000645 corpus +UBERON_0000020 sense organ UBERON_3000646 margo libera +UBERON_0000020 sense organ UBERON_3000647 crista interna +UBERON_0000020 sense organ UBERON_3000648 crista praeopercularis +UBERON_0000020 sense organ UBERON_3010079 upper eyelid protuberances +UBERON_0000020 sense organ UBERON_3010125 musculus levator bulbi +UBERON_0000020 sense organ UBERON_3010146 lacrimal +UBERON_0000020 sense organ UBERON_3010197 lateral recess +UBERON_0000020 sense organ UBERON_3010728 otic opercular element +UBERON_0000020 sense organ UBERON_3010827 anterior prenasal cartilage +UBERON_0000020 sense organ UBERON_4300005 aphakic space +UBERON_0000020 sense organ UBERON_4300126 tectorial restraint system +UBERON_0000020 sense organ UBERON_4300181 posterior sclerotic cartilage +UBERON_0000020 sense organ UBERON_4300182 anterior sclerotic cartilage +UBERON_0000020 sense organ UBERON_6002639 insect larval sense organ +UBERON_0000020 sense organ UBERON_6002642 insect embryonic/larval ocular segment sensillum +UBERON_0000020 sense organ UBERON_6005168 insect external sensory organ +UBERON_0000020 sense organ UBERON_6005177 insect chaeta +UBERON_0000020 sense organ UBERON_6005805 insect Bolwig organ +UBERON_0000020 sense organ UBERON_6007231 insect external sensillum +UBERON_0000020 sense organ UBERON_6007232 insect eo-type sensillum +UBERON_0000020 sense organ UBERON_6007233 insect internal sensillum +UBERON_0000020 sense organ UBERON_6007240 insect embryonic/larval sensillum +UBERON_0000020 sense organ UBERON_6007242 insect embryonic/larval head sensillum +UBERON_0000020 sense organ UBERON_6007280 insect embryonic/larval head sense organ +UBERON_0000020 sense organ UBERON_6007373 insect internal sense organ +UBERON_0000020 sense organ UBERON_7500073 left nasal bone +UBERON_0000020 sense organ UBERON_7500074 right nasal bone +UBERON_0000020 sense organ UBERON_8000004 central retina +UBERON_0000020 sense organ UBERON_8000005 Henle's fiber layer +UBERON_0000160 intestine UBERON_0000059 large intestine +UBERON_0000160 intestine UBERON_0000159 anal canal +UBERON_0000160 intestine UBERON_0000160 intestine +UBERON_0000160 intestine UBERON_0000168 proximal-distal subdivision of colon +UBERON_0000160 intestine UBERON_0000314 cecum mucosa +UBERON_0000160 intestine UBERON_0000317 colonic mucosa +UBERON_0000160 intestine UBERON_0000320 duodenal mucosa +UBERON_0000160 intestine UBERON_0000331 ileal mucosa +UBERON_0000160 intestine UBERON_0000333 intestinal gland +UBERON_0000160 intestine UBERON_0000397 colonic epithelium +UBERON_0000160 intestine UBERON_0000399 jejunal mucosa +UBERON_0000160 intestine UBERON_0000400 jejunal epithelium +UBERON_0000160 intestine UBERON_0000569 ileocecal valve +UBERON_0000160 intestine UBERON_0001052 rectum +UBERON_0000160 intestine UBERON_0001073 ileocecal junction +UBERON_0000160 intestine UBERON_0001153 caecum +UBERON_0000160 intestine UBERON_0001154 vermiform appendix +UBERON_0000160 intestine UBERON_0001155 colon +UBERON_0000160 intestine UBERON_0001156 ascending colon +UBERON_0000160 intestine UBERON_0001157 transverse colon +UBERON_0000160 intestine UBERON_0001158 descending colon +UBERON_0000160 intestine UBERON_0001159 sigmoid colon +UBERON_0000160 intestine UBERON_0001168 wall of small intestine +UBERON_0000160 intestine UBERON_0001169 wall of large intestine +UBERON_0000160 intestine UBERON_0001170 mesentery of small intestine +UBERON_0000160 intestine UBERON_0001204 mucosa of small intestine +UBERON_0000160 intestine UBERON_0001205 submucosa of small intestine +UBERON_0000160 intestine UBERON_0001206 serosa of small intestine +UBERON_0000160 intestine UBERON_0001207 mucosa of large intestine +UBERON_0000160 intestine UBERON_0001208 submucosa of large intestine +UBERON_0000160 intestine UBERON_0001209 serosa of large intestine +UBERON_0000160 intestine UBERON_0001210 muscularis mucosae of small intestine +UBERON_0000160 intestine UBERON_0001211 Peyer's patch +UBERON_0000160 intestine UBERON_0001212 duodenal gland +UBERON_0000160 intestine UBERON_0001213 intestinal villus +UBERON_0000160 intestine UBERON_0001238 lamina propria of small intestine +UBERON_0000160 intestine UBERON_0001239 muscularis mucosae of large intestine +UBERON_0000160 intestine UBERON_0001240 muscularis mucosae of intestine +UBERON_0000160 intestine UBERON_0001241 crypt of Lieberkuhn of small intestine +UBERON_0000160 intestine UBERON_0001242 intestinal mucosa +UBERON_0000160 intestine UBERON_0001243 serosa of intestine +UBERON_0000160 intestine UBERON_0001262 wall of intestine +UBERON_0000160 intestine UBERON_0001277 intestinal epithelium +UBERON_0000160 intestine UBERON_0001278 epithelium of large intestine +UBERON_0000160 intestine UBERON_0001357 inferior rectal artery +UBERON_0000160 intestine UBERON_0001902 epithelium of small intestine +UBERON_0000160 intestine UBERON_0001983 crypt of Lieberkuhn +UBERON_0000160 intestine UBERON_0001984 crypt of Lieberkuhn of large intestine +UBERON_0000160 intestine UBERON_0002108 small intestine +UBERON_0000160 intestine UBERON_0002114 duodenum +UBERON_0000160 intestine UBERON_0002115 jejunum +UBERON_0000160 intestine UBERON_0002116 ileum +UBERON_0000160 intestine UBERON_0002439 myenteric nerve plexus +UBERON_0000160 intestine UBERON_0003286 foregut region of duodenum +UBERON_0000160 intestine UBERON_0003287 midgut region of duodenum +UBERON_0000160 intestine UBERON_0003329 submucosa of anal canal +UBERON_0000160 intestine UBERON_0003330 submucosa of rectum +UBERON_0000160 intestine UBERON_0003331 submucosa of colon +UBERON_0000160 intestine UBERON_0003332 submucosa of duodenum +UBERON_0000160 intestine UBERON_0003333 submucosa of jejunum +UBERON_0000160 intestine UBERON_0003334 serosa of rectum +UBERON_0000160 intestine UBERON_0003335 serosa of colon +UBERON_0000160 intestine UBERON_0003336 serosa of duodenum +UBERON_0000160 intestine UBERON_0003337 serosa of jejunum +UBERON_0000160 intestine UBERON_0003342 mucosa of anal canal +UBERON_0000160 intestine UBERON_0003346 mucosa of rectum +UBERON_0000160 intestine UBERON_0003354 epithelium of rectum +UBERON_0000160 intestine UBERON_0003395 mesentery of rectum +UBERON_0000160 intestine UBERON_0003396 mesentery of colon +UBERON_0000160 intestine UBERON_0003397 mesentery of duodenum +UBERON_0000160 intestine UBERON_0003398 mesentery of jejunum +UBERON_0000160 intestine UBERON_0003453 large intestine Peyer's patch +UBERON_0000160 intestine UBERON_0003454 small intestine Peyer's patch +UBERON_0000160 intestine UBERON_0003705 Meckel's diverticulum +UBERON_0000160 intestine UBERON_0004220 large intestine smooth muscle +UBERON_0000160 intestine UBERON_0004221 intestine smooth muscle +UBERON_0000160 intestine UBERON_0004239 small intestine smooth muscle +UBERON_0000160 intestine UBERON_0004693 Peyer's patch epithelium +UBERON_0000160 intestine UBERON_0004697 Peyer's patch germinal center +UBERON_0000160 intestine UBERON_0004757 rectal salt gland +UBERON_0000160 intestine UBERON_0004760 gland of anal canal +UBERON_0000160 intestine UBERON_0004913 hepatopancreatic ampulla +UBERON_0000160 intestine UBERON_0004914 duodenal papilla +UBERON_0000160 intestine UBERON_0004915 sphincter of hepatopancreatic ampulla +UBERON_0000160 intestine UBERON_0004927 submucosa of cecum +UBERON_0000160 intestine UBERON_0004928 submucosa of appendix +UBERON_0000160 intestine UBERON_0004929 submucosa of ascending colon +UBERON_0000160 intestine UBERON_0004930 submucosa of transverse colon +UBERON_0000160 intestine UBERON_0004931 submucosa of descending colon +UBERON_0000160 intestine UBERON_0004932 submucosa of sigmoid colon +UBERON_0000160 intestine UBERON_0004946 submucosa of ileum +UBERON_0000160 intestine UBERON_0004989 mucosa of appendix +UBERON_0000160 intestine UBERON_0004990 mucosa of ascending colon +UBERON_0000160 intestine UBERON_0004991 mucosa of transverse colon +UBERON_0000160 intestine UBERON_0004992 mucosa of descending colon +UBERON_0000160 intestine UBERON_0004993 mucosa of sigmoid colon +UBERON_0000160 intestine UBERON_0005636 caecum epithelium +UBERON_0000160 intestine UBERON_0005643 foregut duodenum epithelium +UBERON_0000160 intestine UBERON_0005644 midgut duodenum epithelium +UBERON_0000160 intestine UBERON_0005677 caecum mesentery +UBERON_0000160 intestine UBERON_0005686 caecum dorsal mesentery +UBERON_0000160 intestine UBERON_0005711 foregut duodenum mesentery +UBERON_0000160 intestine UBERON_0005712 midgut duodenum mesentery +UBERON_0000160 intestine UBERON_0006359 mesoduodenum +UBERON_0000160 intestine UBERON_0006574 pectinate line +UBERON_0000160 intestine UBERON_0007158 lumen of anal canal +UBERON_0000160 intestine UBERON_0007159 lumen of colon +UBERON_0000160 intestine UBERON_0007177 lamina propria of mucosa of colon +UBERON_0000160 intestine UBERON_0007178 muscularis mucosae of colon +UBERON_0000160 intestine UBERON_0008342 intestinal villus of duodenum +UBERON_0000160 intestine UBERON_0008343 intestinal villus of jejunum +UBERON_0000160 intestine UBERON_0008344 intestinal villus of ileum +UBERON_0000160 intestine UBERON_0008345 ileal epithelium +UBERON_0000160 intestine UBERON_0008346 duodenal epithelium +UBERON_0000160 intestine UBERON_0008971 left colon +UBERON_0000160 intestine UBERON_0008972 right colon +UBERON_0000160 intestine UBERON_0009130 dorsal meso-duodenum +UBERON_0000160 intestine UBERON_0009566 intestinal submucosa +UBERON_0000160 intestine UBERON_0009670 rectal lumen +UBERON_0000160 intestine UBERON_0009697 epithelium of appendix +UBERON_0000160 intestine UBERON_0009882 anal column +UBERON_0000160 intestine UBERON_0010016 spiral valve of intestine +UBERON_0000160 intestine UBERON_0010239 spiral colon +UBERON_0000160 intestine UBERON_0010386 Peyer's patch follicle +UBERON_0000160 intestine UBERON_0010387 Peyer's patch T cell area +UBERON_0000160 intestine UBERON_0011184 epithelium of crypt of Lieberkuhn +UBERON_0000160 intestine UBERON_0011189 lamina propria of large intestine +UBERON_0000160 intestine UBERON_0011198 muscle layer of large intestine +UBERON_0000160 intestine UBERON_0011201 muscle layer of small intestine +UBERON_0000160 intestine UBERON_0012271 major duodenal papilla +UBERON_0000160 intestine UBERON_0012272 minor duodenal papilla +UBERON_0000160 intestine UBERON_0012273 periampullary region of duodenum +UBERON_0000160 intestine UBERON_0012367 muscle layer of intestine +UBERON_0000160 intestine UBERON_0012377 muscle layer of jejunum +UBERON_0000160 intestine UBERON_0012398 large intestine smooth muscle circular layer +UBERON_0000160 intestine UBERON_0012399 large intestine smooth muscle longitudinal layer +UBERON_0000160 intestine UBERON_0012401 small intestine smooth muscle circular layer +UBERON_0000160 intestine UBERON_0012402 small intestine smooth muscle longitudinal layer +UBERON_0000160 intestine UBERON_0012419 taenia coli +UBERON_0000160 intestine UBERON_0012425 striated border microvillus layer +UBERON_0000160 intestine UBERON_0012427 intestinal brush border layer +UBERON_0000160 intestine UBERON_0012474 hepatic cecum +UBERON_0000160 intestine UBERON_0012488 muscle layer of duodenum +UBERON_0000160 intestine UBERON_0012489 muscle layer of colon +UBERON_0000160 intestine UBERON_0012490 muscle layer of anal canal +UBERON_0000160 intestine UBERON_0012494 muscularis mucosae of duodenum +UBERON_0000160 intestine UBERON_0012497 muscularis mucosae of rectum +UBERON_0000160 intestine UBERON_0012498 serosa of appendix +UBERON_0000160 intestine UBERON_0012652 colorectum +UBERON_0000160 intestine UBERON_0013067 colorectal mucosa +UBERON_0000160 intestine UBERON_0013478 cecal tonsil +UBERON_0000160 intestine UBERON_0013481 crypt of Lieberkuhn of ileum +UBERON_0000160 intestine UBERON_0013482 crypt of Lieberkuhn of duodenum +UBERON_0000160 intestine UBERON_0013483 crypt of Lieberkuhn of jejunum +UBERON_0000160 intestine UBERON_0013485 crypt of Lieberkuhn of colon +UBERON_0000160 intestine UBERON_0013486 crypt of Lieberkuhn of appendix +UBERON_0000160 intestine UBERON_0013636 epithelium of intestinal villus +UBERON_0000160 intestine UBERON_0013644 duodenal ampulla +UBERON_0000160 intestine UBERON_0013689 appendix lymphoid tissue +UBERON_0000160 intestine UBERON_0013695 colon endothelium +UBERON_0000160 intestine UBERON_0013739 base of crypt of Lieberkuhn +UBERON_0000160 intestine UBERON_0013740 wall of crypt of Lieberkuhn +UBERON_0000160 intestine UBERON_0013741 base of crypt of Lieberkuhn of large intestine +UBERON_0000160 intestine UBERON_0013742 wall of crypt of Lieberkuhn of large intestine +UBERON_0000160 intestine UBERON_0013743 base of crypt of Lieberkuhn of small intestine +UBERON_0000160 intestine UBERON_0013744 wall of crypt of Lieberkuhn of small intestine +UBERON_0000160 intestine UBERON_0014390 muscle layer of ileum +UBERON_0000160 intestine UBERON_0015716 anal canal epithelium +UBERON_0000160 intestine UBERON_0015834 duodenum lamina propria +UBERON_0000160 intestine UBERON_0016512 lumen of duodenum +UBERON_0000160 intestine UBERON_0016517 lumen of jejunum +UBERON_0000160 intestine UBERON_0016519 muscularis mucosae of jejunum +UBERON_0000160 intestine UBERON_0017626 transverse folds of rectum +UBERON_0000160 intestine UBERON_0017627 rectal valve +UBERON_0000160 intestine UBERON_0018111 muscle layer of rectum +UBERON_0000160 intestine UBERON_0018112 rectum smooth muscle tissue +UBERON_0000160 intestine UBERON_0018410 lacteal +UBERON_0000160 intestine UBERON_0018543 lumen of intestine +UBERON_0000160 intestine UBERON_0022275 colic flexure +UBERON_0000160 intestine UBERON_0022276 splenic flexure of colon +UBERON_0000160 intestine UBERON_0022277 hepatic flexure of colon +UBERON_0000160 intestine UBERON_0022280 epithelium of crypt of Lieberkuhn of small intestine +UBERON_0000160 intestine UBERON_0022281 epithelium of crypt of Lieberkuhn of large intestine +UBERON_0000160 intestine UBERON_0022357 mesentery of ileum +UBERON_0000160 intestine UBERON_0035243 anal sinus +UBERON_0000160 intestine UBERON_0035377 transverse fold of rectum +UBERON_0000160 intestine UBERON_0035805 muscle layer of sigmoid colon +UBERON_0000160 intestine UBERON_0036214 rectosigmoid junction +UBERON_0000160 intestine UBERON_0036337 wall of appendix +UBERON_0000160 intestine UBERON_0036362 wall of anal canal +UBERON_0000160 intestine UBERON_2001076 intestinal bulb +UBERON_0000160 intestine UBERON_2005126 intestinal bulb epithelium +UBERON_0000160 intestine UBERON_2005256 intervillus pockets +UBERON_0000160 intestine UBERON_2005273 intestinal mucosal muscle +UBERON_0000160 intestine UBERON_8410000 duodeno-jejunal junction +UBERON_0000160 intestine UBERON_8410001 small intestine venule +UBERON_0000160 intestine UBERON_8410002 small intestine lymphatic vessel +UBERON_0000160 intestine UBERON_8410004 small intestine arteriole +UBERON_0000160 intestine UBERON_8410005 transitional glandular epithelium of anorectum +UBERON_0000160 intestine UBERON_8410006 submucous nerve plexus of anorectum +UBERON_0000160 intestine UBERON_8410007 myenteric nerve plexus of anorectum +UBERON_0000160 intestine UBERON_8410008 venule of anorectum +UBERON_0000160 intestine UBERON_8410009 arteriole of anorectum +UBERON_0000160 intestine UBERON_8410011 myenteric nerve plexus of appendix +UBERON_0000160 intestine UBERON_8410012 submucous nerve plexus of appendix +UBERON_0000160 intestine UBERON_8410015 arteriole of colon +UBERON_0000160 intestine UBERON_8410016 descending sigmoid junction +UBERON_0000160 intestine UBERON_8410019 jejuno-ileal junction +UBERON_0000160 intestine UBERON_8410020 venule of appendix +UBERON_0000160 intestine UBERON_8410024 intestinal junction +UBERON_0000160 intestine UBERON_8410028 arteriole of appendix +UBERON_0000160 intestine UBERON_8410029 lymphatic capillary of appendix +UBERON_0000160 intestine UBERON_8410030 lymphatic vessel of appendix +UBERON_0000160 intestine UBERON_8410031 muscularis mucosae of appendix +UBERON_0000160 intestine UBERON_8410039 high endothelial venule of appendix +UBERON_0000160 intestine UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0000160 intestine UBERON_8410044 vein of appendix +UBERON_0000160 intestine UBERON_8410045 artery of appendix +UBERON_0000160 intestine UBERON_8410046 appendix smooth muscle circular layer +UBERON_0000160 intestine UBERON_8410047 appendix smooth muscle longitudinal layer +UBERON_0000160 intestine UBERON_8410048 venule of colon +UBERON_0000160 intestine UBERON_8410049 serosal nerve fiber of appendix +UBERON_0000160 intestine UBERON_8410050 anorectum +UBERON_0000160 intestine UBERON_8410051 lymphatic vessel of colon +UBERON_0000160 intestine UBERON_8410054 lymphatic capillary of colon +UBERON_0000160 intestine UBERON_8410055 lymphatic capillary of anorectum +UBERON_0000160 intestine UBERON_8410056 capillary of anorectum +UBERON_0000160 intestine UBERON_8410057 capillary of colon +UBERON_0000160 intestine UBERON_8410058 myenteric nerve plexus of colon +UBERON_0000160 intestine UBERON_8410059 submucous nerve plexus of colon +UBERON_0000160 intestine UBERON_8410060 colon smooth muscle circular layer +UBERON_0000160 intestine UBERON_8410061 colon smooth muscle longitudinal layer +UBERON_0000160 intestine UBERON_8410063 myenteric nerve plexus of small intestine +UBERON_0000160 intestine UBERON_8410064 submucous nerve plexus of small intestine +UBERON_0000160 intestine UBERON_8410068 capillary of small intestine +UBERON_0000167 oral cavity UBERON_0000167 oral cavity +UBERON_0000178 blood CL_0000233 platelet +UBERON_0000178 blood UBERON_0000178 blood +UBERON_0000178 blood UBERON_0001969 blood plasma +UBERON_0000178 blood UBERON_0001977 blood serum +UBERON_0000178 blood UBERON_0012168 umbilical cord blood +UBERON_0000178 blood UBERON_0013755 arterial blood +UBERON_0000178 blood UBERON_0013756 venous blood +UBERON_0000178 blood UBERON_0013757 capillary blood +UBERON_0000178 blood UBERON_8470000 placental blood +UBERON_0000310 breast UBERON_0000310 breast +UBERON_0000310 breast UBERON_0005200 thoracic mammary gland +UBERON_0000310 breast UBERON_0008367 breast epithelium +UBERON_0000310 breast UBERON_0012103 suspensory ligament of breast +UBERON_0000310 breast UBERON_0016410 male breast +UBERON_0000310 breast UBERON_0018538 breast feather +UBERON_0000310 breast UBERON_0018540 breast feather tract +UBERON_0000310 breast UBERON_0035289 axillary tail of breast +UBERON_0000310 breast UBERON_0035328 upper outer quadrant of breast +UBERON_0000310 breast UBERON_0035365 lower outer quadrant of breast +UBERON_0000310 breast UBERON_0035477 lower inner quadrant of breast +UBERON_0000310 breast UBERON_0035542 upper inner quadrant of breast +UBERON_0000310 breast UBERON_0035634 quadrant of breast +UBERON_0000310 breast UBERON_0035635 upper quadrant of breast +UBERON_0000310 breast UBERON_0035636 lower quadrant of breast +UBERON_0000310 breast UBERON_0035637 inner quadrant of breast +UBERON_0000310 breast UBERON_0035638 outer quadrant of breast +UBERON_0000341 throat UBERON_0000341 throat +UBERON_0000341 throat UBERON_0010854 skin of front of neck +UBERON_0000341 throat UBERON_0010880 gular fold +UBERON_0000341 throat UBERON_0013165 epiglottic vallecula +UBERON_0000344 mucosa UBERON_0000030 lamina propria +UBERON_0000344 mucosa UBERON_0000031 lamina propria of trachea +UBERON_0000344 mucosa UBERON_0000314 cecum mucosa +UBERON_0000344 mucosa UBERON_0000317 colonic mucosa +UBERON_0000344 mucosa UBERON_0000320 duodenal mucosa +UBERON_0000344 mucosa UBERON_0000325 gastric gland +UBERON_0000344 mucosa UBERON_0000331 ileal mucosa +UBERON_0000344 mucosa UBERON_0000333 intestinal gland +UBERON_0000344 mucosa UBERON_0000344 mucosa +UBERON_0000344 mucosa UBERON_0000355 pharyngeal mucosa +UBERON_0000344 mucosa UBERON_0000379 tracheal mucosa +UBERON_0000344 mucosa UBERON_0000396 vallate papilla +UBERON_0000344 mucosa UBERON_0000397 colonic epithelium +UBERON_0000344 mucosa UBERON_0000399 jejunal mucosa +UBERON_0000344 mucosa UBERON_0000400 jejunal epithelium +UBERON_0000344 mucosa UBERON_0000410 bronchial mucosa +UBERON_0000344 mucosa UBERON_0000424 gastric pit +UBERON_0000344 mucosa UBERON_0001199 mucosa of stomach +UBERON_0000344 mucosa UBERON_0001203 muscularis mucosae of stomach +UBERON_0000344 mucosa UBERON_0001204 mucosa of small intestine +UBERON_0000344 mucosa UBERON_0001207 mucosa of large intestine +UBERON_0000344 mucosa UBERON_0001210 muscularis mucosae of small intestine +UBERON_0000344 mucosa UBERON_0001211 Peyer's patch +UBERON_0000344 mucosa UBERON_0001213 intestinal villus +UBERON_0000344 mucosa UBERON_0001238 lamina propria of small intestine +UBERON_0000344 mucosa UBERON_0001239 muscularis mucosae of large intestine +UBERON_0000344 mucosa UBERON_0001240 muscularis mucosae of intestine +UBERON_0000344 mucosa UBERON_0001241 crypt of Lieberkuhn of small intestine +UBERON_0000344 mucosa UBERON_0001242 intestinal mucosa +UBERON_0000344 mucosa UBERON_0001253 lamina propria of ureter +UBERON_0000344 mucosa UBERON_0001259 mucosa of urinary bladder +UBERON_0000344 mucosa UBERON_0001261 lamina propria of urinary bladder +UBERON_0000344 mucosa UBERON_0001276 epithelium of stomach +UBERON_0000344 mucosa UBERON_0001277 intestinal epithelium +UBERON_0000344 mucosa UBERON_0001278 epithelium of large intestine +UBERON_0000344 mucosa UBERON_0001295 endometrium +UBERON_0000344 mucosa UBERON_0001726 papilla of tongue +UBERON_0000344 mucosa UBERON_0001824 mucosa of larynx +UBERON_0000344 mucosa UBERON_0001826 nasal cavity mucosa +UBERON_0000344 mucosa UBERON_0001828 gingiva +UBERON_0000344 mucosa UBERON_0001830 minor salivary gland +UBERON_0000344 mucosa UBERON_0001902 epithelium of small intestine +UBERON_0000344 mucosa UBERON_0001949 gingival epithelium +UBERON_0000344 mucosa UBERON_0001955 epithelium of respiratory bronchiole +UBERON_0000344 mucosa UBERON_0001958 terminal bronchiole epithelium +UBERON_0000344 mucosa UBERON_0001974 lamina propria of esophagus +UBERON_0000344 mucosa UBERON_0001976 epithelium of esophagus +UBERON_0000344 mucosa UBERON_0001983 crypt of Lieberkuhn +UBERON_0000344 mucosa UBERON_0001984 crypt of Lieberkuhn of large intestine +UBERON_0000344 mucosa UBERON_0001997 olfactory epithelium +UBERON_0000344 mucosa UBERON_0002051 epithelium of bronchiole +UBERON_0000344 mucosa UBERON_0002232 olfactory gland +UBERON_0000344 mucosa UBERON_0002326 lamina propria of urethra +UBERON_0000344 mucosa UBERON_0002337 endometrial stroma +UBERON_0000344 mucosa UBERON_0002338 lamina propria of bronchus +UBERON_0000344 mucosa UBERON_0002424 oral epithelium +UBERON_0000344 mucosa UBERON_0002447 palatine gland +UBERON_0000344 mucosa UBERON_0002448 fungiform papilla +UBERON_0000344 mucosa UBERON_0002451 endometrial gland +UBERON_0000344 mucosa UBERON_0002467 filiform papilla +UBERON_0000344 mucosa UBERON_0002468 foliate papilla +UBERON_0000344 mucosa UBERON_0002469 esophagus mucosa +UBERON_0000344 mucosa UBERON_0003342 mucosa of anal canal +UBERON_0000344 mucosa UBERON_0003343 mucosa of oral region +UBERON_0000344 mucosa UBERON_0003346 mucosa of rectum +UBERON_0000344 mucosa UBERON_0003350 epithelium of mucosa +UBERON_0000344 mucosa UBERON_0003354 epithelium of rectum +UBERON_0000344 mucosa UBERON_0003453 large intestine Peyer's patch +UBERON_0000344 mucosa UBERON_0003454 small intestine Peyer's patch +UBERON_0000344 mucosa UBERON_0003729 mouth mucosa +UBERON_0000344 mucosa UBERON_0003729 oral mucosa +UBERON_0000344 mucosa UBERON_0004645 urinary bladder urothelium +UBERON_0000344 mucosa UBERON_0004648 esophagus muscularis mucosa +UBERON_0000344 mucosa UBERON_0004650 tongue keratinized epithelium +UBERON_0000344 mucosa UBERON_0004693 Peyer's patch epithelium +UBERON_0000344 mucosa UBERON_0004697 Peyer's patch germinal center +UBERON_0000344 mucosa UBERON_0004779 respiratory system lamina propria +UBERON_0000344 mucosa UBERON_0004780 gastrointestinal system lamina propria +UBERON_0000344 mucosa UBERON_0004781 gall bladder lamina propria +UBERON_0000344 mucosa UBERON_0004785 respiratory system mucosa +UBERON_0000344 mucosa UBERON_0004786 gastrointestinal system mucosa +UBERON_0000344 mucosa UBERON_0004789 larynx mucous gland +UBERON_0000344 mucosa UBERON_0004811 endometrium epithelium +UBERON_0000344 mucosa UBERON_0004913 hepatopancreatic ampulla +UBERON_0000344 mucosa UBERON_0004914 duodenal papilla +UBERON_0000344 mucosa UBERON_0004915 sphincter of hepatopancreatic ampulla +UBERON_0000344 mucosa UBERON_0004980 mucosa of ureter +UBERON_0000344 mucosa UBERON_0004982 mucosa of epiglottis +UBERON_0000344 mucosa UBERON_0004983 mucosa of vagina +UBERON_0000344 mucosa UBERON_0004984 mucosa of seminal vesicle +UBERON_0000344 mucosa UBERON_0004985 mucosa of ejaculatory duct +UBERON_0000344 mucosa UBERON_0004986 mucosa of deferent duct +UBERON_0000344 mucosa UBERON_0004987 mucosa of laryngopharynx +UBERON_0000344 mucosa UBERON_0004988 mucosa of cystic duct +UBERON_0000344 mucosa UBERON_0004989 mucosa of appendix +UBERON_0000344 mucosa UBERON_0004990 mucosa of ascending colon +UBERON_0000344 mucosa UBERON_0004991 mucosa of transverse colon +UBERON_0000344 mucosa UBERON_0004992 mucosa of descending colon +UBERON_0000344 mucosa UBERON_0004993 mucosa of sigmoid colon +UBERON_0000344 mucosa UBERON_0004994 mucosa of fundus of stomach +UBERON_0000344 mucosa UBERON_0004995 mucosa of body of stomach +UBERON_0000344 mucosa UBERON_0004996 mucosa of cardia of stomach +UBERON_0000344 mucosa UBERON_0004997 mucosa of pyloric antrum +UBERON_0000344 mucosa UBERON_0004998 mucosa of pylorus +UBERON_0000344 mucosa UBERON_0004999 mucosa of biliary tree +UBERON_0000344 mucosa UBERON_0005000 mucosa of common bile duct +UBERON_0000344 mucosa UBERON_0005001 mucosa of common hepatic duct +UBERON_0000344 mucosa UBERON_0005002 mucosa of right hepatic duct +UBERON_0000344 mucosa UBERON_0005003 mucosa of left hepatic duct +UBERON_0000344 mucosa UBERON_0005004 mucosa of right ureter +UBERON_0000344 mucosa UBERON_0005005 mucosa of left ureter +UBERON_0000344 mucosa UBERON_0005006 mucosa of renal pelvis +UBERON_0000344 mucosa UBERON_0005007 mucosa of major calyx +UBERON_0000344 mucosa UBERON_0005008 mucosa of minor calyx +UBERON_0000344 mucosa UBERON_0005009 mucosa of trigone of urinary bladder +UBERON_0000344 mucosa UBERON_0005010 mucosa of neck of urinary bladder +UBERON_0000344 mucosa UBERON_0005011 mucosa of right uterine tube +UBERON_0000344 mucosa UBERON_0005012 mucosa of left uterine tube +UBERON_0000344 mucosa UBERON_0005013 mucosa of male urethra +UBERON_0000344 mucosa UBERON_0005014 mucosa of female urethra +UBERON_0000344 mucosa UBERON_0005015 mucosa of prostatic urethra +UBERON_0000344 mucosa UBERON_0005016 mucosa of intermediate urethra +UBERON_0000344 mucosa UBERON_0005017 mucosa of lacrimal sac +UBERON_0000344 mucosa UBERON_0005018 mucosa of nasal septum +UBERON_0000344 mucosa UBERON_0005019 mucosa of palate +UBERON_0000344 mucosa UBERON_0005020 mucosa of tongue +UBERON_0000344 mucosa UBERON_0005021 mucosa of sphenoidal sinus +UBERON_0000344 mucosa UBERON_0005022 mucosa of nasopharynx +UBERON_0000344 mucosa UBERON_0005023 mucosa of oropharynx +UBERON_0000344 mucosa UBERON_0005024 mucosa of soft palate +UBERON_0000344 mucosa UBERON_0005025 mucosa of uvula +UBERON_0000344 mucosa UBERON_0005026 mucosa of middle ear +UBERON_0000344 mucosa UBERON_0005027 mucosa of frontal sinus +UBERON_0000344 mucosa UBERON_0005028 mucosa of maxillary sinus +UBERON_0000344 mucosa UBERON_0005029 mucosa of lacrimal canaliculus +UBERON_0000344 mucosa UBERON_0005030 mucosa of paranasal sinus +UBERON_0000344 mucosa UBERON_0005031 mucosa of upper lip +UBERON_0000344 mucosa UBERON_0005032 mucosa of lower lip +UBERON_0000344 mucosa UBERON_0005033 mucosa of gallbladder +UBERON_0000344 mucosa UBERON_0005034 mucosa of right main bronchus +UBERON_0000344 mucosa UBERON_0005035 mucosa of left main bronchus +UBERON_0000344 mucosa UBERON_0005036 mucosa of main bronchus +UBERON_0000344 mucosa UBERON_0005037 mucosa of lobar bronchus +UBERON_0000344 mucosa UBERON_0005038 mucosa of segmental bronchus +UBERON_0000344 mucosa UBERON_0005039 mucosa of bronchiole +UBERON_0000344 mucosa UBERON_0005040 mucosa of terminal bronchiole +UBERON_0000344 mucosa UBERON_0005041 mucosa of respiratory bronchiole +UBERON_0000344 mucosa UBERON_0005043 mucosa of nasolacrimal duct +UBERON_0000344 mucosa UBERON_0005044 mucosa of pharyngotympanic tube +UBERON_0000344 mucosa UBERON_0005045 mucosa of ethmoidal sinus +UBERON_0000344 mucosa UBERON_0005046 mucosa of hard palate +UBERON_0000344 mucosa UBERON_0005047 mucosa of vocal fold +UBERON_0000344 mucosa UBERON_0005048 mucosa of uterine tube +UBERON_0000344 mucosa UBERON_0005049 mucosa of infundibulum of uterine tube +UBERON_0000344 mucosa UBERON_0005205 lamina propria of vagina +UBERON_0000344 mucosa UBERON_0005334 oral lamina propria +UBERON_0000344 mucosa UBERON_0005384 nasal cavity epithelium +UBERON_0000344 mucosa UBERON_0005385 nasal cavity respiratory epithelium +UBERON_0000344 mucosa UBERON_0005386 olfactory segment of nasal mucosa +UBERON_0000344 mucosa UBERON_0005477 stomach fundus epithelium +UBERON_0000344 mucosa UBERON_0005636 caecum epithelium +UBERON_0000344 mucosa UBERON_0005637 pyloric region epithelium +UBERON_0000344 mucosa UBERON_0005643 foregut duodenum epithelium +UBERON_0000344 mucosa UBERON_0005644 midgut duodenum epithelium +UBERON_0000344 mucosa UBERON_0005912 transitional epithelium of major calyx +UBERON_0000344 mucosa UBERON_0006330 anterior lingual gland +UBERON_0000344 mucosa UBERON_0006676 muscularis mucosa +UBERON_0000344 mucosa UBERON_0006689 frenulum of tongue +UBERON_0000344 mucosa UBERON_0006815 areolar connective tissue +UBERON_0000344 mucosa UBERON_0006912 urinary bladder muscularis mucosa +UBERON_0000344 mucosa UBERON_0006916 non-keratinized epithelium of tongue +UBERON_0000344 mucosa UBERON_0006919 tongue squamous epithelium +UBERON_0000344 mucosa UBERON_0006920 esophagus squamous epithelium +UBERON_0000344 mucosa UBERON_0006921 stomach squamous epithelium +UBERON_0000344 mucosa UBERON_0006924 stomach glandular epithelium +UBERON_0000344 mucosa UBERON_0006931 stomach glandular region mucosa +UBERON_0000344 mucosa UBERON_0006956 buccal mucosa +UBERON_0000344 mucosa UBERON_0007177 lamina propria of mucosa of colon +UBERON_0000344 mucosa UBERON_0007178 muscularis mucosae of colon +UBERON_0000344 mucosa UBERON_0008285 rumen epithelium +UBERON_0000344 mucosa UBERON_0008342 intestinal villus of duodenum +UBERON_0000344 mucosa UBERON_0008343 intestinal villus of jejunum +UBERON_0000344 mucosa UBERON_0008344 intestinal villus of ileum +UBERON_0000344 mucosa UBERON_0008345 ileal epithelium +UBERON_0000344 mucosa UBERON_0008346 duodenal epithelium +UBERON_0000344 mucosa UBERON_0008420 buccal epithelium +UBERON_0000344 mucosa UBERON_0008790 rugal fold +UBERON_0000344 mucosa UBERON_0008791 rugal fold of stomach +UBERON_0000344 mucosa UBERON_0008798 rugal fold of vagina +UBERON_0000344 mucosa UBERON_0008799 transverse palatine fold +UBERON_0000344 mucosa UBERON_0008859 cardiac gastric gland +UBERON_0000344 mucosa UBERON_0008860 intermediate gastric gland +UBERON_0000344 mucosa UBERON_0008861 pyloric gastric gland +UBERON_0000344 mucosa UBERON_0009671 nasal fin +UBERON_0000344 mucosa UBERON_0009672 oronasal membrane +UBERON_0000344 mucosa UBERON_0009697 epithelium of appendix +UBERON_0000344 mucosa UBERON_0009971 principal gastric gland +UBERON_0000344 mucosa UBERON_0010038 fundic gastric gland +UBERON_0000344 mucosa UBERON_0010040 stomach non-glandular epithelium +UBERON_0000344 mucosa UBERON_0010052 mucosa of dorsum of tongue +UBERON_0000344 mucosa UBERON_0010153 rumen papilla +UBERON_0000344 mucosa UBERON_0010154 inner lining mucosa of the abomasum +UBERON_0000344 mucosa UBERON_0010386 Peyer's patch follicle +UBERON_0000344 mucosa UBERON_0010387 Peyer's patch T cell area +UBERON_0000344 mucosa UBERON_0011184 epithelium of crypt of Lieberkuhn +UBERON_0000344 mucosa UBERON_0011189 lamina propria of large intestine +UBERON_0000344 mucosa UBERON_0011601 gingiva of upper jaw +UBERON_0000344 mucosa UBERON_0011602 gingiva of lower jaw +UBERON_0000344 mucosa UBERON_0011642 oral epithelium from ectoderm +UBERON_0000344 mucosa UBERON_0011949 endometrium luminal epithelium +UBERON_0000344 mucosa UBERON_0011986 mucosa of infraorbital sinus +UBERON_0000344 mucosa UBERON_0012247 cervical gland +UBERON_0000344 mucosa UBERON_0012248 cervical mucosa +UBERON_0000344 mucosa UBERON_0012271 major duodenal papilla +UBERON_0000344 mucosa UBERON_0012272 minor duodenal papilla +UBERON_0000344 mucosa UBERON_0012276 endometrium glandular epithelium +UBERON_0000344 mucosa UBERON_0012278 gland of nasal mucosa +UBERON_0000344 mucosa UBERON_0012287 Rathkes pouch epithelium +UBERON_0000344 mucosa UBERON_0012295 GuΓ©rin's valve +UBERON_0000344 mucosa UBERON_0012296 urethral crest +UBERON_0000344 mucosa UBERON_0012297 male urethral crest +UBERON_0000344 mucosa UBERON_0012298 female urethral crest +UBERON_0000344 mucosa UBERON_0012299 mucosa of urethra +UBERON_0000344 mucosa UBERON_0012376 retromolar triangle +UBERON_0000344 mucosa UBERON_0012480 cloacal mucosa +UBERON_0000344 mucosa UBERON_0012494 muscularis mucosae of duodenum +UBERON_0000344 mucosa UBERON_0012497 muscularis mucosae of rectum +UBERON_0000344 mucosa UBERON_0012651 mucosa of gastroduodenal junction +UBERON_0000344 mucosa UBERON_0013067 colorectal mucosa +UBERON_0000344 mucosa UBERON_0013195 parakeratinized epithelium of gingiva +UBERON_0000344 mucosa UBERON_0013233 supraorbital gland +UBERON_0000344 mucosa UBERON_0013478 cecal tonsil +UBERON_0000344 mucosa UBERON_0013481 crypt of Lieberkuhn of ileum +UBERON_0000344 mucosa UBERON_0013482 crypt of Lieberkuhn of duodenum +UBERON_0000344 mucosa UBERON_0013483 crypt of Lieberkuhn of jejunum +UBERON_0000344 mucosa UBERON_0013485 crypt of Lieberkuhn of colon +UBERON_0000344 mucosa UBERON_0013486 crypt of Lieberkuhn of appendix +UBERON_0000344 mucosa UBERON_0013636 epithelium of intestinal villus +UBERON_0000344 mucosa UBERON_0013638 horny papilla of tongue +UBERON_0000344 mucosa UBERON_0013639 mechanical papilla of tongue +UBERON_0000344 mucosa UBERON_0013695 colon endothelium +UBERON_0000344 mucosa UBERON_0013739 base of crypt of Lieberkuhn +UBERON_0000344 mucosa UBERON_0013740 wall of crypt of Lieberkuhn +UBERON_0000344 mucosa UBERON_0013741 base of crypt of Lieberkuhn of large intestine +UBERON_0000344 mucosa UBERON_0013742 wall of crypt of Lieberkuhn of large intestine +UBERON_0000344 mucosa UBERON_0013743 base of crypt of Lieberkuhn of small intestine +UBERON_0000344 mucosa UBERON_0013744 wall of crypt of Lieberkuhn of small intestine +UBERON_0000344 mucosa UBERON_0014389 gustatory papilla of tongue +UBERON_0000344 mucosa UBERON_0014451 tongue taste bud +UBERON_0000344 mucosa UBERON_0014453 gustatory epithelium of palate +UBERON_0000344 mucosa UBERON_0015171 uterine spiral artery +UBERON_0000344 mucosa UBERON_0015172 endometrial blood vessel +UBERON_0000344 mucosa UBERON_0015246 septal organ of Masera +UBERON_0000344 mucosa UBERON_0015445 anterior lingual gland duct +UBERON_0000344 mucosa UBERON_0015716 anal canal epithelium +UBERON_0000344 mucosa UBERON_0015784 duct of olfactory gland +UBERON_0000344 mucosa UBERON_0015785 acinus of olfactory gland +UBERON_0000344 mucosa UBERON_0015786 respiratory segment of nasal mucosa +UBERON_0000344 mucosa UBERON_0015834 duodenum lamina propria +UBERON_0000344 mucosa UBERON_0016500 muscularis mucosa of fundus of urinary bladder +UBERON_0000344 mucosa UBERON_0016501 muscularis mucosae of fundus of stomach +UBERON_0000344 mucosa UBERON_0016511 lamina propria of fundus of stomach +UBERON_0000344 mucosa UBERON_0016516 lamina propria of prostatic urethra +UBERON_0000344 mucosa UBERON_0016519 muscularis mucosae of jejunum +UBERON_0000344 mucosa UBERON_0016910 frenulum of lip +UBERON_0000344 mucosa UBERON_0016912 frenulum of upper lip +UBERON_0000344 mucosa UBERON_0016913 frenulum of lower lip +UBERON_0000344 mucosa UBERON_0018343 oviduct mucosal fold +UBERON_0000344 mucosa UBERON_0018410 lacteal +UBERON_0000344 mucosa UBERON_0019042 reproductive system mucosa +UBERON_0000344 mucosa UBERON_0019206 tongue papilla epithelium +UBERON_0000344 mucosa UBERON_0022280 epithelium of crypt of Lieberkuhn of small intestine +UBERON_0000344 mucosa UBERON_0022281 epithelium of crypt of Lieberkuhn of large intestine +UBERON_0000344 mucosa UBERON_0022355 basal layer of endometrium +UBERON_0000344 mucosa UBERON_0022356 outer layer of endometrium +UBERON_0000344 mucosa UBERON_0023541 conical papilla +UBERON_0000344 mucosa UBERON_0034670 palatal taste bud +UBERON_0000344 mucosa UBERON_0034721 pharyngeal taste bud +UBERON_0000344 mucosa UBERON_0034885 viscerocranial mucosa +UBERON_0000344 mucosa UBERON_0034934 Weber's gland +UBERON_0000344 mucosa UBERON_0035077 lateral nasal gland +UBERON_0000344 mucosa UBERON_0035149 gingival epithelial attachment +UBERON_0000344 mucosa UBERON_0035834 lower esophagus mucosa +UBERON_0000344 mucosa UBERON_0035838 esophagogastric junction mucosa +UBERON_0000344 mucosa UBERON_0035840 esophagogastric junction muscularis mucosa +UBERON_0000344 mucosa UBERON_0035844 lower esophagus muscularis mucosa +UBERON_0000344 mucosa UBERON_0035967 alveolar mucosa +UBERON_0000344 mucosa UBERON_0036293 oral frenulum +UBERON_0000344 mucosa UBERON_0036294 mucosa of lip +UBERON_0000344 mucosa UBERON_2005126 intestinal bulb epithelium +UBERON_0000344 mucosa UBERON_2005256 intervillus pockets +UBERON_0000344 mucosa UBERON_8410001 small intestine venule +UBERON_0000344 mucosa UBERON_8410004 small intestine arteriole +UBERON_0000344 mucosa UBERON_8410005 transitional glandular epithelium of anorectum +UBERON_0000344 mucosa UBERON_8410031 muscularis mucosae of appendix +UBERON_0000344 mucosa UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0000922 embryo UBERON_0000076 external ectoderm +UBERON_0000922 embryo UBERON_0000085 morula +UBERON_0000922 embryo UBERON_0000087 inner cell mass +UBERON_0000922 embryo UBERON_0000088 trophoblast +UBERON_0000922 embryo UBERON_0000089 hypoblast (generic) +UBERON_0000922 embryo UBERON_0000091 bilaminar disc +UBERON_0000922 embryo UBERON_0000095 cardiac neural crest +UBERON_0000922 embryo UBERON_0000100 blastopore +UBERON_0000922 embryo UBERON_0000163 embryonic cloaca +UBERON_0000922 embryo UBERON_0000164 primitive urogenital sinus +UBERON_0000922 embryo UBERON_0000307 blastula +UBERON_0000922 embryo UBERON_0000319 cytotrophoblast +UBERON_0000922 embryo UBERON_0000323 late embryo +UBERON_0000922 embryo UBERON_0000358 blastocyst +UBERON_0000922 embryo UBERON_0000371 syncytiotrophoblast +UBERON_0000922 embryo UBERON_0000426 extravillous trophoblast +UBERON_0000922 embryo UBERON_0000922 embryo +UBERON_0000922 embryo UBERON_0000923 germ layer +UBERON_0000922 embryo UBERON_0000924 ectoderm +UBERON_0000922 embryo UBERON_0000925 endoderm +UBERON_0000922 embryo UBERON_0000926 mesoderm +UBERON_0000922 embryo UBERON_0000927 mesectoderm +UBERON_0000922 embryo UBERON_0000930 stomodeum +UBERON_0000922 embryo UBERON_0000931 proctodeum +UBERON_0000922 embryo UBERON_0001049 neural tube +UBERON_0000922 embryo UBERON_0001247 falciform ligament +UBERON_0000922 embryo UBERON_0001763 odontogenic papilla +UBERON_0000922 embryo UBERON_0001892 rhombomere +UBERON_0000922 embryo UBERON_0002050 embryonic structure +UBERON_0000922 embryo UBERON_0002061 truncus arteriosus +UBERON_0000922 embryo UBERON_0002062 endocardial cushion +UBERON_0000922 embryo UBERON_0002064 common cardinal vein +UBERON_0000922 embryo UBERON_0002065 posterior cardinal vein +UBERON_0000922 embryo UBERON_0002086 sinoatrial valve +UBERON_0000922 embryo UBERON_0002087 atrioventricular canal +UBERON_0000922 embryo UBERON_0002248 transverse pericardial sinus +UBERON_0000922 embryo UBERON_0002269 pupillary membrane +UBERON_0000922 embryo UBERON_0002296 dorsal mesentery +UBERON_0000922 embryo UBERON_0002342 neural crest +UBERON_0000922 embryo UBERON_0002346 neurectoderm +UBERON_0000922 embryo UBERON_0002399 lesser omentum +UBERON_0000922 embryo UBERON_0002531 paired fin bud +UBERON_0000922 embryo UBERON_0002532 epiblast (generic) +UBERON_0000922 embryo UBERON_0002533 post-anal tail bud +UBERON_0000922 embryo UBERON_0002538 hatching gland +UBERON_0000922 embryo UBERON_0002539 pharyngeal arch +UBERON_0000922 embryo UBERON_0002541 germ ring +UBERON_0000922 embryo UBERON_0002546 cranial placode +UBERON_0000922 embryo UBERON_0003050 olfactory placode +UBERON_0000922 embryo UBERON_0003051 ear vesicle +UBERON_0000922 embryo UBERON_0003054 roof plate +UBERON_0000922 embryo UBERON_0003056 pre-chordal neural plate +UBERON_0000922 embryo UBERON_0003057 chordal neural plate +UBERON_0000922 embryo UBERON_0003059 presomitic mesoderm +UBERON_0000922 embryo UBERON_0003061 blood island +UBERON_0000922 embryo UBERON_0003062 primitive knot +UBERON_0000922 embryo UBERON_0003063 prechordal plate +UBERON_0000922 embryo UBERON_0003064 intermediate mesoderm +UBERON_0000922 embryo UBERON_0003066 pharyngeal arch 2 +UBERON_0000922 embryo UBERON_0003067 dorsolateral placode +UBERON_0000922 embryo UBERON_0003068 axial mesoderm +UBERON_0000922 embryo UBERON_0003069 otic placode +UBERON_0000922 embryo UBERON_0003070 trigeminal placode complex +UBERON_0000922 embryo UBERON_0003071 eye primordium +UBERON_0000922 embryo UBERON_0003073 lens placode +UBERON_0000922 embryo UBERON_0003075 neural plate +UBERON_0000922 embryo UBERON_0003076 posterior neural tube +UBERON_0000922 embryo UBERON_0003077 paraxial mesoderm +UBERON_0000922 embryo UBERON_0003078 epibranchial placode +UBERON_0000922 embryo UBERON_0003079 floor plate +UBERON_0000922 embryo UBERON_0003080 anterior neural tube +UBERON_0000922 embryo UBERON_0003081 lateral plate mesoderm +UBERON_0000922 embryo UBERON_0003083 trunk neural crest +UBERON_0000922 embryo UBERON_0003087 anterior cardinal vein +UBERON_0000922 embryo UBERON_0003099 cranial neural crest +UBERON_0000922 embryo UBERON_0003105 dorsal lateral plate region +UBERON_0000922 embryo UBERON_0003114 pharyngeal arch 3 +UBERON_0000922 embryo UBERON_0003115 pharyngeal arch 4 +UBERON_0000922 embryo UBERON_0003116 pharyngeal arch 5 +UBERON_0000922 embryo UBERON_0003117 pharyngeal arch 6 +UBERON_0000922 embryo UBERON_0003118 pharyngeal arch artery 1 +UBERON_0000922 embryo UBERON_0003119 pharyngeal arch artery 2 +UBERON_0000922 embryo UBERON_0003120 pharyngeal arch artery 3 +UBERON_0000922 embryo UBERON_0003121 pharyngeal arch artery 4 +UBERON_0000922 embryo UBERON_0003122 pharyngeal arch artery 5 +UBERON_0000922 embryo UBERON_0003123 pharyngeal arch artery 6 +UBERON_0000922 embryo UBERON_0003220 metanephric mesenchyme +UBERON_0000922 embryo UBERON_0003248 epithelium of footplate +UBERON_0000922 embryo UBERON_0003249 epithelium of otic placode +UBERON_0000922 embryo UBERON_0003261 thyroid primordium endoderm +UBERON_0000922 embryo UBERON_0003299 roof plate of midbrain +UBERON_0000922 embryo UBERON_0003300 roof plate of telencephalon +UBERON_0000922 embryo UBERON_0003301 roof plate of diencephalon +UBERON_0000922 embryo UBERON_0003302 roof plate of metencephalon +UBERON_0000922 embryo UBERON_0003303 roof plate of medulla oblongata +UBERON_0000922 embryo UBERON_0003304 mesoderm blood island +UBERON_0000922 embryo UBERON_0003306 floor plate of neural tube +UBERON_0000922 embryo UBERON_0003307 floor plate of midbrain +UBERON_0000922 embryo UBERON_0003308 floor plate of telencephalon +UBERON_0000922 embryo UBERON_0003309 floor plate of diencephalon +UBERON_0000922 embryo UBERON_0003310 floor plate of metencephalon +UBERON_0000922 embryo UBERON_0003311 floor plate of medulla oblongata +UBERON_0000922 embryo UBERON_0003314 eye mesenchyme +UBERON_0000922 embryo UBERON_0003317 odontogenic papilla of incisor +UBERON_0000922 embryo UBERON_0003323 mesenchyme of upper jaw +UBERON_0000922 embryo UBERON_0003324 mesenchyme of lower jaw +UBERON_0000922 embryo UBERON_0003325 mesenchyme of pinna +UBERON_0000922 embryo UBERON_0003328 mesenchyme of footplate +UBERON_0000922 embryo UBERON_0003371 pelvic appendage bud ectoderm +UBERON_0000922 embryo UBERON_0003372 pectoral appendage bud ectoderm +UBERON_0000922 embryo UBERON_0003373 ectoderm of footplate +UBERON_0000922 embryo UBERON_0003412 pelvic appendage bud mesenchyme +UBERON_0000922 embryo UBERON_0003413 pectoral appendage bud mesenchyme +UBERON_0000922 embryo UBERON_0003414 mesenchyme of mandible +UBERON_0000922 embryo UBERON_0003415 mesenchyme of nasal septum +UBERON_0000922 embryo UBERON_0003416 mesenchyme of tongue +UBERON_0000922 embryo UBERON_0003417 mesenchyme of soft palate +UBERON_0000922 embryo UBERON_0003418 mesenchyme of submandibular gland +UBERON_0000922 embryo UBERON_0003419 mesenchyme of parotid +UBERON_0000922 embryo UBERON_0003420 mesenchyme of sublingual gland +UBERON_0000922 embryo UBERON_0003421 mesenchyme of vomeronasal organ +UBERON_0000922 embryo UBERON_0003424 mesenchyme of hard palate +UBERON_0000922 embryo UBERON_0003820 prostate bud +UBERON_0000922 embryo UBERON_0003842 neural tube lumen +UBERON_0000922 embryo UBERON_0003849 mesencephalic neural crest +UBERON_0000922 embryo UBERON_0003850 telencephalon neural crest +UBERON_0000922 embryo UBERON_0003851 diencephalon neural crest +UBERON_0000922 embryo UBERON_0003852 rhombencephalon neural crest +UBERON_0000922 embryo UBERON_0003853 spinal cord neural crest +UBERON_0000922 embryo UBERON_0003854 spinal cord neural plate +UBERON_0000922 embryo UBERON_0003856 uncondensed odontogenic mesenchyme +UBERON_0000922 embryo UBERON_0003857 upper eyelid mesenchyme +UBERON_0000922 embryo UBERON_0003858 lower eyelid mesenchyme +UBERON_0000922 embryo UBERON_0003869 presumptive ganglion +UBERON_0000922 embryo UBERON_0003886 future coelemic cavity lumen +UBERON_0000922 embryo UBERON_0003887 intraembryonic coelom +UBERON_0000922 embryo UBERON_0003890 Mullerian duct +UBERON_0000922 embryo UBERON_0003894 liver primordium +UBERON_0000922 embryo UBERON_0003907 left atrioventricular canal +UBERON_0000922 embryo UBERON_0003908 right atrioventricular canal +UBERON_0000922 embryo UBERON_0003921 pancreas primordium +UBERON_0000922 embryo UBERON_0003922 pancreatic epithelial bud +UBERON_0000922 embryo UBERON_0003923 dorsal pancreatic bud +UBERON_0000922 embryo UBERON_0003924 ventral pancreatic bud +UBERON_0000922 embryo UBERON_0003930 atrioventricular canal endocardium +UBERON_0000922 embryo UBERON_0003959 rete testis +UBERON_0000922 embryo UBERON_0004008 cerebellar plate +UBERON_0000922 embryo UBERON_0004013 egg cylinder +UBERON_0000922 embryo UBERON_0004022 germinal neuroepithelium +UBERON_0000922 embryo UBERON_0004023 ganglionic eminence +UBERON_0000922 embryo UBERON_0004024 medial ganglionic eminence +UBERON_0000922 embryo UBERON_0004025 lateral ganglionic eminence +UBERON_0000922 embryo UBERON_0004026 caudal ganglionic eminence +UBERON_0000922 embryo UBERON_0004031 head ectomesenchyme +UBERON_0000922 embryo UBERON_0004045 tailgut +UBERON_0000922 embryo UBERON_0004046 anterior definitive endoderm +UBERON_0000922 embryo UBERON_0004055 primitive pit +UBERON_0000922 embryo UBERON_0004056 primitive groove +UBERON_0000922 embryo UBERON_0004060 neural tube ventricular layer +UBERON_0000922 embryo UBERON_0004061 neural tube mantle layer +UBERON_0000922 embryo UBERON_0004062 neural tube marginal layer +UBERON_0000922 embryo UBERON_0004063 spinal cord alar plate +UBERON_0000922 embryo UBERON_0004064 neural tube basal plate +UBERON_0000922 embryo UBERON_0004066 frontonasal prominence +UBERON_0000922 embryo UBERON_0004067 lateral nasal prominence +UBERON_0000922 embryo UBERON_0004068 medial nasal prominence +UBERON_0000922 embryo UBERON_0004117 pharyngeal pouch +UBERON_0000922 embryo UBERON_0004139 cardiogenic plate +UBERON_0000922 embryo UBERON_0004140 primary heart field +UBERON_0000922 embryo UBERON_0004141 heart tube +UBERON_0000922 embryo UBERON_0004341 primitive streak +UBERON_0000922 embryo UBERON_0004344 cardinal vein +UBERON_0000922 embryo UBERON_0004346 gubernaculum (male or female) +UBERON_0000922 embryo UBERON_0004347 limb bud +UBERON_0000922 embryo UBERON_0004348 optic eminence +UBERON_0000922 embryo UBERON_0004356 apical ectodermal ridge +UBERON_0000922 embryo UBERON_0004357 paired limb/fin bud +UBERON_0000922 embryo UBERON_0004362 pharyngeal arch 1 +UBERON_0000922 embryo UBERON_0004363 pharyngeal arch artery +UBERON_0000922 embryo UBERON_0004364 ectoplacental cone +UBERON_0000922 embryo UBERON_0004368 Reichert's cartilage +UBERON_0000922 embryo UBERON_0004455 neurula embryo +UBERON_0000922 embryo UBERON_0004706 bulbus cordis +UBERON_0000922 embryo UBERON_0004731 neuromere +UBERON_0000922 embryo UBERON_0004734 gastrula +UBERON_0000922 embryo UBERON_0004735 archenteron +UBERON_0000922 embryo UBERON_0004749 blastodisc +UBERON_0000922 embryo UBERON_0004750 blastoderm +UBERON_0000922 embryo UBERON_0004754 foramen ovale of heart +UBERON_0000922 embryo UBERON_0004871 somatic layer of lateral plate mesoderm +UBERON_0000922 embryo UBERON_0004872 splanchnic layer of lateral plate mesoderm +UBERON_0000922 embryo UBERON_0004873 splanchnopleure +UBERON_0000922 embryo UBERON_0004874 somatopleure +UBERON_0000922 embryo UBERON_0004875 nephrogenic cord +UBERON_0000922 embryo UBERON_0004876 urogenital fold +UBERON_0000922 embryo UBERON_0004879 marginal zone of embryo +UBERON_0000922 embryo UBERON_0004880 chordamesoderm +UBERON_0000922 embryo UBERON_0004902 urogenital sinus epithelium +UBERON_0000922 embryo UBERON_0005051 mediastinum testis +UBERON_0000922 embryo UBERON_0005061 neural groove +UBERON_0000922 embryo UBERON_0005062 neural fold +UBERON_0000922 embryo UBERON_0005068 neural rod +UBERON_0000922 embryo UBERON_0005069 neural fold hinge point +UBERON_0000922 embryo UBERON_0005070 anterior neuropore +UBERON_0000922 embryo UBERON_0005071 posterior neuropore +UBERON_0000922 embryo UBERON_0005077 neuropore +UBERON_0000922 embryo UBERON_0005078 lamina terminalis of neural tube +UBERON_0000922 embryo UBERON_0005079 eggshell +UBERON_0000922 embryo UBERON_0005085 ectodermal placode +UBERON_0000922 embryo UBERON_0005086 hair follicle placode +UBERON_0000922 embryo UBERON_0005087 tooth placode +UBERON_0000922 embryo UBERON_0005088 sebaceous gland placode +UBERON_0000922 embryo UBERON_0005089 sweat gland placode +UBERON_0000922 embryo UBERON_0005091 left horn of sinus venosus +UBERON_0000922 embryo UBERON_0005092 right horn of sinus venosus +UBERON_0000922 embryo UBERON_0005093 embryonic cement gland +UBERON_0000922 embryo UBERON_0005095 kidney rudiment +UBERON_0000922 embryo UBERON_0005107 metanephric cap +UBERON_0000922 embryo UBERON_0005216 optic eminence surface ectoderm +UBERON_0000922 embryo UBERON_0005233 medial-nasal process ectoderm +UBERON_0000922 embryo UBERON_0005234 optic eminence ectoderm +UBERON_0000922 embryo UBERON_0005239 basal plate metencephalon +UBERON_0000922 embryo UBERON_0005240 basal plate medulla oblongata +UBERON_0000922 embryo UBERON_0005248 bulbus cordis myocardium +UBERON_0000922 embryo UBERON_0005250 stomatodeum gland +UBERON_0000922 embryo UBERON_0005253 head mesenchyme +UBERON_0000922 embryo UBERON_0005256 trunk mesenchyme +UBERON_0000922 embryo UBERON_0005291 embryonic tissue +UBERON_0000922 embryo UBERON_0005294 gonadal ridge +UBERON_0000922 embryo UBERON_0005295 sex cord +UBERON_0000922 embryo UBERON_0005296 ovary sex cord +UBERON_0000922 embryo UBERON_0005297 testis sex cord +UBERON_0000922 embryo UBERON_0005307 chorion-containing eggshell +UBERON_0000922 embryo UBERON_0005311 mammary placode +UBERON_0000922 embryo UBERON_0005344 peritoneal vaginal process +UBERON_0000922 embryo UBERON_0005414 zone of polarizing activity +UBERON_0000922 embryo UBERON_0005415 zone of polarizing activity of pectoral appendage +UBERON_0000922 embryo UBERON_0005416 zone of polarizing activity of pelvic appendage +UBERON_0000922 embryo UBERON_0005417 forelimb bud +UBERON_0000922 embryo UBERON_0005418 hindlimb bud +UBERON_0000922 embryo UBERON_0005419 pectoral appendage bud +UBERON_0000922 embryo UBERON_0005420 pelvic appendage bud +UBERON_0000922 embryo UBERON_0005421 pectoral appendage apical ectodermal ridge +UBERON_0000922 embryo UBERON_0005422 pelvic appendage apical ectodermal ridge +UBERON_0000922 embryo UBERON_0005424 presumptive retinal pigmented epithelium +UBERON_0000922 embryo UBERON_0005425 presumptive neural retina +UBERON_0000922 embryo UBERON_0005428 vagal neural crest +UBERON_0000922 embryo UBERON_0005432 aortic sac +UBERON_0000922 embryo UBERON_0005439 definitive endoderm +UBERON_0000922 embryo UBERON_0005478 sulcus limitans of neural tube +UBERON_0000922 embryo UBERON_0005491 glossopharyngeal neural crest +UBERON_0000922 embryo UBERON_0005494 intermediate mesenchyme +UBERON_0000922 embryo UBERON_0005495 midbrain lateral wall +UBERON_0000922 embryo UBERON_0005496 neural tube lateral wall +UBERON_0000922 embryo UBERON_0005498 primitive heart tube +UBERON_0000922 embryo UBERON_0005499 rhombomere 1 +UBERON_0000922 embryo UBERON_0005500 rhombomere floor plate +UBERON_0000922 embryo UBERON_0005501 rhombomere lateral wall +UBERON_0000922 embryo UBERON_0005502 rhombomere roof plate +UBERON_0000922 embryo UBERON_0005507 rhombomere 3 +UBERON_0000922 embryo UBERON_0005511 rhombomere 4 +UBERON_0000922 embryo UBERON_0005515 rhombomere 5 +UBERON_0000922 embryo UBERON_0005519 rhombomere 6 +UBERON_0000922 embryo UBERON_0005523 rhombomere 7 +UBERON_0000922 embryo UBERON_0005527 rhombomere 8 +UBERON_0000922 embryo UBERON_0005561 telencephalon lateral wall +UBERON_0000922 embryo UBERON_0005563 trigeminal neural crest +UBERON_0000922 embryo UBERON_0005565 facio-acoustic neural crest +UBERON_0000922 embryo UBERON_0005566 rhombomere 1 floor plate +UBERON_0000922 embryo UBERON_0005567 rhombomere 1 lateral wall +UBERON_0000922 embryo UBERON_0005568 rhombomere 1 roof plate +UBERON_0000922 embryo UBERON_0005569 rhombomere 2 +UBERON_0000922 embryo UBERON_0005570 rhombomere 2 floor plate +UBERON_0000922 embryo UBERON_0005571 rhombomere 2 lateral wall +UBERON_0000922 embryo UBERON_0005572 rhombomere 2 roof plate +UBERON_0000922 embryo UBERON_0005573 rhombomere 3 floor plate +UBERON_0000922 embryo UBERON_0005574 rhombomere 3 lateral wall +UBERON_0000922 embryo UBERON_0005575 rhombomere 3 roof plate +UBERON_0000922 embryo UBERON_0005576 rhombomere 4 floor plate +UBERON_0000922 embryo UBERON_0005577 rhombomere 4 lateral wall +UBERON_0000922 embryo UBERON_0005578 rhombomere 4 roof plate +UBERON_0000922 embryo UBERON_0005579 rhombomere 5 floor plate +UBERON_0000922 embryo UBERON_0005580 rhombomere 5 lateral wall +UBERON_0000922 embryo UBERON_0005581 rhombomere 5 roof plate +UBERON_0000922 embryo UBERON_0005582 rhombomere 6 floor plate +UBERON_0000922 embryo UBERON_0005583 rhombomere 6 lateral wall +UBERON_0000922 embryo UBERON_0005584 rhombomere 6 roof plate +UBERON_0000922 embryo UBERON_0005585 rhombomere 7 floor plate +UBERON_0000922 embryo UBERON_0005586 rhombomere 7 lateral wall +UBERON_0000922 embryo UBERON_0005587 rhombomere 7 roof plate +UBERON_0000922 embryo UBERON_0005588 rhombomere 8 floor plate +UBERON_0000922 embryo UBERON_0005589 rhombomere 8 lateral wall +UBERON_0000922 embryo UBERON_0005590 rhombomere 8 roof plate +UBERON_0000922 embryo UBERON_0005591 diencephalon lateral wall +UBERON_0000922 embryo UBERON_0005594 head somite +UBERON_0000922 embryo UBERON_0005601 dorsal mesocardium +UBERON_0000922 embryo UBERON_0005602 dorsal mesogastrium +UBERON_0000922 embryo UBERON_0005626 ventral mesogastrium +UBERON_0000922 embryo UBERON_0005660 2nd arch ectoderm +UBERON_0000922 embryo UBERON_0005661 3rd arch ectoderm +UBERON_0000922 embryo UBERON_0005662 4th arch ectoderm +UBERON_0000922 embryo UBERON_0005664 2nd arch endoderm +UBERON_0000922 embryo UBERON_0005665 3rd arch endoderm +UBERON_0000922 embryo UBERON_0005666 4th arch endoderm +UBERON_0000922 embryo UBERON_0005685 midgut dorsal mesentery +UBERON_0000922 embryo UBERON_0005686 caecum dorsal mesentery +UBERON_0000922 embryo UBERON_0005687 orbitosphenoid cartilage element +UBERON_0000922 embryo UBERON_0005689 2nd arch mesenchyme +UBERON_0000922 embryo UBERON_0005690 3rd arch mesenchyme +UBERON_0000922 embryo UBERON_0005691 4th arch mesenchyme +UBERON_0000922 embryo UBERON_0005700 upper jaw molar odontogenic papilla +UBERON_0000922 embryo UBERON_0005701 lower jaw molar odontogenic papilla +UBERON_0000922 embryo UBERON_0005702 optic eminence mesenchyme +UBERON_0000922 embryo UBERON_0005704 secondary palatal shelf mesenchyme +UBERON_0000922 embryo UBERON_0005705 primary palate mesenchyme +UBERON_0000922 embryo UBERON_0005707 upper jaw incisor odontogenic papilla +UBERON_0000922 embryo UBERON_0005708 lower jaw incisor odontogenic papilla +UBERON_0000922 embryo UBERON_0005719 footplate apical ectodermal ridge +UBERON_0000922 embryo UBERON_0005721 pronephric mesoderm +UBERON_0000922 embryo UBERON_0005723 floor plate spinal cord region +UBERON_0000922 embryo UBERON_0005724 roof plate spinal cord region +UBERON_0000922 embryo UBERON_0005729 pectoral appendage field +UBERON_0000922 embryo UBERON_0005730 pelvic appendage field +UBERON_0000922 embryo UBERON_0005731 fin field +UBERON_0000922 embryo UBERON_0005732 paired limb/fin field +UBERON_0000922 embryo UBERON_0005733 limb field +UBERON_0000922 embryo UBERON_0005746 primary vitreous +UBERON_0000922 embryo UBERON_0005753 caudal part of nephrogenic cord +UBERON_0000922 embryo UBERON_0005754 rostral part of nephrogenic cord +UBERON_0000922 embryo UBERON_0005792 nephric ridge +UBERON_0000922 embryo UBERON_0005795 embryonic uterus +UBERON_0000922 embryo UBERON_0005817 neuraxis flexure +UBERON_0000922 embryo UBERON_0005818 cephalic midbrain flexure +UBERON_0000922 embryo UBERON_0005819 cervical flexure +UBERON_0000922 embryo UBERON_0005820 pontine flexure +UBERON_0000922 embryo UBERON_0005866 pre-cartilage condensation +UBERON_0000922 embryo UBERON_0005867 mandibular prominence +UBERON_0000922 embryo UBERON_0005868 maxillary prominence +UBERON_0000922 embryo UBERON_0005870 olfactory pit +UBERON_0000922 embryo UBERON_0005872 1st arch pharyngeal cleft +UBERON_0000922 embryo UBERON_0005873 2nd arch pharyngeal cleft +UBERON_0000922 embryo UBERON_0005874 3rd arch pharyngeal cleft +UBERON_0000922 embryo UBERON_0005875 4th arch pharyngeal cleft +UBERON_0000922 embryo UBERON_0005876 undifferentiated genital tubercle +UBERON_0000922 embryo UBERON_0005879 pharyngeal cleft +UBERON_0000922 embryo UBERON_0005882 neural tube alar plate +UBERON_0000922 embryo UBERON_0005883 neural tube lateral wall mantle layer +UBERON_0000922 embryo UBERON_0005931 primary choana +UBERON_0000922 embryo UBERON_0005967 conotruncal ridge +UBERON_0000922 embryo UBERON_0006060 conotruncus +UBERON_0000922 embryo UBERON_0006063 cartilaginous neural arch +UBERON_0000922 embryo UBERON_0006208 auditory hillocks +UBERON_0000922 embryo UBERON_0006209 basioccipital cartilage element +UBERON_0000922 embryo UBERON_0006211 buccopharyngeal membrane +UBERON_0000922 embryo UBERON_0006212 bulbo-ventricular groove +UBERON_0000922 embryo UBERON_0006213 carpus cartilage element +UBERON_0000922 embryo UBERON_0006214 carpus pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006215 rhombic lip +UBERON_0000922 embryo UBERON_0006216 cervical sinus of His +UBERON_0000922 embryo UBERON_0006217 cloacal membrane +UBERON_0000922 embryo UBERON_0006218 common atrial chamber +UBERON_0000922 embryo UBERON_0006222 future diencephalon +UBERON_0000922 embryo UBERON_0006223 dorsal meso-oesophagus +UBERON_0000922 embryo UBERON_0006226 endolymphatic appendage +UBERON_0000922 embryo UBERON_0006228 exoccipital pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006230 extrinsic ocular pre-muscle mass +UBERON_0000922 embryo UBERON_0006231 facial bone primordium +UBERON_0000922 embryo UBERON_0006232 facio-acoustic VII-VIII preganglion complex +UBERON_0000922 embryo UBERON_0006234 femur pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006238 future brain +UBERON_0000922 embryo UBERON_0006239 future central tendon +UBERON_0000922 embryo UBERON_0006240 future forebrain +UBERON_0000922 embryo UBERON_0006241 future spinal cord +UBERON_0000922 embryo UBERON_0006242 gall bladder primordium +UBERON_0000922 embryo UBERON_0006243 glossopharyngeal IX preganglion +UBERON_0000922 embryo UBERON_0006246 humerus pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006247 iliac pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006250 infundibular recess of 3rd ventricle +UBERON_0000922 embryo UBERON_0006252 intersubcardinal venous anastomosis +UBERON_0000922 embryo UBERON_0006253 embryonic intraretinal space +UBERON_0000922 embryo UBERON_0006255 ischial pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006256 knee joint primordium +UBERON_0000922 embryo UBERON_0006257 laryngotracheal groove +UBERON_0000922 embryo UBERON_0006259 lens pit +UBERON_0000922 embryo UBERON_0006260 lingual swellings +UBERON_0000922 embryo UBERON_0006263 Meckel's cartilage pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006266 nasolacrimal groove +UBERON_0000922 embryo UBERON_0006267 notochordal plate +UBERON_0000922 embryo UBERON_0006270 optic pit +UBERON_0000922 embryo UBERON_0006272 oronasal cavity +UBERON_0000922 embryo UBERON_0006273 otic pit +UBERON_0000922 embryo UBERON_0006274 tetrapod parietal bone primordium +UBERON_0000922 embryo UBERON_0006275 pericardio-peritoneal canal +UBERON_0000922 embryo UBERON_0006276 perioptic mesenchyme +UBERON_0000922 embryo UBERON_0006277 pleuropericardial canals +UBERON_0000922 embryo UBERON_0006278 pleuropericardial folds +UBERON_0000922 embryo UBERON_0006279 pleuroperitoneal canal +UBERON_0000922 embryo UBERON_0006282 primary head vein +UBERON_0000922 embryo UBERON_0006283 future cardiac ventricle +UBERON_0000922 embryo UBERON_0006284 early prosencephalic vesicle +UBERON_0000922 embryo UBERON_0006285 pubic pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006287 radius-ulna pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006289 rib pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006290 scapula cartilage element +UBERON_0000922 embryo UBERON_0006293 spleen primordium +UBERON_0000922 embryo UBERON_0006295 sternebral bone pre-cartilage condensation +UBERON_0000922 embryo UBERON_0006296 subcardinal vein +UBERON_0000922 embryo UBERON_0006297 sublingual gland primordium +UBERON_0000922 embryo UBERON_0006298 submandibular gland primordium +UBERON_0000922 embryo UBERON_0006300 supracardinal vein +UBERON_0000922 embryo UBERON_0006303 tracheal diverticulum +UBERON_0000922 embryo UBERON_0006304 future trigeminal ganglion +UBERON_0000922 embryo UBERON_0006305 tunica vasculosa lentis +UBERON_0000922 embryo UBERON_0006307 urogenital membrane +UBERON_0000922 embryo UBERON_0006309 venous vitelline plexus +UBERON_0000922 embryo UBERON_0006310 vitelline venous plexus +UBERON_0000922 embryo UBERON_0006358 vasa hyaloidea propria +UBERON_0000922 embryo UBERON_0006594 gubernacular cord +UBERON_0000922 embryo UBERON_0006595 presumptive endoderm +UBERON_0000922 embryo UBERON_0006596 presumptive blood +UBERON_0000922 embryo UBERON_0006598 presumptive structure +UBERON_0000922 embryo UBERON_0006599 presumptive hypochord +UBERON_0000922 embryo UBERON_0006600 presumptive enteric nervous system +UBERON_0000922 embryo UBERON_0006601 presumptive ectoderm +UBERON_0000922 embryo UBERON_0006603 presumptive mesoderm +UBERON_0000922 embryo UBERON_0006756 median lingual swelling +UBERON_0000922 embryo UBERON_0006757 lateral lingual swelling +UBERON_0000922 embryo UBERON_0006777 tectal plate +UBERON_0000922 embryo UBERON_0006857 interrenal primordium +UBERON_0000922 embryo UBERON_0006859 swim bladder bud +UBERON_0000922 embryo UBERON_0006871 embryonic footplate +UBERON_0000922 embryo UBERON_0006872 handplate apical ectodermal ridge +UBERON_0000922 embryo UBERON_0006875 embryonic handplate +UBERON_0000922 embryo UBERON_0006904 head mesenchyme from mesoderm +UBERON_0000922 embryo UBERON_0006905 mandibular process mesenchyme +UBERON_0000922 embryo UBERON_0006957 submandibular gland primordium epithelium +UBERON_0000922 embryo UBERON_0007005 cardiogenic splanchnic mesoderm +UBERON_0000922 embryo UBERON_0007010 cleaving embryo +UBERON_0000922 embryo UBERON_0007026 presumptive gut +UBERON_0000922 embryo UBERON_0007097 chordo neural hinge +UBERON_0000922 embryo UBERON_0007098 mandibular neural crest +UBERON_0000922 embryo UBERON_0007099 hyoid neural crest +UBERON_0000922 embryo UBERON_0007106 chorionic villus +UBERON_0000922 embryo UBERON_0007108 vernix caseosa +UBERON_0000922 embryo UBERON_0007109 meconium +UBERON_0000922 embryo UBERON_0007122 pharyngeal pouch 1 +UBERON_0000922 embryo UBERON_0007123 pharyngeal pouch 2 +UBERON_0000922 embryo UBERON_0007124 pharyngeal pouch 3 +UBERON_0000922 embryo UBERON_0007125 pharyngeal pouch 4 +UBERON_0000922 embryo UBERON_0007126 pharyngeal pouch 5 +UBERON_0000922 embryo UBERON_0007127 pharyngeal pouch 6 +UBERON_0000922 embryo UBERON_0007128 glomeral mesenchyme +UBERON_0000922 embryo UBERON_0007135 neural keel +UBERON_0000922 embryo UBERON_0007144 embryonic post-anal tail +UBERON_0000922 embryo UBERON_0007185 pericardio-peritoneal canal mesothelium +UBERON_0000922 embryo UBERON_0007213 mesenchyme derived from head neural crest +UBERON_0000922 embryo UBERON_0007214 mesenchyme derived from trunk neural crest +UBERON_0000922 embryo UBERON_0007237 1st arch mandibular component +UBERON_0000922 embryo UBERON_0007238 1st arch maxillary component +UBERON_0000922 embryo UBERON_0007267 trachea pre-cartilage rings +UBERON_0000922 embryo UBERON_0007277 presumptive hindbrain +UBERON_0000922 embryo UBERON_0007278 presumptive sinus venosus +UBERON_0000922 embryo UBERON_0007279 presumptive atrioventricular canal +UBERON_0000922 embryo UBERON_0007280 presumptive endocardium +UBERON_0000922 embryo UBERON_0007281 presumptive midbrain hindbrain boundary +UBERON_0000922 embryo UBERON_0007282 presumptive segmental plate +UBERON_0000922 embryo UBERON_0007283 presumptive shield +UBERON_0000922 embryo UBERON_0007284 presumptive neural plate +UBERON_0000922 embryo UBERON_0007285 presumptive paraxial mesoderm +UBERON_0000922 embryo UBERON_0007286 presumptive floor plate +UBERON_0000922 embryo UBERON_0007287 presumptive bulbus arteriosus +UBERON_0000922 embryo UBERON_0007288 presumptive forebrain midbrain boundary +UBERON_0000922 embryo UBERON_0007289 presumptive rhombomere 1 +UBERON_0000922 embryo UBERON_0007290 presumptive rhombomere 3 +UBERON_0000922 embryo UBERON_0007291 presumptive rhombomere 4 +UBERON_0000922 embryo UBERON_0007292 presumptive rhombomere 5 +UBERON_0000922 embryo UBERON_0007293 presumptive rhombomere 6 +UBERON_0000922 embryo UBERON_0007294 presumptive rhombomere 7 +UBERON_0000922 embryo UBERON_0007295 presumptive rhombomere 8 +UBERON_0000922 embryo UBERON_0007296 presumptive rhombomere 2 +UBERON_0000922 embryo UBERON_0007297 presumptive pronephric mesoderm +UBERON_0000922 embryo UBERON_0007378 egg yolk +UBERON_0000922 embryo UBERON_0007379 shelled egg +UBERON_0000922 embryo UBERON_0007383 enveloping layer of ectoderm +UBERON_0000922 embryo UBERON_0007645 future meninx +UBERON_0000922 embryo UBERON_0007646 endomeninx +UBERON_0000922 embryo UBERON_0007647 ectomeninx +UBERON_0000922 embryo UBERON_0007681 facial neural crest +UBERON_0000922 embryo UBERON_0007683 lateral mesenchyme derived from mesoderm +UBERON_0000922 embryo UBERON_0007687 kidney field +UBERON_0000922 embryo UBERON_0007690 early pharyngeal endoderm +UBERON_0000922 embryo UBERON_0008267 left supracardinal vein +UBERON_0000922 embryo UBERON_0008268 right supracardinal vein +UBERON_0000922 embryo UBERON_0008425 mammary ridge +UBERON_0000922 embryo UBERON_0008776 inner cell mass derived hypoblast +UBERON_0000922 embryo UBERON_0008780 inner cell mass derived epiblast +UBERON_0000922 embryo UBERON_0008781 blastodisc derived epiblast +UBERON_0000922 embryo UBERON_0008814 pharyngeal arch system +UBERON_0000922 embryo UBERON_0008816 embryonic head +UBERON_0000922 embryo UBERON_0008817 thymus primordium endoderm +UBERON_0000922 embryo UBERON_0008835 hepatic diverticulum +UBERON_0000922 embryo UBERON_0008842 suspensory ligament of testis +UBERON_0000922 embryo UBERON_0008843 gubernaculum testis +UBERON_0000922 embryo UBERON_0008844 gubernaculum (female) +UBERON_0000922 embryo UBERON_0008851 ectoplacental cavity +UBERON_0000922 embryo UBERON_0008896 post-hyoid pharyngeal arch +UBERON_0000922 embryo UBERON_0008944 albumen +UBERON_0000922 embryo UBERON_0009117 indifferent gonad +UBERON_0000922 embryo UBERON_0009122 adenohypophyseal placode +UBERON_0000922 embryo UBERON_0009124 geniculate placode +UBERON_0000922 embryo UBERON_0009125 petrosal placode +UBERON_0000922 embryo UBERON_0009126 nodosal placode +UBERON_0000922 embryo UBERON_0009128 lateral line placode +UBERON_0000922 embryo UBERON_0009129 right atrium endocardium +UBERON_0000922 embryo UBERON_0009130 dorsal meso-duodenum +UBERON_0000922 embryo UBERON_0009133 pleuroperitoneal membrane +UBERON_0000922 embryo UBERON_0009138 right common cardinal vein +UBERON_0000922 embryo UBERON_0009139 right posterior cardinal vein +UBERON_0000922 embryo UBERON_0009140 right subcardinal vein +UBERON_0000922 embryo UBERON_0009142 entire embryonic mesenchyme +UBERON_0000922 embryo UBERON_0009191 sphenoid bone pre-cartilage condensation +UBERON_0000922 embryo UBERON_0009192 basisphenoid pre-cartilage condensation +UBERON_0000922 embryo UBERON_0009193 sphenoid cartilage element +UBERON_0000922 embryo UBERON_0009194 basisphenoid cartilage condenstion +UBERON_0000922 embryo UBERON_0009195 anal membrane +UBERON_0000922 embryo UBERON_0009196 indifferent external genitalia +UBERON_0000922 embryo UBERON_0009197 basioccipital pre-cartilage condensation +UBERON_0000922 embryo UBERON_0009204 medial nasal process mesenchyme +UBERON_0000922 embryo UBERON_0009205 lateral nasal process mesenchyme +UBERON_0000922 embryo UBERON_0009206 lateral nasal process surface ectoderm +UBERON_0000922 embryo UBERON_0009210 pharyngeal membrane +UBERON_0000922 embryo UBERON_0009213 pharyngeal membrane of 1st arch +UBERON_0000922 embryo UBERON_0009215 pharyngeal membrane of 2nd arch +UBERON_0000922 embryo UBERON_0009216 pharyngeal membrane of 3rd arch +UBERON_0000922 embryo UBERON_0009217 pharyngeal membrane of 4th arch +UBERON_0000922 embryo UBERON_0009292 embryonic nasal process +UBERON_0000922 embryo UBERON_0009293 embryonic frontal process +UBERON_0000922 embryo UBERON_0009468 basiotic bone +UBERON_0000922 embryo UBERON_0009477 associated mesenchyme of otic placode +UBERON_0000922 embryo UBERON_0009479 ectoderm of buccopharyngeal membrane +UBERON_0000922 embryo UBERON_0009480 endoderm of buccopharyngeal membrane +UBERON_0000922 embryo UBERON_0009481 cavity of pericardio-peritoneal canal +UBERON_0000922 embryo UBERON_0009494 pharyngeal arch mesenchymal region +UBERON_0000922 embryo UBERON_0009499 parietal of mesothelium of pericardio-peritoneal canal +UBERON_0000922 embryo UBERON_0009500 periotic mesenchyme +UBERON_0000922 embryo UBERON_0009501 mesenchyme of fronto-nasal process +UBERON_0000922 embryo UBERON_0009506 mesenchyme of middle ear +UBERON_0000922 embryo UBERON_0009522 lateral lingual swelling epithelium +UBERON_0000922 embryo UBERON_0009523 mesenchyme of handplate +UBERON_0000922 embryo UBERON_0009526 maxillary process mesenchyme +UBERON_0000922 embryo UBERON_0009538 mesenchyme of sublingual gland primordium +UBERON_0000922 embryo UBERON_0009539 mesenchyme of submandibular gland primordium +UBERON_0000922 embryo UBERON_0009550 endoderm of foregut-midgut junction +UBERON_0000922 embryo UBERON_0009570 spinal cord sulcus limitans +UBERON_0000922 embryo UBERON_0009571 ventral midline +UBERON_0000922 embryo UBERON_0009576 medulla oblongata sulcus limitans +UBERON_0000922 embryo UBERON_0009577 metencephalon sulcus limitans +UBERON_0000922 embryo UBERON_0009578 myelencephalon sulcus limitans +UBERON_0000922 embryo UBERON_0009579 myelencephalon basal plate +UBERON_0000922 embryo UBERON_0009580 diencephalon mantle layer +UBERON_0000922 embryo UBERON_0009581 midbrain mantle layer +UBERON_0000922 embryo UBERON_0009582 spinal cord lateral wall +UBERON_0000922 embryo UBERON_0009583 spinal cord mantle layer +UBERON_0000922 embryo UBERON_0009584 1st arch mandibular mesenchyme +UBERON_0000922 embryo UBERON_0009610 forebrain neural plate +UBERON_0000922 embryo UBERON_0009611 midbrain neural plate +UBERON_0000922 embryo UBERON_0009612 forebrain midbrain boundary neural plate +UBERON_0000922 embryo UBERON_0009614 hindbrain neural plate +UBERON_0000922 embryo UBERON_0009615 midbrain hindbrain boundary neural plate +UBERON_0000922 embryo UBERON_0009616 presumptive midbrain +UBERON_0000922 embryo UBERON_0009617 head paraxial mesoderm +UBERON_0000922 embryo UBERON_0009618 trunk paraxial mesoderm +UBERON_0000922 embryo UBERON_0009620 tail bud paraxial mesoderm +UBERON_0000922 embryo UBERON_0009668 ventral mesentery +UBERON_0000922 embryo UBERON_0009669 embryonic cloacal lumen +UBERON_0000922 embryo UBERON_0009676 early telencephalic vesicle +UBERON_0000922 embryo UBERON_0009714 intermaxillary process +UBERON_0000922 embryo UBERON_0009715 stomodeal lumen +UBERON_0000922 embryo UBERON_0009722 entire pharyngeal arch endoderm +UBERON_0000922 embryo UBERON_0009742 proamniotic cavity +UBERON_0000922 embryo UBERON_0009746 head fold of embryonic disc +UBERON_0000922 embryo UBERON_0009747 tail fold of embryonic disc +UBERON_0000922 embryo UBERON_0009748 cephalic neural fold +UBERON_0000922 embryo UBERON_0009769 left common cardinal vein +UBERON_0000922 embryo UBERON_0009771 left anterior cardinal vein +UBERON_0000922 embryo UBERON_0009772 right anterior cardinal vein +UBERON_0000922 embryo UBERON_0009840 lower rhombic lip +UBERON_0000922 embryo UBERON_0009841 upper rhombic lip +UBERON_0000922 embryo UBERON_0009844 urogenital sinus lumen +UBERON_0000922 embryo UBERON_0009846 embryonic cloacal epithelium +UBERON_0000922 embryo UBERON_0009847 prostate field +UBERON_0000922 embryo UBERON_0009881 anterior lateral plate mesoderm +UBERON_0000922 embryo UBERON_0009888 Koller's sickle +UBERON_0000922 embryo UBERON_0009889 secondary heart field +UBERON_0000922 embryo UBERON_0009891 facial mesenchyme +UBERON_0000922 embryo UBERON_0009910 posterior lateral plate mesoderm +UBERON_0000922 embryo UBERON_0009920 optic neural crest +UBERON_0000922 embryo UBERON_0009955 neurogenic placode +UBERON_0000922 embryo UBERON_0009993 primary chorionic villus +UBERON_0000922 embryo UBERON_0009994 secondary chorionic villus +UBERON_0000922 embryo UBERON_0009995 tertiary chorionic villus +UBERON_0000922 embryo UBERON_0010021 dorsal part of pharyngeal pouch 1 +UBERON_0000922 embryo UBERON_0010022 ventral part of pharyngeal pouch 1 +UBERON_0000922 embryo UBERON_0010023 dorsal part of pharyngeal pouch 2 +UBERON_0000922 embryo UBERON_0010024 ventral part of pharyngeal pouch 2 +UBERON_0000922 embryo UBERON_0010025 dorsal part of pharyngeal pouch 3 +UBERON_0000922 embryo UBERON_0010026 ventral part of pharyngeal pouch 3 +UBERON_0000922 embryo UBERON_0010027 dorsal part of pharyngeal pouch 4 +UBERON_0000922 embryo UBERON_0010028 ventral part of pharyngeal pouch 4 +UBERON_0000922 embryo UBERON_0010029 dorsal part of pharyngeal pouch 5 +UBERON_0000922 embryo UBERON_0010030 ventral part of pharyngeal pouch 5 +UBERON_0000922 embryo UBERON_0010031 6th arch mesenchyme +UBERON_0000922 embryo UBERON_0010042 1st arch mesenchyme +UBERON_0000922 embryo UBERON_0010045 1st arch maxillary mesenchyme +UBERON_0000922 embryo UBERON_0010046 entire pharyngeal arch associated mesenchyme +UBERON_0000922 embryo UBERON_0010075 sacral neural crest +UBERON_0000922 embryo UBERON_0010084 future diaphragm +UBERON_0000922 embryo UBERON_0010090 future falx cerebri +UBERON_0000922 embryo UBERON_0010091 future hindbrain meninx +UBERON_0000922 embryo UBERON_0010092 future metencephalon +UBERON_0000922 embryo UBERON_0010096 future myelencephalon +UBERON_0000922 embryo UBERON_0010127 future dorsal motor nucleus of vagus +UBERON_0000922 embryo UBERON_0010130 embryonic autopod plate +UBERON_0000922 embryo UBERON_0010141 primitive sex cord of indifferent gonad +UBERON_0000922 embryo UBERON_0010170 region of neural crest +UBERON_0000922 embryo UBERON_0010213 laryngeal pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010214 cricoid pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010219 thyroid pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010220 arytenoid pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010227 future cardiac atrium +UBERON_0000922 embryo UBERON_0010252 1st arch mandibular mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010253 1st arch maxillary mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010254 2nd arch mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010255 3rd arch mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010256 4th arch mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010257 6th arch mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010258 mesenchyme from rhombencephalic neural crest +UBERON_0000922 embryo UBERON_0010259 1st arch mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010277 mesocardium +UBERON_0000922 embryo UBERON_0010279 pericardial sinus +UBERON_0000922 embryo UBERON_0010283 oblique pericardial sinus +UBERON_0000922 embryo UBERON_0010285 midbrain basal plate +UBERON_0000922 embryo UBERON_0010286 midbrain neural tube +UBERON_0000922 embryo UBERON_0010316 germ layer / neural crest +UBERON_0000922 embryo UBERON_0010328 limb bud mesenchyme +UBERON_0000922 embryo UBERON_0010329 paired limb/fin bud mesenchyme +UBERON_0000922 embryo UBERON_0010330 eyelid mesenchyme +UBERON_0000922 embryo UBERON_0010332 epithelium of handplate +UBERON_0000922 embryo UBERON_0010334 maxillary process mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010335 maxillary process mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010336 mandibular process mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010337 mandibular process mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010338 1st arch maxillary mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010339 1st arch mandibular mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010341 1st arch mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010343 2nd arch mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010344 3rd arch mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010345 4th arch mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010347 6th arch mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010354 Reichert's cartilage pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010359 pharyngeal arch mesenchyme from neural crest +UBERON_0000922 embryo UBERON_0010360 pharyngeal arch mesenchyme from head mesenchyme +UBERON_0000922 embryo UBERON_0010375 pancreas dorsal primordium +UBERON_0000922 embryo UBERON_0010376 pancreas ventral primordium +UBERON_0000922 embryo UBERON_0010377 mesenchyme from somatopleure +UBERON_0000922 embryo UBERON_0010378 mesenchyme from splanchnopleure +UBERON_0000922 embryo UBERON_0010540 tarsus pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010541 tarsus cartilage element +UBERON_0000922 embryo UBERON_0010547 pedal digit 1 metatarsal pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010548 pedal digit 2 metatarsal pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010549 pedal digit 3 metatarsal pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010550 pedal digit 4 metatarsal pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010551 pedal digit 5 metatarsal pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010687 pedal digit metatarsal pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010728 sphenoid lesser wing pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010732 alisphenoid pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010733 alisphenoid cartilage element +UBERON_0000922 embryo UBERON_0010752 exoccipital cartilage element +UBERON_0000922 embryo UBERON_0010801 calcaneum pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010844 clavicle pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010846 radius pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010847 ulna pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010850 tibia pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010852 fibula pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010901 tarsometatarsus pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010903 tibiotarsus pre-cartilage condensation +UBERON_0000922 embryo UBERON_0010929 stapedius pre-muscle condensation +UBERON_0000922 embryo UBERON_0010935 tensor tympani pre-muscle condensation +UBERON_0000922 embryo UBERON_0010955 trapezius pre-muscle mass +UBERON_0000922 embryo UBERON_0010963 trunk and cervical myotome group +UBERON_0000922 embryo UBERON_0010987 sterno-mastoid pre-muscle mass +UBERON_0000922 embryo UBERON_0011007 endocardium of right auricle +UBERON_0000922 embryo UBERON_0011087 pharyngeal arch 7 +UBERON_0000922 embryo UBERON_0011163 supraoccipital pre-cartilage condensation +UBERON_0000922 embryo UBERON_0011208 medial migration pathway NC-derived mesenchyme +UBERON_0000922 embryo UBERON_0011209 lateral migration pathway NC-derived mesenchyme +UBERON_0000922 embryo UBERON_0011210 migration pathway NC-derived mesenchyme +UBERON_0000922 embryo UBERON_0011301 manubrium sternum pre-cartilage condensation +UBERON_0000922 embryo UBERON_0011628 early premaxilla +UBERON_0000922 embryo UBERON_0011638 pharyngeal arch 8 +UBERON_0000922 embryo UBERON_0011641 odontogenic mesenchyme of molar +UBERON_0000922 embryo UBERON_0011754 genital swelling +UBERON_0000922 embryo UBERON_0011755 female labial swelling +UBERON_0000922 embryo UBERON_0011756 male genital swelling +UBERON_0000922 embryo UBERON_0011765 jugular lymph sac +UBERON_0000922 embryo UBERON_0011783 feather follicle placode +UBERON_0000922 embryo UBERON_0011814 non-neurogenic ectodermal placode +UBERON_0000922 embryo UBERON_0011817 skin appendage placode +UBERON_0000922 embryo UBERON_0011819 lumen of atrioventricular canal +UBERON_0000922 embryo UBERON_0011919 yolk sac blood island +UBERON_0000922 embryo UBERON_0012081 patella pre-cartilage condensation +UBERON_0000922 embryo UBERON_0012168 umbilical cord blood +UBERON_0000922 embryo UBERON_0012284 animal hemisphere +UBERON_0000922 embryo UBERON_0012285 vegetal hemisphere +UBERON_0000922 embryo UBERON_0012286 hemisphere of embryo +UBERON_0000922 embryo UBERON_0012292 embryonic cloacal fold +UBERON_0000922 embryo UBERON_0012312 maxillary process ectoderm +UBERON_0000922 embryo UBERON_0012313 1st arch maxillary ectoderm +UBERON_0000922 embryo UBERON_0012314 embryonic facial prominence +UBERON_0000922 embryo UBERON_0012326 gubernacular bulb +UBERON_0000922 embryo UBERON_0012471 hepatogastric ligament +UBERON_0000922 embryo UBERON_0012472 hepatoduodenal ligament +UBERON_0000922 embryo UBERON_0013124 left posterior cardinal vein +UBERON_0000922 embryo UBERON_0013125 left subcardinal vein +UBERON_0000922 embryo UBERON_0013147 early mesencephalic vesicle +UBERON_0000922 embryo UBERON_0013148 early midbrain vesicle +UBERON_0000922 embryo UBERON_0013149 hindbrain vesicle +UBERON_0000922 embryo UBERON_0013150 future brain vesicle +UBERON_0000922 embryo UBERON_0013152 interventricular foramen of heart +UBERON_0000922 embryo UBERON_0013154 1st arch maxillary endoderm +UBERON_0000922 embryo UBERON_0013155 1st arch mandibular ectoderm +UBERON_0000922 embryo UBERON_0013156 1st arch mandibular endoderm +UBERON_0000922 embryo UBERON_0013157 1st arch maxillary-mandibular cleft +UBERON_0000922 embryo UBERON_0013159 epithalamus mantle layer +UBERON_0000922 embryo UBERON_0013160 epithalamus ventricular layer +UBERON_0000922 embryo UBERON_0013241 embryonic urethral groove +UBERON_0000922 embryo UBERON_0013244 vaginal plate +UBERON_0000922 embryo UBERON_0013245 sinovaginal bulb +UBERON_0000922 embryo UBERON_0013499 glossopharyngeal-vagus IX-X preganglion complex +UBERON_0000922 embryo UBERON_0013502 5th arch mesenchyme +UBERON_0000922 embryo UBERON_0013526 otocyst lumen +UBERON_0000922 embryo UBERON_0014371 future telencephalon +UBERON_0000922 embryo UBERON_0014374 embryoid body +UBERON_0000922 embryo UBERON_0014702 frontonasal process epithelium +UBERON_0000922 embryo UBERON_0014704 pleuroperitoneal canal lumen +UBERON_0000922 embryo UBERON_0014705 median lingual swelling epithelium +UBERON_0000922 embryo UBERON_0014709 carapace primordium +UBERON_0000922 embryo UBERON_0014710 carapacial ridge +UBERON_0000922 embryo UBERON_0014711 carapacial ridge mesenchyme +UBERON_0000922 embryo UBERON_0014712 carapacial ridge ectoderm +UBERON_0000922 embryo UBERON_0014775 prosomere +UBERON_0000922 embryo UBERON_0014776 midbrain neuromere +UBERON_0000922 embryo UBERON_0014777 spinal neuromere +UBERON_0000922 embryo UBERON_0014781 stomodeal ectoderm +UBERON_0000922 embryo UBERON_0014782 allantois of embryonic urinary system +UBERON_0000922 embryo UBERON_0015142 falciform fat +UBERON_0000922 embryo UBERON_0015844 molar dental papilla +UBERON_0000922 embryo UBERON_0015846 incisor mesenchyme +UBERON_0000922 embryo UBERON_0015855 ventral ectodermal ridge +UBERON_0000922 embryo UBERON_0016505 Mullerian tubercle +UBERON_0000922 embryo UBERON_0016545 pharyngeal ectoderm +UBERON_0000922 embryo UBERON_0016611 auditory hillocks, pharyngeal arch 1 derived +UBERON_0000922 embryo UBERON_0016612 auditory hillocks, pharyngeal arch 2 derived +UBERON_0000922 embryo UBERON_0016879 future central nervous system +UBERON_0000922 embryo UBERON_0016880 future nervous system +UBERON_0000922 embryo UBERON_0017616 afferent spiracular artery +UBERON_0000922 embryo UBERON_0017617 efferent spiracular artery +UBERON_0000922 embryo UBERON_0017638 primitive marginal sinus +UBERON_0000922 embryo UBERON_0017639 sinus of von Szily +UBERON_0000922 embryo UBERON_0017651 salivary gland primordium +UBERON_0000922 embryo UBERON_0018239 rhombomere boundary +UBERON_0000922 embryo UBERON_0018264 dorsal lateral ganglionic eminence +UBERON_0000922 embryo UBERON_0019248 early embryo +UBERON_0000922 embryo UBERON_0019249 2-cell stage embryo +UBERON_0000922 embryo UBERON_0019250 4-8 cell stage embryo +UBERON_0000922 embryo UBERON_0019251 4-cell stage embryo +UBERON_0000922 embryo UBERON_0019252 8-cell stage embryo +UBERON_0000922 embryo UBERON_0019272 mesomere 1 +UBERON_0000922 embryo UBERON_0019274 mesomere 2 +UBERON_0000922 embryo UBERON_0019284 rhombomere 9 +UBERON_0000922 embryo UBERON_0019285 rhombomere 10 +UBERON_0000922 embryo UBERON_0019286 rhombomere 11 +UBERON_0000922 embryo UBERON_0034694 gubernacular bulb, intra-abdominal part +UBERON_0000922 embryo UBERON_0034695 gubernacular bulb, extra-abdominal part +UBERON_0000922 embryo UBERON_0034708 cerebellum marginal layer +UBERON_0000922 embryo UBERON_0034709 hindbrain marginal layer +UBERON_0000922 embryo UBERON_0034710 spinal cord ventricular layer +UBERON_0000922 embryo UBERON_0034875 future pituitary gland +UBERON_0000922 embryo UBERON_0034876 future neurohypophysis +UBERON_0000922 embryo UBERON_0034878 prechordal mesoderm +UBERON_0000922 embryo UBERON_0034953 embryonic lymph sac +UBERON_0000922 embryo UBERON_0034958 retroperitoneal embryonic lymph sac +UBERON_0000922 embryo UBERON_0034961 embryonic lymph heart +UBERON_0000922 embryo UBERON_0034995 jaw mesenchyme +UBERON_0000922 embryo UBERON_0035004 preputial swelling +UBERON_0000922 embryo UBERON_0035005 preputial swelling of male +UBERON_0000922 embryo UBERON_0035006 preputial swelling of female +UBERON_0000922 embryo UBERON_0035147 axochord +UBERON_0000922 embryo UBERON_0035148 presumptive axochord +UBERON_0000922 embryo UBERON_0035186 valve of foramen ovale +UBERON_0000922 embryo UBERON_0035597 profundal placode +UBERON_0000922 embryo UBERON_0035598 maxillomandibular placode +UBERON_0000922 embryo UBERON_0035757 embryonic capillary plexus +UBERON_0000922 embryo UBERON_0035804 future mouth +UBERON_0000922 embryo UBERON_0036066 inferior endocardial cushion +UBERON_0000922 embryo UBERON_0036067 superior endocardial cushion +UBERON_0000922 embryo UBERON_0036069 tracheoesophageal fold +UBERON_0000922 embryo UBERON_0036146 cardiopharyngeal field +UBERON_0000922 embryo UBERON_0036256 iliac lymph sac +UBERON_0000922 embryo UBERON_0036260 embryonic cisterna chyli +UBERON_0000922 embryo UBERON_2000000 Brachet's cleft +UBERON_0000922 embryo UBERON_2000001 Kupffer's vesicle +UBERON_0000922 embryo UBERON_2000004 anterior axial hypoblast +UBERON_0000922 embryo UBERON_2000006 ball +UBERON_0000922 embryo UBERON_2000058 polster +UBERON_0000922 embryo UBERON_2000068 neural plate proneural cluster +UBERON_0000922 embryo UBERON_2000083 ventral mesoderm +UBERON_0000922 embryo UBERON_2000084 yolk +UBERON_0000922 embryo UBERON_2000088 yolk syncytial layer +UBERON_0000922 embryo UBERON_2000090 apical ectodermal ridge dorsal fin +UBERON_0000922 embryo UBERON_2000106 extension +UBERON_0000922 embryo UBERON_2000139 immature otolith +UBERON_0000922 embryo UBERON_2000202 efferent portion of pharyngeal arch artery +UBERON_0000922 embryo UBERON_2000225 lateral crista primordium +UBERON_0000922 embryo UBERON_2000232 lateral semicircular canal primordium +UBERON_0000922 embryo UBERON_2000309 external yolk syncytial layer +UBERON_0000922 embryo UBERON_2000411 posterior crista primordium +UBERON_0000922 embryo UBERON_2000412 posterior semicircular canal primordium +UBERON_0000922 embryo UBERON_2000414 presumptive cephalic mesoderm +UBERON_0000922 embryo UBERON_2000469 anterior semicircular canal primordium +UBERON_0000922 embryo UBERON_2000711 deep cell layer (gastrulation) +UBERON_0000922 embryo UBERON_2000712 internal yolk syncytial layer +UBERON_0000922 embryo UBERON_2000716 afferent portion of pharyngeal arch artery +UBERON_0000922 embryo UBERON_2000717 apical ectodermal ridge median fin fold +UBERON_0000922 embryo UBERON_2000820 presumptive neuron neural tube +UBERON_0000922 embryo UBERON_2000887 floor plate neural rod +UBERON_0000922 embryo UBERON_2000993 lateral wall neural rod +UBERON_0000922 embryo UBERON_2001095 immature macula +UBERON_0000922 embryo UBERON_2001096 immature anterior macula +UBERON_0000922 embryo UBERON_2001097 immature posterior macula +UBERON_0000922 embryo UBERON_2001102 immature anterior otolith +UBERON_0000922 embryo UBERON_2001103 immature posterior otolith +UBERON_0000922 embryo UBERON_2001125 organizer inducing center +UBERON_0000922 embryo UBERON_2001126 noninvoluting endocytic marginal cell cluster +UBERON_0000922 embryo UBERON_2001129 pharyngeal pouches 2-6 +UBERON_0000922 embryo UBERON_2001156 posterior lateral line placode +UBERON_0000922 embryo UBERON_2001201 ventral lateral mesoderm +UBERON_0000922 embryo UBERON_2001256 lateral floor plate +UBERON_0000922 embryo UBERON_2001257 medial floor plate +UBERON_0000922 embryo UBERON_2001297 vagal placode 1 +UBERON_0000922 embryo UBERON_2001298 vagal placode 2 +UBERON_0000922 embryo UBERON_2001299 vagal placode 3 +UBERON_0000922 embryo UBERON_2001300 vagal placode 4 +UBERON_0000922 embryo UBERON_2001316 anterior lateral line placode +UBERON_0000922 embryo UBERON_2001342 presumptive intervening zone +UBERON_0000922 embryo UBERON_2001378 axial hypoblast +UBERON_0000922 embryo UBERON_2001431 primitive olfactory epithelium +UBERON_0000922 embryo UBERON_2001450 apical ectodermal ridge pelvic fin +UBERON_0000922 embryo UBERON_2001467 pharyngeal mesoderm +UBERON_0000922 embryo UBERON_2002172 branchial mesenchyme +UBERON_0000922 embryo UBERON_2002215 otic vesicle protrusion +UBERON_0000922 embryo UBERON_2002216 otic vesicle ventral protrusion +UBERON_0000922 embryo UBERON_2002229 presumptive atrium primitive heart tube +UBERON_0000922 embryo UBERON_2002232 presumptive cardiac ventricle primitive heart tube +UBERON_0000922 embryo UBERON_2002235 presumptive ventral mesoderm +UBERON_0000922 embryo UBERON_2005012 afferent filamental artery +UBERON_0000922 embryo UBERON_2005013 concurrent branch afferent branchial artery +UBERON_0000922 embryo UBERON_2005014 recurrent branch afferent branchial artery +UBERON_0000922 embryo UBERON_2005015 afferent lamellar arteriole +UBERON_0000922 embryo UBERON_2005018 efferent filamental artery +UBERON_0000922 embryo UBERON_2005019 efferent lamellar arteriole +UBERON_0000922 embryo UBERON_2005039 anterior lateral mesoderm +UBERON_0000922 embryo UBERON_2005066 bulbus arteriosus outer layer +UBERON_0000922 embryo UBERON_2005067 bulbus arteriosus middle layer +UBERON_0000922 embryo UBERON_2005068 bulbus arteriosus inner layer +UBERON_0000922 embryo UBERON_2005102 presumptive median fin fold +UBERON_0000922 embryo UBERON_2005103 presumptive ventral fin fold +UBERON_0000922 embryo UBERON_2005104 presumptive dorsal fin fold +UBERON_0000922 embryo UBERON_2005121 middle lateral line placode +UBERON_0000922 embryo UBERON_2005122 dorsal axial hypoblast +UBERON_0000922 embryo UBERON_2005316 fin fold pectoral fin bud +UBERON_0000922 embryo UBERON_2007014 anterior presumptive neural plate +UBERON_0000922 embryo UBERON_2007015 posterior presumptive neural plate +UBERON_0000922 embryo UBERON_2007023 posterior neural keel +UBERON_0000922 embryo UBERON_2007024 anterior neural keel +UBERON_0000922 embryo UBERON_2007025 midbrain neural keel +UBERON_0000922 embryo UBERON_2007026 forebrain neural keel +UBERON_0000922 embryo UBERON_2007027 forebrain midbrain boundary neural keel +UBERON_0000922 embryo UBERON_2007028 spinal cord neural keel +UBERON_0000922 embryo UBERON_2007029 hindbrain neural keel +UBERON_0000922 embryo UBERON_2007030 posterior neural rod +UBERON_0000922 embryo UBERON_2007031 anterior neural rod +UBERON_0000922 embryo UBERON_2007032 midbrain neural rod +UBERON_0000922 embryo UBERON_2007033 forebrain midbrain boundary neural rod +UBERON_0000922 embryo UBERON_2007034 forebrain neural rod +UBERON_0000922 embryo UBERON_2007035 spinal cord neural rod +UBERON_0000922 embryo UBERON_2007036 hindbrain neural rod +UBERON_0000922 embryo UBERON_2007040 forebrain midbrain boundary neural tube +UBERON_0000922 embryo UBERON_2007041 forebrain neural tube +UBERON_0000922 embryo UBERON_2007042 spinal cord neural tube +UBERON_0000922 embryo UBERON_2007043 hindbrain neural tube +UBERON_0000922 embryo UBERON_2007045 midbrain hindbrain boundary neural keel +UBERON_0000922 embryo UBERON_2007046 midbrain hindbrain boundary neural rod +UBERON_0000922 embryo UBERON_2007047 midbrain hindbrain boundary neural tube +UBERON_0000922 embryo UBERON_3010431 archenteron floor +UBERON_0000922 embryo UBERON_3010432 archenteron roof +UBERON_0000922 embryo UBERON_3010436 blastocoel roof +UBERON_0000922 embryo UBERON_3010437 post-anal gut +UBERON_0000922 embryo UBERON_3010449 dorsal marginal zone +UBERON_0000922 embryo UBERON_3010450 dorso-lateral marginal zone +UBERON_0000922 embryo UBERON_3010451 involuting marginal zone +UBERON_0000922 embryo UBERON_3010452 non-involuting marginal zone +UBERON_0000922 embryo UBERON_3010453 ventral marginal zone +UBERON_0000922 embryo UBERON_3010454 ventro-lateral marginal zone +UBERON_0000922 embryo UBERON_3010455 blastopore lip +UBERON_0000922 embryo UBERON_3010456 lower blastopore lip +UBERON_0000922 embryo UBERON_3010457 upper blastopore lip +UBERON_0000922 embryo UBERON_3010463 animal cap +UBERON_0000922 embryo UBERON_3010464 animal cap inner layer +UBERON_0000922 embryo UBERON_3010465 animal cap outer layer +UBERON_0000922 embryo UBERON_3010584 mandibular arch neural crest +UBERON_0000922 embryo UBERON_3010587 hyoid arch neural crest +UBERON_0000922 embryo UBERON_3011040 first pancreatic bud +UBERON_0000922 embryo UBERON_3011120 early proximal tubule +UBERON_0000922 embryo UBERON_4000028 integumentary papilla +UBERON_0000922 embryo UBERON_4000030 oropharyngeal papilla +UBERON_0000922 embryo UBERON_4300172 pectoral fin bud +UBERON_0000922 embryo UBERON_4300173 pelvic fin bud +UBERON_0000922 embryo UBERON_4300226 forelimb bud mesenchyme +UBERON_0000922 embryo UBERON_4300227 hindlimb bud mesenchyme +UBERON_0000922 embryo UBERON_4300228 pectoral fin bud mesenchyme +UBERON_0000922 embryo UBERON_4300229 pelvic fin bud mesenchyme +UBERON_0000922 embryo UBERON_4300230 forelimb wing bud +UBERON_0000922 embryo UBERON_4300231 forelimb wing bud mesenchyme +UBERON_0000922 embryo UBERON_6000096 insect ventral furrow +UBERON_0000922 embryo UBERON_6000097 insect cephalic furrow +UBERON_0000922 embryo UBERON_6000104 insect mesoderm anlage +UBERON_0000922 embryo UBERON_6000112 insect dorsal ectoderm +UBERON_0000922 embryo UBERON_6000119 insect anterior ectoderm +UBERON_0000922 embryo UBERON_6000128 insect trunk mesoderm +UBERON_0000922 embryo UBERON_6000130 insect visceral mesoderm +UBERON_0000922 embryo UBERON_6000131 insect mesodermal crest +UBERON_0000922 embryo UBERON_6000132 insect mesodermal crest of segment T3 +UBERON_0000922 embryo UBERON_6000137 embryonic tagma +UBERON_0000922 embryo UBERON_6000154 insect embryonic segment +UBERON_0000922 embryo UBERON_6000157 insect embryonic head segment +UBERON_0000922 embryo UBERON_6000158 insect embryonic procephalic segment +UBERON_0000922 embryo UBERON_6000160 insect embryonic antennal segment +UBERON_0000922 embryo UBERON_6000162 insect embryonic gnathal segment +UBERON_0000922 embryo UBERON_6000165 insect embryonic labial segment +UBERON_0000922 embryo UBERON_6000166 insect embryonic thorax +UBERON_0000922 embryo UBERON_6000167 insect embryonic thoracic segment +UBERON_0000922 embryo UBERON_6000168 insect embryonic prothoracic segment +UBERON_0000922 embryo UBERON_6000169 insect embryonic mesothoracic segment +UBERON_0000922 embryo UBERON_6000170 insect embryonic metathoracic segment +UBERON_0000922 embryo UBERON_6000171 insect embryonic abdomen +UBERON_0000922 embryo UBERON_6000172 insect embryonic abdominal segment +UBERON_0000922 embryo UBERON_6000180 insect embryonic abdominal segment 8 +UBERON_0000922 embryo UBERON_6000181 insect embryonic abdominal segment 9 +UBERON_0000922 embryo UBERON_6001055 insect presumptive embryonic/larval nervous system +UBERON_0000922 embryo UBERON_6001056 insect presumptive embryonic/larval central nervous system +UBERON_0000922 embryo UBERON_6001057 insect neurogenic region +UBERON_0000922 embryo UBERON_6001059 insect visual primordium +UBERON_0000922 embryo UBERON_6001060 insect embryonic brain +UBERON_0000922 embryo UBERON_6001648 insect embryonic imaginal precursor +UBERON_0000922 embryo UBERON_6001649 insect imaginal disc primordium +UBERON_0000922 embryo UBERON_6001650 insect labial disc primordium +UBERON_0000922 embryo UBERON_6001652 insect eye-antennal disc primordium +UBERON_0000922 embryo UBERON_6001653 insect dorsal thoracic disc primordium +UBERON_0000922 embryo UBERON_6001655 insect dorsal mesothoracic disc primordium +UBERON_0000922 embryo UBERON_6001656 insect dorsal metathoracic disc primordium +UBERON_0000922 embryo UBERON_6001657 insect ventral thoracic disc primordium +UBERON_0000922 embryo UBERON_6001658 insect ventral prothoracic disc primordium +UBERON_0000922 embryo UBERON_6001661 insect genital disc primordium +UBERON_0000922 embryo UBERON_6001662 insect male genital disc primordium +UBERON_0000922 embryo UBERON_6001663 insect female genital disc primordium +UBERON_0000922 embryo UBERON_6001664 insect embryonic/larval circulatory system +UBERON_0000922 embryo UBERON_6001668 insect embryonic/larval lymph gland +UBERON_0000922 embryo UBERON_6001789 insect histoblast +UBERON_0000922 embryo UBERON_6001790 insect histoblast nest +UBERON_0000922 embryo UBERON_6001791 insect dorsal histoblast nest abdominal +UBERON_0000922 embryo UBERON_6001792 insect anterior dorsal histoblast nest abdominal +UBERON_0000922 embryo UBERON_6001809 insect posterior dorsal histoblast nest abdominal +UBERON_0000922 embryo UBERON_6001845 insect cephalopharyngeal skeleton +UBERON_0000922 embryo UBERON_6001848 insect epipharyngeal sclerite +UBERON_0000922 embryo UBERON_6001911 insect embryonic/larval nervous system +UBERON_0000922 embryo UBERON_6001919 insect embryonic/larval central nervous system +UBERON_0000922 embryo UBERON_6001920 insect embryonic/larval brain +UBERON_0000922 embryo UBERON_6001925 insect embryonic/larval protocerebrum +UBERON_0000922 embryo UBERON_6004203 insect adult clypeo-labral anlage +UBERON_0000922 embryo UBERON_6005036 insect tracheal pit +UBERON_0000922 embryo UBERON_6005037 insect tracheal primordium +UBERON_0000922 embryo UBERON_6005413 insect anlage in statu nascendi +UBERON_0000922 embryo UBERON_6005434 insect visual anlage +UBERON_0000922 embryo UBERON_6005436 insect trunk mesoderm anlage +UBERON_0000922 embryo UBERON_6005439 insect clypeo-labral anlage +UBERON_0000922 embryo UBERON_6005467 insect lymph gland primordium +UBERON_0000922 embryo UBERON_6005514 insect adult clypeo-labral primordium +UBERON_0000922 embryo UBERON_6005526 insect dorsal epidermis primordium +UBERON_0000922 embryo UBERON_6005533 insect ventral epidermis primordium +UBERON_0000922 embryo UBERON_6005538 insect clypeo-labral primordium +UBERON_0000922 embryo UBERON_6005541 insect cardiogenic mesoderm +UBERON_0000922 embryo UBERON_6005558 insect ventral ectoderm +UBERON_0000922 embryo UBERON_6005569 insect presumptive embryonic/larval tracheal system +UBERON_0000922 embryo UBERON_6005805 insect Bolwig organ +UBERON_0000922 embryo UBERON_6005830 insect Bolwig organ primordium +UBERON_0000922 embryo UBERON_6007045 insect trunk ectoderm +UBERON_0000922 embryo UBERON_6007070 insect centro-posterior medial synaptic neuropil domain +UBERON_0000922 embryo UBERON_6007116 insect presumptive embryonic/larval system +UBERON_0000922 embryo UBERON_6016022 insect abdominal histoblast primordium +UBERON_0000922 embryo UBERON_6017021 insect abdominal histoblast anlage +UBERON_0000945 stomach UBERON_0000325 gastric gland +UBERON_0000945 stomach UBERON_0000424 gastric pit +UBERON_0000945 stomach UBERON_0000945 stomach +UBERON_0000945 stomach UBERON_0001160 fundus of stomach +UBERON_0000945 stomach UBERON_0001161 body of stomach +UBERON_0000945 stomach UBERON_0001162 cardia of stomach +UBERON_0000945 stomach UBERON_0001163 lesser curvature of stomach +UBERON_0000945 stomach UBERON_0001164 greater curvature of stomach +UBERON_0000945 stomach UBERON_0001165 pyloric antrum +UBERON_0000945 stomach UBERON_0001166 pylorus +UBERON_0000945 stomach UBERON_0001167 wall of stomach +UBERON_0000945 stomach UBERON_0001199 mucosa of stomach +UBERON_0000945 stomach UBERON_0001200 submucosa of stomach +UBERON_0000945 stomach UBERON_0001201 serosa of stomach +UBERON_0000945 stomach UBERON_0001202 pyloric sphincter +UBERON_0000945 stomach UBERON_0001203 muscularis mucosae of stomach +UBERON_0000945 stomach UBERON_0001247 falciform ligament +UBERON_0000945 stomach UBERON_0001276 epithelium of stomach +UBERON_0000945 stomach UBERON_0002399 lesser omentum +UBERON_0000945 stomach UBERON_0003281 mesentery of stomach +UBERON_0000945 stomach UBERON_0004222 stomach smooth muscle +UBERON_0000945 stomach UBERON_0004550 gastroesophageal sphincter +UBERON_0000945 stomach UBERON_0004933 submucosa of fundus of stomach +UBERON_0000945 stomach UBERON_0004934 submucosa of body of stomach +UBERON_0000945 stomach UBERON_0004935 submucosa of cardia of stomach +UBERON_0000945 stomach UBERON_0004936 submucosa of pyloric antrum +UBERON_0000945 stomach UBERON_0004937 submucosa of pylorus +UBERON_0000945 stomach UBERON_0004994 mucosa of fundus of stomach +UBERON_0000945 stomach UBERON_0004995 mucosa of body of stomach +UBERON_0000945 stomach UBERON_0004996 mucosa of cardia of stomach +UBERON_0000945 stomach UBERON_0004997 mucosa of pyloric antrum +UBERON_0000945 stomach UBERON_0004998 mucosa of pylorus +UBERON_0000945 stomach UBERON_0005052 gizzard +UBERON_0000945 stomach UBERON_0005477 stomach fundus epithelium +UBERON_0000945 stomach UBERON_0005602 dorsal mesogastrium +UBERON_0000945 stomach UBERON_0005626 ventral mesogastrium +UBERON_0000945 stomach UBERON_0005637 pyloric region epithelium +UBERON_0000945 stomach UBERON_0006293 spleen primordium +UBERON_0000945 stomach UBERON_0006921 stomach squamous epithelium +UBERON_0000945 stomach UBERON_0006924 stomach glandular epithelium +UBERON_0000945 stomach UBERON_0006931 stomach glandular region mucosa +UBERON_0000945 stomach UBERON_0007357 proventriculus +UBERON_0000945 stomach UBERON_0007358 abomasum +UBERON_0000945 stomach UBERON_0007359 ruminant forestomach +UBERON_0000945 stomach UBERON_0007361 ruminant reticulum +UBERON_0000945 stomach UBERON_0007362 omasum +UBERON_0000945 stomach UBERON_0007364 reticulorumen +UBERON_0000945 stomach UBERON_0007365 rumen +UBERON_0000945 stomach UBERON_0007366 ruminant stomach +UBERON_0000945 stomach UBERON_0008285 rumen epithelium +UBERON_0000945 stomach UBERON_0008791 rugal fold of stomach +UBERON_0000945 stomach UBERON_0008827 murine forestomach +UBERON_0000945 stomach UBERON_0008856 stomach muscularis externa +UBERON_0000945 stomach UBERON_0008857 stomach smooth muscle circular layer +UBERON_0000945 stomach UBERON_0008858 pyloric canal +UBERON_0000945 stomach UBERON_0008859 cardiac gastric gland +UBERON_0000945 stomach UBERON_0008860 intermediate gastric gland +UBERON_0000945 stomach UBERON_0008861 pyloric gastric gland +UBERON_0000945 stomach UBERON_0008862 stomach smooth muscle inner oblique layer +UBERON_0000945 stomach UBERON_0008863 stomach smooth muscle outer longitudinal layer +UBERON_0000945 stomach UBERON_0008994 equine glandular stomach +UBERON_0000945 stomach UBERON_0009870 zone of stomach +UBERON_0000945 stomach UBERON_0009971 principal gastric gland +UBERON_0000945 stomach UBERON_0010038 fundic gastric gland +UBERON_0000945 stomach UBERON_0010040 stomach non-glandular epithelium +UBERON_0000945 stomach UBERON_0010153 rumen papilla +UBERON_0000945 stomach UBERON_0010154 inner lining mucosa of the abomasum +UBERON_0000945 stomach UBERON_0010228 ruminal fluid +UBERON_0000945 stomach UBERON_0010238 torus pylorus +UBERON_0000945 stomach UBERON_0011903 gizzard smooth muscle +UBERON_0000945 stomach UBERON_0011953 stomach glandular region +UBERON_0000945 stomach UBERON_0011954 stomach non-glandular region +UBERON_0000945 stomach UBERON_0012270 forestomach-glandular stomach junction +UBERON_0000945 stomach UBERON_0012471 hepatogastric ligament +UBERON_0000945 stomach UBERON_0012472 hepatoduodenal ligament +UBERON_0000945 stomach UBERON_0012503 serosa of fundus of stomach +UBERON_0000945 stomach UBERON_0012650 gastroduodenal junction +UBERON_0000945 stomach UBERON_0012651 mucosa of gastroduodenal junction +UBERON_0000945 stomach UBERON_0013525 stomach lumen +UBERON_0000945 stomach UBERON_0014510 lamina of omasum +UBERON_0000945 stomach UBERON_0015142 falciform fat +UBERON_0000945 stomach UBERON_0016501 muscularis mucosae of fundus of stomach +UBERON_0000945 stomach UBERON_0016502 stomach fundus lumen +UBERON_0000945 stomach UBERON_0016511 lamina propria of fundus of stomach +UBERON_0000948 heart UBERON_0000946 cardial valve +UBERON_0000948 heart UBERON_0000948 heart +UBERON_0000948 heart UBERON_0001081 endocardium of ventricle +UBERON_0000948 heart UBERON_0001082 epicardium of ventricle +UBERON_0000948 heart UBERON_0001083 myocardium of ventricle +UBERON_0000948 heart UBERON_0001133 cardiac muscle tissue +UBERON_0000948 heart UBERON_0001621 coronary artery +UBERON_0000948 heart UBERON_0001625 right coronary artery +UBERON_0000948 heart UBERON_0001626 left coronary artery +UBERON_0000948 heart UBERON_0002061 truncus arteriosus +UBERON_0000948 heart UBERON_0002062 endocardial cushion +UBERON_0000948 heart UBERON_0002063 sinus venosus +UBERON_0000948 heart UBERON_0002078 right cardiac atrium +UBERON_0000948 heart UBERON_0002079 left cardiac atrium +UBERON_0000948 heart UBERON_0002080 heart right ventricle +UBERON_0000948 heart UBERON_0002081 cardiac atrium +UBERON_0000948 heart UBERON_0002082 cardiac ventricle +UBERON_0000948 heart UBERON_0002084 heart left ventricle +UBERON_0000948 heart UBERON_0002085 interatrial septum +UBERON_0000948 heart UBERON_0002086 sinoatrial valve +UBERON_0000948 heart UBERON_0002087 atrioventricular canal +UBERON_0000948 heart UBERON_0002094 interventricular septum +UBERON_0000948 heart UBERON_0002098 apex of heart +UBERON_0000948 heart UBERON_0002099 cardiac septum +UBERON_0000948 heart UBERON_0002133 atrioventricular valve +UBERON_0000948 heart UBERON_0002134 tricuspid valve +UBERON_0000948 heart UBERON_0002135 mitral valve +UBERON_0000948 heart UBERON_0002137 aortic valve +UBERON_0000948 heart UBERON_0002146 pulmonary valve +UBERON_0000948 heart UBERON_0002165 endocardium +UBERON_0000948 heart UBERON_0002166 endocardium of atrium +UBERON_0000948 heart UBERON_0002248 transverse pericardial sinus +UBERON_0000948 heart UBERON_0002302 myocardium of atrium +UBERON_0000948 heart UBERON_0002348 epicardium +UBERON_0000948 heart UBERON_0002349 heart muscle +UBERON_0000948 heart UBERON_0002349 myocardium +UBERON_0000948 heart UBERON_0002350 conducting system of heart +UBERON_0000948 heart UBERON_0002351 sinoatrial node +UBERON_0000948 heart UBERON_0002352 atrioventricular node +UBERON_0000948 heart UBERON_0002353 bundle of His +UBERON_0000948 heart UBERON_0002354 cardiac Purkinje fiber +UBERON_0000948 heart UBERON_0002494 papillary muscle of heart +UBERON_0000948 heart UBERON_0002511 trabecula carnea +UBERON_0000948 heart UBERON_0003282 mesentery of heart +UBERON_0000948 heart UBERON_0003369 fossa ovalis of heart +UBERON_0000948 heart UBERON_0003378 cardiac muscle of auricular region +UBERON_0000948 heart UBERON_0003379 cardiac muscle of right atrium +UBERON_0000948 heart UBERON_0003380 cardiac muscle of left atrium +UBERON_0000948 heart UBERON_0003381 cardiac muscle of right ventricle +UBERON_0000948 heart UBERON_0003382 cardiac muscle of left ventricle +UBERON_0000948 heart UBERON_0003383 cardiac muscle tissue of interventricular septum +UBERON_0000948 heart UBERON_0003452 trabecula carnea cardiac muscle tissue +UBERON_0000948 heart UBERON_0003498 heart blood vessel +UBERON_0000948 heart UBERON_0003610 heart elastic tissue +UBERON_0000948 heart UBERON_0003906 cardiac jelly +UBERON_0000948 heart UBERON_0003907 left atrioventricular canal +UBERON_0000948 heart UBERON_0003908 right atrioventricular canal +UBERON_0000948 heart UBERON_0003930 atrioventricular canal endocardium +UBERON_0000948 heart UBERON_0003983 conus arteriosus +UBERON_0000948 heart UBERON_0004123 myocardial layer +UBERON_0000948 heart UBERON_0004124 myocardium trabecular layer +UBERON_0000948 heart UBERON_0004125 myocardial compact layer +UBERON_0000948 heart UBERON_0004126 trabecular layer of ventricle +UBERON_0000948 heart UBERON_0004127 compact layer of ventricle +UBERON_0000948 heart UBERON_0004142 outflow tract septum +UBERON_0000948 heart UBERON_0004145 outflow tract +UBERON_0000948 heart UBERON_0004146 His-Purkinje system +UBERON_0000948 heart UBERON_0004148 cardiac vein +UBERON_0000948 heart UBERON_0004149 ventriculo bulbo valve +UBERON_0000948 heart UBERON_0004150 coronary sinus valve +UBERON_0000948 heart UBERON_0004151 cardiac chamber +UBERON_0000948 heart UBERON_0004152 bulbus arteriosus +UBERON_0000948 heart UBERON_0004153 ventricular septum intermedium +UBERON_0000948 heart UBERON_0004154 atrial septum primum +UBERON_0000948 heart UBERON_0004155 atrial septum secundum +UBERON_0000948 heart UBERON_0004159 atrial septum intermedium +UBERON_0000948 heart UBERON_0004162 pulmonary myocardium +UBERON_0000948 heart UBERON_0004246 outflow tract smooth muscle +UBERON_0000948 heart UBERON_0004265 outflow tract myocardium +UBERON_0000948 heart UBERON_0004271 outflow tract pericardium +UBERON_0000948 heart UBERON_0004292 cardiac skeleton +UBERON_0000948 heart UBERON_0004490 cardiac muscle tissue of atrium +UBERON_0000948 heart UBERON_0004491 cardiac muscle tissue of interatrial septum +UBERON_0000948 heart UBERON_0004492 cardiac muscle tissue of cardiac septum +UBERON_0000948 heart UBERON_0004493 cardiac muscle tissue of myocardium +UBERON_0000948 heart UBERON_0004494 cardiac muscle tissue of papillary muscle +UBERON_0000948 heart UBERON_0004523 papillary muscle of right ventricle +UBERON_0000948 heart UBERON_0004524 papillary muscle of left ventricle +UBERON_0000948 heart UBERON_0004525 cardiac muscle tissue of trabecula carnea of right ventricle +UBERON_0000948 heart UBERON_0004526 cardiac muscle tissue of trabecula carnea of left ventricle +UBERON_0000948 heart UBERON_0004666 interventricular septum membranous part +UBERON_0000948 heart UBERON_0004667 interventricular septum muscular part +UBERON_0000948 heart UBERON_0004699 outflow tract endothelium +UBERON_0000948 heart UBERON_0004706 bulbus cordis +UBERON_0000948 heart UBERON_0004754 foramen ovale of heart +UBERON_0000948 heart UBERON_0004784 heart ventricle wall +UBERON_0000948 heart UBERON_0005063 left ventricular compact myocardium +UBERON_0000948 heart UBERON_0005064 left ventricular trabecular myocardium +UBERON_0000948 heart UBERON_0005065 right ventricular compact myocardium +UBERON_0000948 heart UBERON_0005066 right ventricular trabecular myocardium +UBERON_0000948 heart UBERON_0005091 left horn of sinus venosus +UBERON_0000948 heart UBERON_0005092 right horn of sinus venosus +UBERON_0000948 heart UBERON_0005208 right atrium valve +UBERON_0000948 heart UBERON_0005243 interventricular septum endocardium +UBERON_0000948 heart UBERON_0005248 bulbus cordis myocardium +UBERON_0000948 heart UBERON_0005261 atrium cardiac jelly +UBERON_0000948 heart UBERON_0005262 ventricle cardiac jelly +UBERON_0000948 heart UBERON_0005263 outflow tract cardiac jelly +UBERON_0000948 heart UBERON_0005316 endocardial endothelium +UBERON_0000948 heart UBERON_0005337 outflow tract of ventricle +UBERON_0000948 heart UBERON_0005338 outflow tract aortic component +UBERON_0000948 heart UBERON_0005339 outflow tract pulmonary component +UBERON_0000948 heart UBERON_0005432 aortic sac +UBERON_0000948 heart UBERON_0005438 coronary sinus +UBERON_0000948 heart UBERON_0005440 ductus arteriosus +UBERON_0000948 heart UBERON_0005455 interventricular groove +UBERON_0000948 heart UBERON_0005484 tricuspid valve leaflet +UBERON_0000948 heart UBERON_0005485 valve of inferior vena cava +UBERON_0000948 heart UBERON_0005489 anterior interventricular sulcus +UBERON_0000948 heart UBERON_0005490 posterior interventricular sulcus +UBERON_0000948 heart UBERON_0005601 dorsal mesocardium +UBERON_0000948 heart UBERON_0005623 semi-lunar valve +UBERON_0000948 heart UBERON_0005946 outflow tract of atrium +UBERON_0000948 heart UBERON_0005953 outflow part of right ventricle +UBERON_0000948 heart UBERON_0005956 outflow part of left ventricle +UBERON_0000948 heart UBERON_0005965 outflow part of right atrium +UBERON_0000948 heart UBERON_0005966 outflow part of left atrium +UBERON_0000948 heart UBERON_0005967 conotruncal ridge +UBERON_0000948 heart UBERON_0005979 crista terminalis +UBERON_0000948 heart UBERON_0005980 pectinate muscle +UBERON_0000948 heart UBERON_0005981 vena cava sinus +UBERON_0000948 heart UBERON_0005982 Bachmann's bundle +UBERON_0000948 heart UBERON_0005983 heart layer +UBERON_0000948 heart UBERON_0005984 subendocardium layer +UBERON_0000948 heart UBERON_0005985 coronary vessel +UBERON_0000948 heart UBERON_0005986 left bundle branch +UBERON_0000948 heart UBERON_0005987 right bundle branch +UBERON_0000948 heart UBERON_0005988 atrium myocardial trabecula +UBERON_0000948 heart UBERON_0005989 atrioventricular septum +UBERON_0000948 heart UBERON_0005990 aortic valve cusp +UBERON_0000948 heart UBERON_0005991 aortic valve anulus +UBERON_0000948 heart UBERON_0005992 pulmonary valve cusp +UBERON_0000948 heart UBERON_0005993 pulmonary valve anulus +UBERON_0000948 heart UBERON_0005994 chorda tendineae +UBERON_0000948 heart UBERON_0005995 mitral valve anulus +UBERON_0000948 heart UBERON_0005996 mitral valve cusp +UBERON_0000948 heart UBERON_0005997 tricuspid valve anulus +UBERON_0000948 heart UBERON_0005998 tricuspid valve cusp +UBERON_0000948 heart UBERON_0006008 fibrous ring of heart +UBERON_0000948 heart UBERON_0006009 cusp of cardiac valve +UBERON_0000948 heart UBERON_0006060 conotruncus +UBERON_0000948 heart UBERON_0006207 aortico-pulmonary spiral septum +UBERON_0000948 heart UBERON_0006212 bulbo-ventricular groove +UBERON_0000948 heart UBERON_0006218 common atrial chamber +UBERON_0000948 heart UBERON_0006566 left ventricle myocardium +UBERON_0000948 heart UBERON_0006567 right ventricle myocardium +UBERON_0000948 heart UBERON_0006570 trabecula carnea of right ventricle +UBERON_0000948 heart UBERON_0006571 trabecula carnea of left ventricle +UBERON_0000948 heart UBERON_0006618 atrium auricular region +UBERON_0000948 heart UBERON_0006630 left atrium auricular region +UBERON_0000948 heart UBERON_0006631 right atrium auricular region +UBERON_0000948 heart UBERON_0006678 foramen secundum +UBERON_0000948 heart UBERON_0006828 trabecula carnea of atrium +UBERON_0000948 heart UBERON_0006829 remnant of left anterior vena cava +UBERON_0000948 heart UBERON_0006958 great vein of heart +UBERON_0000948 heart UBERON_0006966 coronary capillary +UBERON_0000948 heart UBERON_0007151 mitral valve leaflet +UBERON_0000948 heart UBERON_0007181 serosa of infundibulum of uterine tube +UBERON_0000948 heart UBERON_0007182 muscle layer of infundibulum of uterine tube +UBERON_0000948 heart UBERON_0008307 heart endothelium +UBERON_0000948 heart UBERON_0009129 right atrium endocardium +UBERON_0000948 heart UBERON_0009149 foramen primum +UBERON_0000948 heart UBERON_0009687 middle cardiac vein +UBERON_0000948 heart UBERON_0009712 endocardium of right ventricle +UBERON_0000948 heart UBERON_0009713 endocardium of left ventricle +UBERON_0000948 heart UBERON_0009751 cardiac mesenchyme +UBERON_0000948 heart UBERON_0009779 cardiac muscle tissue of right auricle +UBERON_0000948 heart UBERON_0009780 cardiac muscle tissue of left auricle +UBERON_0000948 heart UBERON_0009966 internodal tract +UBERON_0000948 heart UBERON_0010018 spiral valve of conus arteriosus +UBERON_0000948 heart UBERON_0010131 conducting tissue of heart +UBERON_0000948 heart UBERON_0010189 right atrium venous valve +UBERON_0000948 heart UBERON_0010277 mesocardium +UBERON_0000948 heart UBERON_0010279 pericardial sinus +UBERON_0000948 heart UBERON_0010283 oblique pericardial sinus +UBERON_0000948 heart UBERON_0011005 endocardium of auricle +UBERON_0000948 heart UBERON_0011006 endocardium of left auricle +UBERON_0000948 heart UBERON_0011007 endocardium of right auricle +UBERON_0000948 heart UBERON_0011741 cardiac valve leaflet +UBERON_0000948 heart UBERON_0011742 aortic valve leaflet +UBERON_0000948 heart UBERON_0011745 pulmonary valve leaflets +UBERON_0000948 heart UBERON_0011819 lumen of atrioventricular canal +UBERON_0000948 heart UBERON_0011820 atrioventricular region +UBERON_0000948 heart UBERON_0011897 cardiac endomysium +UBERON_0000948 heart UBERON_0013152 interventricular foramen of heart +UBERON_0000948 heart UBERON_0013220 foramen of Panizza +UBERON_0000948 heart UBERON_0014851 chorda tendinea of left ventricle +UBERON_0000948 heart UBERON_0014852 chorda tendinea of right ventricle +UBERON_0000948 heart UBERON_0014853 commissural leaflet of mitral valve +UBERON_0000948 heart UBERON_0014854 anterior leaflet of mitral valve +UBERON_0000948 heart UBERON_0014855 posterior leaflet of mitral valve +UBERON_0000948 heart UBERON_0015125 anterior internodal tract +UBERON_0000948 heart UBERON_0015126 middle internodal tract +UBERON_0000948 heart UBERON_0015127 posterior internodal tract +UBERON_0000948 heart UBERON_0015128 subepicardial layer of epicardium +UBERON_0000948 heart UBERON_0015129 epicardial fat +UBERON_0000948 heart UBERON_0015224 interventricular foramen intermedium +UBERON_0000948 heart UBERON_0015225 atrial foramen intermedium +UBERON_0000948 heart UBERON_0015226 bulbar spiral septum +UBERON_0000948 heart UBERON_0016509 cavity of right ventricle +UBERON_0000948 heart UBERON_0016513 cavity of left atrium +UBERON_0000948 heart UBERON_0016514 cavity of left ventricle +UBERON_0000948 heart UBERON_0016522 cavity of right atrium +UBERON_0000948 heart UBERON_0018649 cardiac muscle tissue of ventricle +UBERON_0000948 heart UBERON_0018674 heart vasculature +UBERON_0000948 heart UBERON_0034697 inflow tract +UBERON_0000948 heart UBERON_0034698 inflow tract of ventricle +UBERON_0000948 heart UBERON_0034699 inflow tract of atrium +UBERON_0000948 heart UBERON_0034703 inflow tract of right ventricle +UBERON_0000948 heart UBERON_0034704 inflow tract of left ventricle +UBERON_0000948 heart UBERON_0034903 left atrium endocardium +UBERON_0000948 heart UBERON_0035186 valve of foramen ovale +UBERON_0000948 heart UBERON_0035213 basal zone of heart +UBERON_0000948 heart UBERON_0035374 small cardiac vein +UBERON_0000948 heart UBERON_0035395 branch of left coronary artery +UBERON_0000948 heart UBERON_0035422 circumflex branch of left coronary artery +UBERON_0000948 heart UBERON_0035553 left cardiac chamber +UBERON_0000948 heart UBERON_0035554 right cardiac chamber +UBERON_0000948 heart UBERON_0035763 cavity of cardiac chamber +UBERON_0000948 heart UBERON_0035835 apical region of left ventricle +UBERON_0000948 heart UBERON_0035836 apical region of right ventricle +UBERON_0000948 heart UBERON_0035837 apical region of heart ventricle +UBERON_0000948 heart UBERON_0036066 inferior endocardial cushion +UBERON_0000948 heart UBERON_0036067 superior endocardial cushion +UBERON_0000948 heart UBERON_0036285 wall of left ventricle +UBERON_0000948 heart UBERON_0036286 wall of right ventricle +UBERON_0000948 heart UBERON_0036288 anterior wall of left ventricle +UBERON_0000948 heart UBERON_0036289 anterior wall of right ventricle +UBERON_0000948 heart UBERON_0036290 myocardium of anterior wall of left ventricle +UBERON_0000948 heart UBERON_0036291 myocardium of anterior wall of right ventricle +UBERON_0000948 heart UBERON_0036328 wall of coronary artery +UBERON_0000948 heart UBERON_0037144 wall of heart +UBERON_0000948 heart UBERON_0039232 conus artery +UBERON_0000948 heart UBERON_2000214 hypobranchial vessel +UBERON_0000948 heart UBERON_2005066 bulbus arteriosus outer layer +UBERON_0000948 heart UBERON_2005067 bulbus arteriosus middle layer +UBERON_0000948 heart UBERON_2005068 bulbus arteriosus inner layer +UBERON_0000948 heart UBERON_2005072 endocardial ring +UBERON_0000948 heart UBERON_2005073 atrioventricular ring +UBERON_0000948 heart UBERON_2005074 central cardiac conduction system +UBERON_0000948 heart UBERON_2005075 peripheral cardiac conduction system +UBERON_0000948 heart UBERON_3010243 ventricular musculature +UBERON_0000948 heart UBERON_8000009 Purkinje fiber network +UBERON_0000955 brain CL_0000127 forebrain and midbrain +UBERON_0000955 brain CL_0000540 neuron +UBERON_0000955 brain UBERON_0000007 pituitary gland +UBERON_0000955 brain UBERON_0000052 fornix of brain +UBERON_0000955 brain UBERON_0000126 cranial nerve nucleus +UBERON_0000955 brain UBERON_0000127 facial nucleus +UBERON_0000955 brain UBERON_0000128 olivary body +UBERON_0000955 brain UBERON_0000200 gyrus +UBERON_0000955 brain UBERON_0000203 pallium +UBERON_0000955 brain UBERON_0000204 ventral part of telencephalon +UBERON_0000955 brain UBERON_0000349 limbic system +UBERON_0000955 brain UBERON_0000369 corpus striatum +UBERON_0000955 brain UBERON_0000373 tapetum of corpus callosum +UBERON_0000955 brain UBERON_0000411 visual cortex +UBERON_0000955 brain UBERON_0000430 ventral intermediate nucleus of thalamus +UBERON_0000955 brain UBERON_0000431 ventral medial complex of thalamus +UBERON_0000955 brain UBERON_0000432 endopeduncular nucleus +UBERON_0000955 brain UBERON_0000433 posterior paraventricular nucleus of thalamus +UBERON_0000955 brain UBERON_0000434 anterior paraventricular nucleus of thalamus +UBERON_0000955 brain UBERON_0000435 lateral tuberal nucleus +UBERON_0000955 brain UBERON_0000445 habenular trigone +UBERON_0000955 brain UBERON_0000446 septum of telencephalon +UBERON_0000955 brain UBERON_0000451 prefrontal cortex +UBERON_0000955 brain UBERON_0000454 cerebral subcortex +UBERON_0000955 brain UBERON_0000908 hippocampal commissure +UBERON_0000955 brain UBERON_0000935 anterior commissure +UBERON_0000955 brain UBERON_0000936 posterior commissure +UBERON_0000955 brain UBERON_0000955 brain +UBERON_0000955 brain UBERON_0000955 brain fragment +UBERON_0000955 brain UBERON_0000956 cerebral cortex +UBERON_0000955 brain UBERON_0000959 optic chiasma +UBERON_0000955 brain UBERON_0000988 pons +UBERON_0000955 brain UBERON_0001058 mushroom body +UBERON_0000955 brain UBERON_0001059 pars intercerebralis +UBERON_0000955 brain UBERON_0001063 flocculus +UBERON_0000955 brain UBERON_0001384 primary motor cortex +UBERON_0000955 brain UBERON_0001393 auditory cortex +UBERON_0000955 brain UBERON_0001663 cerebral vein +UBERON_0000955 brain UBERON_0001664 inferior cerebral vein +UBERON_0000955 brain UBERON_0001672 anterior cerebral vein +UBERON_0000955 brain UBERON_0001699 sensory root of facial nerve +UBERON_0000955 brain UBERON_0001715 oculomotor nuclear complex +UBERON_0000955 brain UBERON_0001717 spinal nucleus of trigeminal nerve +UBERON_0000955 brain UBERON_0001718 mesencephalic nucleus of trigeminal nerve +UBERON_0000955 brain UBERON_0001719 nucleus ambiguus +UBERON_0000955 brain UBERON_0001720 cochlear nucleus +UBERON_0000955 brain UBERON_0001721 inferior vestibular nucleus +UBERON_0000955 brain UBERON_0001722 medial vestibular nucleus +UBERON_0000955 brain UBERON_0001869 cerebral hemisphere +UBERON_0000955 brain UBERON_0001870 frontal cortex +UBERON_0000955 brain UBERON_0001871 temporal lobe +UBERON_0000955 brain UBERON_0001872 parietal lobe +UBERON_0000955 brain UBERON_0001873 caudate nucleus +UBERON_0000955 brain UBERON_0001874 putamen +UBERON_0000955 brain UBERON_0001875 globus pallidus +UBERON_0000955 brain UBERON_0001876 amygdala +UBERON_0000955 brain UBERON_0001877 medial septal nucleus +UBERON_0000955 brain UBERON_0001878 septofimbrial nucleus +UBERON_0000955 brain UBERON_0001879 nucleus of diagonal band +UBERON_0000955 brain UBERON_0001880 bed nucleus of stria terminalis +UBERON_0000955 brain UBERON_0001881 island of Calleja +UBERON_0000955 brain UBERON_0001882 nucleus accumbens +UBERON_0000955 brain UBERON_0001883 olfactory tubercle +UBERON_0000955 brain UBERON_0001885 dentate gyrus of hippocampal formation +UBERON_0000955 brain UBERON_0001886 choroid plexus +UBERON_0000955 brain UBERON_0001887 internal capsule of telencephalon +UBERON_0000955 brain UBERON_0001888 lateral olfactory stria +UBERON_0000955 brain UBERON_0001890 forebrain +UBERON_0000955 brain UBERON_0001890 forebrain fragment +UBERON_0000955 brain UBERON_0001891 midbrain +UBERON_0000955 brain UBERON_0001893 telencephalon +UBERON_0000955 brain UBERON_0001894 diencephalon +UBERON_0000955 brain UBERON_0001894 diencephalon and midbrain +UBERON_0000955 brain UBERON_0001894 pituitary and diencephalon +UBERON_0000955 brain UBERON_0001895 metencephalon +UBERON_0000955 brain UBERON_0001896 medulla oblongata +UBERON_0000955 brain UBERON_0001897 dorsal plus ventral thalamus +UBERON_0000955 brain UBERON_0001898 hypothalamus +UBERON_0000955 brain UBERON_0001899 epithalamus +UBERON_0000955 brain UBERON_0001900 ventral thalamus +UBERON_0000955 brain UBERON_0001903 thalamic reticular nucleus +UBERON_0000955 brain UBERON_0001904 habenula +UBERON_0000955 brain UBERON_0001905 pineal body +UBERON_0000955 brain UBERON_0001906 subthalamic nucleus +UBERON_0000955 brain UBERON_0001907 zona incerta +UBERON_0000955 brain UBERON_0001908 optic tract +UBERON_0000955 brain UBERON_0001909 habenular commissure +UBERON_0000955 brain UBERON_0001910 medial forebrain bundle +UBERON_0000955 brain UBERON_0001920 paraventricular nucleus of thalamus +UBERON_0000955 brain UBERON_0001921 reuniens nucleus +UBERON_0000955 brain UBERON_0001922 parafascicular nucleus +UBERON_0000955 brain UBERON_0001923 central medial nucleus +UBERON_0000955 brain UBERON_0001924 paracentral nucleus +UBERON_0000955 brain UBERON_0001925 ventral lateral nucleus of thalamus +UBERON_0000955 brain UBERON_0001926 lateral geniculate body +UBERON_0000955 brain UBERON_0001927 medial geniculate body +UBERON_0000955 brain UBERON_0001928 preoptic area +UBERON_0000955 brain UBERON_0001929 supraoptic nucleus +UBERON_0000955 brain UBERON_0001930 paraventricular nucleus of hypothalamus +UBERON_0000955 brain UBERON_0001931 lateral preoptic nucleus +UBERON_0000955 brain UBERON_0001932 arcuate nucleus of hypothalamus +UBERON_0000955 brain UBERON_0001933 retrochiasmatic area +UBERON_0000955 brain UBERON_0001934 dorsomedial nucleus of hypothalamus +UBERON_0000955 brain UBERON_0001935 ventromedial nucleus of hypothalamus +UBERON_0000955 brain UBERON_0001936 tuberomammillary nucleus +UBERON_0000955 brain UBERON_0001937 lateral hypothalamic nucleus +UBERON_0000955 brain UBERON_0001938 lateral mammillary nucleus +UBERON_0000955 brain UBERON_0001939 medial mammillary nucleus +UBERON_0000955 brain UBERON_0001940 supramammillary nucleus +UBERON_0000955 brain UBERON_0001941 lateral habenular nucleus +UBERON_0000955 brain UBERON_0001942 medial habenular nucleus +UBERON_0000955 brain UBERON_0001943 midbrain tegmentum +UBERON_0000955 brain UBERON_0001944 pretectal region +UBERON_0000955 brain UBERON_0001945 superior colliculus +UBERON_0000955 brain UBERON_0001946 inferior colliculus +UBERON_0000955 brain UBERON_0001947 red nucleus +UBERON_0000955 brain UBERON_0001950 neocortex +UBERON_0000955 brain UBERON_0001953 presubiculum +UBERON_0000955 brain UBERON_0001954 Ammon's horn +UBERON_0000955 brain UBERON_0001954 hippocampus proper +UBERON_0000955 brain UBERON_0001965 substantia nigra pars compacta +UBERON_0000955 brain UBERON_0001966 substantia nigra pars reticulata +UBERON_0000955 brain UBERON_0002021 occipital lobe +UBERON_0000955 brain UBERON_0002022 insula +UBERON_0000955 brain UBERON_0002023 claustrum of brain +UBERON_0000955 brain UBERON_0002028 hindbrain +UBERON_0000955 brain UBERON_0002028 hindbrain fragment +UBERON_0000955 brain UBERON_0002028 hindbrain without cerebellum +UBERON_0000955 brain UBERON_0002034 suprachiasmatic nucleus +UBERON_0000955 brain UBERON_0002035 medial preoptic nucleus +UBERON_0000955 brain UBERON_0002037 cerebellum +UBERON_0000955 brain UBERON_0002038 substantia nigra +UBERON_0000955 brain UBERON_0002043 dorsal raphe nucleus +UBERON_0000955 brain UBERON_0002044 ventral nucleus of posterior commissure +UBERON_0000955 brain UBERON_0002045 cuneate nucleus +UBERON_0000955 brain UBERON_0002047 pontine raphe nucleus +UBERON_0000955 brain UBERON_0002092 brain dura mater +UBERON_0000955 brain UBERON_0002126 solitary tract nuclear complex +UBERON_0000955 brain UBERON_0002127 inferior olivary complex +UBERON_0000955 brain UBERON_0002128 superior olivary complex +UBERON_0000955 brain UBERON_0002129 cerebellar cortex +UBERON_0000955 brain UBERON_0002130 cerebellar nuclear complex +UBERON_0000955 brain UBERON_0002131 anterior lobe of cerebellum +UBERON_0000955 brain UBERON_0002132 dentate nucleus +UBERON_0000955 brain UBERON_0002136 hilus of dentate gyrus +UBERON_0000955 brain UBERON_0002138 habenulo-interpeduncular tract +UBERON_0000955 brain UBERON_0002139 subcommissural organ +UBERON_0000955 brain UBERON_0002140 parabigeminal nucleus +UBERON_0000955 brain UBERON_0002141 parvocellular oculomotor nucleus +UBERON_0000955 brain UBERON_0002142 pedunculopontine tegmental nucleus +UBERON_0000955 brain UBERON_0002143 dorsal tegmental nucleus +UBERON_0000955 brain UBERON_0002144 peripeduncular nucleus +UBERON_0000955 brain UBERON_0002145 interpeduncular nucleus +UBERON_0000955 brain UBERON_0002147 reticulotegmental nucleus +UBERON_0000955 brain UBERON_0002148 locus ceruleus +UBERON_0000955 brain UBERON_0002149 superior salivatory nucleus +UBERON_0000955 brain UBERON_0002150 superior cerebellar peduncle +UBERON_0000955 brain UBERON_0002151 pontine nuclear group +UBERON_0000955 brain UBERON_0002152 middle cerebellar peduncle +UBERON_0000955 brain UBERON_0002153 fastigial nucleus +UBERON_0000955 brain UBERON_0002154 lateral reticular nucleus +UBERON_0000955 brain UBERON_0002155 gigantocellular nucleus +UBERON_0000955 brain UBERON_0002156 nucleus raphe magnus +UBERON_0000955 brain UBERON_0002157 nucleus raphe pallidus +UBERON_0000955 brain UBERON_0002158 principal inferior olivary nucleus +UBERON_0000955 brain UBERON_0002159 medial accessory inferior olivary nucleus +UBERON_0000955 brain UBERON_0002160 nucleus prepositus +UBERON_0000955 brain UBERON_0002161 gracile nucleus +UBERON_0000955 brain UBERON_0002162 area postrema +UBERON_0000955 brain UBERON_0002163 inferior cerebellar peduncle +UBERON_0000955 brain UBERON_0002164 tectobulbar tract +UBERON_0000955 brain UBERON_0002191 subiculum +UBERON_0000955 brain UBERON_0002196 adenohypophysis +UBERON_0000955 brain UBERON_0002197 median eminence of neurohypophysis +UBERON_0000955 brain UBERON_0002198 neurohypophysis +UBERON_0000955 brain UBERON_0002206 mammillary body +UBERON_0000955 brain UBERON_0002219 subfornical organ +UBERON_0000955 brain UBERON_0002245 cerebellar hemisphere +UBERON_0000955 brain UBERON_0002259 corpora quadrigemina +UBERON_0000955 brain UBERON_0002263 lentiform nucleus +UBERON_0000955 brain UBERON_0002264 olfactory bulb +UBERON_0000955 brain UBERON_0002265 olfactory tract +UBERON_0000955 brain UBERON_0002266 anterior olfactory nucleus +UBERON_0000955 brain UBERON_0002267 laterodorsal tegmental nucleus +UBERON_0000955 brain UBERON_0002270 hyaloid artery +UBERON_0000955 brain UBERON_0002271 periventricular zone of hypothalamus +UBERON_0000955 brain UBERON_0002272 medial zone of hypothalamus +UBERON_0000955 brain UBERON_0002273 lateral zone of hypothalamus +UBERON_0000955 brain UBERON_0002274 perifornical nucleus +UBERON_0000955 brain UBERON_0002275 reticular formation +UBERON_0000955 brain UBERON_0002285 telencephalic ventricle +UBERON_0000955 brain UBERON_0002286 third ventricle +UBERON_0000955 brain UBERON_0002287 optic recess of third ventricle +UBERON_0000955 brain UBERON_0002288 choroid plexus of third ventricle +UBERON_0000955 brain UBERON_0002289 midbrain cerebral aqueduct +UBERON_0000955 brain UBERON_0002290 choroid plexus of fourth ventricle +UBERON_0000955 brain UBERON_0002298 brainstem +UBERON_0000955 brain UBERON_0002301 layer of neocortex +UBERON_0000955 brain UBERON_0002304 layer of dentate gyrus +UBERON_0000955 brain UBERON_0002305 layer of hippocampus +UBERON_0000955 brain UBERON_0002307 choroid plexus of lateral ventricle +UBERON_0000955 brain UBERON_0002308 nucleus of brain +UBERON_0000955 brain UBERON_0002309 medial longitudinal fasciculus +UBERON_0000955 brain UBERON_0002310 hippocampus fimbria +UBERON_0000955 brain UBERON_0002313 hippocampus pyramidal layer +UBERON_0000955 brain UBERON_0002314 midbrain tectum +UBERON_0000955 brain UBERON_0002322 periventricular nucleus +UBERON_0000955 brain UBERON_0002336 corpus callosum +UBERON_0000955 brain UBERON_0002420 basal ganglion +UBERON_0000955 brain UBERON_0002421 hippocampal formation +UBERON_0000955 brain UBERON_0002421 hippocampus +UBERON_0000955 brain UBERON_0002422 fourth ventricle +UBERON_0000955 brain UBERON_0002430 lateral hypothalamic area +UBERON_0000955 brain UBERON_0002432 pars intermedia of adenohypophysis +UBERON_0000955 brain UBERON_0002433 pars tuberalis of adenohypophysis +UBERON_0000955 brain UBERON_0002434 pituitary stalk +UBERON_0000955 brain UBERON_0002435 striatum +UBERON_0000955 brain UBERON_0002436 primary visual cortex +UBERON_0000955 brain UBERON_0002437 cerebral hemisphere white matter +UBERON_0000955 brain UBERON_0002438 ventral tegmental nucleus +UBERON_0000955 brain UBERON_0002473 intercerebral commissure +UBERON_0000955 brain UBERON_0002474 cerebellar peduncular complex +UBERON_0000955 brain UBERON_0002476 lateral globus pallidus +UBERON_0000955 brain UBERON_0002477 medial globus pallidus +UBERON_0000955 brain UBERON_0002479 dorsal lateral geniculate nucleus +UBERON_0000955 brain UBERON_0002480 ventral lateral geniculate nucleus +UBERON_0000955 brain UBERON_0002549 ventral trigeminal tract +UBERON_0000955 brain UBERON_0002550 anterior hypothalamic region +UBERON_0000955 brain UBERON_0002551 interstitial nucleus of Cajal +UBERON_0000955 brain UBERON_0002552 vestibulocerebellar tract +UBERON_0000955 brain UBERON_0002555 intermediate hypothalamic region +UBERON_0000955 brain UBERON_0002556 corticotectal tract +UBERON_0000955 brain UBERON_0002557 linear nucleus +UBERON_0000955 brain UBERON_0002559 medullary reticular formation +UBERON_0000955 brain UBERON_0002560 temporal operculum +UBERON_0000955 brain UBERON_0002562 superior frontal sulcus +UBERON_0000955 brain UBERON_0002563 central nucleus of inferior colliculus +UBERON_0000955 brain UBERON_0002564 lateral orbital gyrus +UBERON_0000955 brain UBERON_0002565 olivary pretectal nucleus +UBERON_0000955 brain UBERON_0002566 superior precentral sulcus +UBERON_0000955 brain UBERON_0002567 basal part of pons +UBERON_0000955 brain UBERON_0002568 amiculum of dentate nucleus +UBERON_0000955 brain UBERON_0002569 transverse temporal sulcus +UBERON_0000955 brain UBERON_0002570 medial orbital gyrus +UBERON_0000955 brain UBERON_0002571 external nucleus of inferior colliculus +UBERON_0000955 brain UBERON_0002572 principal pretectal nucleus +UBERON_0000955 brain UBERON_0002573 pontine reticular formation +UBERON_0000955 brain UBERON_0002575 posterior orbital gyrus +UBERON_0000955 brain UBERON_0002576 temporal pole +UBERON_0000955 brain UBERON_0002577 pericentral nucleus of inferior colliculus +UBERON_0000955 brain UBERON_0002578 sublentiform nucleus +UBERON_0000955 brain UBERON_0002580 brachium of superior colliculus +UBERON_0000955 brain UBERON_0002581 postcentral gyrus +UBERON_0000955 brain UBERON_0002582 anterior calcarine sulcus +UBERON_0000955 brain UBERON_0002583 commissure of superior colliculus +UBERON_0000955 brain UBERON_0002585 central tegmental tract of midbrain +UBERON_0000955 brain UBERON_0002586 calcarine sulcus +UBERON_0000955 brain UBERON_0002587 nucleus subceruleus +UBERON_0000955 brain UBERON_0002588 decussation of superior cerebellar peduncle +UBERON_0000955 brain UBERON_0002589 lateral corticospinal tract +UBERON_0000955 brain UBERON_0002590 prepyriform area +UBERON_0000955 brain UBERON_0002591 oral part of spinal trigeminal nucleus +UBERON_0000955 brain UBERON_0002592 juxtarestiform body +UBERON_0000955 brain UBERON_0002593 orbital operculum +UBERON_0000955 brain UBERON_0002594 dentatothalamic tract +UBERON_0000955 brain UBERON_0002595 orbital sulcus +UBERON_0000955 brain UBERON_0002596 ventral posterior nucleus of thalamus +UBERON_0000955 brain UBERON_0002597 principal sensory nucleus of trigeminal nerve +UBERON_0000955 brain UBERON_0002598 paracentral sulcus +UBERON_0000955 brain UBERON_0002599 medial olfactory gyrus +UBERON_0000955 brain UBERON_0002600 limbic lobe +UBERON_0000955 brain UBERON_0002601 fasciolar gyrus +UBERON_0000955 brain UBERON_0002602 emboliform nucleus +UBERON_0000955 brain UBERON_0002603 paraterminal gyrus +UBERON_0000955 brain UBERON_0002604 ventral nucleus of lateral lemniscus +UBERON_0000955 brain UBERON_0002605 precentral operculum +UBERON_0000955 brain UBERON_0002607 superior rostral sulcus +UBERON_0000955 brain UBERON_0002608 caudal part of ventral lateral nucleus +UBERON_0000955 brain UBERON_0002609 spinothalamic tract of midbrain +UBERON_0000955 brain UBERON_0002610 cochlear nuclear complex +UBERON_0000955 brain UBERON_0002612 transverse orbital sulcus +UBERON_0000955 brain UBERON_0002613 cerebellum globose nucleus +UBERON_0000955 brain UBERON_0002614 medial part of ventral lateral nucleus +UBERON_0000955 brain UBERON_0002615 ventral tegmental decussation +UBERON_0000955 brain UBERON_0002616 regional part of brain +UBERON_0000955 brain UBERON_0002617 pars postrema of ventral lateral nucleus +UBERON_0000955 brain UBERON_0002618 root of trochlear nerve +UBERON_0000955 brain UBERON_0002620 tuber cinereum +UBERON_0000955 brain UBERON_0002622 preoptic periventricular nucleus +UBERON_0000955 brain UBERON_0002623 cerebral peduncle +UBERON_0000955 brain UBERON_0002624 orbital part of inferior frontal gyrus +UBERON_0000955 brain UBERON_0002625 median preoptic nucleus +UBERON_0000955 brain UBERON_0002626 head of caudate nucleus +UBERON_0000955 brain UBERON_0002627 capsule of medial geniculate body +UBERON_0000955 brain UBERON_0002628 tail of caudate nucleus +UBERON_0000955 brain UBERON_0002629 triangular part of inferior frontal gyrus +UBERON_0000955 brain UBERON_0002630 body of caudate nucleus +UBERON_0000955 brain UBERON_0002631 cerebral crus +UBERON_0000955 brain UBERON_0002632 medial part of medial mammillary nucleus +UBERON_0000955 brain UBERON_0002633 motor nucleus of trigeminal nerve +UBERON_0000955 brain UBERON_0002634 anterior nucleus of hypothalamus +UBERON_0000955 brain UBERON_0002636 lateral pulvinar nucleus +UBERON_0000955 brain UBERON_0002637 ventral anterior nucleus of thalamus +UBERON_0000955 brain UBERON_0002638 medial pulvinar nucleus +UBERON_0000955 brain UBERON_0002639 midbrain reticular formation +UBERON_0000955 brain UBERON_0002640 cuneocerebellar tract +UBERON_0000955 brain UBERON_0002641 oral pulvinar nucleus +UBERON_0000955 brain UBERON_0002642 cuneate fasciculus of medulla +UBERON_0000955 brain UBERON_0002643 decussation of medial lemniscus +UBERON_0000955 brain UBERON_0002644 intermediate orbital gyrus +UBERON_0000955 brain UBERON_0002645 densocellular part of medial dorsal nucleus +UBERON_0000955 brain UBERON_0002646 dorsal longitudinal fasciculus of medulla +UBERON_0000955 brain UBERON_0002647 magnocellular part of medial dorsal nucleus +UBERON_0000955 brain UBERON_0002648 anterior median eminence +UBERON_0000955 brain UBERON_0002649 dorsolateral fasciculus of medulla +UBERON_0000955 brain UBERON_0002650 paralaminar part of medial dorsal nucleus +UBERON_0000955 brain UBERON_0002651 anterior horn of lateral ventricle +UBERON_0000955 brain UBERON_0002652 posterior median eminence +UBERON_0000955 brain UBERON_0002653 gracile fasciculus of medulla +UBERON_0000955 brain UBERON_0002654 parvocellular part of medial dorsal nucleus +UBERON_0000955 brain UBERON_0002655 body of lateral ventricle +UBERON_0000955 brain UBERON_0002656 periamygdaloid area +UBERON_0000955 brain UBERON_0002657 posterior parahippocampal gyrus +UBERON_0000955 brain UBERON_0002658 medial lemniscus of midbrain +UBERON_0000955 brain UBERON_0002659 superior medullary velum +UBERON_0000955 brain UBERON_0002660 medial longitudinal fasciculus of midbrain +UBERON_0000955 brain UBERON_0002661 superior frontal gyrus +UBERON_0000955 brain UBERON_0002662 medial pes lemniscus +UBERON_0000955 brain UBERON_0002663 septal nuclear complex +UBERON_0000955 brain UBERON_0002664 lateral part of medial mammillary nucleus +UBERON_0000955 brain UBERON_0002665 supracallosal gyrus +UBERON_0000955 brain UBERON_0002666 mesencephalic tract of trigeminal nerve +UBERON_0000955 brain UBERON_0002667 lateral septal nucleus +UBERON_0000955 brain UBERON_0002668 oculomotor nerve root +UBERON_0000955 brain UBERON_0002669 anterior horizontal limb of lateral sulcus +UBERON_0000955 brain UBERON_0002670 anterior ascending limb of lateral sulcus +UBERON_0000955 brain UBERON_0002671 pallidotegmental fasciculus +UBERON_0000955 brain UBERON_0002672 anterior subcentral sulcus +UBERON_0000955 brain UBERON_0002673 vestibular nuclear complex +UBERON_0000955 brain UBERON_0002675 diagonal sulcus +UBERON_0000955 brain UBERON_0002676 ventral supraoptic decussation +UBERON_0000955 brain UBERON_0002679 anterodorsal nucleus of thalamus +UBERON_0000955 brain UBERON_0002681 anteromedial nucleus of thalamus +UBERON_0000955 brain UBERON_0002682 abducens nucleus +UBERON_0000955 brain UBERON_0002683 rhinal sulcus +UBERON_0000955 brain UBERON_0002684 nucleus raphe obscurus +UBERON_0000955 brain UBERON_0002685 anteroventral nucleus of thalamus +UBERON_0000955 brain UBERON_0002686 angular gyrus +UBERON_0000955 brain UBERON_0002687 area X of ventral lateral nucleus +UBERON_0000955 brain UBERON_0002688 supramarginal gyrus +UBERON_0000955 brain UBERON_0002689 supraoptic crest +UBERON_0000955 brain UBERON_0002690 anteroventral periventricular nucleus +UBERON_0000955 brain UBERON_0002691 ventral tegmental area +UBERON_0000955 brain UBERON_0002692 medullary raphe nuclear complex +UBERON_0000955 brain UBERON_0002693 occipitotemporal sulcus +UBERON_0000955 brain UBERON_0002694 anterior hypothalamic commissure +UBERON_0000955 brain UBERON_0002695 parieto-occipital sulcus +UBERON_0000955 brain UBERON_0002696 cuneiform nucleus +UBERON_0000955 brain UBERON_0002697 dorsal supraoptic decussation +UBERON_0000955 brain UBERON_0002698 preoccipital notch +UBERON_0000955 brain UBERON_0002699 supraopticohypophysial tract +UBERON_0000955 brain UBERON_0002700 subcuneiform nucleus +UBERON_0000955 brain UBERON_0002701 anterior median oculomotor nucleus +UBERON_0000955 brain UBERON_0002702 middle frontal gyrus +UBERON_0000955 brain UBERON_0002703 precentral gyrus +UBERON_0000955 brain UBERON_0002704 metathalamus +UBERON_0000955 brain UBERON_0002705 midline nuclear group +UBERON_0000955 brain UBERON_0002706 posterior nucleus of hypothalamus +UBERON_0000955 brain UBERON_0002708 posterior periventricular nucleus +UBERON_0000955 brain UBERON_0002709 posterior nuclear complex of thalamus +UBERON_0000955 brain UBERON_0002710 cingulate sulcus +UBERON_0000955 brain UBERON_0002711 nucleus of posterior commissure +UBERON_0000955 brain UBERON_0002712 premammillary nucleus +UBERON_0000955 brain UBERON_0002713 circular sulcus of insula +UBERON_0000955 brain UBERON_0002714 rubrospinal tract +UBERON_0000955 brain UBERON_0002715 spinal trigeminal tract of medulla +UBERON_0000955 brain UBERON_0002716 collateral sulcus +UBERON_0000955 brain UBERON_0002717 rostral interstitial nucleus of medial longitudinal fasciculus +UBERON_0000955 brain UBERON_0002718 solitary tract +UBERON_0000955 brain UBERON_0002719 spino-olivary tract +UBERON_0000955 brain UBERON_0002720 mammillary peduncle +UBERON_0000955 brain UBERON_0002721 lateral sulcus +UBERON_0000955 brain UBERON_0002722 trochlear nucleus +UBERON_0000955 brain UBERON_0002723 mammillary princeps fasciculus +UBERON_0000955 brain UBERON_0002724 limen of insula +UBERON_0000955 brain UBERON_0002727 medial medullary lamina of globus pallidus +UBERON_0000955 brain UBERON_0002728 entorhinal cortex +UBERON_0000955 brain UBERON_0002729 claustral amygdaloid area +UBERON_0000955 brain UBERON_0002731 vestibulocochlear nerve root +UBERON_0000955 brain UBERON_0002732 longitudinal pontine fibers +UBERON_0000955 brain UBERON_0002733 intralaminar nuclear group +UBERON_0000955 brain UBERON_0002734 superior temporal sulcus +UBERON_0000955 brain UBERON_0002735 transverse pontine fibers +UBERON_0000955 brain UBERON_0002736 lateral nuclear group of thalamus +UBERON_0000955 brain UBERON_0002737 lateral inferior limiting sulcus +UBERON_0000955 brain UBERON_0002738 isthmus of cingulate gyrus +UBERON_0000955 brain UBERON_0002739 medial dorsal nucleus of thalamus +UBERON_0000955 brain UBERON_0002740 posterior cingulate gyrus +UBERON_0000955 brain UBERON_0002741 diagonal band of Broca +UBERON_0000955 brain UBERON_0002742 lamina of septum pellucidum +UBERON_0000955 brain UBERON_0002743 basal forebrain +UBERON_0000955 brain UBERON_0002744 hilum of dentate nucleus +UBERON_0000955 brain UBERON_0002745 ventral amygdalofugal projection +UBERON_0000955 brain UBERON_0002746 intermediate periventricular nucleus +UBERON_0000955 brain UBERON_0002747 neodentate part of dentate nucleus +UBERON_0000955 brain UBERON_0002748 medial lemniscus of medulla +UBERON_0000955 brain UBERON_0002749 regional part of cerebellar cortex +UBERON_0000955 brain UBERON_0002750 medial longitudinal fasciculus of medulla +UBERON_0000955 brain UBERON_0002751 inferior temporal gyrus +UBERON_0000955 brain UBERON_0002752 olivocerebellar tract +UBERON_0000955 brain UBERON_0002754 predorsal bundle +UBERON_0000955 brain UBERON_0002755 pyramidal decussation +UBERON_0000955 brain UBERON_0002756 anterior cingulate gyrus +UBERON_0000955 brain UBERON_0002758 dorsal nucleus of medial geniculate body +UBERON_0000955 brain UBERON_0002759 magnocellular nucleus of medial geniculate body +UBERON_0000955 brain UBERON_0002761 inferior frontal sulcus +UBERON_0000955 brain UBERON_0002762 internal medullary lamina of thalamus +UBERON_0000955 brain UBERON_0002763 accessory medullary lamina of globus pallidus +UBERON_0000955 brain UBERON_0002764 inferior precentral sulcus +UBERON_0000955 brain UBERON_0002765 lateral medullary lamina of globus pallidus +UBERON_0000955 brain UBERON_0002766 fusiform gyrus +UBERON_0000955 brain UBERON_0002767 inferior rostral sulcus +UBERON_0000955 brain UBERON_0002768 vestibulospinal tract +UBERON_0000955 brain UBERON_0002769 superior temporal gyrus +UBERON_0000955 brain UBERON_0002770 posterior hypothalamic region +UBERON_0000955 brain UBERON_0002771 middle temporal gyrus +UBERON_0000955 brain UBERON_0002772 olfactory sulcus +UBERON_0000955 brain UBERON_0002773 anterior transverse temporal gyrus +UBERON_0000955 brain UBERON_0002774 posterior transverse temporal gyrus +UBERON_0000955 brain UBERON_0002775 olivocochlear bundle +UBERON_0000955 brain UBERON_0002776 ventral nuclear group +UBERON_0000955 brain UBERON_0002778 ventral pallidum +UBERON_0000955 brain UBERON_0002779 lateral superior olivary nucleus +UBERON_0000955 brain UBERON_0002781 caudal part of ventral posterolateral nucleus of thalamus +UBERON_0000955 brain UBERON_0002782 medial superior olivary nucleus +UBERON_0000955 brain UBERON_0002783 central tegmental tract of pons +UBERON_0000955 brain UBERON_0002786 root of abducens nerve +UBERON_0000955 brain UBERON_0002787 decussation of trochlear nerve +UBERON_0000955 brain UBERON_0002788 anterior nuclear group +UBERON_0000955 brain UBERON_0002790 dorsal acoustic stria +UBERON_0000955 brain UBERON_0002793 dorsal longitudinal fasciculus of pons +UBERON_0000955 brain UBERON_0002794 medial longitudinal fasciculus of pons +UBERON_0000955 brain UBERON_0002795 frontal pole +UBERON_0000955 brain UBERON_0002796 motor root of trigeminal nerve +UBERON_0000955 brain UBERON_0002797 dorsal trigeminal tract +UBERON_0000955 brain UBERON_0002798 spinothalamic tract of pons +UBERON_0000955 brain UBERON_0002799 fronto-orbital sulcus +UBERON_0000955 brain UBERON_0002800 spinal trigeminal tract of pons +UBERON_0000955 brain UBERON_0002801 stratum zonale of thalamus +UBERON_0000955 brain UBERON_0002802 left parietal lobe +UBERON_0000955 brain UBERON_0002803 right parietal lobe +UBERON_0000955 brain UBERON_0002804 left limbic lobe +UBERON_0000955 brain UBERON_0002805 right limbic lobe +UBERON_0000955 brain UBERON_0002806 left occipital lobe +UBERON_0000955 brain UBERON_0002807 right occipital lobe +UBERON_0000955 brain UBERON_0002808 left temporal lobe +UBERON_0000955 brain UBERON_0002809 right temporal lobe +UBERON_0000955 brain UBERON_0002810 right frontal lobe +UBERON_0000955 brain UBERON_0002811 left frontal lobe +UBERON_0000955 brain UBERON_0002812 left cerebral hemisphere +UBERON_0000955 brain UBERON_0002813 right cerebral hemisphere +UBERON_0000955 brain UBERON_0002814 posterior superior fissure of cerebellum +UBERON_0000955 brain UBERON_0002815 horizontal fissure of cerebellum +UBERON_0000955 brain UBERON_0002816 prepyramidal fissure of cerebellum +UBERON_0000955 brain UBERON_0002817 secondary fissure of cerebellum +UBERON_0000955 brain UBERON_0002818 posterolateral fissure of cerebellum +UBERON_0000955 brain UBERON_0002828 ventral cochlear nucleus +UBERON_0000955 brain UBERON_0002829 dorsal cochlear nucleus +UBERON_0000955 brain UBERON_0002830 anteroventral cochlear nucleus +UBERON_0000955 brain UBERON_0002831 posteroventral cochlear nucleus +UBERON_0000955 brain UBERON_0002832 ventral nucleus of trapezoid body +UBERON_0000955 brain UBERON_0002833 medial nucleus of trapezoid body +UBERON_0000955 brain UBERON_0002864 accessory cuneate nucleus +UBERON_0000955 brain UBERON_0002865 arcuate nucleus of medulla +UBERON_0000955 brain UBERON_0002866 caudal part of spinal trigeminal nucleus +UBERON_0000955 brain UBERON_0002867 central gray substance of medulla +UBERON_0000955 brain UBERON_0002868 commissural nucleus of vagus nerve +UBERON_0000955 brain UBERON_0002869 diffuse reticular nucleus +UBERON_0000955 brain UBERON_0002870 dorsal motor nucleus of vagus nerve +UBERON_0000955 brain UBERON_0002871 hypoglossal nucleus +UBERON_0000955 brain UBERON_0002872 inferior salivatory nucleus +UBERON_0000955 brain UBERON_0002873 interpolar part of spinal trigeminal nucleus +UBERON_0000955 brain UBERON_0002874 lateral pericuneate nucleus +UBERON_0000955 brain UBERON_0002875 medial pericuneate nucleus +UBERON_0000955 brain UBERON_0002876 nucleus intercalatus +UBERON_0000955 brain UBERON_0002877 parasolitary nucleus +UBERON_0000955 brain UBERON_0002879 peritrigeminal nucleus +UBERON_0000955 brain UBERON_0002880 pontobulbar nucleus +UBERON_0000955 brain UBERON_0002881 sublingual nucleus +UBERON_0000955 brain UBERON_0002882 supraspinal nucleus +UBERON_0000955 brain UBERON_0002883 central amygdaloid nucleus +UBERON_0000955 brain UBERON_0002884 intercalated amygdaloid nuclei +UBERON_0000955 brain UBERON_0002885 accessory basal amygdaloid nucleus +UBERON_0000955 brain UBERON_0002886 lateral amygdaloid nucleus +UBERON_0000955 brain UBERON_0002887 basal amygdaloid nucleus +UBERON_0000955 brain UBERON_0002888 lateral part of basal amygdaloid nucleus +UBERON_0000955 brain UBERON_0002889 medial part of basal amygdaloid nucleus +UBERON_0000955 brain UBERON_0002890 anterior amygdaloid area +UBERON_0000955 brain UBERON_0002891 cortical amygdaloid nucleus +UBERON_0000955 brain UBERON_0002892 medial amygdaloid nucleus +UBERON_0000955 brain UBERON_0002893 nucleus of lateral olfactory tract +UBERON_0000955 brain UBERON_0002894 olfactory cortex +UBERON_0000955 brain UBERON_0002895 secondary olfactory cortex +UBERON_0000955 brain UBERON_0002899 hippocampal sulcus +UBERON_0000955 brain UBERON_0002900 transverse occipital sulcus +UBERON_0000955 brain UBERON_0002901 posterior calcarine sulcus +UBERON_0000955 brain UBERON_0002902 occipital pole +UBERON_0000955 brain UBERON_0002903 lunate sulcus +UBERON_0000955 brain UBERON_0002904 lateral occipital sulcus +UBERON_0000955 brain UBERON_0002905 intralingual sulcus +UBERON_0000955 brain UBERON_0002906 anterior occipital sulcus +UBERON_0000955 brain UBERON_0002907 superior postcentral sulcus +UBERON_0000955 brain UBERON_0002908 subparietal sulcus +UBERON_0000955 brain UBERON_0002909 posterior subcentral sulcus +UBERON_0000955 brain UBERON_0002910 posterior ascending limb of lateral sulcus +UBERON_0000955 brain UBERON_0002911 parietal operculum +UBERON_0000955 brain UBERON_0002912 marginal sulcus +UBERON_0000955 brain UBERON_0002913 intraparietal sulcus +UBERON_0000955 brain UBERON_0002914 inferior postcentral sulcus +UBERON_0000955 brain UBERON_0002915 postcentral sulcus of parietal lobe +UBERON_0000955 brain UBERON_0002916 central sulcus +UBERON_0000955 brain UBERON_0002918 medial parabrachial nucleus +UBERON_0000955 brain UBERON_0002919 anterior parolfactory sulcus +UBERON_0000955 brain UBERON_0002920 callosal sulcus +UBERON_0000955 brain UBERON_0002922 olfactory trigone +UBERON_0000955 brain UBERON_0002923 posterior parolfactory sulcus +UBERON_0000955 brain UBERON_0002925 trigeminal nucleus +UBERON_0000955 brain UBERON_0002928 dentate gyrus polymorphic layer +UBERON_0000955 brain UBERON_0002929 dentate gyrus pyramidal layer +UBERON_0000955 brain UBERON_0002930 tectopontine tract +UBERON_0000955 brain UBERON_0002931 dorsal septal nucleus +UBERON_0000955 brain UBERON_0002932 trapezoid body +UBERON_0000955 brain UBERON_0002933 nucleus of anterior commissure +UBERON_0000955 brain UBERON_0002934 ventral oculomotor nucleus +UBERON_0000955 brain UBERON_0002935 magnocellular part of ventral anterior nucleus +UBERON_0000955 brain UBERON_0002936 magnocellular part of red nucleus +UBERON_0000955 brain UBERON_0002937 parvocellular part of ventral anterior nucleus +UBERON_0000955 brain UBERON_0002938 parvocellular part of red nucleus +UBERON_0000955 brain UBERON_0002939 ventral posteroinferior nucleus +UBERON_0000955 brain UBERON_0002940 anterior column of fornix +UBERON_0000955 brain UBERON_0002941 capsule of red nucleus +UBERON_0000955 brain UBERON_0002942 ventral posterolateral nucleus +UBERON_0000955 brain UBERON_0002943 lingual gyrus +UBERON_0000955 brain UBERON_0002944 spinothalamic tract of medulla +UBERON_0000955 brain UBERON_0002945 ventral posteromedial nucleus of thalamus +UBERON_0000955 brain UBERON_0002947 frontal operculum +UBERON_0000955 brain UBERON_0002948 superior occipital gyrus +UBERON_0000955 brain UBERON_0002949 tectospinal tract +UBERON_0000955 brain UBERON_0002952 intermediate acoustic stria +UBERON_0000955 brain UBERON_0002954 dorsal hypothalamic area +UBERON_0000955 brain UBERON_0002955 rhomboidal nucleus +UBERON_0000955 brain UBERON_0002956 granular layer of cerebellar cortex +UBERON_0000955 brain UBERON_0002957 caudal central oculomotor nucleus +UBERON_0000955 brain UBERON_0002958 medial lemniscus of pons +UBERON_0000955 brain UBERON_0002959 subfascicular nucleus +UBERON_0000955 brain UBERON_0002960 central oculomotor nucleus +UBERON_0000955 brain UBERON_0002961 archicortex +UBERON_0000955 brain UBERON_0002963 caudal pontine reticular nucleus +UBERON_0000955 brain UBERON_0002964 dorsal oculomotor nucleus +UBERON_0000955 brain UBERON_0002965 rostral intralaminar nuclear group +UBERON_0000955 brain UBERON_0002967 cingulate gyrus +UBERON_0000955 brain UBERON_0002968 central gray substance of pons +UBERON_0000955 brain UBERON_0002969 inferior temporal sulcus +UBERON_0000955 brain UBERON_0002970 intermediate oculomotor nucleus +UBERON_0000955 brain UBERON_0002971 periolivary nucleus +UBERON_0000955 brain UBERON_0002972 centromedian nucleus of thalamus +UBERON_0000955 brain UBERON_0002973 parahippocampal gyrus +UBERON_0000955 brain UBERON_0002974 molecular layer of cerebellar cortex +UBERON_0000955 brain UBERON_0002975 medial oculomotor nucleus +UBERON_0000955 brain UBERON_0002976 preolivary nucleus +UBERON_0000955 brain UBERON_0002977 triangular septal nucleus +UBERON_0000955 brain UBERON_0002978 oral part of ventral lateral nucleus +UBERON_0000955 brain UBERON_0002979 Purkinje cell layer of cerebellar cortex +UBERON_0000955 brain UBERON_0002980 opercular part of inferior frontal gyrus +UBERON_0000955 brain UBERON_0002981 pulvinar nucleus +UBERON_0000955 brain UBERON_0002982 inferior pulvinar nucleus +UBERON_0000955 brain UBERON_0002983 lateral posterior nucleus of thalamus +UBERON_0000955 brain UBERON_0002984 lateral dorsal nucleus +UBERON_0000955 brain UBERON_0002985 ventral nucleus of medial geniculate body +UBERON_0000955 brain UBERON_0002987 anterior spinocerebellar tract +UBERON_0000955 brain UBERON_0002990 mammillothalamic tract of hypothalamus +UBERON_0000955 brain UBERON_0002991 supramammillary commissure +UBERON_0000955 brain UBERON_0002992 paratenial nucleus +UBERON_0000955 brain UBERON_0002993 inferior central nucleus +UBERON_0000955 brain UBERON_0002995 substantia nigra pars lateralis +UBERON_0000955 brain UBERON_0002996 nucleus of optic tract +UBERON_0000955 brain UBERON_0002997 nucleus of medial eminence +UBERON_0000955 brain UBERON_0002998 inferior frontal gyrus +UBERON_0000955 brain UBERON_0002999 oral pontine reticular nucleus +UBERON_0000955 brain UBERON_0003002 medial lemniscus +UBERON_0000955 brain UBERON_0003004 median raphe nucleus +UBERON_0000955 brain UBERON_0003005 dorsal longitudinal fasciculus of midbrain +UBERON_0000955 brain UBERON_0003006 dorsal nucleus of lateral lemniscus +UBERON_0000955 brain UBERON_0003007 lateral parabrachial nucleus +UBERON_0000955 brain UBERON_0003008 dorsal longitudinal fasciculus of hypothalamus +UBERON_0000955 brain UBERON_0003009 dorsal tegmental decussation +UBERON_0000955 brain UBERON_0003010 lateral pes lemniscus +UBERON_0000955 brain UBERON_0003011 facial motor nucleus +UBERON_0000955 brain UBERON_0003012 flocculonodular lobe +UBERON_0000955 brain UBERON_0003013 alar central lobule +UBERON_0000955 brain UBERON_0003015 anterior quadrangular lobule +UBERON_0000955 brain UBERON_0003016 postcommissural fornix of brain +UBERON_0000955 brain UBERON_0003017 substantia innominata +UBERON_0000955 brain UBERON_0003018 parvocellular part of ventral posteromedial nucleus +UBERON_0000955 brain UBERON_0003019 oral part of ventral posterolateral nucleus +UBERON_0000955 brain UBERON_0003020 subcallosal area +UBERON_0000955 brain UBERON_0003021 central lobule +UBERON_0000955 brain UBERON_0003023 pontine tegmentum +UBERON_0000955 brain UBERON_0003024 principal part of ventral posteromedial nucleus +UBERON_0000955 brain UBERON_0003025 brachium of inferior colliculus +UBERON_0000955 brain UBERON_0003026 limitans nucleus +UBERON_0000955 brain UBERON_0003027 cingulate cortex +UBERON_0000955 brain UBERON_0003028 commissure of inferior colliculus +UBERON_0000955 brain UBERON_0003029 stria terminalis +UBERON_0000955 brain UBERON_0003030 posterior nucleus of thalamus +UBERON_0000955 brain UBERON_0003031 submedial nucleus of thalamus +UBERON_0000955 brain UBERON_0003033 suprageniculate nucleus of thalamus +UBERON_0000955 brain UBERON_0003034 central dorsal nucleus of thalamus +UBERON_0000955 brain UBERON_0003036 central lateral nucleus +UBERON_0000955 brain UBERON_0003039 anterior commissure anterior part +UBERON_0000955 brain UBERON_0003040 central gray substance of midbrain +UBERON_0000955 brain UBERON_0003043 posterior part of anterior commissure +UBERON_0000955 brain UBERON_0003044 uncinate fasciculus +UBERON_0000955 brain UBERON_0003045 dorsal longitudinal fasciculus +UBERON_0000955 brain UBERON_0003046 ventral acoustic stria +UBERON_0000955 brain UBERON_0003052 midbrain-hindbrain boundary +UBERON_0000955 brain UBERON_0003053 ventricular zone +UBERON_0000955 brain UBERON_0003098 optic stalk +UBERON_0000955 brain UBERON_0003210 blood-cerebrospinal fluid barrier +UBERON_0000955 brain UBERON_0003217 neural lobe of neurohypophysis +UBERON_0000955 brain UBERON_0003288 meninx of midbrain +UBERON_0000955 brain UBERON_0003289 meninx of telencephalon +UBERON_0000955 brain UBERON_0003290 meninx of diencephalon +UBERON_0000955 brain UBERON_0003291 meninx of hindbrain +UBERON_0000955 brain UBERON_0003296 gland of diencephalon +UBERON_0000955 brain UBERON_0003299 roof plate of midbrain +UBERON_0000955 brain UBERON_0003300 roof plate of telencephalon +UBERON_0000955 brain UBERON_0003301 roof plate of diencephalon +UBERON_0000955 brain UBERON_0003302 roof plate of metencephalon +UBERON_0000955 brain UBERON_0003303 roof plate of medulla oblongata +UBERON_0000955 brain UBERON_0003307 floor plate of midbrain +UBERON_0000955 brain UBERON_0003308 floor plate of telencephalon +UBERON_0000955 brain UBERON_0003309 floor plate of diencephalon +UBERON_0000955 brain UBERON_0003310 floor plate of metencephalon +UBERON_0000955 brain UBERON_0003311 floor plate of medulla oblongata +UBERON_0000955 brain UBERON_0003499 brain blood vessel +UBERON_0000955 brain UBERON_0003528 brain gray matter +UBERON_0000955 brain UBERON_0003544 brain white matter +UBERON_0000955 brain UBERON_0003547 brain meninx +UBERON_0000955 brain UBERON_0003548 forebrain meninges +UBERON_0000955 brain UBERON_0003549 brain pia mater +UBERON_0000955 brain UBERON_0003550 forebrain pia mater +UBERON_0000955 brain UBERON_0003551 midbrain pia mater +UBERON_0000955 brain UBERON_0003552 telencephalon pia mater +UBERON_0000955 brain UBERON_0003553 diencephalon pia mater +UBERON_0000955 brain UBERON_0003554 hindbrain pia mater +UBERON_0000955 brain UBERON_0003556 forebrain arachnoid mater +UBERON_0000955 brain UBERON_0003557 midbrain arachnoid mater +UBERON_0000955 brain UBERON_0003558 diencephalon arachnoid mater +UBERON_0000955 brain UBERON_0003559 hindbrain arachnoid mater +UBERON_0000955 brain UBERON_0003561 forebrain dura mater +UBERON_0000955 brain UBERON_0003562 midbrain dura mater +UBERON_0000955 brain UBERON_0003563 telencephalon dura mater +UBERON_0000955 brain UBERON_0003564 diencephalon dura mater +UBERON_0000955 brain UBERON_0003565 hindbrain dura mater +UBERON_0000955 brain UBERON_0003876 hippocampal field +UBERON_0000955 brain UBERON_0003881 CA1 field of hippocampus +UBERON_0000955 brain UBERON_0003882 CA2 field of hippocampus +UBERON_0000955 brain UBERON_0003883 CA3 field of hippocampus +UBERON_0000955 brain UBERON_0003884 CA4 field of hippocampus +UBERON_0000955 brain UBERON_0003911 choroid plexus epithelium +UBERON_0000955 brain UBERON_0003931 diencephalic white matter +UBERON_0000955 brain UBERON_0003936 postoptic commissure +UBERON_0000955 brain UBERON_0003938 sensory dissociation area +UBERON_0000955 brain UBERON_0003939 transverse gyrus of Heschl +UBERON_0000955 brain UBERON_0003941 cerebellum anterior vermis +UBERON_0000955 brain UBERON_0003947 brain ventricle/choroid plexus +UBERON_0000955 brain UBERON_0003961 cingulum of brain +UBERON_0000955 brain UBERON_0003980 cerebellum fissure +UBERON_0000955 brain UBERON_0003989 medulla oblongata anterior median fissure +UBERON_0000955 brain UBERON_0003991 fourth ventricle median aperture +UBERON_0000955 brain UBERON_0003992 fourth ventricle lateral aperture +UBERON_0000955 brain UBERON_0004001 olfactory bulb layer +UBERON_0000955 brain UBERON_0004002 posterior lobe of cerebellum +UBERON_0000955 brain UBERON_0004003 cerebellum hemisphere lobule +UBERON_0000955 brain UBERON_0004004 cerebellum lobule +UBERON_0000955 brain UBERON_0004006 cerebellum intermediate zone +UBERON_0000955 brain UBERON_0004008 cerebellar plate +UBERON_0000955 brain UBERON_0004009 cerebellum posterior vermis +UBERON_0000955 brain UBERON_0004035 cortical subplate +UBERON_0000955 brain UBERON_0004040 cortical intermediate zone +UBERON_0000955 brain UBERON_0004048 pontine cistern +UBERON_0000955 brain UBERON_0004069 accessory olfactory bulb +UBERON_0000955 brain UBERON_0004070 cerebellum vermis lobule +UBERON_0000955 brain UBERON_0004073 cerebellum interpositus nucleus +UBERON_0000955 brain UBERON_0004074 cerebellum vermis lobule I +UBERON_0000955 brain UBERON_0004075 cerebellum vermis lobule II +UBERON_0000955 brain UBERON_0004076 cerebellum vermis lobule III +UBERON_0000955 brain UBERON_0004077 cerebellum vermis lobule IV +UBERON_0000955 brain UBERON_0004078 cerebellum vermis lobule IX +UBERON_0000955 brain UBERON_0004079 cerebellum vermis lobule V +UBERON_0000955 brain UBERON_0004080 cerebellum vermis lobule VI +UBERON_0000955 brain UBERON_0004081 cerebellum vermis lobule VII +UBERON_0000955 brain UBERON_0004082 cerebellum vermis lobule VIII +UBERON_0000955 brain UBERON_0004083 cerebellum vermis lobule X +UBERON_0000955 brain UBERON_0004086 brain ventricle +UBERON_0000955 brain UBERON_0004130 cerebellar layer +UBERON_0000955 brain UBERON_0004132 trigeminal sensory nucleus +UBERON_0000955 brain UBERON_0004133 salivatory nucleus +UBERON_0000955 brain UBERON_0004166 superior reticular formation +UBERON_0000955 brain UBERON_0004167 orbitofrontal cortex +UBERON_0000955 brain UBERON_0004186 olfactory bulb mitral cell layer +UBERON_0000955 brain UBERON_0004274 lateral ventricle choroid plexus epithelium +UBERON_0000955 brain UBERON_0004275 third ventricle choroid plexus epithelium +UBERON_0000955 brain UBERON_0004276 fourth ventricle choroid plexus epithelium +UBERON_0000955 brain UBERON_0004545 external capsule of telencephalon +UBERON_0000955 brain UBERON_0004642 third ventricle ependyma +UBERON_0000955 brain UBERON_0004643 lateral ventricle ependyma +UBERON_0000955 brain UBERON_0004644 fourth ventricle ependyma +UBERON_0000955 brain UBERON_0004668 fourth ventricle aperture +UBERON_0000955 brain UBERON_0004671 gyrus rectus +UBERON_0000955 brain UBERON_0004672 posterior horn lateral ventricle +UBERON_0000955 brain UBERON_0004673 trigeminal nerve root +UBERON_0000955 brain UBERON_0004674 facial nerve root +UBERON_0000955 brain UBERON_0004675 hypoglossal nerve root +UBERON_0000955 brain UBERON_0004679 dentate gyrus molecular layer +UBERON_0000955 brain UBERON_0004680 body of fornix +UBERON_0000955 brain UBERON_0004682 corona radiata of neuraxis +UBERON_0000955 brain UBERON_0004683 parasubiculum +UBERON_0000955 brain UBERON_0004684 raphe nuclei +UBERON_0000955 brain UBERON_0004703 dorsal thalamus +UBERON_0000955 brain UBERON_0004714 septum pellucidum +UBERON_0000955 brain UBERON_0004717 Brodmann (1909) area 29 +UBERON_0000955 brain UBERON_0004718 Brodmann (1909) area 26 +UBERON_0000955 brain UBERON_0004720 cerebellar vermis +UBERON_0000955 brain UBERON_0004725 piriform cortex +UBERON_0000955 brain UBERON_0004733 segmental subdivision of hindbrain +UBERON_0000955 brain UBERON_0004869 parietal organ +UBERON_0000955 brain UBERON_0004922 postnatal subventricular zone +UBERON_0000955 brain UBERON_0005075 forebrain-midbrain boundary +UBERON_0000955 brain UBERON_0005159 pyramid of medulla oblongata +UBERON_0000955 brain UBERON_0005206 choroid plexus stroma +UBERON_0000955 brain UBERON_0005217 midbrain subarachnoid space +UBERON_0000955 brain UBERON_0005218 diencephalon subarachnoid space +UBERON_0000955 brain UBERON_0005219 hindbrain subarachnoid space +UBERON_0000955 brain UBERON_0005282 ventricular system of brain +UBERON_0000955 brain UBERON_0005286 tela choroidea of midbrain cerebral aqueduct +UBERON_0000955 brain UBERON_0005287 tela choroidea of fourth ventricle +UBERON_0000955 brain UBERON_0005288 tela choroidea of third ventricle +UBERON_0000955 brain UBERON_0005289 tela choroidea of telencephalic ventricle +UBERON_0000955 brain UBERON_0005290 myelencephalon +UBERON_0000955 brain UBERON_0005293 cerebellum lobe +UBERON_0000955 brain UBERON_0005340 dorsal telencephalic commissure +UBERON_0000955 brain UBERON_0005341 ventral commissure +UBERON_0000955 brain UBERON_0005343 cortical plate +UBERON_0000955 brain UBERON_0005345 cerebellum vermis lobule VIIA +UBERON_0000955 brain UBERON_0005346 cerebellum vermis lobule VIIB +UBERON_0000955 brain UBERON_0005347 copula pyramidis +UBERON_0000955 brain UBERON_0005348 ansiform lobule +UBERON_0000955 brain UBERON_0005349 paramedian lobule +UBERON_0000955 brain UBERON_0005350 lobule simplex +UBERON_0000955 brain UBERON_0005351 paraflocculus +UBERON_0000955 brain UBERON_0005357 brain ependyma +UBERON_0000955 brain UBERON_0005366 olfactory lobe +UBERON_0000955 brain UBERON_0005367 hippocampus granule cell layer +UBERON_0000955 brain UBERON_0005368 hippocampus molecular layer +UBERON_0000955 brain UBERON_0005370 hippocampus stratum lacunosum +UBERON_0000955 brain UBERON_0005371 hippocampus stratum oriens +UBERON_0000955 brain UBERON_0005372 hippocampus stratum radiatum +UBERON_0000955 brain UBERON_0005376 olfactory bulb external plexiform layer +UBERON_0000955 brain UBERON_0005377 olfactory bulb glomerular layer +UBERON_0000955 brain UBERON_0005378 olfactory bulb granule cell layer +UBERON_0000955 brain UBERON_0005379 olfactory bulb internal plexiform layer +UBERON_0000955 brain UBERON_0005380 olfactory bulb subependymal zone +UBERON_0000955 brain UBERON_0005381 dentate gyrus granule cell layer +UBERON_0000955 brain UBERON_0005382 dorsal striatum +UBERON_0000955 brain UBERON_0005383 caudate-putamen +UBERON_0000955 brain UBERON_0005387 olfactory glomerulus +UBERON_0000955 brain UBERON_0005390 cortical layer I +UBERON_0000955 brain UBERON_0005391 cortical layer II +UBERON_0000955 brain UBERON_0005392 cortical layer III +UBERON_0000955 brain UBERON_0005393 cortical layer IV +UBERON_0000955 brain UBERON_0005394 cortical layer V +UBERON_0000955 brain UBERON_0005395 cortical layer VI +UBERON_0000955 brain UBERON_0005397 brain arachnoid mater +UBERON_0000955 brain UBERON_0005400 telencephalon arachnoid mater +UBERON_0000955 brain UBERON_0005401 cerebral hemisphere gray matter +UBERON_0000955 brain UBERON_0005403 ventral striatum +UBERON_0000955 brain UBERON_0005408 circumventricular organ +UBERON_0000955 brain UBERON_0005495 midbrain lateral wall +UBERON_0000955 brain UBERON_0005561 telencephalon lateral wall +UBERON_0000955 brain UBERON_0005591 diencephalon lateral wall +UBERON_0000955 brain UBERON_0005720 hindbrain venous system +UBERON_0000955 brain UBERON_0005807 rostral ventrolateral medulla +UBERON_0000955 brain UBERON_0005838 fasciculus of brain +UBERON_0000955 brain UBERON_0005970 brain commissure +UBERON_0000955 brain UBERON_0005976 ansiform lobule crus I +UBERON_0000955 brain UBERON_0005977 ansiform lobule crus II +UBERON_0000955 brain UBERON_0005978 olfactory bulb outer nerve layer +UBERON_0000955 brain UBERON_0006007 pre-Botzinger complex +UBERON_0000955 brain UBERON_0006083 perirhinal cortex +UBERON_0000955 brain UBERON_0006086 stria medullaris +UBERON_0000955 brain UBERON_0006087 internal arcuate fiber bundle +UBERON_0000955 brain UBERON_0006088 inferior parietal cortex +UBERON_0000955 brain UBERON_0006089 dorsal external arcuate fiber bundle +UBERON_0000955 brain UBERON_0006090 glossopharyngeal nerve fiber bundle +UBERON_0000955 brain UBERON_0006091 inferior horn of the lateral ventricle +UBERON_0000955 brain UBERON_0006092 cuneus cortex +UBERON_0000955 brain UBERON_0006093 precuneus cortex +UBERON_0000955 brain UBERON_0006094 superior parietal cortex +UBERON_0000955 brain UBERON_0006095 anterior transverse temporal area 41 +UBERON_0000955 brain UBERON_0006096 posterior transverse temporal area 42 +UBERON_0000955 brain UBERON_0006097 ventral external arcuate fiber bundle +UBERON_0000955 brain UBERON_0006098 basal nuclear complex +UBERON_0000955 brain UBERON_0006099 Brodmann (1909) area 1 +UBERON_0000955 brain UBERON_0006100 Brodmann (1909) area 3 +UBERON_0000955 brain UBERON_0006101 Brodmann (1909) area 24 +UBERON_0000955 brain UBERON_0006102 Brodmann (1909) area 35 +UBERON_0000955 brain UBERON_0006104 Brodmann (1909) area 36 +UBERON_0000955 brain UBERON_0006107 basolateral amygdaloid nuclear complex +UBERON_0000955 brain UBERON_0006108 corticomedial nuclear complex +UBERON_0000955 brain UBERON_0006114 lateral occipital cortex +UBERON_0000955 brain UBERON_0006115 posterior column of fornix +UBERON_0000955 brain UBERON_0006116 vagal nerve fiber bundle +UBERON_0000955 brain UBERON_0006117 accessory nerve fiber bundle +UBERON_0000955 brain UBERON_0006119 subbrachial nucleus +UBERON_0000955 brain UBERON_0006120 superior colliculus superficial gray layer +UBERON_0000955 brain UBERON_0006121 hemispheric lobule VIII +UBERON_0000955 brain UBERON_0006123 horizontal limb of the diagonal band +UBERON_0000955 brain UBERON_0006124 vertical limb of the diagonal band +UBERON_0000955 brain UBERON_0006125 subdivision of diagonal band +UBERON_0000955 brain UBERON_0006215 rhombic lip +UBERON_0000955 brain UBERON_0006220 diencephalic part of interventricular foramen +UBERON_0000955 brain UBERON_0006250 infundibular recess of 3rd ventricle +UBERON_0000955 brain UBERON_0006301 telencephalic part of interventricular foramen +UBERON_0000955 brain UBERON_0006331 brainstem nucleus +UBERON_0000955 brain UBERON_0006338 lateral ventricle choroid plexus stroma +UBERON_0000955 brain UBERON_0006339 third ventricle choroid plexus stroma +UBERON_0000955 brain UBERON_0006340 fourth ventricle choroid plexus stroma +UBERON_0000955 brain UBERON_0006377 remnant of Rathke's pouch +UBERON_0000955 brain UBERON_0006445 caudal middle frontal gyrus +UBERON_0000955 brain UBERON_0006446 rostral middle frontal gyrus +UBERON_0000955 brain UBERON_0006471 Brodmann (1909) area 5 +UBERON_0000955 brain UBERON_0006472 Brodmann (1909) area 6 +UBERON_0000955 brain UBERON_0006473 Brodmann (1909) area 18 +UBERON_0000955 brain UBERON_0006474 Brodmann (1909) area 30 +UBERON_0000955 brain UBERON_0006475 Brodmann (1909) area 31 +UBERON_0000955 brain UBERON_0006476 Brodmann (1909) area 33 +UBERON_0000955 brain UBERON_0006477 Brodmann (1909) area 34 +UBERON_0000955 brain UBERON_0006478 Brodmann (1909) area 37 +UBERON_0000955 brain UBERON_0006479 Brodmann (1909) area 38 +UBERON_0000955 brain UBERON_0006480 Brodmann (1909) area 39 +UBERON_0000955 brain UBERON_0006481 Brodmann (1909) area 44 +UBERON_0000955 brain UBERON_0006482 Brodmann (1909) area 45 +UBERON_0000955 brain UBERON_0006483 Brodmann (1909) area 46 +UBERON_0000955 brain UBERON_0006484 Brodmann (1909) area 47 +UBERON_0000955 brain UBERON_0006485 Brodmann (1909) area 48 +UBERON_0000955 brain UBERON_0006486 Brodmann (1909) area 52 +UBERON_0000955 brain UBERON_0006487 Hadjikhani et al. (1998) visuotopic area V2d +UBERON_0000955 brain UBERON_0006514 pallidum +UBERON_0000955 brain UBERON_0006516 dorsal pallidum +UBERON_0000955 brain UBERON_0006568 hypothalamic nucleus +UBERON_0000955 brain UBERON_0006569 diencephalic nucleus +UBERON_0000955 brain UBERON_0006666 great cerebral vein +UBERON_0000955 brain UBERON_0006694 cerebellum vasculature +UBERON_0000955 brain UBERON_0006695 mammillary axonal complex +UBERON_0000955 brain UBERON_0006696 mammillothalamic axonal tract +UBERON_0000955 brain UBERON_0006697 mammillotectal axonal tract +UBERON_0000955 brain UBERON_0006698 mammillotegmental axonal tract +UBERON_0000955 brain UBERON_0006743 paleodentate of dentate nucleus +UBERON_0000955 brain UBERON_0006779 superficial white layer of superior colliculus +UBERON_0000955 brain UBERON_0006780 zonal layer of superior colliculus +UBERON_0000955 brain UBERON_0006782 stratum lemnisci of superior colliculus +UBERON_0000955 brain UBERON_0006783 layer of superior colliculus +UBERON_0000955 brain UBERON_0006785 gray matter layer of superior colliculus +UBERON_0000955 brain UBERON_0006786 white matter of superior colliculus +UBERON_0000955 brain UBERON_0006787 middle white layer of superior colliculus +UBERON_0000955 brain UBERON_0006788 middle gray layer of superior colliculus +UBERON_0000955 brain UBERON_0006789 deep gray layer of superior colliculus +UBERON_0000955 brain UBERON_0006790 deep white layer of superior colliculus +UBERON_0000955 brain UBERON_0006791 superficial layer of superior colliculus +UBERON_0000955 brain UBERON_0006792 intermediate layer of superior colliculus +UBERON_0000955 brain UBERON_0006793 deep layer of superior colliculus +UBERON_0000955 brain UBERON_0006795 arthropod optic lobe +UBERON_0000955 brain UBERON_0006796 cephalopod optic lobe +UBERON_0000955 brain UBERON_0006840 nucleus of lateral lemniscus +UBERON_0000955 brain UBERON_0006848 posterior pretectal nucleus +UBERON_0000955 brain UBERON_0006964 pars distalis of adenohypophysis +UBERON_0000955 brain UBERON_0007190 paracentral gyrus +UBERON_0000955 brain UBERON_0007191 anterior paracentral gyrus +UBERON_0000955 brain UBERON_0007192 posterior paracentral gyrus +UBERON_0000955 brain UBERON_0007193 orbital gyrus +UBERON_0000955 brain UBERON_0007224 medial entorhinal cortex +UBERON_0000955 brain UBERON_0007225 lateral entorhinal cortex +UBERON_0000955 brain UBERON_0007227 superior vestibular nucleus +UBERON_0000955 brain UBERON_0007228 vestibular nucleus +UBERON_0000955 brain UBERON_0007230 lateral vestibular nucleus +UBERON_0000955 brain UBERON_0007244 inferior olivary nucleus +UBERON_0000955 brain UBERON_0007247 nucleus of superior olivary complex +UBERON_0000955 brain UBERON_0007249 dorsal accessory inferior olivary nucleus +UBERON_0000955 brain UBERON_0007251 preoptic nucleus +UBERON_0000955 brain UBERON_0007299 choroid plexus of tectal ventricle +UBERON_0000955 brain UBERON_0007334 nidopallium +UBERON_0000955 brain UBERON_0007347 hyperpallium +UBERON_0000955 brain UBERON_0007349 mesopallium +UBERON_0000955 brain UBERON_0007350 arcopallium +UBERON_0000955 brain UBERON_0007351 nucleus isthmo-opticus +UBERON_0000955 brain UBERON_0007412 midbrain raphe nuclei +UBERON_0000955 brain UBERON_0007413 nucleus of pontine reticular formation +UBERON_0000955 brain UBERON_0007415 nucleus of midbrain reticular formation +UBERON_0000955 brain UBERON_0007416 cerebellar peduncle +UBERON_0000955 brain UBERON_0007425 decussation of diencephalon +UBERON_0000955 brain UBERON_0007626 subparaventricular zone +UBERON_0000955 brain UBERON_0007627 magnocellular nucleus of stria terminalis +UBERON_0000955 brain UBERON_0007628 lateral septal complex +UBERON_0000955 brain UBERON_0007629 medial septal complex +UBERON_0000955 brain UBERON_0007630 septohippocampal nucleus +UBERON_0000955 brain UBERON_0007631 accessory olfactory bulb glomerular layer +UBERON_0000955 brain UBERON_0007632 Barrington's nucleus +UBERON_0000955 brain UBERON_0007633 nucleus of trapezoid body +UBERON_0000955 brain UBERON_0007634 parabrachial nucleus +UBERON_0000955 brain UBERON_0007635 nucleus of medulla oblongata +UBERON_0000955 brain UBERON_0007637 hippocampus stratum lucidum +UBERON_0000955 brain UBERON_0007639 hippocampus alveus +UBERON_0000955 brain UBERON_0007640 hippocampus stratum lacunosum moleculare +UBERON_0000955 brain UBERON_0007656 lateral recess of fourth ventricle +UBERON_0000955 brain UBERON_0007692 nucleus of thalamus +UBERON_0000955 brain UBERON_0007702 tract of brain +UBERON_0000955 brain UBERON_0007703 spinothalamic tract +UBERON_0000955 brain UBERON_0007707 superior cerebellar peduncle of midbrain +UBERON_0000955 brain UBERON_0007709 superior cerebellar peduncle of pons +UBERON_0000955 brain UBERON_0007710 intermediate nucleus of lateral lemniscus +UBERON_0000955 brain UBERON_0007763 cerebellum vermis culmen +UBERON_0000955 brain UBERON_0007764 paramedian reticular nucleus +UBERON_0000955 brain UBERON_0007767 dorsal premammillary nucleus +UBERON_0000955 brain UBERON_0007768 ventral premammillary nucleus +UBERON_0000955 brain UBERON_0007769 medial preoptic region +UBERON_0000955 brain UBERON_0008333 hilum of inferior olivary complex +UBERON_0000955 brain UBERON_0008334 subarachnoid sulcus +UBERON_0000955 brain UBERON_0008335 ventrolateral sulcus of medulla oblongata +UBERON_0000955 brain UBERON_0008823 neural tube derived brain +UBERON_0000955 brain UBERON_0008829 cerebellum external granule cell layer +UBERON_0000955 brain UBERON_0008830 cerebellum internal granule cell layer +UBERON_0000955 brain UBERON_0008881 rostral migratory stream +UBERON_0000955 brain UBERON_0008884 left putamen +UBERON_0000955 brain UBERON_0008885 right putamen +UBERON_0000955 brain UBERON_0008902 lateral recess of third ventricle +UBERON_0000955 brain UBERON_0008930 somatosensory cortex +UBERON_0000955 brain UBERON_0008933 primary somatosensory cortex +UBERON_0000955 brain UBERON_0008934 secondary somatosensory cortex +UBERON_0000955 brain UBERON_0008967 centrum semiovale +UBERON_0000955 brain UBERON_0008993 habenular nucleus +UBERON_0000955 brain UBERON_0008995 nucleus of cerebellar nuclear complex +UBERON_0000955 brain UBERON_0008998 vasculature of brain +UBERON_0000955 brain UBERON_0009050 nucleus of solitary tract +UBERON_0000955 brain UBERON_0009051 gelatinous nucleus of solitary tract +UBERON_0000955 brain UBERON_0009052 medial nucleus of solitary tract +UBERON_0000955 brain UBERON_0009053 dorsal nucleus of trapezoid body +UBERON_0000955 brain UBERON_0009573 sulcus limitans of fourth ventricle +UBERON_0000955 brain UBERON_0009576 medulla oblongata sulcus limitans +UBERON_0000955 brain UBERON_0009577 metencephalon sulcus limitans +UBERON_0000955 brain UBERON_0009578 myelencephalon sulcus limitans +UBERON_0000955 brain UBERON_0009641 ansa lenticularis +UBERON_0000955 brain UBERON_0009643 central tegmental tract +UBERON_0000955 brain UBERON_0009661 midbrain nucleus +UBERON_0000955 brain UBERON_0009662 hindbrain nucleus +UBERON_0000955 brain UBERON_0009663 telencephalic nucleus +UBERON_0000955 brain UBERON_0009676 early telencephalic vesicle +UBERON_0000955 brain UBERON_0009775 lateral medullary reticular complex +UBERON_0000955 brain UBERON_0009776 intermediate reticular formation +UBERON_0000955 brain UBERON_0009777 intermediate reticular nucleus +UBERON_0000955 brain UBERON_0009834 dorsolateral prefrontal cortex +UBERON_0000955 brain UBERON_0009835 anterior cingulate cortex +UBERON_0000955 brain UBERON_0009836 fronto-orbital gyrus +UBERON_0000955 brain UBERON_0009840 lower rhombic lip +UBERON_0000955 brain UBERON_0009841 upper rhombic lip +UBERON_0000955 brain UBERON_0009848 zona limitans intrathalamica +UBERON_0000955 brain UBERON_0009857 cavum septum pellucidum +UBERON_0000955 brain UBERON_0009897 right auditory cortex +UBERON_0000955 brain UBERON_0009898 left auditory cortex +UBERON_0000955 brain UBERON_0009899 pole of cerebral hemisphere +UBERON_0000955 brain UBERON_0009907 sensory root of trigeminal nerve +UBERON_0000955 brain UBERON_0009908 caudal root of abducens nerve +UBERON_0000955 brain UBERON_0009909 rostral root of abducens nerve +UBERON_0000955 brain UBERON_0009918 retrotrapezoid nucleus +UBERON_0000955 brain UBERON_0009950 olfactory bulb plexiform layer +UBERON_0000955 brain UBERON_0009951 main olfactory bulb +UBERON_0000955 brain UBERON_0009952 dentate gyrus subgranular zone +UBERON_0000955 brain UBERON_0009975 remnant of lumen of Rathke's pouch +UBERON_0000955 brain UBERON_0010009 aggregate regional part of brain +UBERON_0000955 brain UBERON_0010010 basal nucleus of telencephalon +UBERON_0000955 brain UBERON_0010011 collection of basal ganglia +UBERON_0000955 brain UBERON_0010036 anterior tegmental nucleus +UBERON_0000955 brain UBERON_0010091 future hindbrain meninx +UBERON_0000955 brain UBERON_0010092 future metencephalon +UBERON_0000955 brain UBERON_0010096 future myelencephalon +UBERON_0000955 brain UBERON_0010134 secretory circumventricular organ +UBERON_0000955 brain UBERON_0010135 sensory circumventricular organ +UBERON_0000955 brain UBERON_0010225 thalamic complex +UBERON_0000955 brain UBERON_0010262 operculum of brain +UBERON_0000955 brain UBERON_0010287 motor root of facial nerve +UBERON_0000955 brain UBERON_0010403 brain marginal zone +UBERON_0000955 brain UBERON_0010404 lateral ventricle subependymal layer +UBERON_0000955 brain UBERON_0010415 barrel cortex +UBERON_0000955 brain UBERON_0010505 periosteal dura mater +UBERON_0000955 brain UBERON_0011172 retrorubral area of midbrain reticular nucleus +UBERON_0000955 brain UBERON_0011173 anterior division of bed nuclei of stria terminalis +UBERON_0000955 brain UBERON_0011175 fusiform nucleus of stria terminalis +UBERON_0000955 brain UBERON_0011176 oval nucleus of stria terminalis +UBERON_0000955 brain UBERON_0011177 posterior division of bed nuclei of stria terminalis +UBERON_0000955 brain UBERON_0011178 principal nucleus of stria terminalis +UBERON_0000955 brain UBERON_0011179 transverse nucleus of stria terminalis +UBERON_0000955 brain UBERON_0011214 nucleus of midbrain tectum +UBERON_0000955 brain UBERON_0011299 white matter of telencephalon +UBERON_0000955 brain UBERON_0011300 gray matter of telencephalon +UBERON_0000955 brain UBERON_0011590 commissure of diencephalon +UBERON_0000955 brain UBERON_0011591 tract of diencephalon +UBERON_0000955 brain UBERON_0011768 pineal gland stalk +UBERON_0000955 brain UBERON_0011775 vagus nerve nucleus +UBERON_0000955 brain UBERON_0011778 motor nucleus of vagal nerve +UBERON_0000955 brain UBERON_0011915 cerebellar glomerulus +UBERON_0000955 brain UBERON_0011917 thalamic glomerulus +UBERON_0000955 brain UBERON_0012170 core of nucleus accumbens +UBERON_0000955 brain UBERON_0012171 shell of nucleus accumbens +UBERON_0000955 brain UBERON_0013118 sulcus of brain +UBERON_0000955 brain UBERON_0013146 venous system of brain +UBERON_0000955 brain UBERON_0013148 early midbrain vesicle +UBERON_0000955 brain UBERON_0013159 epithalamus mantle layer +UBERON_0000955 brain UBERON_0013160 epithalamus ventricular layer +UBERON_0000955 brain UBERON_0013161 left lateral ventricle +UBERON_0000955 brain UBERON_0013162 right lateral ventricle +UBERON_0000955 brain UBERON_0013166 vallecula of cerebellum +UBERON_0000955 brain UBERON_0013201 olfactory pathway +UBERON_0000955 brain UBERON_0013528 Brodmann (1909) area 11 +UBERON_0000955 brain UBERON_0013529 Brodmann area +UBERON_0000955 brain UBERON_0013531 retrosplenial region +UBERON_0000955 brain UBERON_0013533 Brodmann (1909) area 2 +UBERON_0000955 brain UBERON_0013535 Brodmann (1909) area 4 +UBERON_0000955 brain UBERON_0013538 Brodmann (1909) area 7 +UBERON_0000955 brain UBERON_0013539 Brodmann (1909) area 8 +UBERON_0000955 brain UBERON_0013540 Brodmann (1909) area 9 +UBERON_0000955 brain UBERON_0013541 Brodmann (1909) area 10 +UBERON_0000955 brain UBERON_0013543 Brodmann (1909) area 12 +UBERON_0000955 brain UBERON_0013544 Brodmann (1909) area 13 +UBERON_0000955 brain UBERON_0013545 Brodmann (1909) area 14 +UBERON_0000955 brain UBERON_0013546 Brodmann (1909) area 15 +UBERON_0000955 brain UBERON_0013547 Brodmann (1909) area 16 +UBERON_0000955 brain UBERON_0013550 Brodmann (1909) area 19 +UBERON_0000955 brain UBERON_0013551 Brodmann (1909) area 20 +UBERON_0000955 brain UBERON_0013552 Brodmann (1909) area 21 +UBERON_0000955 brain UBERON_0013553 Brodmann (1909) area 22 +UBERON_0000955 brain UBERON_0013554 Brodmann (1909) area 23 +UBERON_0000955 brain UBERON_0013556 Brodmann (1909) area 25 +UBERON_0000955 brain UBERON_0013558 Brodmann (1909) area 27 +UBERON_0000955 brain UBERON_0013559 Brodmann (1909) area 28 +UBERON_0000955 brain UBERON_0013560 Brodmann (1909) area 32 +UBERON_0000955 brain UBERON_0013561 Brodmann (1909) area 43 +UBERON_0000955 brain UBERON_0013562 Brodmann (1909) area 8a +UBERON_0000955 brain UBERON_0013573 Brodmann (1909) area 40 +UBERON_0000955 brain UBERON_0013589 koniocortex +UBERON_0000955 brain UBERON_0013590 cruciate sulcus +UBERON_0000955 brain UBERON_0013591 postsylvian sulcus +UBERON_0000955 brain UBERON_0013592 presylvian sulcus +UBERON_0000955 brain UBERON_0013593 suprasylvian sulcus +UBERON_0000955 brain UBERON_0013594 ectosylvian sulcus +UBERON_0000955 brain UBERON_0013595 postlateral sulcus +UBERON_0000955 brain UBERON_0013596 brain coronal sulcus +UBERON_0000955 brain UBERON_0013598 accessory nucleus of optic tract +UBERON_0000955 brain UBERON_0013599 dorsal accessory nucleus of optic tract +UBERON_0000955 brain UBERON_0013600 lateral accessory nucleus of optic tract +UBERON_0000955 brain UBERON_0013601 medial accessory nucleus of optic tract +UBERON_0000955 brain UBERON_0013605 layer of lateral geniculate body +UBERON_0000955 brain UBERON_0013606 magnocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0000955 brain UBERON_0013607 parvocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0000955 brain UBERON_0013608 inferior olive dorsal accessory nucleus +UBERON_0000955 brain UBERON_0013609 inferior olive medial accessory nucleus +UBERON_0000955 brain UBERON_0013610 inferior olive ventral accessory nucleus +UBERON_0000955 brain UBERON_0013614 fasciculus aberans +UBERON_0000955 brain UBERON_0013615 koniocellular layer of dorsal nucleus of lateral geniculate body +UBERON_0000955 brain UBERON_0013683 left dorsal thalamus +UBERON_0000955 brain UBERON_0013684 right dorsal thalamus +UBERON_0000955 brain UBERON_0013693 cerebral cortex neuropil +UBERON_0000955 brain UBERON_0013694 brain endothelium +UBERON_0000955 brain UBERON_0013733 caudal linear nucleus +UBERON_0000955 brain UBERON_0013734 rostral linear nucleus +UBERON_0000955 brain UBERON_0013736 interfascicular linear nucleus +UBERON_0000955 brain UBERON_0013737 paranigral nucleus +UBERON_0000955 brain UBERON_0013738 parabrachial pigmental nucleus +UBERON_0000955 brain UBERON_0014169 nigrostriatal tract +UBERON_0000955 brain UBERON_0014277 piriform cortex layer 1 +UBERON_0000955 brain UBERON_0014280 piriform cortex layer 2 +UBERON_0000955 brain UBERON_0014283 piriform cortex layer 3 +UBERON_0000955 brain UBERON_0014284 endopiriform nucleus +UBERON_0000955 brain UBERON_0014286 dorsal cap of Kooy +UBERON_0000955 brain UBERON_0014287 medial accessory olive +UBERON_0000955 brain UBERON_0014370 extrastriate cortex +UBERON_0000955 brain UBERON_0014450 pretectal nucleus +UBERON_0000955 brain UBERON_0014468 ansoparamedian fissure of cerebellum +UBERON_0000955 brain UBERON_0014471 primary fissure of cerebellum +UBERON_0000955 brain UBERON_0014473 precentral fissure of cerebellum +UBERON_0000955 brain UBERON_0014474 postcentral fissure of cerebellum +UBERON_0000955 brain UBERON_0014521 anterodorsal nucleus of medial geniculate body +UBERON_0000955 brain UBERON_0014522 dorsolateral oculomotor nucleus +UBERON_0000955 brain UBERON_0014523 oculomotor division of oculomotor nuclear complex +UBERON_0000955 brain UBERON_0014524 electromotor division of oculomotor nuclear complex +UBERON_0000955 brain UBERON_0014525 limb of internal capsule of telencephalon +UBERON_0000955 brain UBERON_0014526 anterior limb of internal capsule +UBERON_0000955 brain UBERON_0014527 posterior limb of internal capsule +UBERON_0000955 brain UBERON_0014528 extreme capsule +UBERON_0000955 brain UBERON_0014529 lenticular fasciculus +UBERON_0000955 brain UBERON_0014531 white matter lamina of diencephalon +UBERON_0000955 brain UBERON_0014532 white matter lamina of cerebral hemisphere +UBERON_0000955 brain UBERON_0014533 medullary lamina of thalamus +UBERON_0000955 brain UBERON_0014534 external medullary lamina of thalamus +UBERON_0000955 brain UBERON_0014537 periamygdaloid cortex +UBERON_0000955 brain UBERON_0014539 precommissural fornix of forebrain +UBERON_0000955 brain UBERON_0014540 white matter lamina of cerebellum +UBERON_0000955 brain UBERON_0014544 frontomarginal sulcus +UBERON_0000955 brain UBERON_0014548 pyramidal layer of CA1 +UBERON_0000955 brain UBERON_0014549 pyramidal layer of CA2 +UBERON_0000955 brain UBERON_0014550 pyramidal layer of CA3 +UBERON_0000955 brain UBERON_0014551 CA2 stratum oriens +UBERON_0000955 brain UBERON_0014552 CA1 stratum oriens +UBERON_0000955 brain UBERON_0014553 CA3 stratum oriens +UBERON_0000955 brain UBERON_0014554 CA1 stratum radiatum +UBERON_0000955 brain UBERON_0014555 CA2 stratum radiatum +UBERON_0000955 brain UBERON_0014556 CA3 stratum radiatum +UBERON_0000955 brain UBERON_0014557 CA1 stratum lacunosum moleculare +UBERON_0000955 brain UBERON_0014558 CA2 stratum lacunosum moleculare +UBERON_0000955 brain UBERON_0014559 CA3 stratum lacunosum moleculare +UBERON_0000955 brain UBERON_0014560 CA3 stratum lucidum +UBERON_0000955 brain UBERON_0014567 layer of hippocampal field +UBERON_0000955 brain UBERON_0014568 dorsal tegmental nucleus pars dorsalis +UBERON_0000955 brain UBERON_0014569 dorsal tegmental nucleus pars ventralis +UBERON_0000955 brain UBERON_0014570 CA1 alveus +UBERON_0000955 brain UBERON_0014571 CA3 alveus +UBERON_0000955 brain UBERON_0014589 anterior nucleus of hypothalamus anterior part +UBERON_0000955 brain UBERON_0014590 anterior nucleus of hypothalamus central part +UBERON_0000955 brain UBERON_0014591 anterior nucleus of hypothalamus posterior part +UBERON_0000955 brain UBERON_0014592 anterior nucleus of hypothalamus dorsal part +UBERON_0000955 brain UBERON_0014593 tuberomammillary nucleus dorsal part +UBERON_0000955 brain UBERON_0014594 tuberomammillary nucleus ventral part +UBERON_0000955 brain UBERON_0014595 paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone +UBERON_0000955 brain UBERON_0014596 paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part +UBERON_0000955 brain UBERON_0014597 paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part +UBERON_0000955 brain UBERON_0014598 paraventricular nucleus of the hypothalamus descending division - forniceal part +UBERON_0000955 brain UBERON_0014599 paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part +UBERON_0000955 brain UBERON_0014600 paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part +UBERON_0000955 brain UBERON_0014601 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part +UBERON_0000955 brain UBERON_0014602 paraventricular nucleus of the hypothalamus descending division +UBERON_0000955 brain UBERON_0014603 paraventricular nucleus of the hypothalamus magnocellular division +UBERON_0000955 brain UBERON_0014604 paraventricular nucleus of the hypothalamus parvocellular division +UBERON_0000955 brain UBERON_0014605 fundus striati +UBERON_0000955 brain UBERON_0014608 inferior occipital gyrus +UBERON_0000955 brain UBERON_0014618 middle frontal sulcus +UBERON_0000955 brain UBERON_0014639 frontal sulcus +UBERON_0000955 brain UBERON_0014640 occipital gyrus +UBERON_0000955 brain UBERON_0014642 vestibulocerebellum +UBERON_0000955 brain UBERON_0014643 spinocerebellum +UBERON_0000955 brain UBERON_0014644 cerebrocerebellum +UBERON_0000955 brain UBERON_0014645 nucleus H of ventral tegmentum +UBERON_0000955 brain UBERON_0014646 nucleus K of ventral tegmentum +UBERON_0000955 brain UBERON_0014647 hemisphere part of cerebellar anterior lobe +UBERON_0000955 brain UBERON_0014648 hemisphere part of cerebellar posterior lobe +UBERON_0000955 brain UBERON_0014649 white matter of medulla oblongata +UBERON_0000955 brain UBERON_0014650 dorsal hypothalamic nucleus +UBERON_0000955 brain UBERON_0014663 nucleus recessus lateralis +UBERON_0000955 brain UBERON_0014664 nucleus recessus posterioris +UBERON_0000955 brain UBERON_0014665 nucleus preopticus +UBERON_0000955 brain UBERON_0014666 nucleus recessus preopticus +UBERON_0000955 brain UBERON_0014667 periventricular nucleus of hypothalamus +UBERON_0000955 brain UBERON_0014687 temporal sulcus +UBERON_0000955 brain UBERON_0014689 middle temporal sulcus +UBERON_0000955 brain UBERON_0014733 dorsal ventricular ridge of pallium +UBERON_0000955 brain UBERON_0014734 allocortex +UBERON_0000955 brain UBERON_0014735 paleocortex +UBERON_0000955 brain UBERON_0014736 periallocortex +UBERON_0000955 brain UBERON_0014738 medial pallium +UBERON_0000955 brain UBERON_0014740 dorsal pallium +UBERON_0000955 brain UBERON_0014741 lateral pallium +UBERON_0000955 brain UBERON_0014742 central nucleus of pallium +UBERON_0000955 brain UBERON_0014751 P1 area of pallium (Myxiniformes) +UBERON_0000955 brain UBERON_0014752 P2 area of pallium (Myxiniformes) +UBERON_0000955 brain UBERON_0014753 P3 area of pallium (Myxiniformes) +UBERON_0000955 brain UBERON_0014754 P4 area of pallium (Myxiniformes) +UBERON_0000955 brain UBERON_0014755 P5 area of pallium (Myxiniformes) +UBERON_0000955 brain UBERON_0014756 Wulst +UBERON_0000955 brain UBERON_0014757 hyperpallium apicale +UBERON_0000955 brain UBERON_0014758 interstitial part of hyperpallium apicale +UBERON_0000955 brain UBERON_0014759 entopallium +UBERON_0000955 brain UBERON_0014760 gustatory nucleus +UBERON_0000955 brain UBERON_0014761 spinal trigeminal tract +UBERON_0000955 brain UBERON_0014889 left hemisphere of cerebellum +UBERON_0000955 brain UBERON_0014890 right hemisphere of cerebellum +UBERON_0000955 brain UBERON_0014891 brainstem white matter +UBERON_0000955 brain UBERON_0014908 cerebellopontine angle +UBERON_0000955 brain UBERON_0014912 thalamic eminence +UBERON_0000955 brain UBERON_0014913 ventral pallium +UBERON_0000955 brain UBERON_0014915 genu of facial nerve +UBERON_0000955 brain UBERON_0014918 retrosplenial granular cortex +UBERON_0000955 brain UBERON_0014933 periventricular gray matter +UBERON_0000955 brain UBERON_0014935 cerebral cortex marginal layer +UBERON_0000955 brain UBERON_0014936 cerebral cortex ventricular layer +UBERON_0000955 brain UBERON_0014940 cerebral cortex subventricular zone +UBERON_0000955 brain UBERON_0014950 layer of developing cerebral cortex +UBERON_0000955 brain UBERON_0014951 proisocortex +UBERON_0000955 brain UBERON_0015117 lamina terminalis of cerebral hemisphere +UBERON_0000955 brain UBERON_0015233 nucleus of dorsal thalamus +UBERON_0000955 brain UBERON_0015234 nucleus of ventral thalamus +UBERON_0000955 brain UBERON_0015238 pineal complex +UBERON_0000955 brain UBERON_0015241 parapineal organ +UBERON_0000955 brain UBERON_0015244 accessory olfactory bulb granule cell layer +UBERON_0000955 brain UBERON_0015250 inferior olivary commissure +UBERON_0000955 brain UBERON_0015432 accessory olfactory bulb mitral cell layer +UBERON_0000955 brain UBERON_0015510 body of corpus callosum +UBERON_0000955 brain UBERON_0015593 frontal gyrus +UBERON_0000955 brain UBERON_0015599 genu of corpus callosum +UBERON_0000955 brain UBERON_0015703 rostrum of corpus callosum +UBERON_0000955 brain UBERON_0015708 splenium of the corpus callosum +UBERON_0000955 brain UBERON_0015793 induseum griseum +UBERON_0000955 brain UBERON_0015800 taenia tectum of brain +UBERON_0000955 brain UBERON_0015828 cerebellum ventricular layer +UBERON_0000955 brain UBERON_0015829 forebrain ventricular layer +UBERON_0000955 brain UBERON_0016525 frontal lobe +UBERON_0000955 brain UBERON_0016526 lobe of cerebral hemisphere +UBERON_0000955 brain UBERON_0016527 white matter of cerebral lobe +UBERON_0000955 brain UBERON_0016528 white matter of frontal lobe +UBERON_0000955 brain UBERON_0016529 cortex of cerebral lobe +UBERON_0000955 brain UBERON_0016530 parietal cortex +UBERON_0000955 brain UBERON_0016531 white matter of parietal lobe +UBERON_0000955 brain UBERON_0016534 white matter of temporal lobe +UBERON_0000955 brain UBERON_0016535 white matter of occipital lobe +UBERON_0000955 brain UBERON_0016536 white matter of limbic lobe +UBERON_0000955 brain UBERON_0016538 temporal cortex +UBERON_0000955 brain UBERON_0016540 occipital cortex +UBERON_0000955 brain UBERON_0016542 limbic cortex +UBERON_0000955 brain UBERON_0016554 white matter of midbrain +UBERON_0000955 brain UBERON_0016555 stria of telencephalon +UBERON_0000955 brain UBERON_0016559 superficial cerebral vein +UBERON_0000955 brain UBERON_0016564 deep cerebral vein +UBERON_0000955 brain UBERON_0016565 cerebral blood vessel +UBERON_0000955 brain UBERON_0016633 parvocellular reticular nucleus +UBERON_0000955 brain UBERON_0016634 premotor cortex +UBERON_0000955 brain UBERON_0016635 paragigantocellular nucleus +UBERON_0000955 brain UBERON_0016636 supplemental motor cortex +UBERON_0000955 brain UBERON_0016637 lateral periolivary nucleus +UBERON_0000955 brain UBERON_0016641 subparafascicular nucleus +UBERON_0000955 brain UBERON_0016824 lateral paragigantocellular nucleus +UBERON_0000955 brain UBERON_0016825 dorsal paragigantocellular nucleus +UBERON_0000955 brain UBERON_0016826 paramedian medullary reticular complex +UBERON_0000955 brain UBERON_0016827 dorsal paramedian reticular nucleus +UBERON_0000955 brain UBERON_0016832 paratrigeminal nucleus +UBERON_0000955 brain UBERON_0016843 lateral nucleus of trapezoid body +UBERON_0000955 brain UBERON_0016848 retroambiguus nucleus +UBERON_0000955 brain UBERON_0017631 calcified structure of brain +UBERON_0000955 brain UBERON_0017632 pineal corpora arenacea +UBERON_0000955 brain UBERON_0017633 choroid plexus corpora arenacea +UBERON_0000955 brain UBERON_0018141 anterior perforated substance +UBERON_0000955 brain UBERON_0018236 nucleus of Bischoff +UBERON_0000955 brain UBERON_0018238 dorsal column nucleus +UBERON_0000955 brain UBERON_0018262 dorsal zone of medial entorhinal cortex +UBERON_0000955 brain UBERON_0018263 ventral zone of medial entorhinal cortex +UBERON_0000955 brain UBERON_0019258 white matter of hindbrain +UBERON_0000955 brain UBERON_0019261 white matter of forebrain +UBERON_0000955 brain UBERON_0019262 white matter of myelencephalon +UBERON_0000955 brain UBERON_0019263 gray matter of hindbrain +UBERON_0000955 brain UBERON_0019264 gray matter of forebrain +UBERON_0000955 brain UBERON_0019267 gray matter of midbrain +UBERON_0000955 brain UBERON_0019269 gray matter of diencephalon +UBERON_0000955 brain UBERON_0019275 uncinate fasciculus of the forebrain +UBERON_0000955 brain UBERON_0019278 inferior rostral gyrus +UBERON_0000955 brain UBERON_0019279 superior rostral gyrus +UBERON_0000955 brain UBERON_0019280 rostral gyrus +UBERON_0000955 brain UBERON_0019283 lateral longitudinal stria +UBERON_0000955 brain UBERON_0019289 accessory olfactory bulb external plexiform layer +UBERON_0000955 brain UBERON_0019290 accessory olfactory bulb internal plexiform layer +UBERON_0000955 brain UBERON_0019291 white matter of metencephalon +UBERON_0000955 brain UBERON_0019292 white matter of pons +UBERON_0000955 brain UBERON_0019293 white matter of pontine tegmentum +UBERON_0000955 brain UBERON_0019294 commissure of telencephalon +UBERON_0000955 brain UBERON_0019295 caudal intralaminar nuclear group +UBERON_0000955 brain UBERON_0019303 occipital sulcus +UBERON_0000955 brain UBERON_0019308 septohypothalamic nucleus +UBERON_0000955 brain UBERON_0019310 glossopharyngeal nerve root +UBERON_0000955 brain UBERON_0019312 ventrolateral nucleus of solitary tract +UBERON_0000955 brain UBERON_0019314 epifascicular nucleus +UBERON_0000955 brain UBERON_0020358 accessory XI nerve nucleus +UBERON_0000955 brain UBERON_0022229 posterior amygdaloid nucleus +UBERON_0000955 brain UBERON_0022230 retrohippocampal region +UBERON_0000955 brain UBERON_0022232 secondary visual cortex +UBERON_0000955 brain UBERON_0022234 medial longitudinal stria +UBERON_0000955 brain UBERON_0022235 peduncle of diencephalon +UBERON_0000955 brain UBERON_0022236 peduncle of thalamus +UBERON_0000955 brain UBERON_0022237 anterior thalamic peduncle +UBERON_0000955 brain UBERON_0022241 superior thalamic peduncle +UBERON_0000955 brain UBERON_0022242 inferior thalamic peduncle +UBERON_0000955 brain UBERON_0022243 posterior thalamic peduncle +UBERON_0000955 brain UBERON_0022244 anterior orbital gyrus +UBERON_0000955 brain UBERON_0022246 superior longitudinal fasciculus +UBERON_0000955 brain UBERON_0022247 forebrain ipsilateral fiber tracts +UBERON_0000955 brain UBERON_0022248 cerebral nerve fasciculus +UBERON_0000955 brain UBERON_0022250 subcallosal fasciculus +UBERON_0000955 brain UBERON_0022252 precentral sulcus +UBERON_0000955 brain UBERON_0022254 ventral thalamic fasciculus +UBERON_0000955 brain UBERON_0022256 subthalamic fasciculus +UBERON_0000955 brain UBERON_0022258 endolemniscal nucleus +UBERON_0000955 brain UBERON_0022260 radiation of cerebral hemisphere +UBERON_0000955 brain UBERON_0022262 auditory radiation +UBERON_0000955 brain UBERON_0022264 optic radiation +UBERON_0000955 brain UBERON_0022268 planum temporale +UBERON_0000955 brain UBERON_0022271 corticopontine fibers +UBERON_0000955 brain UBERON_0022272 corticobulbar tract +UBERON_0000955 brain UBERON_0022283 pineal recess of third ventricle +UBERON_0000955 brain UBERON_0022314 superior colliculus stratum zonale +UBERON_0000955 brain UBERON_0022315 primary motor cortex layer 5 +UBERON_0000955 brain UBERON_0022316 primary motor cortex layer 6 +UBERON_0000955 brain UBERON_0022317 olfactory cortex layer 1 +UBERON_0000955 brain UBERON_0022318 olfactory cortex layer 2 +UBERON_0000955 brain UBERON_0022319 lateral geniculate nucleus parvocellular layer +UBERON_0000955 brain UBERON_0022320 dorsal cochlear nucleus pyramidal cell layer +UBERON_0000955 brain UBERON_0022323 entorhinal cortex layer 4 +UBERON_0000955 brain UBERON_0022325 entorhinal cortex layer 5 +UBERON_0000955 brain UBERON_0022326 molecular layer of dorsal cochlear nucleus +UBERON_0000955 brain UBERON_0022327 entorhinal cortex layer 3 +UBERON_0000955 brain UBERON_0022329 entorhinal cortex layer 6 +UBERON_0000955 brain UBERON_0022336 entorhinal cortex layer 1 +UBERON_0000955 brain UBERON_0022337 entorhinal cortex layer 2 +UBERON_0000955 brain UBERON_0022340 piriform cortex layer 2a +UBERON_0000955 brain UBERON_0022341 piriform cortex layer 2b +UBERON_0000955 brain UBERON_0022346 dentate gyrus molecular layer middle +UBERON_0000955 brain UBERON_0022347 dentate gyrus molecular layer inner +UBERON_0000955 brain UBERON_0022348 dentate gyrus granule cell layer inner blade +UBERON_0000955 brain UBERON_0022349 dentate gyrus granule cell layer outer blade +UBERON_0000955 brain UBERON_0022352 medial orbital frontal cortex +UBERON_0000955 brain UBERON_0022353 posterior cingulate cortex +UBERON_0000955 brain UBERON_0022364 occipital fusiform gyrus +UBERON_0000955 brain UBERON_0022367 inferior lateral occipital cortex +UBERON_0000955 brain UBERON_0022368 superior lateral occipital cortex +UBERON_0000955 brain UBERON_0022383 anterior parahippocampal gyrus +UBERON_0000955 brain UBERON_0022394 posterior parahippocampal white matter +UBERON_0000955 brain UBERON_0022395 temporal fusiform gyrus +UBERON_0000955 brain UBERON_0022396 anterior temporal fusiform gyrus +UBERON_0000955 brain UBERON_0022397 posterior temporal fusiform gyrus +UBERON_0000955 brain UBERON_0022398 paracingulate gyrus +UBERON_0000955 brain UBERON_0022420 temporal part of superior longitudinal fasciculus +UBERON_0000955 brain UBERON_0022421 pontocerebellar tract +UBERON_0000955 brain UBERON_0022423 sagulum nucleus +UBERON_0000955 brain UBERON_0022424 supragenual nucleus of pontine tegmentum +UBERON_0000955 brain UBERON_0022425 anterior corona radiata +UBERON_0000955 brain UBERON_0022426 superior corona radiata +UBERON_0000955 brain UBERON_0022427 posterior corona radiata +UBERON_0000955 brain UBERON_0022428 cingulate cortex cingulum +UBERON_0000955 brain UBERON_0022429 temporal cortex cingulum +UBERON_0000955 brain UBERON_0022430 hippocampus cortex cingulum +UBERON_0000955 brain UBERON_0022434 primary superior olive +UBERON_0000955 brain UBERON_0022437 dorsal periolivary nucleus +UBERON_0000955 brain UBERON_0022438 rostral anterior cingulate cortex +UBERON_0000955 brain UBERON_0022453 olfactory entorhinal cortex +UBERON_0000955 brain UBERON_0022469 primary olfactory cortex +UBERON_0000955 brain UBERON_0022534 pericalcarine cortex +UBERON_0000955 brain UBERON_0022649 habenulo-interpeduncular tract of diencephalon +UBERON_0000955 brain UBERON_0022695 orbital gyri complex +UBERON_0000955 brain UBERON_0022716 lateral orbital frontal cortex +UBERON_0000955 brain UBERON_0022730 transverse frontopolar gyri complex +UBERON_0000955 brain UBERON_0022776 composite part spanning multiple base regional parts of brain +UBERON_0000955 brain UBERON_0022783 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone +UBERON_0000955 brain UBERON_0022791 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone +UBERON_0000955 brain UBERON_0023094 posterodorsal nucleus of medial geniculate body +UBERON_0000955 brain UBERON_0023255 sub-lobar region +UBERON_0000955 brain UBERON_0023378 medullary anterior horn +UBERON_0000955 brain UBERON_0023390 medial subnucleus of solitary tract +UBERON_0000955 brain UBERON_0023415 lateral amygdaloid nucleus, dorsolateral part +UBERON_0000955 brain UBERON_0023416 lateral amygdaloid nucleus, ventrolateral part +UBERON_0000955 brain UBERON_0023417 lateral amygdaloid nucleus, ventromedial part +UBERON_0000955 brain UBERON_0023443 superficial feature part of forebrain +UBERON_0000955 brain UBERON_0023462 superficial feature part of occipital lobe +UBERON_0000955 brain UBERON_0023564 cytoarchitectural part of dentate gyrus +UBERON_0000955 brain UBERON_0023740 habenulo-interpeduncular tract of midbrain +UBERON_0000955 brain UBERON_0023752 intermediate part of hypophysis +UBERON_0000955 brain UBERON_0023787 subicular complex +UBERON_0000955 brain UBERON_0023836 gross anatomical parts of the cerebellum +UBERON_0000955 brain UBERON_0023852 temporoparietal junction +UBERON_0000955 brain UBERON_0023855 commissural nucleus of the solitary tract +UBERON_0000955 brain UBERON_0023859 primary somatosensory cortex layer 6 +UBERON_0000955 brain UBERON_0023861 planum polare +UBERON_0000955 brain UBERON_0023862 hippocampal formation of GP94 +UBERON_0000955 brain UBERON_0023865 medial ventral tegmental area +UBERON_0000955 brain UBERON_0023867 islands of Calleja of olfactory tubercle +UBERON_0000955 brain UBERON_0023868 isla magna of Calleja +UBERON_0000955 brain UBERON_0023900 piriform cortex layer 1a +UBERON_0000955 brain UBERON_0023901 piriform cortex layer 1b +UBERON_0000955 brain UBERON_0023920 basal ganglia of rodent +UBERON_0000955 brain UBERON_0023927 subbrachial nucleus of mouse of Franklin and Paxinos 2008 +UBERON_0000955 brain UBERON_0023928 postrhinal cortex of rodent of Burwell et al 1995 +UBERON_0000955 brain UBERON_0023932 Sommer's sector +UBERON_0000955 brain UBERON_0023934 olfactory bulb main glomerular layer +UBERON_0000955 brain UBERON_0023936 perirhinal cortex of Burwell et al 1995 +UBERON_0000955 brain UBERON_0023958 bed nuclei of the stria terminalis oval nucleus +UBERON_0000955 brain UBERON_0023998 cerebellum hemispheric lobule II +UBERON_0000955 brain UBERON_0023999 cerebellum hemispheric lobule III +UBERON_0000955 brain UBERON_0024000 cerebellum hemispheric lobule IV +UBERON_0000955 brain UBERON_0024001 cerebellum hemispheric lobule V +UBERON_0000955 brain UBERON_0024003 cerebellum hemispheric lobule VII +UBERON_0000955 brain UBERON_0024009 cerebellum hemispheric lobule X +UBERON_0000955 brain UBERON_0024037 vermis of the flocculonodular lobe of the cerebellum +UBERON_0000955 brain UBERON_0024043 rostral portion of the medial accessory olive +UBERON_0000955 brain UBERON_0024045 white matter of the cerebellar cortex +UBERON_0000955 brain UBERON_0024046 superficial feature part of the cerebellum +UBERON_0000955 brain UBERON_0024078 principal anterior division of supraoptic nucleus +UBERON_0000955 brain UBERON_0024079 tuberal supraoptic nucleus +UBERON_0000955 brain UBERON_0024090 chemoarchitectural part of brain +UBERON_0000955 brain UBERON_0024110 basis pontis +UBERON_0000955 brain UBERON_0024151 tegmentum +UBERON_0000955 brain UBERON_0024183 inferior transverse frontopolar gyrus +UBERON_0000955 brain UBERON_0024193 medial transverse frontopolar gyrus +UBERON_0000955 brain UBERON_0024201 superior transverse frontopolar gyrus +UBERON_0000955 brain UBERON_0024900 left sub-lobar region +UBERON_0000955 brain UBERON_0024901 right sub-lobar region +UBERON_0000955 brain UBERON_0025096 superior calcarine sulcus +UBERON_0000955 brain UBERON_0025102 inferior occipital sulcus +UBERON_0000955 brain UBERON_0025103 inferior calcarine sulcus +UBERON_0000955 brain UBERON_0025104 ectocalcarine sulcus +UBERON_0000955 brain UBERON_0025261 thalamic fiber tract +UBERON_0000955 brain UBERON_0025581 perirhinal cortex of primate of Burwell et al 1995 +UBERON_0000955 brain UBERON_0025584 perirhinal cortex of rodent of Burwell et al 1995 +UBERON_0000955 brain UBERON_0025677 paravermis parts of the cerebellar cortex +UBERON_0000955 brain UBERON_0025736 chemoarchitectural part of striatum +UBERON_0000955 brain UBERON_0025763 rostral sulcus +UBERON_0000955 brain UBERON_0025768 posterior middle temporal sulcus +UBERON_0000955 brain UBERON_0025772 spur of arcuate sulcus +UBERON_0000955 brain UBERON_0025829 anterior parieto-occipital sulcus +UBERON_0000955 brain UBERON_0025883 superior ramus of arcuate sulcus +UBERON_0000955 brain UBERON_0025903 principal sulcus +UBERON_0000955 brain UBERON_0026137 annectant gyrus +UBERON_0000955 brain UBERON_0026382 inferior ramus of arcuate sulcus +UBERON_0000955 brain UBERON_0026384 lateral orbital sulcus +UBERON_0000955 brain UBERON_0026391 medial orbital sulcus +UBERON_0000955 brain UBERON_0026541 dorsomedial subnucleus of solitary tract +UBERON_0000955 brain UBERON_0026663 dorsolateral subnucleus of solitary tract +UBERON_0000955 brain UBERON_0026666 parvocellular subnucleus of solitary tract +UBERON_0000955 brain UBERON_0026719 intermediate frontal sulcus +UBERON_0000955 brain UBERON_0026721 medial precentral sulcus +UBERON_0000955 brain UBERON_0026722 transverse parietal sulcus +UBERON_0000955 brain UBERON_0026723 inferior parietal sulcus +UBERON_0000955 brain UBERON_0026724 superior parietal sulcus +UBERON_0000955 brain UBERON_0026725 angular sulcus +UBERON_0000955 brain UBERON_0026760 inferior sagittal sulcus +UBERON_0000955 brain UBERON_0026761 superior sagittal sulcus +UBERON_0000955 brain UBERON_0026765 Hadjikhani et al. (1998) visuotopic partition scheme region +UBERON_0000955 brain UBERON_0026775 Tootell and Hadjikhani (2001) LOC/LOP complex +UBERON_0000955 brain UBERON_0026776 Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7 +UBERON_0000955 brain UBERON_0026777 Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region +UBERON_0000955 brain UBERON_0027061 isthmus of cingulate cortex +UBERON_0000955 brain UBERON_0027109 lateral eminence of hypophysis +UBERON_0000955 brain UBERON_0027113 anterior middle temporal sulcus +UBERON_0000955 brain UBERON_0027244 striosomal part of body of caudate nucleus +UBERON_0000955 brain UBERON_0027245 matrix part of head of caudate nucleus +UBERON_0000955 brain UBERON_0027246 matrix part of tail of caudate nucleus +UBERON_0000955 brain UBERON_0027285 paravermis lobule area +UBERON_0000955 brain UBERON_0027309 paravermis of the posterior lobe of the cerebellum +UBERON_0000955 brain UBERON_0027310 paravermis of the anterior lobe of the cerebellum +UBERON_0000955 brain UBERON_0027331 flocculonodular lobe, hemisphere portion +UBERON_0000955 brain UBERON_0027368 matrix compartment +UBERON_0000955 brain UBERON_0027371 striosome +UBERON_0000955 brain UBERON_0027513 posterior superior frontal sulcus +UBERON_0000955 brain UBERON_0027716 anterior superior frontal sulcus +UBERON_0000955 brain UBERON_0027768 suprachiasmatic nucleus dorsomedial part +UBERON_0000955 brain UBERON_0027771 suprachiasmatic nucleus ventrolateral part +UBERON_0000955 brain UBERON_0028395 calcarine sulcus (dorsal) +UBERON_0000955 brain UBERON_0028396 calcarine sulcus (ventral) +UBERON_0000955 brain UBERON_0028398 Hadjikhani et al. (1998) visuotopic area V1d +UBERON_0000955 brain UBERON_0028399 Hadjikhani et al. (1998) visuotopic area V1v +UBERON_0000955 brain UBERON_0028401 Hadjikhani et al. (1998) visuotopic area V2v +UBERON_0000955 brain UBERON_0028402 Hadjikhani et al. (1998) visuotopic area V3 +UBERON_0000955 brain UBERON_0028403 Hadjikhani et al. (1998) visuotopic area V3A +UBERON_0000955 brain UBERON_0028404 Hadjikhani et al. (1998) visuotopic area VP +UBERON_0000955 brain UBERON_0028405 Hadjikhani et al. (1998) visuotopic area V4v +UBERON_0000955 brain UBERON_0028406 Hadjikhani et al. (1998) visuotopic area V8 +UBERON_0000955 brain UBERON_0028412 Ongur, Price, and Ferry (2003) area 10p +UBERON_0000955 brain UBERON_0028413 Ongur, Price, and Ferry (2003) area 10r +UBERON_0000955 brain UBERON_0028414 Ongur, Price, and Ferry (2003) area 10o +UBERON_0000955 brain UBERON_0028415 Ongur, Price, and Ferry (2003) area 10m +UBERON_0000955 brain UBERON_0028416 Ongur, Price, and Ferry (2003) area 11m +UBERON_0000955 brain UBERON_0028417 Ongur, Price, and Ferry (2003) area 47s +UBERON_0000955 brain UBERON_0028418 Ongur, Price, and Ferry (2003) area 13b +UBERON_0000955 brain UBERON_0028419 Ongur, Price, and Ferry (2003) area 13a +UBERON_0000955 brain UBERON_0028420 Ongur, Price, and Ferry (2003) area 14r +UBERON_0000955 brain UBERON_0028421 Ongur, Price, and Ferry (2003) area 14c +UBERON_0000955 brain UBERON_0028422 Ongur, Price, and Ferry (2003) area 24 +UBERON_0000955 brain UBERON_0028423 Ongur, Price, and Ferry (2003) area 25 +UBERON_0000955 brain UBERON_0028424 Ongur, Price, and Ferry (2003) area 32 +UBERON_0000955 brain UBERON_0028425 Ongur, Price, and Ferry (2003) area G +UBERON_0000955 brain UBERON_0028426 Ongur, Price, and Ferry (2003) area PrCO +UBERON_0000955 brain UBERON_0028427 Ongur, Price, and Ferry (2003) area 11l +UBERON_0000955 brain UBERON_0028428 Ongur, Price, and Ferry (2003) area 13m +UBERON_0000955 brain UBERON_0028429 Ongur, Price, and Ferry (2003) area 13l +UBERON_0000955 brain UBERON_0028430 Ongur, Price, and Ferry (2003) area 47l +UBERON_0000955 brain UBERON_0028431 Ongur, Price, and Ferry (2003) area 47m +UBERON_0000955 brain UBERON_0028432 Ongur, Price, and Ferry (2003) area 47r +UBERON_0000955 brain UBERON_0028433 Ongur, Price, and Ferry (2003) area Iam +UBERON_0000955 brain UBERON_0028434 Ongur, Price, and Ferry (2003) area Ial +UBERON_0000955 brain UBERON_0028435 Ongur, Price, and Ferry (2003) area Iai +UBERON_0000955 brain UBERON_0028436 Ongur, Price, and Ferry (2003) area 9 +UBERON_0000955 brain UBERON_0028437 Ongur, Price, and Ferry (2003) area 10l +UBERON_0000955 brain UBERON_0028439 Ongur, Price, and Ferry (2003) area Iapm +UBERON_0000955 brain UBERON_0028440 Ongur, Price, and Ferry (2003) area AON +UBERON_0000955 brain UBERON_0028622 banks of superior temporal sulcus +UBERON_0000955 brain UBERON_0028715 caudal anterior cingulate cortex +UBERON_0000955 brain UBERON_0028918 paravermic lobule II +UBERON_0000955 brain UBERON_0028919 paravermic lobule III +UBERON_0000955 brain UBERON_0028920 paravermic lobule IV +UBERON_0000955 brain UBERON_0028921 paravermic lobule IX +UBERON_0000955 brain UBERON_0028922 paravermic lobule V +UBERON_0000955 brain UBERON_0028923 paravermic lobule VI +UBERON_0000955 brain UBERON_0028924 paravermic lobule VII +UBERON_0000955 brain UBERON_0028925 paravermic lobule VIII +UBERON_0000955 brain UBERON_0029001 matrix compartment of caudate nucleus +UBERON_0000955 brain UBERON_0029002 matrix compartment of putamen +UBERON_0000955 brain UBERON_0029004 striosomal part of caudate nucleus +UBERON_0000955 brain UBERON_0029005 striosomal part of putamen +UBERON_0000955 brain UBERON_0029009 granular cell layer of dorsal cochlear nucleus +UBERON_0000955 brain UBERON_0030649 cytoarchitecture of entorhinal cortex +UBERON_0000955 brain UBERON_0034671 arcuate sulcus +UBERON_0000955 brain UBERON_0034672 lateral eminence of fourth ventricle +UBERON_0000955 brain UBERON_0034673 amygdalohippocampal area +UBERON_0000955 brain UBERON_0034674 sulcus of limbic lobe +UBERON_0000955 brain UBERON_0034676 forceps major of corpus callosum +UBERON_0000955 brain UBERON_0034678 forceps minor of corpus callosum +UBERON_0000955 brain UBERON_0034708 cerebellum marginal layer +UBERON_0000955 brain UBERON_0034709 hindbrain marginal layer +UBERON_0000955 brain UBERON_0034711 cortical preplate +UBERON_0000955 brain UBERON_0034730 olfactory tract linking bulb to ipsilateral dorsal telencephalon +UBERON_0000955 brain UBERON_0034743 inferior longitudinal fasciculus +UBERON_0000955 brain UBERON_0034745 radiation of thalamus +UBERON_0000955 brain UBERON_0034746 anterior thalamic radiation +UBERON_0000955 brain UBERON_0034747 posterior thalamic radiation +UBERON_0000955 brain UBERON_0034749 retrolenticular part of internal capsule +UBERON_0000955 brain UBERON_0034750 visual association cortex +UBERON_0000955 brain UBERON_0034751 primary auditory cortex +UBERON_0000955 brain UBERON_0034752 secondary auditory cortex +UBERON_0000955 brain UBERON_0034753 inferior occipitofrontal fasciculus +UBERON_0000955 brain UBERON_0034754 occipitofrontal fasciculus +UBERON_0000955 brain UBERON_0034763 hindbrain commissure +UBERON_0000955 brain UBERON_0034773 uncus of parahippocampal gyrus +UBERON_0000955 brain UBERON_0034774 uncal CA1 +UBERON_0000955 brain UBERON_0034775 uncal CA2 +UBERON_0000955 brain UBERON_0034776 uncal CA3 +UBERON_0000955 brain UBERON_0034777 rostral CA1 +UBERON_0000955 brain UBERON_0034778 rostral CA2 +UBERON_0000955 brain UBERON_0034779 rostral CA3 +UBERON_0000955 brain UBERON_0034780 caudal CA1 +UBERON_0000955 brain UBERON_0034781 caudal CA2 +UBERON_0000955 brain UBERON_0034782 caudal CA3 +UBERON_0000955 brain UBERON_0034798 stratum lacunosum-moleculare of caudal CA1 +UBERON_0000955 brain UBERON_0034799 stratum radiatum of caudal CA1 +UBERON_0000955 brain UBERON_0034800 stratum pyramidale of caudal CA1 +UBERON_0000955 brain UBERON_0034801 stratum oriens of caudal CA1 +UBERON_0000955 brain UBERON_0034803 stratum lacunosum-moleculare of caudal CA2 +UBERON_0000955 brain UBERON_0034804 stratum radiatum of caudal CA2 +UBERON_0000955 brain UBERON_0034805 stratum pyramidale of caudal CA2 +UBERON_0000955 brain UBERON_0034806 stratum oriens of caudal CA2 +UBERON_0000955 brain UBERON_0034808 stratum lacunosum-moleculare of caudal CA3 +UBERON_0000955 brain UBERON_0034809 stratum radiatum of caudal CA3 +UBERON_0000955 brain UBERON_0034810 stratum lucidum of caudal CA3 +UBERON_0000955 brain UBERON_0034811 stratum pyramidale of caudal CA3 +UBERON_0000955 brain UBERON_0034812 stratum oriens of caudal CA3 +UBERON_0000955 brain UBERON_0034828 stratum lacunosum-moleculare of rostral CA1 +UBERON_0000955 brain UBERON_0034829 stratum radiatum of rostral CA1 +UBERON_0000955 brain UBERON_0034830 stratum pyramidale of rostral CA1 +UBERON_0000955 brain UBERON_0034831 stratum oriens of rostral CA1 +UBERON_0000955 brain UBERON_0034833 stratum lacunosum-moleculare of rostral CA2 +UBERON_0000955 brain UBERON_0034834 stratum radiatum of rostral CA2 +UBERON_0000955 brain UBERON_0034835 stratum pyramidale of rostral CA2 +UBERON_0000955 brain UBERON_0034836 stratum oriens of rostral CA2 +UBERON_0000955 brain UBERON_0034838 stratum lacunosum-moleculare of rostral CA3 +UBERON_0000955 brain UBERON_0034839 stratum radiatum of rostral CA3 +UBERON_0000955 brain UBERON_0034840 stratum lucidum of rostral CA3 +UBERON_0000955 brain UBERON_0034841 stratum pyramidale of rostral CA3 +UBERON_0000955 brain UBERON_0034842 stratum oriens of rostral CA3 +UBERON_0000955 brain UBERON_0034858 stratum lacunosum-moleculare of uncal CA1 +UBERON_0000955 brain UBERON_0034859 stratum radiatum of uncal CA1 +UBERON_0000955 brain UBERON_0034860 stratum pyramidale of uncal CA1 +UBERON_0000955 brain UBERON_0034861 stratum oriens of uncal CA1 +UBERON_0000955 brain UBERON_0034863 stratum lacunosum-moleculare of uncal CA2 +UBERON_0000955 brain UBERON_0034864 stratum radiatum of uncal CA2 +UBERON_0000955 brain UBERON_0034865 stratum pyramidale of uncal CA2 +UBERON_0000955 brain UBERON_0034866 stratum oriens of uncal CA2 +UBERON_0000955 brain UBERON_0034868 stratum lacunosum-moleculare of uncal CA3 +UBERON_0000955 brain UBERON_0034869 stratum radiatum of uncal CA3 +UBERON_0000955 brain UBERON_0034870 stratum lucidum of uncal CA3 +UBERON_0000955 brain UBERON_0034871 stratum pyramidale of uncal CA3 +UBERON_0000955 brain UBERON_0034872 stratum oriens of uncal CA3 +UBERON_0000955 brain UBERON_0034876 future neurohypophysis +UBERON_0000955 brain UBERON_0034888 primary motor cortex layer 1 +UBERON_0000955 brain UBERON_0034889 posterior parietal cortex +UBERON_0000955 brain UBERON_0034891 insular cortex +UBERON_0000955 brain UBERON_0034892 granular insular cortex +UBERON_0000955 brain UBERON_0034893 agranular insular cortex +UBERON_0000955 brain UBERON_0034894 lateral nucleus of stria terminalis +UBERON_0000955 brain UBERON_0034895 medial nucleus of stria terminalis +UBERON_0000955 brain UBERON_0034896 ansa peduncularis +UBERON_0000955 brain UBERON_0034907 pineal parenchyma +UBERON_0000955 brain UBERON_0034910 medial pretectal nucleus +UBERON_0000955 brain UBERON_0034918 anterior pretectal nucleus +UBERON_0000955 brain UBERON_0034931 perforant path +UBERON_0000955 brain UBERON_0034943 saccus vasculosus +UBERON_0000955 brain UBERON_0034968 sagittal sulcus +UBERON_0000955 brain UBERON_0034989 amygdalopiriform transition area +UBERON_0000955 brain UBERON_0034991 anterior cortical amygdaloid nucleus +UBERON_0000955 brain UBERON_0034993 basal ventral medial nucleus of thalamus +UBERON_0000955 brain UBERON_0034994 hindbrain cortical intermediate zone +UBERON_0000955 brain UBERON_0034999 posterolateral cortical amygdaloid nucleus +UBERON_0000955 brain UBERON_0035001 posteromedial cortical amygdaloid nucleus +UBERON_0000955 brain UBERON_0035013 temporal cortex association area +UBERON_0000955 brain UBERON_0035014 functional part of brain +UBERON_0000955 brain UBERON_0035015 association cortex +UBERON_0000955 brain UBERON_0035019 inferior olive, beta nucleus +UBERON_0000955 brain UBERON_0035026 amygdalohippocampal transition area +UBERON_0000955 brain UBERON_0035027 amygdalohippocampal area, magnocellular division +UBERON_0000955 brain UBERON_0035028 amygdalohippocampal area, parvocellular division +UBERON_0000955 brain UBERON_0035044 olfactory cortex layer 3 +UBERON_0000955 brain UBERON_0035113 central part of mediodorsal nucleus of the thalamus +UBERON_0000955 brain UBERON_0035114 lateral part of mediodorsal nucleus of the thalamus +UBERON_0000955 brain UBERON_0035150 superior cerebral vein +UBERON_0000955 brain UBERON_0035151 dorsal cerebral vein +UBERON_0000955 brain UBERON_0035152 internal cerebral vein +UBERON_0000955 brain UBERON_0035153 dorsolateral prefrontal cortex layer 1 +UBERON_0000955 brain UBERON_0035154 dorsolateral prefrontal cortex layer 2 +UBERON_0000955 brain UBERON_0035155 dorsolateral prefrontal cortex layer 3 +UBERON_0000955 brain UBERON_0035156 dorsolateral prefrontal cortex layer 4 +UBERON_0000955 brain UBERON_0035157 dorsolateral prefrontal cortex layer 5 +UBERON_0000955 brain UBERON_0035158 dorsolateral prefrontal cortex layer 6 +UBERON_0000955 brain UBERON_0035231 superficial middle cerebral vein +UBERON_0000955 brain UBERON_0035530 basal vein +UBERON_0000955 brain UBERON_0035532 deep middle cerebral vein +UBERON_0000955 brain UBERON_0035562 intermediate pretectal nucleus +UBERON_0000955 brain UBERON_0035563 magnocellular superficial pretectal nucleus +UBERON_0000955 brain UBERON_0035564 parvocellular superficial pretectal nucleus +UBERON_0000955 brain UBERON_0035565 caudal pretectal nucleus +UBERON_0000955 brain UBERON_0035566 central pretectal nucleus +UBERON_0000955 brain UBERON_0035567 accessory pretectal nucleus +UBERON_0000955 brain UBERON_0035568 superficial pretectal nucleus +UBERON_0000955 brain UBERON_0035569 periventricular pretectal nucleus +UBERON_0000955 brain UBERON_0035570 tectothalamic tract +UBERON_0000955 brain UBERON_0035572 nucleus praetectalis profundus +UBERON_0000955 brain UBERON_0035573 dorsal pretectal periventricular nucleus +UBERON_0000955 brain UBERON_0035574 ventral pretectal periventricular nucleus +UBERON_0000955 brain UBERON_0035575 paracommissural nucleus of solitary tract +UBERON_0000955 brain UBERON_0035577 paracommissural periventricular pretectal nucleus +UBERON_0000955 brain UBERON_0035580 nucleus geniculatus of pretectum +UBERON_0000955 brain UBERON_0035581 nucleus lentiformis of pretectum +UBERON_0000955 brain UBERON_0035582 nucleus posteriodorsalis of pretectum +UBERON_0000955 brain UBERON_0035583 nucleus lentiformis thalamus +UBERON_0000955 brain UBERON_0035584 ventral pretectal nucleus (sauropsida) +UBERON_0000955 brain UBERON_0035585 tectal gray nucleus (Testudines) +UBERON_0000955 brain UBERON_0035586 nucleus lentiformis mesencephali (Aves) +UBERON_0000955 brain UBERON_0035587 nucleus pretectalis diffusus +UBERON_0000955 brain UBERON_0035588 subpretectal complex of Aves +UBERON_0000955 brain UBERON_0035589 nucleus subpretectalis +UBERON_0000955 brain UBERON_0035590 nucleus interstitio-pretectalis-subpretectalis +UBERON_0000955 brain UBERON_0035591 lateral spiriform nucleus +UBERON_0000955 brain UBERON_0035592 medial spiriform nucleus +UBERON_0000955 brain UBERON_0035593 nucleus circularis of pretectum +UBERON_0000955 brain UBERON_0035595 accessory optic tract +UBERON_0000955 brain UBERON_0035596 circular nucleus of antherior hypothalamic nucleus +UBERON_0000955 brain UBERON_0035785 telencephalic song nucleus HVC +UBERON_0000955 brain UBERON_0035786 layer of CA1 field +UBERON_0000955 brain UBERON_0035787 layer of CA2 field +UBERON_0000955 brain UBERON_0035788 layer of CA3 field +UBERON_0000955 brain UBERON_0035802 alveus of CA2 field +UBERON_0000955 brain UBERON_0035803 extrapyramidal tract system +UBERON_0000955 brain UBERON_0035807 area X of basal ganglion +UBERON_0000955 brain UBERON_0035808 robust nucleus of arcopallium +UBERON_0000955 brain UBERON_0035872 primary somatosensory area barrel field layer 5 +UBERON_0000955 brain UBERON_0035873 primary somatosensory area barrel field layer 1 +UBERON_0000955 brain UBERON_0035874 primary somatosensory area barrel field layer 2/3 +UBERON_0000955 brain UBERON_0035875 primary somatosensory area barrel field layer 6b +UBERON_0000955 brain UBERON_0035876 primary somatosensory area barrel field layer 6a +UBERON_0000955 brain UBERON_0035877 primary somatosensory area barrel field layer 4 +UBERON_0000955 brain UBERON_0035885 dorsal auditory area +UBERON_0000955 brain UBERON_0035886 posterior parietal association areas +UBERON_0000955 brain UBERON_0035890 postrhinal area +UBERON_0000955 brain UBERON_0035892 primary visual area, layer 6a +UBERON_0000955 brain UBERON_0035893 anteromedial visual area +UBERON_0000955 brain UBERON_0035894 anterolateral visual area +UBERON_0000955 brain UBERON_0035895 lateral visual area +UBERON_0000955 brain UBERON_0035897 posterolateral visual area +UBERON_0000955 brain UBERON_0035900 posteromedial visual area +UBERON_0000955 brain UBERON_0035904 primary visual area, layer 4 +UBERON_0000955 brain UBERON_0035906 primary visual area, layer 5 +UBERON_0000955 brain UBERON_0035907 primary visual area, layer 2/3 +UBERON_0000955 brain UBERON_0035908 anterolateral visual area, layer 5 +UBERON_0000955 brain UBERON_0035909 posteromedial visual area, layer 6a +UBERON_0000955 brain UBERON_0035911 postrhinal area, layer 4 +UBERON_0000955 brain UBERON_0035912 rostrolateral visual area +UBERON_0000955 brain UBERON_0035913 anteromedial visual area, layer 5 +UBERON_0000955 brain UBERON_0035914 posteromedial visual area, layer 4 +UBERON_0000955 brain UBERON_0035915 lateral visual area, layer 4 +UBERON_0000955 brain UBERON_0035916 lateral visual area, layer 5 +UBERON_0000955 brain UBERON_0035917 dorsal auditory area, layer 4 +UBERON_0000955 brain UBERON_0035918 lateral visual area, layer 6a +UBERON_0000955 brain UBERON_0035919 posterolateral visual area, layer 4 +UBERON_0000955 brain UBERON_0035920 rostrolateral area, layer 5 +UBERON_0000955 brain UBERON_0035922 intraculminate fissure of cerebellum +UBERON_0000955 brain UBERON_0035924 radiation of corpus callosum +UBERON_0000955 brain UBERON_0035925 central sulcus of insula +UBERON_0000955 brain UBERON_0035926 preculminate fissure of cerebellum +UBERON_0000955 brain UBERON_0035927 sulcus of parietal lobe +UBERON_0000955 brain UBERON_0035928 dorsolateral part of supraoptic nucleus +UBERON_0000955 brain UBERON_0035930 retro-olivary nucleus +UBERON_0000955 brain UBERON_0035931 sagittal stratum +UBERON_0000955 brain UBERON_0035932 anterior segment of paracentral lobule +UBERON_0000955 brain UBERON_0035933 paracentral lobule +UBERON_0000955 brain UBERON_0035934 posterior segment of paracentral lobule +UBERON_0000955 brain UBERON_0035935 Meyer's loop of optic radiation +UBERON_0000955 brain UBERON_0035937 arcuate fasciculus +UBERON_0000955 brain UBERON_0035938 amiculum of inferior olive +UBERON_0000955 brain UBERON_0035940 central medullary reticular nuclear complex +UBERON_0000955 brain UBERON_0035970 calcar avis of the lateral ventricle +UBERON_0000955 brain UBERON_0035971 postsubiculum +UBERON_0000955 brain UBERON_0035972 interanterodorsal nucleus of the thalamus +UBERON_0000955 brain UBERON_0035973 nucleus incertus +UBERON_0000955 brain UBERON_0035974 anteroventral preoptic nucleus +UBERON_0000955 brain UBERON_0035975 intergeniculate leaflet of the lateral geniculate complex +UBERON_0000955 brain UBERON_0035976 accessory abducens nucleus +UBERON_0000955 brain UBERON_0035977 bed nucleus of the accessory olfactory tract +UBERON_0000955 brain UBERON_0035999 dopaminergic cell groups +UBERON_0000955 brain UBERON_0036000 A8 dopaminergic cell group +UBERON_0000955 brain UBERON_0036001 A14 dopaminergic cell group +UBERON_0000955 brain UBERON_0036002 A15 dopaminergic cell group +UBERON_0000955 brain UBERON_0036003 A9 dopaminergic cell group +UBERON_0000955 brain UBERON_0036004 A17 dopaminergic cell group +UBERON_0000955 brain UBERON_0036005 A10 dopaminergic cell group +UBERON_0000955 brain UBERON_0036006 A11 dopaminergic cell group +UBERON_0000955 brain UBERON_0036007 A13 dopaminergic cell group +UBERON_0000955 brain UBERON_0036008 A16 dopaminergic cell group +UBERON_0000955 brain UBERON_0036009 A12 dopaminergic cell group +UBERON_0000955 brain UBERON_0036010 Aaq dopaminergic cell group +UBERON_0000955 brain UBERON_0036011 telencephalic dopaminergic cell group +UBERON_0000955 brain UBERON_0036012 nucleus of the brachium of the inferior colliculus +UBERON_0000955 brain UBERON_0036043 paravermic lobule X +UBERON_0000955 brain UBERON_0036044 cerebellum vermis lobule VIIAf +UBERON_0000955 brain UBERON_0036063 quadrangular lobule +UBERON_0000955 brain UBERON_0036065 cerebellum vermis lobule VIIAt +UBERON_0000955 brain UBERON_0036164 ambient gyrus +UBERON_0000955 brain UBERON_0036177 nucleus recessus +UBERON_0000955 brain UBERON_0036218 secondary prosencephalon +UBERON_0000955 brain UBERON_0036654 wall of lateral ventricle +UBERON_0000955 brain UBERON_0036655 wall of cerebral aqueduct +UBERON_0000955 brain UBERON_0036656 wall of third ventricle +UBERON_0000955 brain UBERON_0036657 wall of fourth ventricle +UBERON_0000955 brain UBERON_0036661 wall of ventricular system of brain +UBERON_0000955 brain UBERON_0039175 subarachnoid space of brain +UBERON_0000955 brain UBERON_2000165 inferior lobe +UBERON_0000955 brain UBERON_2000176 lateral entopeduncular nucleus +UBERON_0000955 brain UBERON_2000182 central caudal thalamic nucleus +UBERON_0000955 brain UBERON_2000183 central pretectum +UBERON_0000955 brain UBERON_2000185 commissura rostral, pars ventralis +UBERON_0000955 brain UBERON_2000187 lateral granular eminence +UBERON_0000955 brain UBERON_2000188 corpus cerebelli +UBERON_0000955 brain UBERON_2000193 diffuse nuclei +UBERON_0000955 brain UBERON_2000194 dorsal accessory optic nucleus +UBERON_0000955 brain UBERON_2000199 dorsal periventricular hypothalamus +UBERON_0000955 brain UBERON_2000209 lateral preglomerular nucleus +UBERON_0000955 brain UBERON_2000210 gigantocellular part of magnocellular preoptic nucleus +UBERON_0000955 brain UBERON_2000212 granular eminence +UBERON_0000955 brain UBERON_2000222 isthmic primary nucleus +UBERON_0000955 brain UBERON_2000238 olfactory tract linking bulb to ipsilateral ventral telencephalon +UBERON_0000955 brain UBERON_2000241 midline column +UBERON_0000955 brain UBERON_2000245 nucleus of the descending root +UBERON_0000955 brain UBERON_2000248 magnocellular preoptic nucleus +UBERON_0000955 brain UBERON_2000267 primary olfactory fiber layer +UBERON_0000955 brain UBERON_2000274 rostral octaval nerve sensory nucleus +UBERON_0000955 brain UBERON_2000276 rostrolateral thalamic nucleus of Butler & Saidel +UBERON_0000955 brain UBERON_2000278 secondary gustatory nucleus medulla oblongata +UBERON_0000955 brain UBERON_2000280 medial division +UBERON_0000955 brain UBERON_2000291 medial octavolateralis nucleus +UBERON_0000955 brain UBERON_2000293 synencephalon +UBERON_0000955 brain UBERON_2000294 torus lateralis +UBERON_0000955 brain UBERON_2000296 uncrossed tecto-bulbar tract +UBERON_0000955 brain UBERON_2000297 vagal lobe +UBERON_0000955 brain UBERON_2000305 ventral sulcus +UBERON_0000955 brain UBERON_2000307 vestibulolateralis lobe +UBERON_0000955 brain UBERON_2000322 caudal octaval nerve sensory nucleus +UBERON_0000955 brain UBERON_2000324 caudal periventricular hypothalamus +UBERON_0000955 brain UBERON_2000335 crossed tecto-bulbar tract +UBERON_0000955 brain UBERON_2000347 dorsal zone of median tuberal portion of hypothalamus +UBERON_0000955 brain UBERON_2000352 external cellular layer +UBERON_0000955 brain UBERON_2000358 granular layer corpus cerebelli +UBERON_0000955 brain UBERON_2000372 interpeduncular nucleus medulla oblongata +UBERON_0000955 brain UBERON_2000381 lateral line sensory nucleus +UBERON_0000955 brain UBERON_2000388 medial caudal lobe +UBERON_0000955 brain UBERON_2000389 medial funicular nucleus medulla oblongata +UBERON_0000955 brain UBERON_2000390 medial preglomerular nucleus +UBERON_0000955 brain UBERON_2000392 median tuberal portion +UBERON_0000955 brain UBERON_2000394 molecular layer corpus cerebelli +UBERON_0000955 brain UBERON_2000397 nucleus subglomerulosis +UBERON_0000955 brain UBERON_2000398 nucleus isthmi +UBERON_0000955 brain UBERON_2000399 secondary gustatory nucleus trigeminal nuclei +UBERON_0000955 brain UBERON_2000401 octaval nerve sensory nucleus +UBERON_0000955 brain UBERON_2000408 periventricular nucleus of caudal tuberculum +UBERON_0000955 brain UBERON_2000426 rostral parvocellular preoptic nucleus +UBERON_0000955 brain UBERON_2000430 secondary gustatory tract +UBERON_0000955 brain UBERON_2000440 superior raphe nucleus +UBERON_0000955 brain UBERON_2000448 tertiary gustatory nucleus +UBERON_0000955 brain UBERON_2000449 torus longitudinalis +UBERON_0000955 brain UBERON_2000454 ventral accessory optic nucleus +UBERON_0000955 brain UBERON_2000459 ventromedial thalamic nucleus +UBERON_0000955 brain UBERON_2000475 paraventricular organ +UBERON_0000955 brain UBERON_2000480 caudal octavolateralis nucleus +UBERON_0000955 brain UBERON_2000481 caudal preglomerular nucleus +UBERON_0000955 brain UBERON_2000482 caudal tuberal nucleus +UBERON_0000955 brain UBERON_2000485 central nucleus inferior lobe +UBERON_0000955 brain UBERON_2000502 dorsal motor nucleus trigeminal nerve +UBERON_0000955 brain UBERON_2000512 facial lobe +UBERON_0000955 brain UBERON_2000516 periventricular grey zone +UBERON_0000955 brain UBERON_2000517 glossopharyngeal lobe +UBERON_0000955 brain UBERON_2000523 inferior reticular formation +UBERON_0000955 brain UBERON_2000532 lateral division +UBERON_0000955 brain UBERON_2000540 magnocellular octaval nucleus +UBERON_0000955 brain UBERON_2000542 medial column +UBERON_0000955 brain UBERON_2000551 nucleus lateralis valvulae +UBERON_0000955 brain UBERON_2000573 internal cellular layer +UBERON_0000955 brain UBERON_2000580 rostral preglomerular nucleus +UBERON_0000955 brain UBERON_2000581 rostral tuberal nucleus +UBERON_0000955 brain UBERON_2000582 saccus dorsalis +UBERON_0000955 brain UBERON_2000589 sulcus ypsiloniformis +UBERON_0000955 brain UBERON_2000593 superior reticular formation medial column +UBERON_0000955 brain UBERON_2000597 telencephalic tracts +UBERON_0000955 brain UBERON_2000599 torus semicircularis +UBERON_0000955 brain UBERON_2000603 valvula cerebelli +UBERON_0000955 brain UBERON_2000609 ventrolateral nucleus +UBERON_0000955 brain UBERON_2000611 visceromotor column +UBERON_0000955 brain UBERON_2000629 caudal motor nucleus of abducens +UBERON_0000955 brain UBERON_2000630 caudal parvocellular preoptic nucleus +UBERON_0000955 brain UBERON_2000633 caudal tuberculum +UBERON_0000955 brain UBERON_2000634 caudal zone of median tuberal portion of hypothalamus +UBERON_0000955 brain UBERON_2000636 cerebellar crest +UBERON_0000955 brain UBERON_2000638 commissura rostral, pars dorsalis +UBERON_0000955 brain UBERON_2000645 descending octaval nucleus +UBERON_0000955 brain UBERON_2000647 dorsal caudal thalamic nucleus +UBERON_0000955 brain UBERON_2000654 rostral motor nucleus of abducens +UBERON_0000955 brain UBERON_2000687 superficial pretectum +UBERON_0000955 brain UBERON_2000693 tangential nucleus +UBERON_0000955 brain UBERON_2000703 ventral motor nucleus trigeminal nerve +UBERON_0000955 brain UBERON_2000707 ventral zone +UBERON_0000955 brain UBERON_2000710 viscerosensory commissural nucleus of Cajal +UBERON_0000955 brain UBERON_2000766 granular layer valvula cerebelli +UBERON_0000955 brain UBERON_2000779 lateral forebrain bundle telencephalon +UBERON_0000955 brain UBERON_2000815 nucleus of medial longitudinal fasciculus of medulla +UBERON_0000955 brain UBERON_2000826 central nucleus torus semicircularis +UBERON_0000955 brain UBERON_2000910 medial forebrain bundle telencephalon +UBERON_0000955 brain UBERON_2000913 molecular layer valvula cerebelli +UBERON_0000955 brain UBERON_2000941 nucleus of the medial longitudinal fasciculus synencephalon +UBERON_0000955 brain UBERON_2000984 superior reticular formation tegmentum +UBERON_0000955 brain UBERON_2000985 ventral rhombencephalic commissure medulla oblongata +UBERON_0000955 brain UBERON_2000997 medial funicular nucleus trigeminal nuclei +UBERON_0000955 brain UBERON_2001340 nucleus of the tract of the postoptic commissure +UBERON_0000955 brain UBERON_2001341 intervening zone +UBERON_0000955 brain UBERON_2001343 telencephalon diencephalon boundary +UBERON_0000955 brain UBERON_2001347 stratum fibrosum et griseum superficiale +UBERON_0000955 brain UBERON_2001348 stratum marginale +UBERON_0000955 brain UBERON_2001349 stratum opticum +UBERON_0000955 brain UBERON_2001352 stratum periventriculare +UBERON_0000955 brain UBERON_2001357 alar plate midbrain +UBERON_0000955 brain UBERON_2001366 tract of the postoptic commissure +UBERON_0000955 brain UBERON_2002105 electrosensory lateral line lobe +UBERON_0000955 brain UBERON_2002106 eminentia granularis +UBERON_0000955 brain UBERON_2002107 medullary command nucleus +UBERON_0000955 brain UBERON_2002174 octaval nerve motor nucleus +UBERON_0000955 brain UBERON_2002175 rostral octaval nerve motor nucleus +UBERON_0000955 brain UBERON_2002176 caudal octaval nerve motor nucleus +UBERON_0000955 brain UBERON_2002185 climbing fiber +UBERON_0000955 brain UBERON_2002192 dorsolateral motor nucleus of vagal nerve +UBERON_0000955 brain UBERON_2002202 intermediate nucleus +UBERON_0000955 brain UBERON_2002207 medial motor nucleus of vagal nerve +UBERON_0000955 brain UBERON_2002210 mossy fiber +UBERON_0000955 brain UBERON_2002218 parallel fiber +UBERON_0000955 brain UBERON_2002219 parvocellular preoptic nucleus +UBERON_0000955 brain UBERON_2002226 preglomerular nucleus +UBERON_0000955 brain UBERON_2002240 Purkinje cell layer corpus cerebelli +UBERON_0000955 brain UBERON_2002241 Purkinje cell layer valvula cerebelli +UBERON_0000955 brain UBERON_2002244 supraoptic tract +UBERON_0000955 brain UBERON_2005020 central artery +UBERON_0000955 brain UBERON_2005021 cerebellar central artery +UBERON_0000955 brain UBERON_2005031 dorsal longitudinal vein +UBERON_0000955 brain UBERON_2005052 anterior mesencephalic central artery +UBERON_0000955 brain UBERON_2005078 middle mesencephalic central artery +UBERON_0000955 brain UBERON_2005079 posterior mesencephalic central artery +UBERON_0000955 brain UBERON_2005219 choroid plexus vascular circuit +UBERON_0000955 brain UBERON_2005248 trans-choroid plexus branch +UBERON_0000955 brain UBERON_2005338 posterior recess +UBERON_0000955 brain UBERON_2005339 nucleus of the lateral recess +UBERON_0000955 brain UBERON_2005340 nucleus of the posterior recess +UBERON_0000955 brain UBERON_2007001 dorso-rostral cluster +UBERON_0000955 brain UBERON_2007002 ventro-rostral cluster +UBERON_0000955 brain UBERON_2007003 ventro-caudal cluster +UBERON_0000955 brain UBERON_2007004 epiphysial cluster +UBERON_0000955 brain UBERON_3010541 median pars intermedia +UBERON_0000955 brain UBERON_6001060 insect embryonic brain +UBERON_0000955 brain UBERON_6001920 insect embryonic/larval brain +UBERON_0000955 brain UBERON_6001925 insect embryonic/larval protocerebrum +UBERON_0000955 brain UBERON_6003624 insect adult brain +UBERON_0000955 brain UBERON_6003626 insect supraesophageal ganglion +UBERON_0000955 brain UBERON_6003627 insect protocerebrum +UBERON_0000955 brain UBERON_6003632 insect adult central complex +UBERON_0000955 brain UBERON_6007070 insect centro-posterior medial synaptic neuropil domain +UBERON_0000955 brain UBERON_6007145 insect adult protocerebrum +UBERON_0000955 brain UBERON_6110636 insect adult cerebral ganglion +UBERON_0000955 brain UBERON_8440000 cortical layer II/III +UBERON_0000955 brain UBERON_8440001 cortical layer IV/V +UBERON_0000955 brain UBERON_8440002 cortical layer V/VI +UBERON_0000955 brain UBERON_8440003 cortical layer VIb +UBERON_0000955 brain UBERON_8440004 laminar subdivision of the cortex +UBERON_0000955 brain UBERON_8440005 rostral periventricular region of the third ventricle +UBERON_0000955 brain UBERON_8440007 periventricular hypothalamic nucleus, anterior part +UBERON_0000955 brain UBERON_8440008 periventricular hypothalamic nucleus, intermediate part +UBERON_0000955 brain UBERON_8440010 Brodmann (1909) area 17 +UBERON_0000955 brain UBERON_8440011 cortical visual area +UBERON_0000955 brain UBERON_8440012 cerebral nuclei +UBERON_0000955 brain UBERON_8440013 fasciola cinerea +UBERON_0000955 brain UBERON_8440014 ventrolateral preoptic nucleus +UBERON_0000955 brain UBERON_8440015 noradrenergic cell groups +UBERON_0000955 brain UBERON_8440016 noradrenergic cell group A1 +UBERON_0000955 brain UBERON_8440017 noradrenergiccell group A2 +UBERON_0000955 brain UBERON_8440018 noradrenergic cell group A4 +UBERON_0000955 brain UBERON_8440019 noradrenergic cell group A5 +UBERON_0000955 brain UBERON_8440021 noradrenergic cell group A7 +UBERON_0000955 brain UBERON_8440022 noradrenergic cell group A6sc +UBERON_0000955 brain UBERON_8440023 noradrenergic cell group Acg +UBERON_0000955 brain UBERON_8440024 visceral area +UBERON_0000955 brain UBERON_8440025 parapyramidal nucleus +UBERON_0000955 brain UBERON_8440026 parapyramidal nucleus, deep part +UBERON_0000955 brain UBERON_8440027 parapyramidal nucleus, superficial part +UBERON_0000955 brain UBERON_8440028 Perihypoglossal nuclei +UBERON_0000955 brain UBERON_8440030 striatum-like amygdalar nuclei +UBERON_0000955 brain UBERON_8440032 prelimbic area +UBERON_0000955 brain UBERON_8440033 infralimbic area +UBERON_0000955 brain UBERON_8440035 sublaterodorsal nucleus +UBERON_0000955 brain UBERON_8440036 supratrigeminal nucleus +UBERON_0000955 brain UBERON_8440037 accessory facial motor nucleus +UBERON_0000955 brain UBERON_8440038 efferent vestibular nucleus +UBERON_0000955 brain UBERON_8440039 piriform-amygdalar area +UBERON_0000955 brain UBERON_8440040 dorsal peduncular area +UBERON_0000955 brain UBERON_8440041 tuberal nucleus (sensu Rodentia) +UBERON_0000955 brain UBERON_8440042 nucleus lateralis tuberis system (sensu Teleostei) +UBERON_0000955 brain UBERON_8440043 superior paraolivary nucleus +UBERON_0000955 brain UBERON_8480001 capillary of brain +UBERON_0000977 pleura UBERON_0000977 pleura +UBERON_0000977 pleura UBERON_0002400 parietal pleura +UBERON_0000977 pleura UBERON_0002401 visceral pleura +UBERON_0000977 pleura UBERON_0035431 mediastinal pleura +UBERON_0001015 musculature UBERON_0000303 adductor longus +UBERON_0001015 musculature UBERON_0000311 extensor muscle +UBERON_0001015 musculature UBERON_0000366 flexor muscle +UBERON_0001015 musculature UBERON_0000368 adductor brevis +UBERON_0001015 musculature UBERON_0000370 adductor magnus +UBERON_0001015 musculature UBERON_0000372 extensor digitorum brevis pes +UBERON_0001015 musculature UBERON_0000378 tongue muscle +UBERON_0001015 musculature UBERON_0000381 urinary bladder detrusor smooth muscle +UBERON_0001015 musculature UBERON_0000392 longissimus muscle +UBERON_0001015 musculature UBERON_0000569 ileocecal valve +UBERON_0001015 musculature UBERON_0000711 splenius capitis +UBERON_0001015 musculature UBERON_0000933 pharyngeal muscle +UBERON_0001015 musculature UBERON_0000950 gracilis +UBERON_0001015 musculature UBERON_0000951 rotator muscle of the vertebral column +UBERON_0001015 musculature UBERON_0001015 musculature +UBERON_0001015 musculature UBERON_0001100 pectoralis minor +UBERON_0001015 musculature UBERON_0001103 diaphragm +UBERON_0001015 musculature UBERON_0001107 sternohyoid muscle +UBERON_0001015 musculature UBERON_0001108 omohyoid muscle +UBERON_0001015 musculature UBERON_0001109 sternothyroid muscle +UBERON_0001015 musculature UBERON_0001110 thyrohyoid muscle +UBERON_0001015 musculature UBERON_0001111 intercostal muscle +UBERON_0001015 musculature UBERON_0001112 latissimus dorsi muscle +UBERON_0001015 musculature UBERON_0001121 longus colli muscle +UBERON_0001015 musculature UBERON_0001122 scalenus medius +UBERON_0001015 musculature UBERON_0001123 scalenus posterior +UBERON_0001015 musculature UBERON_0001125 serratus ventralis +UBERON_0001015 musculature UBERON_0001126 serratus dorsalis superior muscle +UBERON_0001015 musculature UBERON_0001127 serratus dorsalis inferior muscle +UBERON_0001015 musculature UBERON_0001128 sternocleidomastoid +UBERON_0001015 musculature UBERON_0001129 subscapularis muscle +UBERON_0001015 musculature UBERON_0001133 cardiac muscle tissue +UBERON_0001015 musculature UBERON_0001134 skeletal muscle tissue +UBERON_0001015 musculature UBERON_0001135 smooth muscle tissue +UBERON_0001015 musculature UBERON_0001202 pyloric sphincter +UBERON_0001015 musculature UBERON_0001203 muscularis mucosae of stomach +UBERON_0001015 musculature UBERON_0001210 muscularis mucosae of small intestine +UBERON_0001015 musculature UBERON_0001220 quadratus lumborum +UBERON_0001015 musculature UBERON_0001221 transversus abdominis muscle +UBERON_0001015 musculature UBERON_0001239 muscularis mucosae of large intestine +UBERON_0001015 musculature UBERON_0001240 muscularis mucosae of intestine +UBERON_0001015 musculature UBERON_0001244 internal anal sphincter +UBERON_0001015 musculature UBERON_0001298 psoas major muscle +UBERON_0001015 musculature UBERON_0001325 muscle of pelvis +UBERON_0001015 musculature UBERON_0001326 levator ani muscle +UBERON_0001015 musculature UBERON_0001327 coccygeus muscle +UBERON_0001015 musculature UBERON_0001339 ischiocavernosus muscle +UBERON_0001015 musculature UBERON_0001367 external anal sphincter +UBERON_0001015 musculature UBERON_0001368 obturator externus +UBERON_0001015 musculature UBERON_0001369 iliacus muscle +UBERON_0001015 musculature UBERON_0001370 gluteus maximus +UBERON_0001015 musculature UBERON_0001371 gluteus medius +UBERON_0001015 musculature UBERON_0001372 psoas minor muscle +UBERON_0001015 musculature UBERON_0001373 sartorius muscle +UBERON_0001015 musculature UBERON_0001374 biceps femoris +UBERON_0001015 musculature UBERON_0001375 semitendinosus +UBERON_0001015 musculature UBERON_0001376 tensor fasciae latae muscle +UBERON_0001015 musculature UBERON_0001377 quadriceps femoris +UBERON_0001015 musculature UBERON_0001378 rectus femoris +UBERON_0001015 musculature UBERON_0001379 vastus lateralis +UBERON_0001015 musculature UBERON_0001380 vastus medialis +UBERON_0001015 musculature UBERON_0001381 semimembranosus muscle +UBERON_0001015 musculature UBERON_0001382 pectineus muscle +UBERON_0001015 musculature UBERON_0001383 muscle of leg +UBERON_0001015 musculature UBERON_0001385 tibialis anterior +UBERON_0001015 musculature UBERON_0001386 extensor digitorum longus +UBERON_0001015 musculature UBERON_0001387 fibularis longus +UBERON_0001015 musculature UBERON_0001388 gastrocnemius +UBERON_0001015 musculature UBERON_0001389 soleus muscle +UBERON_0001015 musculature UBERON_0001391 popliteus muscle +UBERON_0001015 musculature UBERON_0001392 flexor hallucis longus +UBERON_0001015 musculature UBERON_0001400 iliocostalis thoracis muscle +UBERON_0001015 musculature UBERON_0001401 longissimus thoracis muscle +UBERON_0001015 musculature UBERON_0001402 longissimus cervicis muscle +UBERON_0001015 musculature UBERON_0001403 longissimus capitis +UBERON_0001015 musculature UBERON_0001405 spinalis thoracis muscle +UBERON_0001015 musculature UBERON_0001407 semispinalis thoracis +UBERON_0001015 musculature UBERON_0001408 semispinalis cervicis +UBERON_0001015 musculature UBERON_0001409 semispinalis capitis +UBERON_0001015 musculature UBERON_0001476 deltoid +UBERON_0001015 musculature UBERON_0001477 infraspinatus muscle +UBERON_0001015 musculature UBERON_0001478 teres major muscle +UBERON_0001015 musculature UBERON_0001482 muscle of shoulder +UBERON_0001015 musculature UBERON_0001495 pectoral muscle +UBERON_0001015 musculature UBERON_0001497 muscle of pelvic girdle +UBERON_0001015 musculature UBERON_0001498 muscle of pes +UBERON_0001015 musculature UBERON_0001499 muscle of arm +UBERON_0001015 musculature UBERON_0001500 muscle of manus +UBERON_0001015 musculature UBERON_0001501 lumbrical muscle of manus +UBERON_0001015 musculature UBERON_0001502 interosseous muscle of manus +UBERON_0001015 musculature UBERON_0001503 dorsal interosseous of manus +UBERON_0001015 musculature UBERON_0001504 lumbrical muscle of pes +UBERON_0001015 musculature UBERON_0001505 coracobrachialis muscle +UBERON_0001015 musculature UBERON_0001506 brachialis muscle +UBERON_0001015 musculature UBERON_0001507 biceps brachii +UBERON_0001015 musculature UBERON_0001509 triceps brachii +UBERON_0001015 musculature UBERON_0001520 pronator teres +UBERON_0001015 musculature UBERON_0001521 flexor carpi radialis muscle +UBERON_0001015 musculature UBERON_0001522 flexor carpi ulnaris muscle +UBERON_0001015 musculature UBERON_0001523 flexor digitorum profundus +UBERON_0001015 musculature UBERON_0001524 extensor carpi radialis longus muscle +UBERON_0001015 musculature UBERON_0001525 extensor carpi radialis brevis muscle +UBERON_0001015 musculature UBERON_0001526 extensor carpi ulnaris muscle +UBERON_0001015 musculature UBERON_0001527 abductor pollicis longus +UBERON_0001015 musculature UBERON_0001562 digastric muscle group +UBERON_0001015 musculature UBERON_0001563 longus capitis muscle +UBERON_0001015 musculature UBERON_0001564 mylohyoid muscle +UBERON_0001015 musculature UBERON_0001565 geniohyoid muscle +UBERON_0001015 musculature UBERON_0001566 cricothyroid muscle +UBERON_0001015 musculature UBERON_0001568 muscle of larynx +UBERON_0001015 musculature UBERON_0001569 constrictor muscle of pharynx +UBERON_0001015 musculature UBERON_0001570 inferior pharyngeal constrictor +UBERON_0001015 musculature UBERON_0001571 genioglossus muscle +UBERON_0001015 musculature UBERON_0001572 hyoglossus muscle +UBERON_0001015 musculature UBERON_0001573 styloglossus +UBERON_0001015 musculature UBERON_0001574 palatoglossus muscle +UBERON_0001015 musculature UBERON_0001575 extrinsic muscle of tongue +UBERON_0001015 musculature UBERON_0001576 intrinsic muscle of tongue +UBERON_0001015 musculature UBERON_0001577 facial muscle +UBERON_0001015 musculature UBERON_0001578 orbicularis oculi muscle +UBERON_0001015 musculature UBERON_0001580 levator labii superioris +UBERON_0001015 musculature UBERON_0001581 depressor labii inferioris +UBERON_0001015 musculature UBERON_0001582 buccinator muscle +UBERON_0001015 musculature UBERON_0001583 extrinsic auricular muscle +UBERON_0001015 musculature UBERON_0001595 auricular muscle +UBERON_0001015 musculature UBERON_0001596 intrinsic auricular muscle +UBERON_0001015 musculature UBERON_0001597 masseter muscle +UBERON_0001015 musculature UBERON_0001598 temporalis muscle +UBERON_0001015 musculature UBERON_0001599 stapedius muscle +UBERON_0001015 musculature UBERON_0001600 tensor tympani +UBERON_0001015 musculature UBERON_0001601 extra-ocular muscle +UBERON_0001015 musculature UBERON_0001602 medial rectus extraocular muscle +UBERON_0001015 musculature UBERON_0001603 lateral rectus extra-ocular muscle +UBERON_0001015 musculature UBERON_0001604 levator palpebrae superioris +UBERON_0001015 musculature UBERON_0001605 ciliary muscle +UBERON_0001015 musculature UBERON_0001606 muscle of iris +UBERON_0001015 musculature UBERON_0001607 sphincter pupillae +UBERON_0001015 musculature UBERON_0001608 dilatator pupillae +UBERON_0001015 musculature UBERON_0001630 muscle organ +UBERON_0001015 musculature UBERON_0001665 triceps surae +UBERON_0001015 musculature UBERON_0001666 flexor digitorum longus +UBERON_0001015 musculature UBERON_0001667 tibialis posterior +UBERON_0001015 musculature UBERON_0001774 skeletal muscle of trunk +UBERON_0001015 musculature UBERON_0001999 iliopsoas +UBERON_0001015 musculature UBERON_0002000 gluteal muscle +UBERON_0001015 musculature UBERON_0002033 arrector muscle of hair +UBERON_0001015 musculature UBERON_0002036 striated muscle tissue +UBERON_0001015 musculature UBERON_0002063 sinus venosus +UBERON_0001015 musculature UBERON_0002111 artery smooth muscle tissue +UBERON_0001015 musculature UBERON_0002112 smooth muscle of esophagus +UBERON_0001015 musculature UBERON_0002251 iliocostalis muscle +UBERON_0001015 musculature UBERON_0002252 splenius +UBERON_0001015 musculature UBERON_0002324 muscle of back +UBERON_0001015 musculature UBERON_0002343 abdomen musculature +UBERON_0001015 musculature UBERON_0002350 conducting system of heart +UBERON_0001015 musculature UBERON_0002351 sinoatrial node +UBERON_0001015 musculature UBERON_0002352 atrioventricular node +UBERON_0001015 musculature UBERON_0002353 bundle of His +UBERON_0001015 musculature UBERON_0002354 cardiac Purkinje fiber +UBERON_0001015 musculature UBERON_0002376 cranial muscle +UBERON_0001015 musculature UBERON_0002377 muscle of neck +UBERON_0001015 musculature UBERON_0002378 muscle of abdomen +UBERON_0001015 musculature UBERON_0002379 perineal muscle +UBERON_0001015 musculature UBERON_0002380 trapezius muscle +UBERON_0001015 musculature UBERON_0002381 pectoralis major +UBERON_0001015 musculature UBERON_0002382 rectus abdominis muscle +UBERON_0001015 musculature UBERON_0002383 supraspinatus muscle +UBERON_0001015 musculature UBERON_0002385 muscle tissue +UBERON_0001015 musculature UBERON_0002403 internal intercostal muscle +UBERON_0001015 musculature UBERON_0002404 transversus thoracis +UBERON_0001015 musculature UBERON_0002426 chest muscle +UBERON_0001015 musculature UBERON_0002461 anterior abdominal wall muscle +UBERON_0001015 musculature UBERON_0002462 erector spinae muscle group +UBERON_0001015 musculature UBERON_0002463 muscle of posterior compartment of hindlimb stylopod +UBERON_0001015 musculature UBERON_0002962 adductor pollicis muscle +UBERON_0001015 musculature UBERON_0002988 first dorsal interosseous of manus +UBERON_0001015 musculature UBERON_0002989 anconeus muscle +UBERON_0001015 musculature UBERON_0003222 flexor digitorum superficialis +UBERON_0001015 musculature UBERON_0003228 supinator muscle +UBERON_0001015 musculature UBERON_0003234 extensor pollicis longus muscle +UBERON_0001015 musculature UBERON_0003250 rectus capitis lateralis muscle +UBERON_0001015 musculature UBERON_0003269 skeletal muscle tissue of eye +UBERON_0001015 musculature UBERON_0003378 cardiac muscle of auricular region +UBERON_0001015 musculature UBERON_0003379 cardiac muscle of right atrium +UBERON_0001015 musculature UBERON_0003380 cardiac muscle of left atrium +UBERON_0001015 musculature UBERON_0003381 cardiac muscle of right ventricle +UBERON_0001015 musculature UBERON_0003382 cardiac muscle of left ventricle +UBERON_0001015 musculature UBERON_0003383 cardiac muscle tissue of interventricular septum +UBERON_0001015 musculature UBERON_0003384 skeletal muscle tissue of pharynx +UBERON_0001015 musculature UBERON_0003386 smooth muscle of eye +UBERON_0001015 musculature UBERON_0003387 smooth muscle of trachea +UBERON_0001015 musculature UBERON_0003389 mesothelium of diaphragm +UBERON_0001015 musculature UBERON_0003452 trabecula carnea cardiac muscle tissue +UBERON_0001015 musculature UBERON_0003658 hip muscle +UBERON_0001015 musculature UBERON_0003659 pedal digit muscle +UBERON_0001015 musculature UBERON_0003660 eyelid muscle +UBERON_0001015 musculature UBERON_0003661 limb muscle +UBERON_0001015 musculature UBERON_0003662 forelimb muscle +UBERON_0001015 musculature UBERON_0003663 hindlimb muscle +UBERON_0001015 musculature UBERON_0003664 manual digit muscle +UBERON_0001015 musculature UBERON_0003665 post-anal tail muscle +UBERON_0001015 musculature UBERON_0003681 masticatory muscle +UBERON_0001015 musculature UBERON_0003682 palatal muscle +UBERON_0001015 musculature UBERON_0003701 calcaneal tendon +UBERON_0001015 musculature UBERON_0003830 thoracic segment muscle +UBERON_0001015 musculature UBERON_0003831 respiratory system muscle +UBERON_0001015 musculature UBERON_0003832 esophagus muscle +UBERON_0001015 musculature UBERON_0003833 abdominal segment muscle +UBERON_0001015 musculature UBERON_0003895 hypaxial myotome region +UBERON_0001015 musculature UBERON_0003897 axial muscle +UBERON_0001015 musculature UBERON_0003898 skeletal muscle tissue of trunk +UBERON_0001015 musculature UBERON_0003900 epaxial myotome region +UBERON_0001015 musculature UBERON_0004012 golgi tendon organ +UBERON_0001015 musculature UBERON_0004057 skeletal muscle fiber triad +UBERON_0001015 musculature UBERON_0004113 muscle of auditory ossicle +UBERON_0001015 musculature UBERON_0004138 somitomeric trunk muscle +UBERON_0001015 musculature UBERON_0004146 His-Purkinje system +UBERON_0001015 musculature UBERON_0004162 pulmonary myocardium +UBERON_0001015 musculature UBERON_0004164 branchiomeric muscle +UBERON_0001015 musculature UBERON_0004178 aorta smooth muscle tissue +UBERON_0001015 musculature UBERON_0004219 urethra smooth muscle layer +UBERON_0001015 musculature UBERON_0004220 large intestine smooth muscle +UBERON_0001015 musculature UBERON_0004221 intestine smooth muscle +UBERON_0001015 musculature UBERON_0004222 stomach smooth muscle +UBERON_0001015 musculature UBERON_0004223 vagina smooth muscle +UBERON_0001015 musculature UBERON_0004225 respiratory system smooth muscle +UBERON_0001015 musculature UBERON_0004226 gastrointestinal system smooth muscle +UBERON_0001015 musculature UBERON_0004227 kidney pelvis smooth muscle +UBERON_0001015 musculature UBERON_0004228 urinary bladder smooth muscle +UBERON_0001015 musculature UBERON_0004229 urinary bladder trigone smooth muscle +UBERON_0001015 musculature UBERON_0004230 urinary bladder neck smooth muscle +UBERON_0001015 musculature UBERON_0004231 anal region smooth muscle +UBERON_0001015 musculature UBERON_0004232 lymphatic vessel smooth muscle +UBERON_0001015 musculature UBERON_0004233 lower respiratory tract smooth muscle +UBERON_0001015 musculature UBERON_0004234 iris smooth muscle +UBERON_0001015 musculature UBERON_0004235 mammary gland smooth muscle +UBERON_0001015 musculature UBERON_0004236 arteriole smooth muscle +UBERON_0001015 musculature UBERON_0004237 blood vessel smooth muscle +UBERON_0001015 musculature UBERON_0004238 spleen smooth muscle +UBERON_0001015 musculature UBERON_0004239 small intestine smooth muscle +UBERON_0001015 musculature UBERON_0004240 gall bladder smooth muscle +UBERON_0001015 musculature UBERON_0004241 main bronchus smooth muscle +UBERON_0001015 musculature UBERON_0004242 bronchus smooth muscle +UBERON_0001015 musculature UBERON_0004243 prostate gland smooth muscle +UBERON_0001015 musculature UBERON_0004245 oviduct smooth muscle +UBERON_0001015 musculature UBERON_0004246 outflow tract smooth muscle +UBERON_0001015 musculature UBERON_0004252 hindlimb stylopod muscle +UBERON_0001015 musculature UBERON_0004253 skin muscle +UBERON_0001015 musculature UBERON_0004254 forelimb zeugopod muscle +UBERON_0001015 musculature UBERON_0004255 forelimb stylopod muscle +UBERON_0001015 musculature UBERON_0004256 hindlimb zeugopod muscle +UBERON_0001015 musculature UBERON_0004277 eye muscle +UBERON_0001015 musculature UBERON_0004296 respiratory system lymphatic vessel smooth muscle +UBERON_0001015 musculature UBERON_0004297 respiratory system blood vessel smooth muscle +UBERON_0001015 musculature UBERON_0004461 skeletal musculature of head +UBERON_0001015 musculature UBERON_0004462 musculature of body wall +UBERON_0001015 musculature UBERON_0004463 musculature of hindlimb stylopod +UBERON_0001015 musculature UBERON_0004464 musculature of thorax +UBERON_0001015 musculature UBERON_0004465 musculature of neck +UBERON_0001015 musculature UBERON_0004466 musculature of leg +UBERON_0001015 musculature UBERON_0004467 musculature of pharynx +UBERON_0001015 musculature UBERON_0004468 set of muscles of vertebral column +UBERON_0001015 musculature UBERON_0004469 musculature of back +UBERON_0001015 musculature UBERON_0004470 musculature of pelvic girdle +UBERON_0001015 musculature UBERON_0004471 musculature of pectoral girdle +UBERON_0001015 musculature UBERON_0004473 musculature of face +UBERON_0001015 musculature UBERON_0004474 musculature of arm +UBERON_0001015 musculature UBERON_0004475 musculature of hip +UBERON_0001015 musculature UBERON_0004476 musculature of shoulder +UBERON_0001015 musculature UBERON_0004478 musculature of larynx +UBERON_0001015 musculature UBERON_0004479 musculature of trunk +UBERON_0001015 musculature UBERON_0004480 musculature of limb +UBERON_0001015 musculature UBERON_0004481 musculature of upper limb +UBERON_0001015 musculature UBERON_0004482 musculature of lower limb +UBERON_0001015 musculature UBERON_0004486 musculature of perineum +UBERON_0001015 musculature UBERON_0004487 musculature of forelimb zeugopod +UBERON_0001015 musculature UBERON_0004488 musculature of pes +UBERON_0001015 musculature UBERON_0004489 musculature of manus +UBERON_0001015 musculature UBERON_0004490 cardiac muscle tissue of atrium +UBERON_0001015 musculature UBERON_0004491 cardiac muscle tissue of interatrial septum +UBERON_0001015 musculature UBERON_0004492 cardiac muscle tissue of cardiac septum +UBERON_0001015 musculature UBERON_0004493 cardiac muscle tissue of myocardium +UBERON_0001015 musculature UBERON_0004494 cardiac muscle tissue of papillary muscle +UBERON_0001015 musculature UBERON_0004495 skeletal muscle tissue of diaphragm +UBERON_0001015 musculature UBERON_0004496 skeletal muscle tissue of iliacus +UBERON_0001015 musculature UBERON_0004497 skeletal muscle tissue of gluteus maximus +UBERON_0001015 musculature UBERON_0004498 skeletal muscle tissue of quadriceps femoris +UBERON_0001015 musculature UBERON_0004499 skeletal muscle tissue of tibialis anterior +UBERON_0001015 musculature UBERON_0004500 skeletal muscle tissue of deltoid +UBERON_0001015 musculature UBERON_0004501 skeletal muscle tissue of teres major +UBERON_0001015 musculature UBERON_0004502 skeletal muscle tissue of biceps brachii +UBERON_0001015 musculature UBERON_0004503 skeletal muscle tissue of digastric +UBERON_0001015 musculature UBERON_0004504 skeletal muscle tissue of mylohyoid +UBERON_0001015 musculature UBERON_0004505 skeletal muscle tissue of orbicularis oculi +UBERON_0001015 musculature UBERON_0004506 skeletal muscle tissue of masseter +UBERON_0001015 musculature UBERON_0004507 skeletal muscle tissue of temporalis +UBERON_0001015 musculature UBERON_0004508 skeletal muscle tissue of levator palpebrae superioris +UBERON_0001015 musculature UBERON_0004509 skeletal muscle tissue of trapezius +UBERON_0001015 musculature UBERON_0004510 skeletal muscle tissue of pectoralis major +UBERON_0001015 musculature UBERON_0004511 skeletal muscle tissue of rectus abdominis +UBERON_0001015 musculature UBERON_0004512 skeletal muscle tissue of supraspinatus +UBERON_0001015 musculature UBERON_0004513 skeletal muscle tissue of internal intercostal muscle +UBERON_0001015 musculature UBERON_0004514 skeletal muscle tissue of transversus thoracis +UBERON_0001015 musculature UBERON_0004515 smooth muscle tissue of bronchiole +UBERON_0001015 musculature UBERON_0004516 smooth muscle tissue of terminal bronchiole +UBERON_0001015 musculature UBERON_0004517 smooth muscle tissue of respiratory bronchiole +UBERON_0001015 musculature UBERON_0004518 muscle of vertebral column +UBERON_0001015 musculature UBERON_0004519 muscle of anal triangle +UBERON_0001015 musculature UBERON_0004520 striated muscle tissue of prostate +UBERON_0001015 musculature UBERON_0004521 vasculature of muscle organ +UBERON_0001015 musculature UBERON_0004525 cardiac muscle tissue of trabecula carnea of right ventricle +UBERON_0001015 musculature UBERON_0004526 cardiac muscle tissue of trabecula carnea of left ventricle +UBERON_0001015 musculature UBERON_0004550 gastroesophageal sphincter +UBERON_0001015 musculature UBERON_0004590 sphincter muscle +UBERON_0001015 musculature UBERON_0004648 esophagus muscularis mucosa +UBERON_0001015 musculature UBERON_0004667 interventricular septum muscular part +UBERON_0001015 musculature UBERON_0004695 arterial system smooth muscle +UBERON_0001015 musculature UBERON_0004696 venous system smooth muscle +UBERON_0001015 musculature UBERON_0004829 urethra skeletal muscle tissue +UBERON_0001015 musculature UBERON_0004830 respiratory system skeletal muscle +UBERON_0001015 musculature UBERON_0004831 esophagus skeletal muscle +UBERON_0001015 musculature UBERON_0004832 anal region skeletal muscle +UBERON_0001015 musculature UBERON_0004833 lip skeletal muscle +UBERON_0001015 musculature UBERON_0004834 hepatic duct smooth muscle +UBERON_0001015 musculature UBERON_0004835 epididymis smooth muscle +UBERON_0001015 musculature UBERON_0004895 alveolar smooth muscle +UBERON_0001015 musculature UBERON_0004915 sphincter of hepatopancreatic ampulla +UBERON_0001015 musculature UBERON_0004916 anal sphincter +UBERON_0001015 musculature UBERON_0004917 urethral sphincter +UBERON_0001015 musculature UBERON_0004918 internal urethral sphincter +UBERON_0001015 musculature UBERON_0004919 external urethral sphincter +UBERON_0001015 musculature UBERON_0005063 left ventricular compact myocardium +UBERON_0001015 musculature UBERON_0005064 left ventricular trabecular myocardium +UBERON_0001015 musculature UBERON_0005065 right ventricular compact myocardium +UBERON_0001015 musculature UBERON_0005066 right ventricular trabecular myocardium +UBERON_0001015 musculature UBERON_0005091 left horn of sinus venosus +UBERON_0001015 musculature UBERON_0005092 right horn of sinus venosus +UBERON_0001015 musculature UBERON_0005109 metanephric smooth muscle tissue +UBERON_0001015 musculature UBERON_0005321 mesonephric smooth muscle tissue +UBERON_0001015 musculature UBERON_0005441 external intercostal muscle +UBERON_0001015 musculature UBERON_0005442 abdominal external oblique muscle +UBERON_0001015 musculature UBERON_0005454 abdominal internal oblique muscle +UBERON_0001015 musculature UBERON_0005461 levator scapulae muscle +UBERON_0001015 musculature UBERON_0005467 platysma +UBERON_0001015 musculature UBERON_0005493 hyoid muscle +UBERON_0001015 musculature UBERON_0005621 rhomboid +UBERON_0001015 musculature UBERON_0005982 Bachmann's bundle +UBERON_0001015 musculature UBERON_0005986 left bundle branch +UBERON_0001015 musculature UBERON_0005987 right bundle branch +UBERON_0001015 musculature UBERON_0006067 musculature of hindlimb zeugopod +UBERON_0001015 musculature UBERON_0006204 inguinal ligament +UBERON_0001015 musculature UBERON_0006205 pectineal ligament +UBERON_0001015 musculature UBERON_0006219 deltoid pre-muscle mass +UBERON_0001015 musculature UBERON_0006230 extrinsic ocular pre-muscle mass +UBERON_0001015 musculature UBERON_0006318 orbitalis muscle +UBERON_0001015 musculature UBERON_0006320 inferior oblique extraocular muscle +UBERON_0001015 musculature UBERON_0006321 superior oblique extraocular muscle +UBERON_0001015 musculature UBERON_0006322 inferior rectus extraocular muscle +UBERON_0001015 musculature UBERON_0006323 superior rectus extraocular muscle +UBERON_0001015 musculature UBERON_0006327 laryngeal extrinsic muscle +UBERON_0001015 musculature UBERON_0006328 laryngeal intrinsic muscle +UBERON_0001015 musculature UBERON_0006329 superior pharyngeal constrictor +UBERON_0001015 musculature UBERON_0006497 interosseous muscle of pes +UBERON_0001015 musculature UBERON_0006499 dorsal pes interosseous muscle +UBERON_0001015 musculature UBERON_0006502 plantar interosseous muscle of pes +UBERON_0001015 musculature UBERON_0006505 palmar interosseous muscle of manus +UBERON_0001015 musculature UBERON_0006508 interosseous muscle of autopod +UBERON_0001015 musculature UBERON_0006531 oculomotor muscle +UBERON_0001015 musculature UBERON_0006532 oblique extraocular muscle +UBERON_0001015 musculature UBERON_0006533 rectus extraocular muscle +UBERON_0001015 musculature UBERON_0006581 mantle muscle +UBERON_0001015 musculature UBERON_0006614 aponeurosis +UBERON_0001015 musculature UBERON_0006661 epicranial aponeurosis +UBERON_0001015 musculature UBERON_0006670 central tendon of diaphragm +UBERON_0001015 musculature UBERON_0006674 inguinal ring +UBERON_0001015 musculature UBERON_0006676 muscularis mucosa +UBERON_0001015 musculature UBERON_0006680 trachealis +UBERON_0001015 musculature UBERON_0006718 medial pterygoid muscle +UBERON_0001015 musculature UBERON_0006719 lateral pterygoid muscle +UBERON_0001015 musculature UBERON_0006720 pterygoid muscle +UBERON_0001015 musculature UBERON_0006821 cutaneous muscle +UBERON_0001015 musculature UBERON_0006831 pre-tracheal muscle +UBERON_0001015 musculature UBERON_0006845 abductor muscle +UBERON_0001015 musculature UBERON_0006907 slow muscle tissue +UBERON_0001015 musculature UBERON_0006908 fast muscle tissue +UBERON_0001015 musculature UBERON_0006912 urinary bladder muscularis mucosa +UBERON_0001015 musculature UBERON_0007145 dome of diaphragm +UBERON_0001015 musculature UBERON_0007161 medial arcuate ligament +UBERON_0001015 musculature UBERON_0007162 lateral arcuate ligament +UBERON_0001015 musculature UBERON_0007166 left dome of diaphragm +UBERON_0001015 musculature UBERON_0007167 right dome of diaphragm +UBERON_0001015 musculature UBERON_0007168 long head of biceps brachii +UBERON_0001015 musculature UBERON_0007169 short head of biceps brachii +UBERON_0001015 musculature UBERON_0007178 muscularis mucosae of colon +UBERON_0001015 musculature UBERON_0007268 upper esophageal sphincter +UBERON_0001015 musculature UBERON_0007269 pectoral appendage musculature +UBERON_0001015 musculature UBERON_0007270 pelvic appendage musculature +UBERON_0001015 musculature UBERON_0007271 appendage musculature +UBERON_0001015 musculature UBERON_0007521 smooth muscle sphincter +UBERON_0001015 musculature UBERON_0007522 striated muscle sphincter +UBERON_0001015 musculature UBERON_0007612 extensor digitorum communis +UBERON_0001015 musculature UBERON_0007613 extensor digitorum lateralis muscle +UBERON_0001015 musculature UBERON_0007614 extensor digiti minimi muscle +UBERON_0001015 musculature UBERON_0007652 esophageal sphincter +UBERON_0001015 musculature UBERON_0008196 muscle of pectoral girdle +UBERON_0001015 musculature UBERON_0008229 craniocervical region musculature +UBERON_0001015 musculature UBERON_0008230 tibialis +UBERON_0001015 musculature UBERON_0008242 lower back muscle +UBERON_0001015 musculature UBERON_0008243 upper back muscle +UBERON_0001015 musculature UBERON_0008245 pennate muscle +UBERON_0001015 musculature UBERON_0008284 columnella muscle +UBERON_0001015 musculature UBERON_0008331 clitoral smooth muscle +UBERON_0001015 musculature UBERON_0008428 ceratoglossus +UBERON_0001015 musculature UBERON_0008446 flexor pollicis longus muscle +UBERON_0001015 musculature UBERON_0008450 psoas muscle +UBERON_0001015 musculature UBERON_0008453 rectus capitis anterior +UBERON_0001015 musculature UBERON_0008454 rectus capitis posterior major +UBERON_0001015 musculature UBERON_0008455 rectus capitis posterior minor +UBERON_0001015 musculature UBERON_0008464 abductor hallucis muscle +UBERON_0001015 musculature UBERON_0008465 abductor pollicis brevis muscle +UBERON_0001015 musculature UBERON_0008488 cremaster muscle +UBERON_0001015 musculature UBERON_0008521 gluteus minimus +UBERON_0001015 musculature UBERON_0008522 nasal muscle +UBERON_0001015 musculature UBERON_0008523 infrahyoid muscle +UBERON_0001015 musculature UBERON_0008529 piriformis muscle +UBERON_0001015 musculature UBERON_0008537 quadratus femoris +UBERON_0001015 musculature UBERON_0008544 splenius cervicis +UBERON_0001015 musculature UBERON_0008546 iliocostalis cervicis muscle +UBERON_0001015 musculature UBERON_0008549 prevertebral muscle +UBERON_0001015 musculature UBERON_0008571 suprahyoid muscle +UBERON_0001015 musculature UBERON_0008572 posterior crico-arytenoid +UBERON_0001015 musculature UBERON_0008573 lateral crico-arytenoid +UBERON_0001015 musculature UBERON_0008574 transverse arytenoid +UBERON_0001015 musculature UBERON_0008575 oblique arytenoid +UBERON_0001015 musculature UBERON_0008576 thyro-arytenoid +UBERON_0001015 musculature UBERON_0008577 vocalis muscle +UBERON_0001015 musculature UBERON_0008582 superior longitudinal muscle of tongue +UBERON_0001015 musculature UBERON_0008583 transverse muscle of tongue +UBERON_0001015 musculature UBERON_0008584 vertical muscle of tongue +UBERON_0001015 musculature UBERON_0008585 levator veli palatini +UBERON_0001015 musculature UBERON_0008586 tensor veli palatini +UBERON_0001015 musculature UBERON_0008588 procerus +UBERON_0001015 musculature UBERON_0008589 depressor septi nasi +UBERON_0001015 musculature UBERON_0008591 depressor supercilii +UBERON_0001015 musculature UBERON_0008592 levator labii superioris alaeque nasi +UBERON_0001015 musculature UBERON_0008593 zygomaticus major muscle +UBERON_0001015 musculature UBERON_0008594 zygomaticus minor muscle +UBERON_0001015 musculature UBERON_0008595 levator anguli oris +UBERON_0001015 musculature UBERON_0008596 mentalis muscle +UBERON_0001015 musculature UBERON_0008597 depressor anguli oris muscle +UBERON_0001015 musculature UBERON_0008598 risorius muscle +UBERON_0001015 musculature UBERON_0008603 helicis major +UBERON_0001015 musculature UBERON_0008604 helicis minor +UBERON_0001015 musculature UBERON_0008605 tragicus muscle +UBERON_0001015 musculature UBERON_0008606 antitragicus muscle +UBERON_0001015 musculature UBERON_0008607 transverse muscle of auricle +UBERON_0001015 musculature UBERON_0008608 oblique muscle of auricle +UBERON_0001015 musculature UBERON_0008609 transversus menti muscle +UBERON_0001015 musculature UBERON_0008611 scalene muscle +UBERON_0001015 musculature UBERON_0008612 muscle of pelvic diaphragm +UBERON_0001015 musculature UBERON_0008617 innermost intercostal muscle +UBERON_0001015 musculature UBERON_0008618 subcostal muscle +UBERON_0001015 musculature UBERON_0008622 scalenus anterior +UBERON_0001015 musculature UBERON_0008712 stylohyoid muscle +UBERON_0001015 musculature UBERON_0008713 pectoral girdle and thoracic body wall skeletal muscle +UBERON_0001015 musculature UBERON_0008715 muscle tissue of prostate +UBERON_0001015 musculature UBERON_0008777 hypaxial musculature +UBERON_0001015 musculature UBERON_0008778 epaxial musculature +UBERON_0001015 musculature UBERON_0008779 subclavius +UBERON_0001015 musculature UBERON_0008804 stylopharyngeus muscle +UBERON_0001015 musculature UBERON_0008856 stomach muscularis externa +UBERON_0001015 musculature UBERON_0008857 stomach smooth muscle circular layer +UBERON_0001015 musculature UBERON_0008862 stomach smooth muscle inner oblique layer +UBERON_0001015 musculature UBERON_0008863 stomach smooth muscle outer longitudinal layer +UBERON_0001015 musculature UBERON_0008876 hypodermis skeletal muscle layer +UBERON_0001015 musculature UBERON_0008977 pes anserinus of tibia +UBERON_0001015 musculature UBERON_0009132 peroneus +UBERON_0001015 musculature UBERON_0009779 cardiac muscle tissue of right auricle +UBERON_0001015 musculature UBERON_0009780 cardiac muscle tissue of left auricle +UBERON_0001015 musculature UBERON_0009919 ureter smooth muscle +UBERON_0001015 musculature UBERON_0009960 esophagus smooth muscle circular layer +UBERON_0001015 musculature UBERON_0009961 esophagus smooth muscle longitudinal layer +UBERON_0001015 musculature UBERON_0009966 internodal tract +UBERON_0001015 musculature UBERON_0010059 hypoglossal cord +UBERON_0001015 musculature UBERON_0010131 conducting tissue of heart +UBERON_0001015 musculature UBERON_0010234 palatopharyngeus muscle +UBERON_0001015 musculature UBERON_0010235 uvular muscle +UBERON_0001015 musculature UBERON_0010271 musculus retractor bulbi +UBERON_0001015 musculature UBERON_0010379 superior tarsal muscle +UBERON_0001015 musculature UBERON_0010437 zygomaticus muscle +UBERON_0001015 musculature UBERON_0010467 teres muscle +UBERON_0001015 musculature UBERON_0010496 teres minor muscle +UBERON_0001015 musculature UBERON_0010524 fibularis tertius +UBERON_0001015 musculature UBERON_0010526 fibularis brevis +UBERON_0001015 musculature UBERON_0010749 middle pharyngeal constrictor +UBERON_0001015 musculature UBERON_0010890 pelvic complex muscle +UBERON_0001015 musculature UBERON_0010891 pectoral complex muscle +UBERON_0001015 musculature UBERON_0010927 thyroepiglotticus muscle +UBERON_0001015 musculature UBERON_0010928 cricopharyngeus muscle +UBERON_0001015 musculature UBERON_0010930 interhyoideus +UBERON_0001015 musculature UBERON_0010931 intermandibularis +UBERON_0001015 musculature UBERON_0010932 crico-arytenoid muscle +UBERON_0001015 musculature UBERON_0010933 orbicularis oris muscle +UBERON_0001015 musculature UBERON_0010936 thyropharyngeus muscle +UBERON_0001015 musculature UBERON_0010937 salpingopharyngeus muscle +UBERON_0001015 musculature UBERON_0010938 muscle belly +UBERON_0001015 musculature UBERON_0010939 zygomaticomandibularis muscle +UBERON_0001015 musculature UBERON_0010940 muscle of digastric group +UBERON_0001015 musculature UBERON_0010943 anterior digastric muscle +UBERON_0001015 musculature UBERON_0010944 posterior digastric muscle +UBERON_0001015 musculature UBERON_0010945 jugulohyoideus muscle +UBERON_0001015 musculature UBERON_0010946 occipitofrontalis muscle +UBERON_0001015 musculature UBERON_0010947 occipitalis +UBERON_0001015 musculature UBERON_0010948 cleidooccipital muscle +UBERON_0001015 musculature UBERON_0010949 sternooccipital muscle +UBERON_0001015 musculature UBERON_0010950 styloauricular muscle +UBERON_0001015 musculature UBERON_0010951 interscutular muscle +UBERON_0001015 musculature UBERON_0010952 frontalis muscle belly +UBERON_0001015 musculature UBERON_0010953 nasalis muscle +UBERON_0001015 musculature UBERON_0010954 ceratohyoideus muscle +UBERON_0001015 musculature UBERON_0010955 trapezius pre-muscle mass +UBERON_0001015 musculature UBERON_0010956 pterygopharyngeal part of superior pharyngeal constrictor +UBERON_0001015 musculature UBERON_0010958 arytenoid muscle +UBERON_0001015 musculature UBERON_0010959 craniocervical muscle +UBERON_0001015 musculature UBERON_0010961 erector spinae pre-muscle mass +UBERON_0001015 musculature UBERON_0010970 intercostal pre-muscle mass +UBERON_0001015 musculature UBERON_0010974 external intercostal pre-muscle mass +UBERON_0001015 musculature UBERON_0010975 external oblique pre-muscle mass +UBERON_0001015 musculature UBERON_0010981 internal intercostal pre-muscle mass +UBERON_0001015 musculature UBERON_0010982 latissimus dorsi pre-muscle mass +UBERON_0001015 musculature UBERON_0010983 levator scapulae pre-muscle mass +UBERON_0001015 musculature UBERON_0010984 pectoral pre-muscle mass +UBERON_0001015 musculature UBERON_0010985 rhomboid pre-muscle mass +UBERON_0001015 musculature UBERON_0010986 serratus ventralis pre-muscle mass +UBERON_0001015 musculature UBERON_0010987 sterno-mastoid pre-muscle mass +UBERON_0001015 musculature UBERON_0010988 teres major pre-muscle mass +UBERON_0001015 musculature UBERON_0010990 transversospinales muscle +UBERON_0001015 musculature UBERON_0010995 deep part of masseter muscle +UBERON_0001015 musculature UBERON_0011011 brachioradialis +UBERON_0001015 musculature UBERON_0011012 flexor pollicis brevis muscle +UBERON_0001015 musculature UBERON_0011013 spinalis muscle +UBERON_0001015 musculature UBERON_0011014 spinalis capitis muscle +UBERON_0001015 musculature UBERON_0011016 pyramidalis +UBERON_0001015 musculature UBERON_0011017 semispinalis muscle +UBERON_0001015 musculature UBERON_0011022 flexor hallucis brevis muscle +UBERON_0001015 musculature UBERON_0011024 extrinsic extensor muscle of manus +UBERON_0001015 musculature UBERON_0011025 aryepiglotticus muscle +UBERON_0001015 musculature UBERON_0011043 obturator muscle +UBERON_0001015 musculature UBERON_0011048 obturator internus +UBERON_0001015 musculature UBERON_0011140 superficial part of masseter muscle +UBERON_0001015 musculature UBERON_0011144 adductor muscle of hip +UBERON_0001015 musculature UBERON_0011145 adductor muscle +UBERON_0001015 musculature UBERON_0011151 jaw depressor muscle +UBERON_0001015 musculature UBERON_0011185 gastrointestinal sphincter +UBERON_0001015 musculature UBERON_0011207 iliocostalis lumborum +UBERON_0001015 musculature UBERON_0011217 serratus dorsalis muscle +UBERON_0001015 musculature UBERON_0011218 spinalis cervicis muscle +UBERON_0001015 musculature UBERON_0011219 longissimus lumborum muscle +UBERON_0001015 musculature UBERON_0011222 intra-ocular muscle +UBERON_0001015 musculature UBERON_0011251 levator claviculae muscle +UBERON_0001015 musculature UBERON_0011289 pharyngobasilar fascia +UBERON_0001015 musculature UBERON_0011305 superficial part of temporalis +UBERON_0001015 musculature UBERON_0011306 deep part of temporalis +UBERON_0001015 musculature UBERON_0011307 suprazygomatic part of temporalis +UBERON_0001015 musculature UBERON_0011308 pars reflexa of masseter +UBERON_0001015 musculature UBERON_0011312 hyoepiglottic muscle +UBERON_0001015 musculature UBERON_0011313 posterior subdivision of masseter +UBERON_0001015 musculature UBERON_0011314 anterior subdivision of masseter +UBERON_0001015 musculature UBERON_0011364 cleidocephalicus muscle +UBERON_0001015 musculature UBERON_0011366 cleidobrachialis muscle +UBERON_0001015 musculature UBERON_0011368 brachiocephalic muscle +UBERON_0001015 musculature UBERON_0011369 omotransversarius muscle +UBERON_0001015 musculature UBERON_0011371 sternocephalicus muscle +UBERON_0001015 musculature UBERON_0011376 iliothoracic muscle +UBERON_0001015 musculature UBERON_0011377 femorothoracic muscle +UBERON_0001015 musculature UBERON_0011379 male external urethral sphincter +UBERON_0001015 musculature UBERON_0011380 female external urethral sphincter +UBERON_0001015 musculature UBERON_0011385 parotidoauricular muscle +UBERON_0001015 musculature UBERON_0011386 facial modiolus +UBERON_0001015 musculature UBERON_0011387 constrictor vulvae muscle +UBERON_0001015 musculature UBERON_0011388 male bulbospongiosus muscle +UBERON_0001015 musculature UBERON_0011389 bulbospongiosus muscle +UBERON_0001015 musculature UBERON_0011415 cutaneous trunci muscle +UBERON_0001015 musculature UBERON_0011464 levator nasolabialis muscle +UBERON_0001015 musculature UBERON_0011465 longissimus atlantis muscle +UBERON_0001015 musculature UBERON_0011472 ventral lateral sacrocaudal muscle +UBERON_0001015 musculature UBERON_0011495 rectus thoracis muscle +UBERON_0001015 musculature UBERON_0011508 sphincter colli superficialis muscle +UBERON_0001015 musculature UBERON_0011509 sphincter colli profundus muscle +UBERON_0001015 musculature UBERON_0011511 iliococcygeus muscle +UBERON_0001015 musculature UBERON_0011512 puborectalis muscle +UBERON_0001015 musculature UBERON_0011528 pubococcygeus muscle +UBERON_0001015 musculature UBERON_0011531 male pubococcygeus muscle +UBERON_0001015 musculature UBERON_0011532 female pubococcygeus muscle +UBERON_0001015 musculature UBERON_0011533 abductor pollicis, radioulna-prepollox +UBERON_0001015 musculature UBERON_0011534 abductor pollicis muscle +UBERON_0001015 musculature UBERON_0011535 chondroglossus muscle +UBERON_0001015 musculature UBERON_0011564 adductor pollicis muscle of prepollex +UBERON_0001015 musculature UBERON_0011605 supracoracoideus muscle of wing +UBERON_0001015 musculature UBERON_0011643 puboischiofemoralis internus muscle +UBERON_0001015 musculature UBERON_0011644 puboischiofemoralis externus muscle +UBERON_0001015 musculature UBERON_0011645 iliofemoralis muscle +UBERON_0001015 musculature UBERON_0011646 patagialis muscle +UBERON_0001015 musculature UBERON_0011647 depressor mandibulae muscle +UBERON_0001015 musculature UBERON_0011648 jaw muscle +UBERON_0001015 musculature UBERON_0011649 levator operculi +UBERON_0001015 musculature UBERON_0011650 epihyoidean +UBERON_0001015 musculature UBERON_0011683 adductor mandibulae +UBERON_0001015 musculature UBERON_0011684 levator palatoquadrati +UBERON_0001015 musculature UBERON_0011685 preorbitalis muscle +UBERON_0001015 musculature UBERON_0011686 spiracularis muscle +UBERON_0001015 musculature UBERON_0011687 levator hyomandibulae muscle +UBERON_0001015 musculature UBERON_0011792 feather muscle +UBERON_0001015 musculature UBERON_0011867 extensor carpi radialis muscle +UBERON_0001015 musculature UBERON_0011895 endomysium +UBERON_0001015 musculature UBERON_0011896 smooth muscle endomysium +UBERON_0001015 musculature UBERON_0011897 cardiac endomysium +UBERON_0001015 musculature UBERON_0011898 skeletal muscle endomysium +UBERON_0001015 musculature UBERON_0011899 epimysium +UBERON_0001015 musculature UBERON_0011900 perimysium +UBERON_0001015 musculature UBERON_0011903 gizzard smooth muscle +UBERON_0001015 musculature UBERON_0011905 plantaris +UBERON_0001015 musculature UBERON_0011906 muscle head +UBERON_0001015 musculature UBERON_0011907 gastrocnemius medialis +UBERON_0001015 musculature UBERON_0011908 gastrocnemius lateralis +UBERON_0001015 musculature UBERON_0011909 gastrocnemius internus +UBERON_0001015 musculature UBERON_0011910 gastrocnemius externus +UBERON_0001015 musculature UBERON_0011940 arrector pili muscle of vibrissa +UBERON_0001015 musculature UBERON_0011971 calcaneofibular ligament +UBERON_0001015 musculature UBERON_0011996 pharyngeal adductor +UBERON_0001015 musculature UBERON_0012100 appendicocostalis muscle +UBERON_0001015 musculature UBERON_0012118 infraspinatus tendon +UBERON_0001015 musculature UBERON_0012398 large intestine smooth muscle circular layer +UBERON_0001015 musculature UBERON_0012399 large intestine smooth muscle longitudinal layer +UBERON_0001015 musculature UBERON_0012401 small intestine smooth muscle circular layer +UBERON_0001015 musculature UBERON_0012402 small intestine smooth muscle longitudinal layer +UBERON_0001015 musculature UBERON_0012416 respiratory system arterial smooth muscle +UBERON_0001015 musculature UBERON_0012418 respiratory system venous smooth muscle +UBERON_0001015 musculature UBERON_0012487 vaginal sphincter +UBERON_0001015 musculature UBERON_0012494 muscularis mucosae of duodenum +UBERON_0001015 musculature UBERON_0012497 muscularis mucosae of rectum +UBERON_0001015 musculature UBERON_0012520 forelimb epitrochlearis muscle +UBERON_0001015 musculature UBERON_0012615 umbilical smooth muscle +UBERON_0001015 musculature UBERON_0012621 muscle of Aristotle's lantern +UBERON_0001015 musculature UBERON_0012642 vestimentum muscle +UBERON_0001015 musculature UBERON_0012649 anococcygeus muscle +UBERON_0001015 musculature UBERON_0013114 compressor glandulae muscle +UBERON_0001015 musculature UBERON_0013115 pterygoideus glandulae muscle +UBERON_0001015 musculature UBERON_0013116 venom gland musculature +UBERON_0001015 musculature UBERON_0013221 caudofemoralis +UBERON_0001015 musculature UBERON_0013497 muscularis orbicularis +UBERON_0001015 musculature UBERON_0013501 cloacal sphincter +UBERON_0001015 musculature UBERON_0013511 ambiens muscle +UBERON_0001015 musculature UBERON_0013635 sphincter colli muscle +UBERON_0001015 musculature UBERON_0013700 axial musculature +UBERON_0001015 musculature UBERON_0013715 ilio-marsupialis muscle +UBERON_0001015 musculature UBERON_0013716 branch of ilio-marsupialis muscle +UBERON_0001015 musculature UBERON_0013717 superficial inguinal ring +UBERON_0001015 musculature UBERON_0013721 deep inguinal ring +UBERON_0001015 musculature UBERON_0014375 intrinsic muscle of manus +UBERON_0001015 musculature UBERON_0014376 thenar muscle +UBERON_0001015 musculature UBERON_0014377 hypothenar muscle +UBERON_0001015 musculature UBERON_0014378 intrinsic muscle of pes +UBERON_0001015 musculature UBERON_0014379 adductor hallucis muscle +UBERON_0001015 musculature UBERON_0014380 flexor digitorum brevis muscle +UBERON_0001015 musculature UBERON_0014398 respiratory muscle +UBERON_0001015 musculature UBERON_0014410 fibularis quartus +UBERON_0001015 musculature UBERON_0014458 female bulbospongiosus muscle +UBERON_0001015 musculature UBERON_0014765 crus of diaphragm +UBERON_0001015 musculature UBERON_0014766 right crus of diaphragm +UBERON_0001015 musculature UBERON_0014767 left crus of diaphragm +UBERON_0001015 musculature UBERON_0014780 palatine aponeurosis +UBERON_0001015 musculature UBERON_0014783 cloacal muscle +UBERON_0001015 musculature UBERON_0014784 transverse cloacal muscle +UBERON_0001015 musculature UBERON_0014785 levator cloacae +UBERON_0001015 musculature UBERON_0014791 musculature of forelimb stylopod +UBERON_0001015 musculature UBERON_0014792 musculature of pelvic complex +UBERON_0001015 musculature UBERON_0014793 musculature of pectoral complex +UBERON_0001015 musculature UBERON_0014794 pectoral appendage muscle +UBERON_0001015 musculature UBERON_0014795 pelvic appendage muscle +UBERON_0001015 musculature UBERON_0014797 hypobranchial group muscle +UBERON_0001015 musculature UBERON_0014798 clavotrapezius muscle +UBERON_0001015 musculature UBERON_0014799 acromiotrapezius muscle +UBERON_0001015 musculature UBERON_0014800 spinotrapezius muscle +UBERON_0001015 musculature UBERON_0014835 serratus muscle +UBERON_0001015 musculature UBERON_0014836 levator arcuum muscle +UBERON_0001015 musculature UBERON_0014837 pectoantebrachialis +UBERON_0001015 musculature UBERON_0014838 xiphihumeralis +UBERON_0001015 musculature UBERON_0014840 supracoracoideus muscle +UBERON_0001015 musculature UBERON_0014842 puboischiofemoralis muscle +UBERON_0001015 musculature UBERON_0014847 vastus intermedius +UBERON_0001015 musculature UBERON_0014848 tendon of quadriceps femoris +UBERON_0001015 musculature UBERON_0014888 iliotibialis muscle +UBERON_0001015 musculature UBERON_0014892 skeletal muscle organ +UBERON_0001015 musculature UBERON_0014917 pouch sphincter +UBERON_0001015 musculature UBERON_0015125 anterior internodal tract +UBERON_0001015 musculature UBERON_0015126 middle internodal tract +UBERON_0001015 musculature UBERON_0015127 posterior internodal tract +UBERON_0001015 musculature UBERON_0015214 arcuate ligament +UBERON_0001015 musculature UBERON_0015215 median arcuate ligament +UBERON_0001015 musculature UBERON_0015430 levator auris longus muscle +UBERON_0001015 musculature UBERON_0015717 smooth muscle tissue layer of ejaculatory duct +UBERON_0001015 musculature UBERON_0015751 inferior tarsal muscle +UBERON_0001015 musculature UBERON_0015783 smooth muscle layer in fatty layer of subcutaneous tissue +UBERON_0001015 musculature UBERON_0015789 cranial or facial muscle +UBERON_0001015 musculature UBERON_0016458 esophageal hiatus +UBERON_0001015 musculature UBERON_0016493 palmaris longus muscle +UBERON_0001015 musculature UBERON_0016499 esophageal-pneumatic duct sphincter +UBERON_0001015 musculature UBERON_0016500 muscularis mucosa of fundus of urinary bladder +UBERON_0001015 musculature UBERON_0016501 muscularis mucosae of fundus of stomach +UBERON_0001015 musculature UBERON_0016519 muscularis mucosae of jejunum +UBERON_0001015 musculature UBERON_0016886 muscle tissue of terminal part of digestive tract +UBERON_0001015 musculature UBERON_0017098 retractor lateralis posterior muscle +UBERON_0001015 musculature UBERON_0017099 retractor lateralis anterior muscle +UBERON_0001015 musculature UBERON_0017102 flexor cruris lateralis pars accessoria muscle +UBERON_0001015 musculature UBERON_0017156 flexor cruris lateralis muscle +UBERON_0001015 musculature UBERON_0017196 retractor lateralis muscle +UBERON_0001015 musculature UBERON_0017618 extensor pollicis brevis muscle +UBERON_0001015 musculature UBERON_0017647 prevertebral muscle of neck +UBERON_0001015 musculature UBERON_0018103 posterior fascicle of palatopharyngeus +UBERON_0001015 musculature UBERON_0018108 superior auricular muscle +UBERON_0001015 musculature UBERON_0018109 anterior auricular muscle +UBERON_0001015 musculature UBERON_0018110 posterior auricular muscle +UBERON_0001015 musculature UBERON_0018112 rectum smooth muscle tissue +UBERON_0001015 musculature UBERON_0018240 panniculus carnosus muscle +UBERON_0001015 musculature UBERON_0018529 female inguinal ring +UBERON_0001015 musculature UBERON_0018530 male inguinal ring +UBERON_0001015 musculature UBERON_0018531 female superficial inguinal ring +UBERON_0001015 musculature UBERON_0018532 female deep inguinal ring +UBERON_0001015 musculature UBERON_0018544 trigeminal nerve muscle +UBERON_0001015 musculature UBERON_0018649 cardiac muscle tissue of ventricle +UBERON_0001015 musculature UBERON_0019143 intramuscular adipose tissue +UBERON_0001015 musculature UBERON_0019201 gemellus muscle +UBERON_0001015 musculature UBERON_0019202 inferior gemellus muscle +UBERON_0001015 musculature UBERON_0019203 superior gemellus muscle +UBERON_0001015 musculature UBERON_0034908 scapular muscle +UBERON_0001015 musculature UBERON_0035032 abdominal oblique muscle +UBERON_0001015 musculature UBERON_0035081 caudofemoralis longus +UBERON_0001015 musculature UBERON_0035082 caudofemoralis brevis +UBERON_0001015 musculature UBERON_0035091 extrinsic post-anal tail muscle +UBERON_0001015 musculature UBERON_0035092 spinalis caudalis muscle +UBERON_0001015 musculature UBERON_0035093 extensor caudae muscle +UBERON_0001015 musculature UBERON_0035094 extensor caudae medialis muscle +UBERON_0001015 musculature UBERON_0035095 extensor caudae lateralis muscle +UBERON_0001015 musculature UBERON_0035097 iliocaudalis muscle +UBERON_0001015 musculature UBERON_0035098 hemipenis transversus muscle +UBERON_0001015 musculature UBERON_0035099 transversus perinei muscle +UBERON_0001015 musculature UBERON_0035100 retractor penis magnus muscle +UBERON_0001015 musculature UBERON_0035103 perineal body smooth muscle muscle tissue +UBERON_0001015 musculature UBERON_0035112 intrinsic muscle +UBERON_0001015 musculature UBERON_0035147 axochord +UBERON_0001015 musculature UBERON_0035468 costodiaphragmatic recess +UBERON_0001015 musculature UBERON_0035831 costal diaphragm +UBERON_0001015 musculature UBERON_0035832 caval sphincter +UBERON_0001015 musculature UBERON_0035840 esophagogastric junction muscularis mucosa +UBERON_0001015 musculature UBERON_0035842 extensor digitorum brevis manus +UBERON_0001015 musculature UBERON_0035844 lower esophagus muscularis mucosa +UBERON_0001015 musculature UBERON_0036071 diaphragmaticus muscle +UBERON_0001015 musculature UBERON_0036147 oral siphon muscle +UBERON_0001015 musculature UBERON_0036148 orovelar muscle +UBERON_0001015 musculature UBERON_0036172 palmaris brevis +UBERON_0001015 musculature UBERON_0036173 abductor digiti minimi of hand +UBERON_0001015 musculature UBERON_0036174 flexor digiti minimi brevis of hand +UBERON_0001015 musculature UBERON_0036176 opponens digiti minimi of hand +UBERON_0001015 musculature UBERON_0036274 tonsillar pillar +UBERON_0001015 musculature UBERON_2000177 caudal oblique +UBERON_0001015 musculature UBERON_2000195 dorsal depressor muscle +UBERON_0001015 musculature UBERON_2000201 dorsal transverse +UBERON_0001015 musculature UBERON_2000205 external ventral flexor +UBERON_0001015 musculature UBERON_2000216 infracarinalis +UBERON_0001015 musculature UBERON_2000221 internal levator +UBERON_0001015 musculature UBERON_2000230 longitudinal hypochordal +UBERON_0001015 musculature UBERON_2000261 pharyngohyoid +UBERON_0001015 musculature UBERON_2000269 inferior ventral flexor +UBERON_0001015 musculature UBERON_2000285 superficial adductor +UBERON_0001015 musculature UBERON_2000286 superficial lateralis (teleost) +UBERON_0001015 musculature UBERON_2000287 superior dorsal flexor +UBERON_0001015 musculature UBERON_2000288 supracarinalis +UBERON_0001015 musculature UBERON_2000311 adductor mandibulae complex +UBERON_0001015 musculature UBERON_2000313 anal inclinator +UBERON_0001015 musculature UBERON_2000321 caudal levator +UBERON_0001015 musculature UBERON_2000341 dorsal flexor +UBERON_0001015 musculature UBERON_2000342 dorsal inclinator muscle +UBERON_0001015 musculature UBERON_2000349 epaxialis +UBERON_0001015 musculature UBERON_2000362 hypaxialis +UBERON_0001015 musculature UBERON_2000371 internal pharyngoclavicularis +UBERON_0001015 musculature UBERON_2000384 levator arcus palatini +UBERON_0001015 musculature UBERON_2000439 superficial pelvic abductor +UBERON_0001015 musculature UBERON_2000455 ventral flexor +UBERON_0001015 musculature UBERON_2000462 abductor hyohyoid +UBERON_0001015 musculature UBERON_2000465 adductor operculi +UBERON_0001015 musculature UBERON_2000466 anal depressor +UBERON_0001015 musculature UBERON_2000492 coracoradialis +UBERON_0001015 musculature UBERON_2000497 pelvic adductor profundus +UBERON_0001015 musculature UBERON_2000498 dilatator operculi +UBERON_0001015 musculature UBERON_2000499 dorsal arrector +UBERON_0001015 musculature UBERON_2000500 dorsal erector muscle +UBERON_0001015 musculature UBERON_2000503 dorsal oblique branchial muscle +UBERON_0001015 musculature UBERON_2000504 dorsal retractor +UBERON_0001015 musculature UBERON_2000510 external levatores +UBERON_0001015 musculature UBERON_2000522 inferior hyohyoid +UBERON_0001015 musculature UBERON_2000528 interradialis +UBERON_0001015 musculature UBERON_2000564 pelvic abductor profundus +UBERON_0001015 musculature UBERON_2000592 superficial pelvic adductor +UBERON_0001015 musculature UBERON_2000608 ventral transverse +UBERON_0001015 musculature UBERON_2000614 abductor profundus +UBERON_0001015 musculature UBERON_2000615 adductor arcus palatini +UBERON_0001015 musculature UBERON_2000616 adductor profundus +UBERON_0001015 musculature UBERON_2000617 anal erector +UBERON_0001015 musculature UBERON_2000628 caudal fin musculature +UBERON_0001015 musculature UBERON_2000648 dorsal fin musculature +UBERON_0001015 musculature UBERON_2000651 dorsal pelvic arrector +UBERON_0001015 musculature UBERON_2000662 external pharyngoclavicularis +UBERON_0001015 musculature UBERON_2000685 superficial abductor +UBERON_0001015 musculature UBERON_2000701 ventral arrector +UBERON_0001015 musculature UBERON_2000704 ventral pelvic arrector +UBERON_0001015 musculature UBERON_2000715 adductor hyohyoid +UBERON_0001015 musculature UBERON_2000718 epaxial region somite 27 +UBERON_0001015 musculature UBERON_2000729 epaxial region somite 3 +UBERON_0001015 musculature UBERON_2000739 epaxial region somite 11 +UBERON_0001015 musculature UBERON_2000740 epaxial region somite 5 +UBERON_0001015 musculature UBERON_2000741 epaxial region somite 14 +UBERON_0001015 musculature UBERON_2000742 epaxial region somite 17 +UBERON_0001015 musculature UBERON_2000743 epaxial region somite 2 +UBERON_0001015 musculature UBERON_2000744 epaxial region somite 22 +UBERON_0001015 musculature UBERON_2000745 epaxial region somite 25 +UBERON_0001015 musculature UBERON_2000746 epaxial region somite 28 +UBERON_0001015 musculature UBERON_2000747 epaxial region somite 30 +UBERON_0001015 musculature UBERON_2000748 epaxial region somite 6 +UBERON_0001015 musculature UBERON_2000749 epaxial region somite 9 +UBERON_0001015 musculature UBERON_2000751 epaxial region somite 8 +UBERON_0001015 musculature UBERON_2000767 hypaxial region somite 11 +UBERON_0001015 musculature UBERON_2000768 hypaxial region somite 14 +UBERON_0001015 musculature UBERON_2000769 hypaxial region somite 17 +UBERON_0001015 musculature UBERON_2000770 hypaxial region somite 2 +UBERON_0001015 musculature UBERON_2000771 hypaxial region somite 22 +UBERON_0001015 musculature UBERON_2000772 hypaxial region somite 25 +UBERON_0001015 musculature UBERON_2000774 hypaxial region somite 28 +UBERON_0001015 musculature UBERON_2000775 hypaxial region somite 30 +UBERON_0001015 musculature UBERON_2000776 hypaxial region somite 6 +UBERON_0001015 musculature UBERON_2000777 hypaxial region somite 9 +UBERON_0001015 musculature UBERON_2000864 epaxial region somite 1 +UBERON_0001015 musculature UBERON_2000865 epaxial region somite 12 +UBERON_0001015 musculature UBERON_2000866 epaxial region somite 15 +UBERON_0001015 musculature UBERON_2000867 epaxial region somite 18 +UBERON_0001015 musculature UBERON_2000868 epaxial region somite 20 +UBERON_0001015 musculature UBERON_2000869 epaxial region somite 23 +UBERON_0001015 musculature UBERON_2000870 epaxial region somite 26 +UBERON_0001015 musculature UBERON_2000872 epaxial region somite 29 +UBERON_0001015 musculature UBERON_2000873 epaxial region somite 4 +UBERON_0001015 musculature UBERON_2000874 epaxial region somite 7 +UBERON_0001015 musculature UBERON_2000891 hypaxial region somite 1 +UBERON_0001015 musculature UBERON_2000892 hypaxial region somite 12 +UBERON_0001015 musculature UBERON_2000894 hypaxial region somite 15 +UBERON_0001015 musculature UBERON_2000895 hypaxial region somite 18 +UBERON_0001015 musculature UBERON_2000896 hypaxial region somite 20 +UBERON_0001015 musculature UBERON_2000897 hypaxial region somite 23 +UBERON_0001015 musculature UBERON_2000898 hypaxial region somite 26 +UBERON_0001015 musculature UBERON_2000899 hypaxial region somite 29 +UBERON_0001015 musculature UBERON_2000900 hypaxial region somite 4 +UBERON_0001015 musculature UBERON_2000901 hypaxial region somite 7 +UBERON_0001015 musculature UBERON_2000902 hypural musculature +UBERON_0001015 musculature UBERON_2000925 hypaxial region somite 10 +UBERON_0001015 musculature UBERON_2000937 hypaxial region somite 13 +UBERON_0001015 musculature UBERON_2000946 hypaxial region somite 16 +UBERON_0001015 musculature UBERON_2000957 hypaxial region somite 19 +UBERON_0001015 musculature UBERON_2000968 hypaxial region somite 21 +UBERON_0001015 musculature UBERON_2000979 hypaxial region somite 24 +UBERON_0001015 musculature UBERON_2000986 hypaxial region somite 27 +UBERON_0001015 musculature UBERON_2000987 hypaxial region somite 3 +UBERON_0001015 musculature UBERON_2000988 hypaxial region somite 5 +UBERON_0001015 musculature UBERON_2000989 hypaxial region somite 8 +UBERON_0001015 musculature UBERON_2000991 epaxial region somite 10 +UBERON_0001015 musculature UBERON_2001001 epaxial region somite 13 +UBERON_0001015 musculature UBERON_2001012 epaxial region somite 16 +UBERON_0001015 musculature UBERON_2001023 epaxial region somite 19 +UBERON_0001015 musculature UBERON_2001030 epaxial region somite 21 +UBERON_0001015 musculature UBERON_2001040 epaxial region somite 24 +UBERON_0001015 musculature UBERON_2001154 anal fin musculature +UBERON_0001015 musculature UBERON_2001693 protractor operculi +UBERON_0001015 musculature UBERON_2001768 retractor tentaculi +UBERON_0001015 musculature UBERON_2001857 hyoidean artery +UBERON_0001015 musculature UBERON_2002147 arrector muscle +UBERON_0001015 musculature UBERON_2002200 hypobranchial muscle +UBERON_0001015 musculature UBERON_2002221 pericardial muscle +UBERON_0001015 musculature UBERON_2002281 retractor posttemporalis +UBERON_0001015 musculature UBERON_2005074 central cardiac conduction system +UBERON_0001015 musculature UBERON_2005075 peripheral cardiac conduction system +UBERON_0001015 musculature UBERON_2005267 erector muscle +UBERON_0001015 musculature UBERON_2005270 depressor muscle +UBERON_0001015 musculature UBERON_2005273 intestinal mucosal muscle +UBERON_0001015 musculature UBERON_2005276 inclinator muscle +UBERON_0001015 musculature UBERON_2005279 enteric circular muscle +UBERON_0001015 musculature UBERON_2007008 ventral intermandibularis anterior +UBERON_0001015 musculature UBERON_2007048 ventral intermandibularis posterior +UBERON_0001015 musculature UBERON_2007050 constrictor dorsalis +UBERON_0001015 musculature UBERON_2007051 ventral interhyoideus +UBERON_0001015 musculature UBERON_2007052 hyohyoideus +UBERON_0001015 musculature UBERON_2007053 dorsal adductor hyomandibulae +UBERON_0001015 musculature UBERON_3000032 auditory muscles +UBERON_0001015 musculature UBERON_3000224 hyobranchial muscle +UBERON_0001015 musculature UBERON_3000309 narial muscles +UBERON_0001015 musculature UBERON_3010018 M. glutaeus magnus +UBERON_0001015 musculature UBERON_3010022 M. tensor fasciae latae +UBERON_0001015 musculature UBERON_3010027 M. sartorius +UBERON_0001015 musculature UBERON_3010032 M. semitendinosus +UBERON_0001015 musculature UBERON_3010047 M. quadratus femoris +UBERON_0001015 musculature UBERON_3010049 M. gemellus +UBERON_0001015 musculature UBERON_3010065 M. gracilis major +UBERON_0001015 musculature UBERON_3010067 M. gracilis minor +UBERON_0001015 musculature UBERON_3010068 M. semimembranosus +UBERON_0001015 musculature UBERON_3010070 M. ileo-fibularis +UBERON_0001015 musculature UBERON_3010072 M. pyriformis +UBERON_0001015 musculature UBERON_3010074 M. ileo-femoralis +UBERON_0001015 musculature UBERON_3010076 M. iliacus internus +UBERON_0001015 musculature UBERON_3010078 M. iliacus externus +UBERON_0001015 musculature UBERON_3010082 M. pulmonum proprius +UBERON_0001015 musculature UBERON_3010084 M. tibialis posticus +UBERON_0001015 musculature UBERON_3010087 M. tibialis anticus longus +UBERON_0001015 musculature UBERON_3010089 M. extensor cruris brevis +UBERON_0001015 musculature UBERON_3010090 M. tibialis anticus brevis +UBERON_0001015 musculature UBERON_3010097 M. tarsalis posticus +UBERON_0001015 musculature UBERON_3010098 M. plantaris profundus +UBERON_0001015 musculature UBERON_3010125 musculus levator bulbi +UBERON_0001015 musculature UBERON_3010136 M. cruralis +UBERON_0001015 musculature UBERON_3010447 M. extensor digitorum communis longus +UBERON_0001015 musculature UBERON_3010523 M. plantaris longus +UBERON_0001015 musculature UBERON_3010558 quadrato-ethmoid ligament +UBERON_0001015 musculature UBERON_3010618 constrictor laryngis externus +UBERON_0001015 musculature UBERON_3010620 dilatator laryngis +UBERON_0001015 musculature UBERON_3010621 constrictor laryngis anterior +UBERON_0001015 musculature UBERON_3010650 cephalodorsosubpharyngeus +UBERON_0001015 musculature UBERON_3010651 levator bulbi +UBERON_0001015 musculature UBERON_3010654 rectus cervicis +UBERON_0001015 musculature UBERON_3010657 subhyoideus +UBERON_0001015 musculature UBERON_3010659 subarcualis rectus I +UBERON_0001015 musculature UBERON_3010664 m. intertransversarius capitus superior +UBERON_0001015 musculature UBERON_3010667 m. intertransversarius capitis inferior +UBERON_0001015 musculature UBERON_3010673 m. rhomboideus anterior +UBERON_0001015 musculature UBERON_3010691 m. opercularis +UBERON_0001015 musculature UBERON_3010692 m. cucullaris +UBERON_0001015 musculature UBERON_3010694 m. rhomboideus posterior +UBERON_0001015 musculature UBERON_3010695 m. serratus superior +UBERON_0001015 musculature UBERON_3010698 m. serratus medius +UBERON_0001015 musculature UBERON_3010699 m. serratus inferior +UBERON_0001015 musculature UBERON_3010700 levator mandibulae externus +UBERON_0001015 musculature UBERON_3010701 m. latissimus dorsi +UBERON_0001015 musculature UBERON_3010704 levator mandibulae longus +UBERON_0001015 musculature UBERON_3010707 m. dorsalis scapulae +UBERON_0001015 musculature UBERON_3010708 levator mandibulae articularis +UBERON_0001015 musculature UBERON_3010709 levator mandibulae lateralis +UBERON_0001015 musculature UBERON_3010710 m. interscapularis +UBERON_0001015 musculature UBERON_3010711 levator mandibulae externus superficialis +UBERON_0001015 musculature UBERON_3010712 levator mandibulae externus profundus +UBERON_0001015 musculature UBERON_3010713 m. sternoepicoracoideus +UBERON_0001015 musculature UBERON_3010724 levator quadrati +UBERON_0001015 musculature UBERON_3010725 M. coracoradialis +UBERON_0001015 musculature UBERON_3010729 M. coracobrachialis longus +UBERON_0001015 musculature UBERON_3010731 M. coracobrachialis brevis +UBERON_0001015 musculature UBERON_3010734 M. flexor carpi ulnaris +UBERON_0001015 musculature UBERON_3010737 M. palmaris longus +UBERON_0001015 musculature UBERON_3010738 M. palmaris profundis +UBERON_0001015 musculature UBERON_3010739 M. flexor antibrachii medialis +UBERON_0001015 musculature UBERON_3010741 M. ulnocarpalis +UBERON_0001015 musculature UBERON_3010742 interhyoideus posterior +UBERON_0001015 musculature UBERON_3010743 M. flexor antibrachii lateralis superficialis +UBERON_0001015 musculature UBERON_3010744 M. flexor antibrachii lateralis profundus +UBERON_0001015 musculature UBERON_3010745 M. coccygeosacralis +UBERON_0001015 musculature UBERON_3010747 submentalis +UBERON_0001015 musculature UBERON_3010748 M. coccygeoiliacus +UBERON_0001015 musculature UBERON_3010749 M. iliolumbaris +UBERON_0001015 musculature UBERON_3010758 M. coccygeocutaneus +UBERON_0001015 musculature UBERON_3010772 M. dorsalis trunci +UBERON_0001015 musculature UBERON_3010783 m. oblique externus +UBERON_0001015 musculature UBERON_3010784 m. oblique internus +UBERON_0001015 musculature UBERON_3010785 m. transversus +UBERON_0001015 musculature UBERON_3010786 pars subvertebralis +UBERON_0001015 musculature UBERON_3010787 pars transversalis +UBERON_0001015 musculature UBERON_3010790 muscle rectus abdominis superficialis +UBERON_0001015 musculature UBERON_3010792 musculus rectus abdominis profundus +UBERON_0001015 musculature UBERON_3010793 m. ypsiloideus anterior +UBERON_0001015 musculature UBERON_3010797 m. ypsiloideus posterior +UBERON_0001015 musculature UBERON_3010815 m. flexor indicis superficialis proprius +UBERON_0001015 musculature UBERON_3010836 posterolateral supplementary element +UBERON_0001015 musculature UBERON_3010837 apical supplementary element +UBERON_0001015 musculature UBERON_3010838 anterolateral supplementary element +UBERON_0001015 musculature UBERON_4200031 caudalipuboischiotibialis +UBERON_0001015 musculature UBERON_4200041 aponeurosis palmaris +UBERON_0001015 musculature UBERON_4200101 m.scapulotriceps +UBERON_0001015 musculature UBERON_4200121 puboischiotibialis muscle +UBERON_0001015 musculature UBERON_4200122 pubotibialis +UBERON_0001015 musculature UBERON_4200218 musculotendinous bundle +UBERON_0001015 musculature UBERON_4200225 scapulohumeralis muscle +UBERON_0001015 musculature UBERON_4300030 flexor caudalis muscle +UBERON_0001015 musculature UBERON_4300210 transversus epibranchialis 2 +UBERON_0001015 musculature UBERON_8000009 Purkinje fiber network +UBERON_0001015 musculature UBERON_8410031 muscularis mucosae of appendix +UBERON_0001015 musculature UBERON_8410060 colon smooth muscle circular layer +UBERON_0001015 musculature UBERON_8410061 colon smooth muscle longitudinal layer +UBERON_0001015 musculature UBERON_8410070 levator costarum +UBERON_0001015 musculature UBERON_8480000 iliac vein smooth muscle tissue +UBERON_0001015 musculature UBERON_8480002 thoracic aorta smooth muscle tissue +UBERON_0001015 musculature UBERON_8480003 iliac artery smooth muscle tissue +UBERON_0001016 brain CL_0000540 neuron +UBERON_0001016 brain UBERON_0000955 brain fragment +UBERON_0001016 brain UBERON_0001871 temporal lobe +UBERON_0001016 brain UBERON_0001872 parietal lobe +UBERON_0001016 brain UBERON_0001890 forebrain and midbrain +UBERON_0001016 brain UBERON_0001890 forebrain fragment +UBERON_0001016 brain UBERON_0001894 diencephalon and midbrain +UBERON_0001016 brain UBERON_0001894 pituitary and diencephalon +UBERON_0001016 brain UBERON_0001954 hippocampus proper +UBERON_0001016 brain UBERON_0002021 occipital lobe +UBERON_0001016 brain UBERON_0002028 hindbrain fragment +UBERON_0001016 brain UBERON_0002028 hindbrain without cerebellum +UBERON_0001016 brain UBERON_0002363 dura mater +UBERON_0001016 brain UBERON_0002421 hippocampus +UBERON_0001016 brain UBERON_0002771 middle temporal gyrus +UBERON_0001016 brain UBERON_0016525 frontal lobe +UBERON_0001021 nerve UBERON_0000348 ophthalmic nerve +UBERON_0001021 nerve UBERON_0000375 mandibular nerve +UBERON_0001021 nerve UBERON_0000377 maxillary nerve +UBERON_0001021 nerve UBERON_0000929 pharyngeal branch of vagus nerve +UBERON_0001021 nerve UBERON_0000942 frontal nerve (branch of ophthalmic) +UBERON_0001021 nerve UBERON_0000961 thoracic ganglion +UBERON_0001021 nerve UBERON_0000962 nerve of cervical vertebra +UBERON_0001021 nerve UBERON_0001021 nerve +UBERON_0001021 nerve UBERON_0001027 sensory nerve +UBERON_0001021 nerve UBERON_0001148 median nerve +UBERON_0001021 nerve UBERON_0001267 femoral nerve +UBERON_0001021 nerve UBERON_0001322 sciatic nerve +UBERON_0001021 nerve UBERON_0001323 tibial nerve +UBERON_0001021 nerve UBERON_0001324 common fibular nerve +UBERON_0001021 nerve UBERON_0001492 radial nerve +UBERON_0001021 nerve UBERON_0001493 axillary nerve +UBERON_0001021 nerve UBERON_0001494 ulnar nerve +UBERON_0001021 nerve UBERON_0001579 olfactory nerve +UBERON_0001021 nerve UBERON_0001643 oculomotor nerve +UBERON_0001021 nerve UBERON_0001644 trochlear nerve +UBERON_0001021 nerve UBERON_0001645 trigeminal nerve +UBERON_0001021 nerve UBERON_0001646 abducens nerve +UBERON_0001021 nerve UBERON_0001647 facial nerve +UBERON_0001021 nerve UBERON_0001648 vestibulocochlear nerve +UBERON_0001021 nerve UBERON_0001649 glossopharyngeal nerve +UBERON_0001021 nerve UBERON_0001650 hypoglossal nerve +UBERON_0001021 nerve UBERON_0001759 vagus nerve +UBERON_0001021 nerve UBERON_0001780 spinal nerve +UBERON_0001021 nerve UBERON_0001785 cranial nerve +UBERON_0001021 nerve UBERON_0001884 phrenic nerve +UBERON_0001021 nerve UBERON_0001889 trunk of phrenic nerve +UBERON_0001021 nerve UBERON_0001964 least splanchnic nerve +UBERON_0001021 nerve UBERON_0002004 trunk of sciatic nerve +UBERON_0001021 nerve UBERON_0002009 pulmonary nerve plexus +UBERON_0001021 nerve UBERON_0002019 accessory XI nerve +UBERON_0001021 nerve UBERON_0002327 trunk of intercostal nerve +UBERON_0001021 nerve UBERON_0002442 axillary nerve trunk +UBERON_0001021 nerve UBERON_0002464 nerve trunk +UBERON_0001021 nerve UBERON_0002475 saphenous nerve +UBERON_0001021 nerve UBERON_0002835 thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002845 first thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002846 second thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002847 third thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002848 fifth thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002849 sixth thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002850 seventh thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002851 eighth thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002852 ninth thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002853 tenth thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002854 eleventh thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002855 twelfth thoracic dorsal root ganglion +UBERON_0001021 nerve UBERON_0002924 terminal nerve +UBERON_0001021 nerve UBERON_0003041 trigeminal nerve fibers +UBERON_0001021 nerve UBERON_0003429 abdomen nerve +UBERON_0001021 nerve UBERON_0003430 neck nerve +UBERON_0001021 nerve UBERON_0003431 leg nerve +UBERON_0001021 nerve UBERON_0003432 chest nerve +UBERON_0001021 nerve UBERON_0003433 arm nerve +UBERON_0001021 nerve UBERON_0003434 wrist nerve +UBERON_0001021 nerve UBERON_0003435 pedal digit nerve +UBERON_0001021 nerve UBERON_0003436 shoulder nerve +UBERON_0001021 nerve UBERON_0003437 eyelid nerve +UBERON_0001021 nerve UBERON_0003438 iris nerve +UBERON_0001021 nerve UBERON_0003439 nerve of trunk region +UBERON_0001021 nerve UBERON_0003440 limb nerve +UBERON_0001021 nerve UBERON_0003441 forelimb nerve +UBERON_0001021 nerve UBERON_0003442 hindlimb nerve +UBERON_0001021 nerve UBERON_0003443 thoracic cavity nerve +UBERON_0001021 nerve UBERON_0003444 pelvis nerve +UBERON_0001021 nerve UBERON_0003445 pes nerve +UBERON_0001021 nerve UBERON_0003446 ankle nerve +UBERON_0001021 nerve UBERON_0003447 digit nerve of manus +UBERON_0001021 nerve UBERON_0003448 manus nerve +UBERON_0001021 nerve UBERON_0003535 vagus X nerve trunk +UBERON_0001021 nerve UBERON_0003715 splanchnic nerve +UBERON_0001021 nerve UBERON_0003716 recurrent laryngeal nerve +UBERON_0001021 nerve UBERON_0003719 Pacinian corpuscle +UBERON_0001021 nerve UBERON_0003721 lingual nerve +UBERON_0001021 nerve UBERON_0003723 vestibular nerve +UBERON_0001021 nerve UBERON_0003724 musculocutaneous nerve +UBERON_0001021 nerve UBERON_0003726 thoracic nerve +UBERON_0001021 nerve UBERON_0003727 intercostal nerve +UBERON_0001021 nerve UBERON_0003824 nerve of thoracic segment +UBERON_0001021 nerve UBERON_0003825 nerve of abdominal segment +UBERON_0001021 nerve UBERON_0004019 baroreceptor +UBERON_0001021 nerve UBERON_0004116 nerve of tympanic cavity +UBERON_0001021 nerve UBERON_0004214 upper leg nerve +UBERON_0001021 nerve UBERON_0004215 back nerve +UBERON_0001021 nerve UBERON_0004216 lower arm nerve +UBERON_0001021 nerve UBERON_0004217 upper arm nerve +UBERON_0001021 nerve UBERON_0004218 lower leg nerve +UBERON_0001021 nerve UBERON_0004293 parasympathetic nerve +UBERON_0001021 nerve UBERON_0004295 sympathetic nerve trunk +UBERON_0001021 nerve UBERON_0004727 cochlear nerve +UBERON_0001021 nerve UBERON_0004863 thoracic sympathetic nerve trunk +UBERON_0001021 nerve UBERON_0005197 segmental spinal nerve +UBERON_0001021 nerve UBERON_0005430 ansa cervicalis +UBERON_0001021 nerve UBERON_0005465 obturator nerve +UBERON_0001021 nerve UBERON_0005476 spinal nerve trunk +UBERON_0001021 nerve UBERON_0006798 efferent nerve +UBERON_0001021 nerve UBERON_0006838 ventral ramus of spinal nerve +UBERON_0001021 nerve UBERON_0006839 dorsal ramus of spinal nerve +UBERON_0001021 nerve UBERON_0007712 fourth thoracic spinal ganglion +UBERON_0001021 nerve UBERON_0008810 nasopalatine nerve +UBERON_0001021 nerve UBERON_0008833 great auricular nerve +UBERON_0001021 nerve UBERON_0008906 lateral line nerve +UBERON_0001021 nerve UBERON_0009009 carotid sinus nerve +UBERON_0001021 nerve UBERON_0009121 vomeronasal nerve +UBERON_0001021 nerve UBERON_0009624 lumbar nerve +UBERON_0001021 nerve UBERON_0009625 sacral nerve +UBERON_0001021 nerve UBERON_0009629 coccygeal nerve +UBERON_0001021 nerve UBERON_0009646 lumbar sympathetic nerve trunk +UBERON_0001021 nerve UBERON_0009673 accessory XI nerve cranial component +UBERON_0001021 nerve UBERON_0009674 accessory XI nerve spinal component +UBERON_0001021 nerve UBERON_0009675 chorda tympani branch of facial nerve +UBERON_0001021 nerve UBERON_0010380 enteric nerve +UBERON_0001021 nerve UBERON_0010406 cholinergic enteric nerve +UBERON_0001021 nerve UBERON_0011096 lacrimal nerve +UBERON_0001021 nerve UBERON_0011315 digastric branch of facial nerve +UBERON_0001021 nerve UBERON_0011316 nerve to stylohyoid from facial nerve +UBERON_0001021 nerve UBERON_0011317 nerve to stylopharyngeus from glossopharyngeal nerve +UBERON_0001021 nerve UBERON_0011321 masseteric nerve +UBERON_0001021 nerve UBERON_0011322 mylohyoid nerve +UBERON_0001021 nerve UBERON_0011326 superior laryngeal nerve +UBERON_0001021 nerve UBERON_0011327 deep temporal nerve +UBERON_0001021 nerve UBERON_0011390 pudendal nerve +UBERON_0001021 nerve UBERON_0011391 perineal nerve +UBERON_0001021 nerve UBERON_0011766 left recurrent laryngeal nerve +UBERON_0001021 nerve UBERON_0011767 right recurrent laryngeal nerve +UBERON_0001021 nerve UBERON_0011779 nerve of head region +UBERON_0001021 nerve UBERON_0011924 postganglionic autonomic fiber +UBERON_0001021 nerve UBERON_0011925 preganglionic autonomic fiber +UBERON_0001021 nerve UBERON_0011926 postganglionic sympathetic fiber +UBERON_0001021 nerve UBERON_0011927 preganglionic sympathetic fiber +UBERON_0001021 nerve UBERON_0011929 postganglionic parasympathetic fiber +UBERON_0001021 nerve UBERON_0011930 preganglionic parasympathetic fiber +UBERON_0001021 nerve UBERON_0012448 Herbst's corpuscle +UBERON_0001021 nerve UBERON_0012449 mechanoreceptor +UBERON_0001021 nerve UBERON_0012450 Meissner's corpuscle +UBERON_0001021 nerve UBERON_0012451 sensory receptor +UBERON_0001021 nerve UBERON_0012453 nerve ending +UBERON_0001021 nerve UBERON_0012456 Merkel nerve ending +UBERON_0001021 nerve UBERON_0012457 Ruffini nerve ending +UBERON_0001021 nerve UBERON_0013646 buccal nerve +UBERON_0001021 nerve UBERON_0013647 lateral pterygoid nerve +UBERON_0001021 nerve UBERON_0013671 nerve ending of of corpus cavernosum maxillaris +UBERON_0001021 nerve UBERON_0015161 inferior branch of oculomotor nerve +UBERON_0001021 nerve UBERON_0015162 superior branch of oculomotor nerve +UBERON_0001021 nerve UBERON_0015488 sural nerve +UBERON_0001021 nerve UBERON_0016430 palmar branch of median nerve +UBERON_0001021 nerve UBERON_0017641 meningeal branch of spinal nerve +UBERON_0001021 nerve UBERON_0017642 communicating branch of spinal nerve +UBERON_0001021 nerve UBERON_0018389 interoceptor +UBERON_0001021 nerve UBERON_0018391 chemoreceptor +UBERON_0001021 nerve UBERON_0018392 arterial baroreceptor +UBERON_0001021 nerve UBERON_0018393 low-pressure baroreceptor +UBERON_0001021 nerve UBERON_0018394 vein baroreceptor +UBERON_0001021 nerve UBERON_0018395 cardiac baroreceptor +UBERON_0001021 nerve UBERON_0018396 pulmonary baroreceptor +UBERON_0001021 nerve UBERON_0018398 superior alveolar nerve +UBERON_0001021 nerve UBERON_0018401 posterior superior alveolar nerve +UBERON_0001021 nerve UBERON_0018405 inferior alveolar nerve +UBERON_0001021 nerve UBERON_0018406 mental nerve +UBERON_0001021 nerve UBERON_0018408 infra-orbital nerve +UBERON_0001021 nerve UBERON_0018412 vidian nerve +UBERON_0001021 nerve UBERON_0018675 pelvic splanchnic nerve +UBERON_0001021 nerve UBERON_0018679 thoracic splanchnic nerve +UBERON_0001021 nerve UBERON_0018680 greater splanchnic nerve +UBERON_0001021 nerve UBERON_0018681 lesser splanchnic nerve +UBERON_0001021 nerve UBERON_0018683 lumbar splanchnic nerve +UBERON_0001021 nerve UBERON_0018684 sacral splanchnic nerve +UBERON_0001021 nerve UBERON_0019197 dorsal nerve of penis +UBERON_0001021 nerve UBERON_0019198 dorsal nerve of clitoris +UBERON_0001021 nerve UBERON_0022296 inferior palpebral branch of infra-orbital nerve +UBERON_0001021 nerve UBERON_0022297 palpebral branch of infra-orbital nerve +UBERON_0001021 nerve UBERON_0022298 lower eyelid nerve +UBERON_0001021 nerve UBERON_0022299 upper eyelid nerve +UBERON_0001021 nerve UBERON_0022300 nasociliary nerve +UBERON_0001021 nerve UBERON_0022301 long ciliary nerve +UBERON_0001021 nerve UBERON_0022302 short ciliary nerve +UBERON_0001021 nerve UBERON_0034725 pterygopalatine nerve +UBERON_0001021 nerve UBERON_0034728 autonomic nerve +UBERON_0001021 nerve UBERON_0034729 sympathetic nerve +UBERON_0001021 nerve UBERON_0034901 cervical sympathetic nerve trunk +UBERON_0001021 nerve UBERON_0034902 sacral sympathetic nerve trunk +UBERON_0001021 nerve UBERON_0034942 vibrissal follicle-sinus complex +UBERON_0001021 nerve UBERON_0034984 nerve to quadratus femoris +UBERON_0001021 nerve UBERON_0035016 tactile mechanoreceptor +UBERON_0001021 nerve UBERON_0035017 nociceptor +UBERON_0001021 nerve UBERON_0035018 thermoreceptor +UBERON_0001021 nerve UBERON_0035020 left vagus X nerve trunk +UBERON_0001021 nerve UBERON_0035021 right vagus X nerve trunk +UBERON_0001021 nerve UBERON_0035022 trunk of segmental spinal nerve +UBERON_0001021 nerve UBERON_0035109 plantar nerve +UBERON_0001021 nerve UBERON_0035110 lateral plantar nerve +UBERON_0001021 nerve UBERON_0035111 medial plantar nerve +UBERON_0001021 nerve UBERON_0035207 deep fibular nerve +UBERON_0001021 nerve UBERON_0035501 unencapsulated tactile receptor +UBERON_0001021 nerve UBERON_0035526 superficial fibular nerve +UBERON_0001021 nerve UBERON_0035642 laryngeal nerve +UBERON_0001021 nerve UBERON_0035646 anterior superior alveolar nerve +UBERON_0001021 nerve UBERON_0035647 posterior auricular nerve +UBERON_0001021 nerve UBERON_0035648 nerve innervating pinna +UBERON_0001021 nerve UBERON_0035649 nerve of penis +UBERON_0001021 nerve UBERON_0035650 nerve of clitoris +UBERON_0001021 nerve UBERON_0035652 fibular nerve +UBERON_0001021 nerve UBERON_0035968 bulboid corpuscle +UBERON_0001021 nerve UBERON_0035969 encapsulated tactile receptor +UBERON_0001021 nerve UBERON_0036143 meningeal branch of mandibular nerve +UBERON_0001021 nerve UBERON_0036216 tympanic nerve +UBERON_0001021 nerve UBERON_0036264 zygomaticotemporal nerve +UBERON_0001021 nerve UBERON_2000175 posterior lateral line nerve +UBERON_0001021 nerve UBERON_2000425 anterior lateral line nerve +UBERON_0001021 nerve UBERON_2001480 dorsal anterior lateral line nerve +UBERON_0001021 nerve UBERON_2001481 ventral anterior lateral line nerve +UBERON_0001021 nerve UBERON_2001482 middle lateral line nerve +UBERON_0001021 nerve UBERON_2002010 hyoideomandibular nerve +UBERON_0001021 nerve UBERON_2005144 ampullary nerve +UBERON_0001021 nerve UBERON_3010105 anterodorsal lateral line nerve (ADLLN) +UBERON_0001021 nerve UBERON_3010109 anteroventral lateral line nerve (AVLLN) +UBERON_0001021 nerve UBERON_3010115 posterior lateral line nerve (PLLN) +UBERON_0001021 nerve UBERON_3010126 middle lateral line nerve (MLLN) +UBERON_0001021 nerve UBERON_3010652 ramus nasalis lateralis +UBERON_0001021 nerve UBERON_3010653 ramus nasalis medialis +UBERON_0001021 nerve UBERON_3010661 ramus nasalis internus +UBERON_0001021 nerve UBERON_3010665 ramule palatinus +UBERON_0001021 nerve UBERON_3010668 ramules cutaneous +UBERON_0001021 nerve UBERON_3010669 trunk maxillary-mandibularis +UBERON_0001021 nerve UBERON_3010671 ramule palatonasalis +UBERON_0001021 nerve UBERON_3010693 ramus posterior profundus of V3 +UBERON_0001021 nerve UBERON_3010720 ramus hyomandibularis +UBERON_0001021 nerve UBERON_3010722 ramus palatinus +UBERON_0001021 nerve UBERON_3010726 ramus muscularis of glossopharyngeus nerve +UBERON_0001021 nerve UBERON_3010735 ramus anterior of CN VIII +UBERON_0001021 nerve UBERON_3010736 ramus posterior of CN VIII +UBERON_0001021 nerve UBERON_3010740 ramus auricularis of the vagus nerve +UBERON_0001021 nerve UBERON_3010750 descending branch of the vagus nerve +UBERON_0001021 nerve UBERON_3010751 ramus muscularis of vagus nerve +UBERON_0001021 nerve UBERON_3010754 ramus recurrens +UBERON_0001021 nerve UBERON_3010757 ramus superficial ophthalmic +UBERON_0001021 nerve UBERON_3010759 ramus buccal +UBERON_0001021 nerve UBERON_3010764 laryngeus ventralis +UBERON_0001021 nerve UBERON_3010765 ramus mandibularis externus +UBERON_0001021 nerve UBERON_3010778 jugal ramule +UBERON_0001021 nerve UBERON_3010794 oral ramule +UBERON_0001021 nerve UBERON_3010795 preopercular ramule +UBERON_0001021 nerve UBERON_3010796 ramus supraotic +UBERON_0001021 nerve UBERON_3010798 ramulus suprabranchialis anterior +UBERON_0001021 nerve UBERON_3010799 ramulus suprabranchialis posterior +UBERON_0001021 nerve UBERON_3010801 ramus lateral +UBERON_0001021 nerve UBERON_3010804 ramus ventral +UBERON_0001021 nerve UBERON_8410062 parasympathetic cholinergic nerve +UBERON_0001043 esophagus UBERON_0001043 esophagus +UBERON_0001043 esophagus UBERON_0001096 wall of esophagus +UBERON_0001043 esophagus UBERON_0001972 submucosa of esophagus +UBERON_0001043 esophagus UBERON_0001974 lamina propria of esophagus +UBERON_0001043 esophagus UBERON_0001975 serosa of esophagus +UBERON_0001043 esophagus UBERON_0001976 epithelium of esophagus +UBERON_0001043 esophagus UBERON_0002112 smooth muscle of esophagus +UBERON_0001043 esophagus UBERON_0002469 esophagus mucosa +UBERON_0001043 esophagus UBERON_0003283 mesentery of oesophagus +UBERON_0001043 esophagus UBERON_0003832 esophagus muscle +UBERON_0001043 esophagus UBERON_0004648 esophagus muscularis mucosa +UBERON_0001043 esophagus UBERON_0004794 esophagus secretion +UBERON_0001043 esophagus UBERON_0004831 esophagus skeletal muscle +UBERON_0001043 esophagus UBERON_0006223 dorsal meso-oesophagus +UBERON_0001043 esophagus UBERON_0006920 esophagus squamous epithelium +UBERON_0001043 esophagus UBERON_0006976 peptonephridium +UBERON_0001043 esophagus UBERON_0007356 crop +UBERON_0001043 esophagus UBERON_0007652 esophageal sphincter +UBERON_0001043 esophagus UBERON_0008989 submucosal esophageal gland +UBERON_0001043 esophagus UBERON_0009960 esophagus smooth muscle circular layer +UBERON_0001043 esophagus UBERON_0009961 esophagus smooth muscle longitudinal layer +UBERON_0001043 esophagus UBERON_0011566 lumen of esophagus +UBERON_0001043 esophagus UBERON_0011878 muscle layer of esophagus +UBERON_0001043 esophagus UBERON_0012504 adventitia of esophagus +UBERON_0001043 esophagus UBERON_0013472 upper esophagus +UBERON_0001043 esophagus UBERON_0013473 lower esophagus +UBERON_0001043 esophagus UBERON_0013474 middle part of esophagus +UBERON_0001043 esophagus UBERON_0016499 esophageal-pneumatic duct sphincter +UBERON_0001043 esophagus UBERON_0034724 esophageal taste bud +UBERON_0001043 esophagus UBERON_0035177 abdominal part of esophagus +UBERON_0001043 esophagus UBERON_0035216 thoracic part of esophagus +UBERON_0001043 esophagus UBERON_0035450 cervical part of esophagus +UBERON_0001043 esophagus UBERON_0035833 lower esophagus muscularis layer +UBERON_0001043 esophagus UBERON_0035834 lower esophagus mucosa +UBERON_0001043 esophagus UBERON_0035843 lower esophagus submucosa +UBERON_0001043 esophagus UBERON_0035844 lower esophagus muscularis mucosa +UBERON_0001043 esophagus UBERON_2001430 pneumatic duct +UBERON_0001052 rectum UBERON_0001052 rectum +UBERON_0001052 rectum UBERON_0003330 submucosa of rectum +UBERON_0001052 rectum UBERON_0003334 serosa of rectum +UBERON_0001052 rectum UBERON_0003346 mucosa of rectum +UBERON_0001052 rectum UBERON_0003354 epithelium of rectum +UBERON_0001052 rectum UBERON_0003395 mesentery of rectum +UBERON_0001052 rectum UBERON_0004757 rectal salt gland +UBERON_0001052 rectum UBERON_0009670 rectal lumen +UBERON_0001052 rectum UBERON_0012497 muscularis mucosae of rectum +UBERON_0001052 rectum UBERON_0017626 transverse folds of rectum +UBERON_0001052 rectum UBERON_0017627 rectal valve +UBERON_0001052 rectum UBERON_0018111 muscle layer of rectum +UBERON_0001052 rectum UBERON_0018112 rectum smooth muscle tissue +UBERON_0001052 rectum UBERON_0035377 transverse fold of rectum +UBERON_0001155 colon UBERON_0000168 proximal-distal subdivision of colon +UBERON_0001155 colon UBERON_0000314 cecum mucosa +UBERON_0001155 colon UBERON_0000317 colonic mucosa +UBERON_0001155 colon UBERON_0000397 colonic epithelium +UBERON_0001155 colon UBERON_0001153 caecum +UBERON_0001155 colon UBERON_0001155 colon +UBERON_0001155 colon UBERON_0001156 ascending colon +UBERON_0001155 colon UBERON_0001157 transverse colon +UBERON_0001155 colon UBERON_0001158 descending colon +UBERON_0001155 colon UBERON_0001159 sigmoid colon +UBERON_0001155 colon UBERON_0003331 submucosa of colon +UBERON_0001155 colon UBERON_0003335 serosa of colon +UBERON_0001155 colon UBERON_0003396 mesentery of colon +UBERON_0001155 colon UBERON_0004927 submucosa of cecum +UBERON_0001155 colon UBERON_0004929 submucosa of ascending colon +UBERON_0001155 colon UBERON_0004930 submucosa of transverse colon +UBERON_0001155 colon UBERON_0004931 submucosa of descending colon +UBERON_0001155 colon UBERON_0004932 submucosa of sigmoid colon +UBERON_0001155 colon UBERON_0004990 mucosa of ascending colon +UBERON_0001155 colon UBERON_0004991 mucosa of transverse colon +UBERON_0001155 colon UBERON_0004992 mucosa of descending colon +UBERON_0001155 colon UBERON_0004993 mucosa of sigmoid colon +UBERON_0001155 colon UBERON_0005636 caecum epithelium +UBERON_0001155 colon UBERON_0005677 caecum mesentery +UBERON_0001155 colon UBERON_0005686 caecum dorsal mesentery +UBERON_0001155 colon UBERON_0007159 lumen of colon +UBERON_0001155 colon UBERON_0007177 lamina propria of mucosa of colon +UBERON_0001155 colon UBERON_0007178 muscularis mucosae of colon +UBERON_0001155 colon UBERON_0008971 left colon +UBERON_0001155 colon UBERON_0008972 right colon +UBERON_0001155 colon UBERON_0010239 spiral colon +UBERON_0001155 colon UBERON_0012489 muscle layer of colon +UBERON_0001155 colon UBERON_0013478 cecal tonsil +UBERON_0001155 colon UBERON_0013485 crypt of Lieberkuhn of colon +UBERON_0001155 colon UBERON_0013695 colon endothelium +UBERON_0001155 colon UBERON_0022275 colic flexure +UBERON_0001155 colon UBERON_0022276 splenic flexure of colon +UBERON_0001155 colon UBERON_0022277 hepatic flexure of colon +UBERON_0001155 colon UBERON_0035805 muscle layer of sigmoid colon +UBERON_0001155 colon UBERON_8410015 arteriole of colon +UBERON_0001155 colon UBERON_8410016 descending sigmoid junction +UBERON_0001155 colon UBERON_8410048 venule of colon +UBERON_0001155 colon UBERON_8410051 lymphatic vessel of colon +UBERON_0001155 colon UBERON_8410054 lymphatic capillary of colon +UBERON_0001155 colon UBERON_8410057 capillary of colon +UBERON_0001155 colon UBERON_8410058 myenteric nerve plexus of colon +UBERON_0001155 colon UBERON_8410059 submucous nerve plexus of colon +UBERON_0001155 colon UBERON_8410060 colon smooth muscle circular layer +UBERON_0001155 colon UBERON_8410061 colon smooth muscle longitudinal layer +UBERON_0001264 pancreas UBERON_0000006 islet of Langerhans +UBERON_0001264 pancreas UBERON_0000016 endocrine pancreas +UBERON_0001264 pancreas UBERON_0000017 exocrine pancreas +UBERON_0001264 pancreas UBERON_0001064 ventral pancreatic duct +UBERON_0001264 pancreas UBERON_0001069 head of pancreas +UBERON_0001264 pancreas UBERON_0001150 body of pancreas +UBERON_0001264 pancreas UBERON_0001151 tail of pancreas +UBERON_0001264 pancreas UBERON_0001263 pancreatic acinus +UBERON_0001264 pancreas UBERON_0001264 pancreas +UBERON_0001264 pancreas UBERON_0001978 parenchyma of pancreas +UBERON_0001264 pancreas UBERON_0002527 pancreatic lymph node +UBERON_0001264 pancreas UBERON_0004792 secretion of endocrine pancreas +UBERON_0001264 pancreas UBERON_0004793 secretion of exocrine pancreas +UBERON_0001264 pancreas UBERON_0004795 pancreas secretion +UBERON_0001264 pancreas UBERON_0005220 pancreas head parenchyma +UBERON_0001264 pancreas UBERON_0005223 pancreas body parenchyma +UBERON_0001264 pancreas UBERON_0005224 pancreas tail parenchyma +UBERON_0001264 pancreas UBERON_0005429 dorsal pancreatic duct +UBERON_0001264 pancreas UBERON_0007324 pancreatic lobule +UBERON_0001264 pancreas UBERON_0007329 pancreatic duct +UBERON_0001264 pancreas UBERON_0009708 dorsal pancreas +UBERON_0001264 pancreas UBERON_0009709 ventral pancreas +UBERON_0001264 pancreas UBERON_0009752 pancreas mesenchyme +UBERON_0001264 pancreas UBERON_0009970 epithelium of pancreatic duct +UBERON_0001264 pancreas UBERON_0010373 uncinate process of pancreas +UBERON_0001264 pancreas UBERON_0013697 exocrine pancreas epithelium +UBERON_0001264 pancreas UBERON_0014726 intercalated duct of pancreas +UBERON_0001264 pancreas UBERON_0015280 pancreas left lobe +UBERON_0001264 pancreas UBERON_0015281 pancreas right lobe +UBERON_0001264 pancreas UBERON_0015454 pancreatic fat pad +UBERON_0001264 pancreas UBERON_0018234 stroma of pancreas +UBERON_0001264 pancreas UBERON_0018235 capsule of pancreas +UBERON_0001264 pancreas UBERON_0037530 inferior pancreatic lymph node +UBERON_0001264 pancreas UBERON_2005346 extrapancreatic duct +UBERON_0001723 tongue UBERON_0000396 vallate papilla +UBERON_0001723 tongue UBERON_0001576 intrinsic muscle of tongue +UBERON_0001723 tongue UBERON_0001610 lingual artery +UBERON_0001723 tongue UBERON_0001611 sublingual artery +UBERON_0001723 tongue UBERON_0001723 tongue +UBERON_0001723 tongue UBERON_0001726 papilla of tongue +UBERON_0001723 tongue UBERON_0002448 fungiform papilla +UBERON_0001723 tongue UBERON_0002467 filiform papilla +UBERON_0001723 tongue UBERON_0002468 foliate papilla +UBERON_0001723 tongue UBERON_0003357 epithelium of tongue +UBERON_0001723 tongue UBERON_0003409 gland of tongue +UBERON_0001723 tongue UBERON_0003416 mesenchyme of tongue +UBERON_0001723 tongue UBERON_0004650 tongue keratinized epithelium +UBERON_0001723 tongue UBERON_0005020 mucosa of tongue +UBERON_0001723 tongue UBERON_0006330 anterior lingual gland +UBERON_0001723 tongue UBERON_0006360 tongue intermolar eminence +UBERON_0001723 tongue UBERON_0006688 sublingual caruncle +UBERON_0001723 tongue UBERON_0006689 frenulum of tongue +UBERON_0001723 tongue UBERON_0006699 foramen cecum of tongue +UBERON_0001723 tongue UBERON_0006916 non-keratinized epithelium of tongue +UBERON_0001723 tongue UBERON_0006918 parakeratinized epithelium of tongue +UBERON_0001723 tongue UBERON_0006919 tongue squamous epithelium +UBERON_0001723 tongue UBERON_0007250 lingual tonsil +UBERON_0001723 tongue UBERON_0007367 surface of tongue +UBERON_0001723 tongue UBERON_0007371 superior surface of tongue +UBERON_0001723 tongue UBERON_0007373 inferior surface of tongue +UBERON_0001723 tongue UBERON_0008582 superior longitudinal muscle of tongue +UBERON_0001723 tongue UBERON_0008583 transverse muscle of tongue +UBERON_0001723 tongue UBERON_0008584 vertical muscle of tongue +UBERON_0001723 tongue UBERON_0009471 dorsum of tongue +UBERON_0001723 tongue UBERON_0010032 anterior part of tongue +UBERON_0001723 tongue UBERON_0010033 posterior part of tongue +UBERON_0001723 tongue UBERON_0010052 mucosa of dorsum of tongue +UBERON_0001723 tongue UBERON_0011876 body of tongue +UBERON_0001723 tongue UBERON_0011877 margin of tongue +UBERON_0001723 tongue UBERON_0013475 gustatory gland +UBERON_0001723 tongue UBERON_0013476 dermal layer of tongue +UBERON_0001723 tongue UBERON_0013638 horny papilla of tongue +UBERON_0001723 tongue UBERON_0013639 mechanical papilla of tongue +UBERON_0001723 tongue UBERON_0014389 gustatory papilla of tongue +UBERON_0001723 tongue UBERON_0014451 tongue taste bud +UBERON_0001723 tongue UBERON_0014452 gustatory epithelium of tongue +UBERON_0001723 tongue UBERON_0014790 lingual septum +UBERON_0001723 tongue UBERON_0015445 anterior lingual gland duct +UBERON_0001723 tongue UBERON_0019206 tongue papilla epithelium +UBERON_0001723 tongue UBERON_0023541 conical papilla +UBERON_0001723 tongue UBERON_0034934 Weber's gland +UBERON_0002048 lung UBERON_0000101 lobe of lung +UBERON_0002048 lung UBERON_0000102 lung vasculature +UBERON_0002048 lung UBERON_0000114 lung connective tissue +UBERON_0002048 lung UBERON_0000115 lung epithelium +UBERON_0002048 lung UBERON_0000116 lung saccule +UBERON_0002048 lung UBERON_0001955 epithelium of respiratory bronchiole +UBERON_0002048 lung UBERON_0001958 terminal bronchiole epithelium +UBERON_0002048 lung UBERON_0002048 lung +UBERON_0002048 lung UBERON_0002051 epithelium of bronchiole +UBERON_0002048 lung UBERON_0002167 right lung +UBERON_0002048 lung UBERON_0002168 left lung +UBERON_0002048 lung UBERON_0002169 alveolar sac +UBERON_0002048 lung UBERON_0002170 upper lobe of right lung +UBERON_0002048 lung UBERON_0002171 lower lobe of right lung +UBERON_0002048 lung UBERON_0002172 alveolar atrium +UBERON_0002048 lung UBERON_0002173 pulmonary alveolar duct +UBERON_0002048 lung UBERON_0002174 middle lobe of right lung +UBERON_0002048 lung UBERON_0002183 lobar bronchus +UBERON_0002048 lung UBERON_0002184 segmental bronchus +UBERON_0002048 lung UBERON_0002186 bronchiole +UBERON_0002048 lung UBERON_0002187 terminal bronchiole +UBERON_0002048 lung UBERON_0002188 respiratory bronchiole +UBERON_0002048 lung UBERON_0002299 alveolus of lung +UBERON_0002048 lung UBERON_0002339 epithelium of lobar bronchus +UBERON_0002048 lung UBERON_0002341 epithelium of segmental bronchus +UBERON_0002048 lung UBERON_0002401 visceral pleura +UBERON_0002048 lung UBERON_0003364 epithelium of right lung +UBERON_0002048 lung UBERON_0003365 epithelium of left lung +UBERON_0002048 lung UBERON_0003404 lobar bronchus of right lung +UBERON_0002048 lung UBERON_0003405 lobar bronchus of left lung +UBERON_0002048 lung UBERON_0003512 lung blood vessel +UBERON_0002048 lung UBERON_0003536 right lung alveolar duct +UBERON_0002048 lung UBERON_0003537 left lung alveolar duct +UBERON_0002048 lung UBERON_0003538 right lung bronchiole +UBERON_0002048 lung UBERON_0003539 left lung bronchiole +UBERON_0002048 lung UBERON_0003540 right lung terminal bronchiole +UBERON_0002048 lung UBERON_0003541 left lung terminal bronchiole +UBERON_0002048 lung UBERON_0003542 right lung respiratory bronchiole +UBERON_0002048 lung UBERON_0003543 left lung respiratory bronchiole +UBERON_0002048 lung UBERON_0003591 lobar bronchus connective tissue +UBERON_0002048 lung UBERON_0003615 lung elastic tissue +UBERON_0002048 lung UBERON_0003948 blood-air barrier +UBERON_0002048 lung UBERON_0004515 smooth muscle tissue of bronchiole +UBERON_0002048 lung UBERON_0004516 smooth muscle tissue of terminal bronchiole +UBERON_0002048 lung UBERON_0004517 smooth muscle tissue of respiratory bronchiole +UBERON_0002048 lung UBERON_0004821 pulmonary alveolus epithelium +UBERON_0002048 lung UBERON_0004861 right lung alveolus +UBERON_0002048 lung UBERON_0004862 left lung alveolus +UBERON_0002048 lung UBERON_0004883 lung mesenchyme +UBERON_0002048 lung UBERON_0004884 lobar bronchus mesenchyme +UBERON_0002048 lung UBERON_0004886 lung hilus +UBERON_0002048 lung UBERON_0004887 left lung hilus +UBERON_0002048 lung UBERON_0004888 right lung hilus +UBERON_0002048 lung UBERON_0004889 lobar bronchus vasculature +UBERON_0002048 lung UBERON_0004890 right lung accessory lobe +UBERON_0002048 lung UBERON_0004892 lobar bronchus alveolar system +UBERON_0002048 lung UBERON_0004893 interalveolar septum +UBERON_0002048 lung UBERON_0004894 alveolar wall +UBERON_0002048 lung UBERON_0004895 alveolar smooth muscle +UBERON_0002048 lung UBERON_0004896 right lung accessory lobe lobar bronchus +UBERON_0002048 lung UBERON_0004897 right lung accessory lobe lobar bronchus mesenchyme +UBERON_0002048 lung UBERON_0004899 right lung cranial lobe lobar bronchus mesenchyme +UBERON_0002048 lung UBERON_0004900 right lung middle lobe lobar bronchus mesenchyme +UBERON_0002048 lung UBERON_0004901 right lung lobar bronchus mesenchyme +UBERON_0002048 lung UBERON_0004950 submucosa of lobar bronchus +UBERON_0002048 lung UBERON_0004951 submucosa of segmental bronchus +UBERON_0002048 lung UBERON_0004952 submucosa of bronchiole +UBERON_0002048 lung UBERON_0005037 mucosa of lobar bronchus +UBERON_0002048 lung UBERON_0005038 mucosa of segmental bronchus +UBERON_0002048 lung UBERON_0005039 mucosa of bronchiole +UBERON_0002048 lung UBERON_0005040 mucosa of terminal bronchiole +UBERON_0002048 lung UBERON_0005041 mucosa of respiratory bronchiole +UBERON_0002048 lung UBERON_0005244 lobar bronchus of right lung cranial lobe +UBERON_0002048 lung UBERON_0005245 lobar bronchus of right lung caudal lobe +UBERON_0002048 lung UBERON_0005314 alveolar primary septum +UBERON_0002048 lung UBERON_0005315 alveolar secondary septum +UBERON_0002048 lung UBERON_0005639 right lung cranial lobe epithelium +UBERON_0002048 lung UBERON_0005640 right lung caudal lobe epithelium +UBERON_0002048 lung UBERON_0005655 right lung accessory lobe epithelium +UBERON_0002048 lung UBERON_0005672 right lung endothelium +UBERON_0002048 lung UBERON_0005673 left lung endothelium +UBERON_0002048 lung UBERON_0005674 right lung cranial lobe endothelium +UBERON_0002048 lung UBERON_0005675 right lung caudal lobe endothelium +UBERON_0002048 lung UBERON_0005676 right lung accessory lobe endothelium +UBERON_0002048 lung UBERON_0005678 right lung cranial lobe segmental bronchus +UBERON_0002048 lung UBERON_0005679 right lung caudal lobe segmental bronchus +UBERON_0002048 lung UBERON_0005680 right lung accessory lobe segmental bronchus +UBERON_0002048 lung UBERON_0005681 right lung upper lobe bronchiole +UBERON_0002048 lung UBERON_0005682 right lung accessory lobe bronchiole +UBERON_0002048 lung UBERON_0006518 right lung lobe +UBERON_0002048 lung UBERON_0006524 alveolar system +UBERON_0002048 lung UBERON_0006525 left lung alveolar system +UBERON_0002048 lung UBERON_0006526 right lung alveolar system +UBERON_0002048 lung UBERON_0007311 sputum +UBERON_0002048 lung UBERON_0008870 pulmonary alveolar parenchyma +UBERON_0002048 lung UBERON_0008873 alveolar pore +UBERON_0002048 lung UBERON_0008874 pulmonary acinus +UBERON_0002048 lung UBERON_0008946 lung parenchyma +UBERON_0002048 lung UBERON_0008948 upper lobe of lung +UBERON_0002048 lung UBERON_0008949 lower lobe of lung +UBERON_0002048 lung UBERON_0008950 azygous lobe of lung +UBERON_0002048 lung UBERON_0008951 left lung lobe +UBERON_0002048 lung UBERON_0008952 upper lobe of left lung +UBERON_0002048 lung UBERON_0008953 lower lobe of left lung +UBERON_0002048 lung UBERON_0008954 lingula of left lung +UBERON_0002048 lung UBERON_0008955 middle lobe of lung +UBERON_0002048 lung UBERON_0008961 parabronchus +UBERON_0002048 lung UBERON_0009058 faveolus +UBERON_0002048 lung UBERON_0009071 mesobronchus +UBERON_0002048 lung UBERON_0009072 ventrobronchus +UBERON_0002048 lung UBERON_0009073 dorsobronchus +UBERON_0002048 lung UBERON_0009536 vascular element of left lung +UBERON_0002048 lung UBERON_0009537 vascular element of right lung +UBERON_0002048 lung UBERON_0009602 left lung associated mesenchyme +UBERON_0002048 lung UBERON_0009603 right lung associated mesenchyme +UBERON_0002048 lung UBERON_0010002 pulmonary neuroendocrine body +UBERON_0002048 lung UBERON_0010368 pulmonary lobule +UBERON_0002048 lung UBERON_0010369 secondary pulmonary lobule +UBERON_0002048 lung UBERON_0011862 pulmonary collagen fibril +UBERON_0002048 lung UBERON_0012055 left lung lower lobe bronchiole +UBERON_0002048 lung UBERON_0012056 left lung upper lobe bronchiole +UBERON_0002048 lung UBERON_0012059 right lung lower lobe bronchiole +UBERON_0002048 lung UBERON_0012063 lobar bronchus of right lung middle lobe +UBERON_0002048 lung UBERON_0012065 lobar bronchus of left lung upper lobe +UBERON_0002048 lung UBERON_0012066 lobar bronchus of left lung lower lobe +UBERON_0002048 lung UBERON_0012067 primary bronchiole +UBERON_0002048 lung UBERON_0012068 right lung middle lobe bronchiole +UBERON_0002048 lung UBERON_0012084 lumen of secondary bronchus +UBERON_0002048 lung UBERON_0012085 lumen of tertiary bronchus +UBERON_0002048 lung UBERON_0012086 lumen of parabronchus +UBERON_0002048 lung UBERON_0013479 lung endothelium +UBERON_0002048 lung UBERON_0015794 left lung lobar bronchus epithelium +UBERON_0002048 lung UBERON_0015795 right lung lobar bronchus epitheium +UBERON_0002048 lung UBERON_0016405 pulmonary capillary +UBERON_0002048 lung UBERON_0018226 pulmonary part of lymphatic system +UBERON_0002048 lung UBERON_0018227 pulmonary lymphatic vessel +UBERON_0002048 lung UBERON_0019190 mucous gland of lung +UBERON_0002048 lung UBERON_0035767 intrapulmonary bronchus +UBERON_0002048 lung UBERON_0035963 epithelial lining fluid +UBERON_0002049 vasculature UBERON_0000102 lung vasculature +UBERON_0002049 vasculature UBERON_0000415 artery wall +UBERON_0002049 vasculature UBERON_0000442 right testicular vein +UBERON_0002049 vasculature UBERON_0000443 left testicular vein +UBERON_0002049 vasculature UBERON_0000457 cavernous artery +UBERON_0002049 vasculature UBERON_0000947 aorta +UBERON_0002049 vasculature UBERON_0000985 axillary vein +UBERON_0002049 vasculature UBERON_0001070 external carotid artery +UBERON_0002049 vasculature UBERON_0001071 superficial cervical artery +UBERON_0002049 vasculature UBERON_0001072 posterior vena cava +UBERON_0002049 vasculature UBERON_0001099 subcostal vein +UBERON_0002049 vasculature UBERON_0001101 external jugular vein +UBERON_0002049 vasculature UBERON_0001104 anterior jugular vein +UBERON_0002049 vasculature UBERON_0001106 cephalic vein +UBERON_0002049 vasculature UBERON_0001138 superior mesenteric vein +UBERON_0002049 vasculature UBERON_0001139 common iliac vein +UBERON_0002049 vasculature UBERON_0001140 renal vein +UBERON_0002049 vasculature UBERON_0001141 right renal vein +UBERON_0002049 vasculature UBERON_0001142 left renal vein +UBERON_0002049 vasculature UBERON_0001143 hepatic vein +UBERON_0002049 vasculature UBERON_0001144 testicular vein +UBERON_0002049 vasculature UBERON_0001145 ovarian vein +UBERON_0002049 vasculature UBERON_0001146 suprarenal vein +UBERON_0002049 vasculature UBERON_0001182 superior mesenteric artery +UBERON_0002049 vasculature UBERON_0001183 inferior mesenteric artery +UBERON_0002049 vasculature UBERON_0001184 renal artery +UBERON_0002049 vasculature UBERON_0001185 right renal artery +UBERON_0002049 vasculature UBERON_0001186 left renal artery +UBERON_0002049 vasculature UBERON_0001187 testicular artery +UBERON_0002049 vasculature UBERON_0001188 right testicular artery +UBERON_0002049 vasculature UBERON_0001189 left testicular artery +UBERON_0002049 vasculature UBERON_0001190 ovarian artery +UBERON_0002049 vasculature UBERON_0001191 common iliac artery +UBERON_0002049 vasculature UBERON_0001192 left gastric artery +UBERON_0002049 vasculature UBERON_0001193 hepatic artery +UBERON_0002049 vasculature UBERON_0001194 splenic artery +UBERON_0002049 vasculature UBERON_0001195 inferior pancreaticoduodenal artery +UBERON_0002049 vasculature UBERON_0001196 middle colic artery +UBERON_0002049 vasculature UBERON_0001197 ileocolic artery +UBERON_0002049 vasculature UBERON_0001198 superior suprarenal artery +UBERON_0002049 vasculature UBERON_0001214 pancreatic tributary of splenic vein +UBERON_0002049 vasculature UBERON_0001215 inferior mesenteric vein +UBERON_0002049 vasculature UBERON_0001216 jejunal vein +UBERON_0002049 vasculature UBERON_0001217 ileal vein +UBERON_0002049 vasculature UBERON_0001218 middle colic vein +UBERON_0002049 vasculature UBERON_0001219 ileocolic vein +UBERON_0002049 vasculature UBERON_0001281 hepatic sinusoid +UBERON_0002049 vasculature UBERON_0001308 external iliac artery +UBERON_0002049 vasculature UBERON_0001309 internal iliac artery +UBERON_0002049 vasculature UBERON_0001310 umbilical artery +UBERON_0002049 vasculature UBERON_0001311 inferior vesical artery +UBERON_0002049 vasculature UBERON_0001312 superior vesical artery +UBERON_0002049 vasculature UBERON_0001313 iliolumbar artery +UBERON_0002049 vasculature UBERON_0001314 obturator artery +UBERON_0002049 vasculature UBERON_0001315 superior gluteal artery +UBERON_0002049 vasculature UBERON_0001316 external iliac vein +UBERON_0002049 vasculature UBERON_0001317 internal iliac vein +UBERON_0002049 vasculature UBERON_0001318 inferior vesical vein +UBERON_0002049 vasculature UBERON_0001319 vaginal vein +UBERON_0002049 vasculature UBERON_0001320 iliolumbar vein +UBERON_0002049 vasculature UBERON_0001321 obturator vein +UBERON_0002049 vasculature UBERON_0001330 pampiniform plexus +UBERON_0002049 vasculature UBERON_0001340 dorsal artery of penis +UBERON_0002049 vasculature UBERON_0001354 inferior epigastric artery +UBERON_0002049 vasculature UBERON_0001355 deep femoral artery +UBERON_0002049 vasculature UBERON_0001356 medial circumflex femoral artery +UBERON_0002049 vasculature UBERON_0001357 inferior rectal artery +UBERON_0002049 vasculature UBERON_0001358 perineal artery +UBERON_0002049 vasculature UBERON_0001360 deep circumflex iliac vein +UBERON_0002049 vasculature UBERON_0001361 femoral vein +UBERON_0002049 vasculature UBERON_0001362 perineal vein +UBERON_0002049 vasculature UBERON_0001363 great saphenous vein +UBERON_0002049 vasculature UBERON_0001390 sural artery +UBERON_0002049 vasculature UBERON_0001394 axillary artery +UBERON_0002049 vasculature UBERON_0001395 thoraco-acromial artery +UBERON_0002049 vasculature UBERON_0001396 lateral thoracic artery +UBERON_0002049 vasculature UBERON_0001397 subscapular artery +UBERON_0002049 vasculature UBERON_0001398 brachial artery +UBERON_0002049 vasculature UBERON_0001399 deep brachial artery +UBERON_0002049 vasculature UBERON_0001404 radial artery +UBERON_0002049 vasculature UBERON_0001406 ulnar artery +UBERON_0002049 vasculature UBERON_0001410 common palmar digital artery +UBERON_0002049 vasculature UBERON_0001411 basilic vein +UBERON_0002049 vasculature UBERON_0001412 common palmar digital vein +UBERON_0002049 vasculature UBERON_0001413 brachial vein +UBERON_0002049 vasculature UBERON_0001414 median basilic vein +UBERON_0002049 vasculature UBERON_0001420 subscapular vein +UBERON_0002049 vasculature UBERON_0001422 facial lymphatic vessel +UBERON_0002049 vasculature UBERON_0001425 pectoral lymphatic vessel +UBERON_0002049 vasculature UBERON_0001426 jugular lymphatic vessel +UBERON_0002049 vasculature UBERON_0001472 vaginal venous plexus +UBERON_0002049 vasculature UBERON_0001473 lymphatic vessel +UBERON_0002049 vasculature UBERON_0001496 ascending aorta +UBERON_0002049 vasculature UBERON_0001508 arch of aorta +UBERON_0002049 vasculature UBERON_0001514 descending aorta +UBERON_0002049 vasculature UBERON_0001515 thoracic aorta +UBERON_0002049 vasculature UBERON_0001516 abdominal aorta +UBERON_0002049 vasculature UBERON_0001529 brachiocephalic artery +UBERON_0002049 vasculature UBERON_0001530 common carotid artery plus branches +UBERON_0002049 vasculature UBERON_0001531 right common carotid artery plus branches +UBERON_0002049 vasculature UBERON_0001532 internal carotid artery +UBERON_0002049 vasculature UBERON_0001533 subclavian artery +UBERON_0002049 vasculature UBERON_0001534 right subclavian artery +UBERON_0002049 vasculature UBERON_0001535 vertebral artery +UBERON_0002049 vasculature UBERON_0001536 left common carotid artery plus branches +UBERON_0002049 vasculature UBERON_0001537 anterior tibial artery +UBERON_0002049 vasculature UBERON_0001538 posterior tibial artery +UBERON_0002049 vasculature UBERON_0001539 dorsalis pedis artery +UBERON_0002049 vasculature UBERON_0001540 peroneal artery +UBERON_0002049 vasculature UBERON_0001541 medial plantar artery +UBERON_0002049 vasculature UBERON_0001544 popliteal vein +UBERON_0002049 vasculature UBERON_0001545 anterior tibial vein +UBERON_0002049 vasculature UBERON_0001546 posterior tibial vein +UBERON_0002049 vasculature UBERON_0001547 small saphenous vein +UBERON_0002049 vasculature UBERON_0001548 lateral marginal vein +UBERON_0002049 vasculature UBERON_0001549 dorsal metatarsal vein +UBERON_0002049 vasculature UBERON_0001550 medial marginal vein +UBERON_0002049 vasculature UBERON_0001551 vein of hindlimb zeugopod +UBERON_0002049 vasculature UBERON_0001552 kidney arcuate artery +UBERON_0002049 vasculature UBERON_0001553 medial tarsal artery +UBERON_0002049 vasculature UBERON_0001561 subcostal artery +UBERON_0002049 vasculature UBERON_0001584 left subclavian artery +UBERON_0002049 vasculature UBERON_0001585 anterior vena cava +UBERON_0002049 vasculature UBERON_0001586 internal jugular vein +UBERON_0002049 vasculature UBERON_0001587 subclavian vein +UBERON_0002049 vasculature UBERON_0001588 vertebral vein +UBERON_0002049 vasculature UBERON_0001589 internal thoracic vein +UBERON_0002049 vasculature UBERON_0001590 pericardiacophrenic vein +UBERON_0002049 vasculature UBERON_0001591 thymic vein +UBERON_0002049 vasculature UBERON_0001592 bronchial vein +UBERON_0002049 vasculature UBERON_0001593 venous plexus +UBERON_0002049 vasculature UBERON_0001594 azygos vein +UBERON_0002049 vasculature UBERON_0001610 lingual artery +UBERON_0002049 vasculature UBERON_0001611 sublingual artery +UBERON_0002049 vasculature UBERON_0001612 facial artery +UBERON_0002049 vasculature UBERON_0001613 occipital artery +UBERON_0002049 vasculature UBERON_0001614 superficial temporal artery +UBERON_0002049 vasculature UBERON_0001615 transverse facial artery +UBERON_0002049 vasculature UBERON_0001616 maxillary artery +UBERON_0002049 vasculature UBERON_0001617 mental artery +UBERON_0002049 vasculature UBERON_0001618 buccal artery +UBERON_0002049 vasculature UBERON_0001619 ophthalmic artery +UBERON_0002049 vasculature UBERON_0001620 central retinal artery +UBERON_0002049 vasculature UBERON_0001621 coronary artery +UBERON_0002049 vasculature UBERON_0001622 lacrimal artery +UBERON_0002049 vasculature UBERON_0001623 dorsal nasal artery +UBERON_0002049 vasculature UBERON_0001624 anterior cerebral artery +UBERON_0002049 vasculature UBERON_0001625 right coronary artery +UBERON_0002049 vasculature UBERON_0001626 left coronary artery +UBERON_0002049 vasculature UBERON_0001627 middle cerebral artery +UBERON_0002049 vasculature UBERON_0001628 posterior communicating artery +UBERON_0002049 vasculature UBERON_0001629 carotid body +UBERON_0002049 vasculature UBERON_0001631 thoracic duct +UBERON_0002049 vasculature UBERON_0001632 temporal artery +UBERON_0002049 vasculature UBERON_0001633 basilar artery +UBERON_0002049 vasculature UBERON_0001634 mesencephalic artery +UBERON_0002049 vasculature UBERON_0001635 superior cerebellar artery +UBERON_0002049 vasculature UBERON_0001636 posterior cerebral artery +UBERON_0002049 vasculature UBERON_0001637 artery +UBERON_0002049 vasculature UBERON_0001638 vein +UBERON_0002049 vasculature UBERON_0001639 hepatic portal vein +UBERON_0002049 vasculature UBERON_0001640 celiac artery +UBERON_0002049 vasculature UBERON_0001641 transverse sinus +UBERON_0002049 vasculature UBERON_0001642 superior sagittal sinus +UBERON_0002049 vasculature UBERON_0001651 right pulmonary artery +UBERON_0002049 vasculature UBERON_0001652 left pulmonary artery +UBERON_0002049 vasculature UBERON_0001653 facial vein +UBERON_0002049 vasculature UBERON_0001654 supraorbital vein +UBERON_0002049 vasculature UBERON_0001655 submental vein +UBERON_0002049 vasculature UBERON_0001656 retromandibular vein +UBERON_0002049 vasculature UBERON_0001657 superficial temporal vein +UBERON_0002049 vasculature UBERON_0001658 middle temporal vein +UBERON_0002049 vasculature UBERON_0001659 transverse facial vein +UBERON_0002049 vasculature UBERON_0001660 maxillary vein +UBERON_0002049 vasculature UBERON_0001661 deep temporal vein +UBERON_0002049 vasculature UBERON_0001662 anterior auricular vein +UBERON_0002049 vasculature UBERON_0001663 cerebral vein +UBERON_0002049 vasculature UBERON_0001664 inferior cerebral vein +UBERON_0002049 vasculature UBERON_0001668 cerebellar vein +UBERON_0002049 vasculature UBERON_0001669 superior cerebellar vein +UBERON_0002049 vasculature UBERON_0001670 inferior cerebellar vein +UBERON_0002049 vasculature UBERON_0001671 temporal vein +UBERON_0002049 vasculature UBERON_0001672 anterior cerebral vein +UBERON_0002049 vasculature UBERON_0001673 central retinal vein +UBERON_0002049 vasculature UBERON_0001674 masseteric vein +UBERON_0002049 vasculature UBERON_0001776 optic choroid +UBERON_0002049 vasculature UBERON_0001884 phrenic nerve +UBERON_0002049 vasculature UBERON_0001886 choroid plexus +UBERON_0002049 vasculature UBERON_0001889 trunk of phrenic nerve +UBERON_0002049 vasculature UBERON_0001915 endothelium of capillary +UBERON_0002049 vasculature UBERON_0001916 endothelium of arteriole +UBERON_0002049 vasculature UBERON_0001917 endothelium of artery +UBERON_0002049 vasculature UBERON_0001918 endothelium of venule +UBERON_0002049 vasculature UBERON_0001919 endothelium of vein +UBERON_0002049 vasculature UBERON_0001979 venule +UBERON_0002049 vasculature UBERON_0001980 arteriole +UBERON_0002049 vasculature UBERON_0001981 blood vessel +UBERON_0002049 vasculature UBERON_0001982 capillary +UBERON_0002049 vasculature UBERON_0002011 thoracodorsal artery +UBERON_0002049 vasculature UBERON_0002012 pulmonary artery +UBERON_0002049 vasculature UBERON_0002016 pulmonary vein +UBERON_0002049 vasculature UBERON_0002017 portal vein +UBERON_0002049 vasculature UBERON_0002039 inferior phrenic vein +UBERON_0002049 vasculature UBERON_0002040 bronchial artery +UBERON_0002049 vasculature UBERON_0002042 lymphatic vessel endothelium +UBERON_0002049 vasculature UBERON_0002049 vasculature +UBERON_0002049 vasculature UBERON_0002056 inferior suprarenal artery +UBERON_0002049 vasculature UBERON_0002057 phrenic artery +UBERON_0002049 vasculature UBERON_0002060 femoral artery +UBERON_0002049 vasculature UBERON_0002061 truncus arteriosus +UBERON_0002049 vasculature UBERON_0002064 common cardinal vein +UBERON_0002049 vasculature UBERON_0002065 posterior cardinal vein +UBERON_0002049 vasculature UBERON_0002066 umbilical vein +UBERON_0002049 vasculature UBERON_0002070 superior pancreaticoduodenal artery +UBERON_0002049 vasculature UBERON_0002083 ductus venosus +UBERON_0002049 vasculature UBERON_0002088 lateral thoracic vein +UBERON_0002049 vasculature UBERON_0002089 thoracodorsal vein +UBERON_0002049 vasculature UBERON_0002111 artery smooth muscle tissue +UBERON_0002049 vasculature UBERON_0002200 vasculature of head +UBERON_0002049 vasculature UBERON_0002201 vasculature of trunk +UBERON_0002049 vasculature UBERON_0002203 vasculature of eye +UBERON_0002049 vasculature UBERON_0002243 cutaneous vein +UBERON_0002049 vasculature UBERON_0002249 median artery +UBERON_0002049 vasculature UBERON_0002250 popliteal artery +UBERON_0002049 vasculature UBERON_0002270 hyaloid artery +UBERON_0002049 vasculature UBERON_0002288 choroid plexus of third ventricle +UBERON_0002049 vasculature UBERON_0002290 choroid plexus of fourth ventricle +UBERON_0002049 vasculature UBERON_0002307 choroid plexus of lateral ventricle +UBERON_0002049 vasculature UBERON_0002320 glomerular mesangium +UBERON_0002049 vasculature UBERON_0002333 pulmonary trunk +UBERON_0002049 vasculature UBERON_0002345 descending thoracic aorta +UBERON_0002049 vasculature UBERON_0002443 choroidal blood vessel +UBERON_0002049 vasculature UBERON_0002454 dorsal metacarpal artery +UBERON_0002049 vasculature UBERON_0002455 common plantar digital arteries +UBERON_0002049 vasculature UBERON_0002456 internal thoracic artery +UBERON_0002049 vasculature UBERON_0002457 intersomitic artery +UBERON_0002049 vasculature UBERON_0002458 spinal artery +UBERON_0002049 vasculature UBERON_0002459 inferior palpebral vein +UBERON_0002049 vasculature UBERON_0002460 vesical vein +UBERON_0002049 vasculature UBERON_0002493 uterine artery +UBERON_0002049 vasculature UBERON_0002505 spiral modiolar artery +UBERON_0002049 vasculature UBERON_0002522 tunica media +UBERON_0002049 vasculature UBERON_0003085 ventral aorta +UBERON_0002049 vasculature UBERON_0003086 caudal artery +UBERON_0002049 vasculature UBERON_0003087 anterior cardinal vein +UBERON_0002049 vasculature UBERON_0003088 caudal vein +UBERON_0002049 vasculature UBERON_0003105 dorsal lateral plate region +UBERON_0002049 vasculature UBERON_0003118 pharyngeal arch artery 1 +UBERON_0002049 vasculature UBERON_0003119 pharyngeal arch artery 2 +UBERON_0002049 vasculature UBERON_0003120 pharyngeal arch artery 3 +UBERON_0002049 vasculature UBERON_0003121 pharyngeal arch artery 4 +UBERON_0002049 vasculature UBERON_0003122 pharyngeal arch artery 5 +UBERON_0002049 vasculature UBERON_0003123 pharyngeal arch artery 6 +UBERON_0002049 vasculature UBERON_0003210 blood-cerebrospinal fluid barrier +UBERON_0002049 vasculature UBERON_0003456 respiratory system lymphatic vessel +UBERON_0002049 vasculature UBERON_0003468 ureteric segment of renal artery +UBERON_0002049 vasculature UBERON_0003469 respiratory system artery +UBERON_0002049 vasculature UBERON_0003470 artery of upper lip +UBERON_0002049 vasculature UBERON_0003471 artery of lower lip +UBERON_0002049 vasculature UBERON_0003472 cerebellar artery +UBERON_0002049 vasculature UBERON_0003473 thoracic cavity artery +UBERON_0002049 vasculature UBERON_0003474 meningeal artery +UBERON_0002049 vasculature UBERON_0003475 ureteric vein +UBERON_0002049 vasculature UBERON_0003476 respiratory system venous blood vessel +UBERON_0002049 vasculature UBERON_0003477 vein of upper lip +UBERON_0002049 vasculature UBERON_0003478 vein of lower lip +UBERON_0002049 vasculature UBERON_0003479 thoracic cavity vein +UBERON_0002049 vasculature UBERON_0003480 vein of clitoris +UBERON_0002049 vasculature UBERON_0003481 tail vein +UBERON_0002049 vasculature UBERON_0003482 vein of trabecular bone +UBERON_0002049 vasculature UBERON_0003489 respiratory system capillary endothelium +UBERON_0002049 vasculature UBERON_0003494 respiratory system venule +UBERON_0002049 vasculature UBERON_0003495 respiratory system arteriole +UBERON_0002049 vasculature UBERON_0003496 head blood vessel +UBERON_0002049 vasculature UBERON_0003497 abdomen blood vessel +UBERON_0002049 vasculature UBERON_0003498 heart blood vessel +UBERON_0002049 vasculature UBERON_0003499 brain blood vessel +UBERON_0002049 vasculature UBERON_0003500 corneal blood vessel +UBERON_0002049 vasculature UBERON_0003501 retina blood vessel +UBERON_0002049 vasculature UBERON_0003502 neck blood vessel +UBERON_0002049 vasculature UBERON_0003503 leg blood vessel +UBERON_0002049 vasculature UBERON_0003504 respiratory system blood vessel +UBERON_0002049 vasculature UBERON_0003505 trachea blood vessel +UBERON_0002049 vasculature UBERON_0003506 chest blood vessel +UBERON_0002049 vasculature UBERON_0003507 arm blood vessel +UBERON_0002049 vasculature UBERON_0003508 pedal digit blood vessel +UBERON_0002049 vasculature UBERON_0003509 arterial blood vessel +UBERON_0002049 vasculature UBERON_0003510 eyelid blood vessel +UBERON_0002049 vasculature UBERON_0003511 iris blood vessel +UBERON_0002049 vasculature UBERON_0003512 lung blood vessel +UBERON_0002049 vasculature UBERON_0003513 trunk blood vessel +UBERON_0002049 vasculature UBERON_0003514 limb blood vessel +UBERON_0002049 vasculature UBERON_0003515 forelimb blood vessel +UBERON_0002049 vasculature UBERON_0003516 hindlimb blood vessel +UBERON_0002049 vasculature UBERON_0003517 kidney blood vessel +UBERON_0002049 vasculature UBERON_0003518 main bronchus blood vessel +UBERON_0002049 vasculature UBERON_0003519 thoracic cavity blood vessel +UBERON_0002049 vasculature UBERON_0003520 pelvis blood vessel +UBERON_0002049 vasculature UBERON_0003521 pes blood vessel +UBERON_0002049 vasculature UBERON_0003522 manual digit blood vessel +UBERON_0002049 vasculature UBERON_0003523 manus blood vessel +UBERON_0002049 vasculature UBERON_0003524 tail blood vessel +UBERON_0002049 vasculature UBERON_0003526 respiratory system capillary +UBERON_0002049 vasculature UBERON_0003527 kidney capillary +UBERON_0002049 vasculature UBERON_0003529 respiratory system lymphatic vessel endothelium +UBERON_0002049 vasculature UBERON_0003609 aorta elastic tissue +UBERON_0002049 vasculature UBERON_0003614 blood vessel elastic tissue +UBERON_0002049 vasculature UBERON_0003618 aorta tunica media +UBERON_0002049 vasculature UBERON_0003619 aorta tunica intima +UBERON_0002049 vasculature UBERON_0003643 respiratory system arterial blood vessel +UBERON_0002049 vasculature UBERON_0003644 kidney arterial blood vessel +UBERON_0002049 vasculature UBERON_0003707 sinus of Valsalva +UBERON_0002049 vasculature UBERON_0003708 carotid sinus +UBERON_0002049 vasculature UBERON_0003709 circle of Willis +UBERON_0002049 vasculature UBERON_0003710 vasa vasorum +UBERON_0002049 vasculature UBERON_0003711 brachiocephalic vein +UBERON_0002049 vasculature UBERON_0003712 cavernous sinus +UBERON_0002049 vasculature UBERON_0003713 splenic vein +UBERON_0002049 vasculature UBERON_0003834 thoracic segment blood vessel +UBERON_0002049 vasculature UBERON_0003835 abdominal segment blood vessel +UBERON_0002049 vasculature UBERON_0003847 thyroid artery +UBERON_0002049 vasculature UBERON_0003848 gonadal vein +UBERON_0002049 vasculature UBERON_0003909 sinusoid +UBERON_0002049 vasculature UBERON_0003910 splenic sinusoid +UBERON_0002049 vasculature UBERON_0003911 choroid plexus epithelium +UBERON_0002049 vasculature UBERON_0003920 venous blood vessel +UBERON_0002049 vasculature UBERON_0003957 Bruch's membrane +UBERON_0002049 vasculature UBERON_0003970 placental labyrinth vasculature +UBERON_0002049 vasculature UBERON_0004029 canal of Schlemm +UBERON_0002049 vasculature UBERON_0004030 aqueous vein +UBERON_0002049 vasculature UBERON_0004087 vena cava +UBERON_0002049 vasculature UBERON_0004115 blood vessel of tympanic cavity +UBERON_0002049 vasculature UBERON_0004118 vasculature of iris +UBERON_0002049 vasculature UBERON_0004148 cardiac vein +UBERON_0002049 vasculature UBERON_0004162 pulmonary myocardium +UBERON_0002049 vasculature UBERON_0004178 aorta smooth muscle tissue +UBERON_0002049 vasculature UBERON_0004183 placental labyrinth blood vessel +UBERON_0002049 vasculature UBERON_0004189 glomerular endothelium +UBERON_0002049 vasculature UBERON_0004190 renal glomerulus vasculature +UBERON_0002049 vasculature UBERON_0004212 glomerular capillary +UBERON_0002049 vasculature UBERON_0004232 lymphatic vessel smooth muscle +UBERON_0002049 vasculature UBERON_0004236 arteriole smooth muscle +UBERON_0002049 vasculature UBERON_0004237 blood vessel smooth muscle +UBERON_0002049 vasculature UBERON_0004257 upper leg blood vessel +UBERON_0002049 vasculature UBERON_0004258 back blood vessel +UBERON_0002049 vasculature UBERON_0004259 lower arm blood vessel +UBERON_0002049 vasculature UBERON_0004260 upper arm blood vessel +UBERON_0002049 vasculature UBERON_0004261 lower leg blood vessel +UBERON_0002049 vasculature UBERON_0004274 lateral ventricle choroid plexus epithelium +UBERON_0002049 vasculature UBERON_0004275 third ventricle choroid plexus epithelium +UBERON_0002049 vasculature UBERON_0004276 fourth ventricle choroid plexus epithelium +UBERON_0002049 vasculature UBERON_0004294 glomerular capillary endothelium +UBERON_0002049 vasculature UBERON_0004296 respiratory system lymphatic vessel smooth muscle +UBERON_0002049 vasculature UBERON_0004297 respiratory system blood vessel smooth muscle +UBERON_0002049 vasculature UBERON_0004344 cardinal vein +UBERON_0002049 vasculature UBERON_0004363 pharyngeal arch artery +UBERON_0002049 vasculature UBERON_0004365 vitelline blood vessel +UBERON_0002049 vasculature UBERON_0004374 vitelline vasculature +UBERON_0002049 vasculature UBERON_0004449 cerebral artery +UBERON_0002049 vasculature UBERON_0004450 gastric vein +UBERON_0002049 vasculature UBERON_0004521 vasculature of muscle organ +UBERON_0002049 vasculature UBERON_0004522 vasculature of musculoskeletal system +UBERON_0002049 vasculature UBERON_0004536 lymph vasculature +UBERON_0002049 vasculature UBERON_0004537 blood vasculature +UBERON_0002049 vasculature UBERON_0004540 proper plantar digital artery +UBERON_0002049 vasculature UBERON_0004552 digital artery +UBERON_0002049 vasculature UBERON_0004553 forelimb digital artery +UBERON_0002049 vasculature UBERON_0004554 hindlimb digital artery +UBERON_0002049 vasculature UBERON_0004561 proper palmar digital vein +UBERON_0002049 vasculature UBERON_0004562 digital vein +UBERON_0002049 vasculature UBERON_0004563 forelimb digital vein +UBERON_0002049 vasculature UBERON_0004564 hindlimb digital vein +UBERON_0002049 vasculature UBERON_0004573 systemic artery +UBERON_0002049 vasculature UBERON_0004581 systemic venous system +UBERON_0002049 vasculature UBERON_0004638 blood vessel endothelium +UBERON_0002049 vasculature UBERON_0004639 renal afferent arteriole +UBERON_0002049 vasculature UBERON_0004640 renal efferent arteriole +UBERON_0002049 vasculature UBERON_0004646 infraorbital artery +UBERON_0002049 vasculature UBERON_0004663 aorta wall +UBERON_0002049 vasculature UBERON_0004664 aorta tunica adventitia +UBERON_0002049 vasculature UBERON_0004688 costo-cervical trunk +UBERON_0002049 vasculature UBERON_0004689 naso-frontal vein +UBERON_0002049 vasculature UBERON_0004690 pancreaticoduodenal vein +UBERON_0002049 vasculature UBERON_0004696 venous system smooth muscle +UBERON_0002049 vasculature UBERON_0004698 vena cava endothelium +UBERON_0002049 vasculature UBERON_0004702 respiratory system blood vessel endothelium +UBERON_0002049 vasculature UBERON_0004711 jugular vein +UBERON_0002049 vasculature UBERON_0004719 kidney arcuate vein +UBERON_0002049 vasculature UBERON_0004722 deep cervical lymph node +UBERON_0002049 vasculature UBERON_0004723 interlobular artery +UBERON_0002049 vasculature UBERON_0004726 vasa recta +UBERON_0002049 vasculature UBERON_0004775 outer renal medulla vasa recta +UBERON_0002049 vasculature UBERON_0004776 inner renal medulla vasa recta +UBERON_0002049 vasculature UBERON_0004797 blood vessel layer +UBERON_0002049 vasculature UBERON_0004848 respiratory system arterial endothelium +UBERON_0002049 vasculature UBERON_0004849 respiratory system venous endothelium +UBERON_0002049 vasculature UBERON_0004851 aorta endothelium +UBERON_0002049 vasculature UBERON_0004864 vasculature of retina +UBERON_0002049 vasculature UBERON_0004870 superficial cervical lymph node +UBERON_0002049 vasculature UBERON_0004889 lobar bronchus vasculature +UBERON_0002049 vasculature UBERON_0005119 metanephric glomerular mesangium +UBERON_0002049 vasculature UBERON_0005133 metanephric glomerulus vasculature +UBERON_0002049 vasculature UBERON_0005136 metanephric glomerular endothelium +UBERON_0002049 vasculature UBERON_0005144 metanephric glomerular capillary +UBERON_0002049 vasculature UBERON_0005168 renal interlobular vein +UBERON_0002049 vasculature UBERON_0005192 deferent duct artery +UBERON_0002049 vasculature UBERON_0005193 ethmoidal artery +UBERON_0002049 vasculature UBERON_0005194 thoracic vein +UBERON_0002049 vasculature UBERON_0005195 deferent duct vein +UBERON_0002049 vasculature UBERON_0005206 choroid plexus stroma +UBERON_0002049 vasculature UBERON_0005268 renal cortex artery +UBERON_0002049 vasculature UBERON_0005269 renal cortex vein +UBERON_0002049 vasculature UBERON_0005272 peritubular capillary +UBERON_0002049 vasculature UBERON_0005317 pulmonary artery endothelium +UBERON_0002049 vasculature UBERON_0005326 mesonephric glomerulus vasculature +UBERON_0002049 vasculature UBERON_0005336 capillary layer of choroid +UBERON_0002049 vasculature UBERON_0005338 outflow tract aortic component +UBERON_0002049 vasculature UBERON_0005396 carotid artery segment +UBERON_0002049 vasculature UBERON_0005431 anterior spinal artery +UBERON_0002049 vasculature UBERON_0005432 aortic sac +UBERON_0002049 vasculature UBERON_0005435 upper part of cisterna chyli +UBERON_0002049 vasculature UBERON_0005436 common hepatic artery +UBERON_0002049 vasculature UBERON_0005438 coronary sinus +UBERON_0002049 vasculature UBERON_0005440 ductus arteriosus +UBERON_0002049 vasculature UBERON_0005458 left umbilical artery +UBERON_0002049 vasculature UBERON_0005459 left umbilical vein +UBERON_0002049 vasculature UBERON_0005460 left vitelline vein +UBERON_0002049 vasculature UBERON_0005464 median sacral artery +UBERON_0002049 vasculature UBERON_0005470 right umbilical artery +UBERON_0002049 vasculature UBERON_0005471 right umbilical vein +UBERON_0002049 vasculature UBERON_0005472 right vitelline vein +UBERON_0002049 vasculature UBERON_0005475 sigmoid sinus +UBERON_0002049 vasculature UBERON_0005481 tentorial sinus +UBERON_0002049 vasculature UBERON_0005485 valve of inferior vena cava +UBERON_0002049 vasculature UBERON_0005486 venous dural sinus +UBERON_0002049 vasculature UBERON_0005487 vitelline vein +UBERON_0002049 vasculature UBERON_0005492 hyaloid vessel +UBERON_0002049 vasculature UBERON_0005599 common dorsal aorta +UBERON_0002049 vasculature UBERON_0005606 hyaloid cavity +UBERON_0002049 vasculature UBERON_0005607 hyaloid vascular plexus +UBERON_0002049 vasculature UBERON_0005608 hyoid artery +UBERON_0002049 vasculature UBERON_0005609 iliac artery +UBERON_0002049 vasculature UBERON_0005610 iliac vein +UBERON_0002049 vasculature UBERON_0005612 intercostal artery +UBERON_0002049 vasculature UBERON_0005613 left dorsal aorta +UBERON_0002049 vasculature UBERON_0005616 mesenteric artery +UBERON_0002049 vasculature UBERON_0005617 mesenteric vein +UBERON_0002049 vasculature UBERON_0005622 right dorsal aorta +UBERON_0002049 vasculature UBERON_0005624 suprarenal artery +UBERON_0002049 vasculature UBERON_0005628 ileal artery +UBERON_0002049 vasculature UBERON_0005629 vascular plexus +UBERON_0002049 vasculature UBERON_0005734 tunica adventitia of blood vessel +UBERON_0002049 vasculature UBERON_0005740 tunica intima of artery +UBERON_0002049 vasculature UBERON_0005800 section of aorta +UBERON_0002049 vasculature UBERON_0005805 dorsal aorta +UBERON_0002049 vasculature UBERON_0005806 portal system +UBERON_0002049 vasculature UBERON_0005973 blood-inner ear barrier +UBERON_0002049 vasculature UBERON_0006002 vitelline artery +UBERON_0002049 vasculature UBERON_0006011 hyaloid vein +UBERON_0002049 vasculature UBERON_0006137 proper palmar digital artery +UBERON_0002049 vasculature UBERON_0006138 plantar digital artery +UBERON_0002049 vasculature UBERON_0006139 plantar digital vein +UBERON_0002049 vasculature UBERON_0006140 palmar digital vein +UBERON_0002049 vasculature UBERON_0006141 palmar digital artery +UBERON_0002049 vasculature UBERON_0006142 common plantar digital vein +UBERON_0002049 vasculature UBERON_0006143 proper plantar digital vein +UBERON_0002049 vasculature UBERON_0006144 medial plantar digital vein +UBERON_0002049 vasculature UBERON_0006145 dorsal digital artery of pes +UBERON_0002049 vasculature UBERON_0006146 dorsal digital artery of manus +UBERON_0002049 vasculature UBERON_0006163 dorsal digital artery +UBERON_0002049 vasculature UBERON_0006164 forelimb common dorsal digital arteries +UBERON_0002049 vasculature UBERON_0006165 median dorsal digital artery for digit 1 +UBERON_0002049 vasculature UBERON_0006166 lateral dorsal digital artery for digit 5 +UBERON_0002049 vasculature UBERON_0006167 forelimb proper dorsal digital arteries +UBERON_0002049 vasculature UBERON_0006168 hindlimb common dorsal digital arteries +UBERON_0002049 vasculature UBERON_0006169 hindlimb proper dorsal digital arteries +UBERON_0002049 vasculature UBERON_0006182 mesonephric glomerular mesangium +UBERON_0002049 vasculature UBERON_0006183 mesonephric glomerular capillary +UBERON_0002049 vasculature UBERON_0006197 auricular vein +UBERON_0002049 vasculature UBERON_0006198 dorsal intercostal artery +UBERON_0002049 vasculature UBERON_0006199 posterior auricular vein +UBERON_0002049 vasculature UBERON_0006200 caudal humeral circumflex vein +UBERON_0002049 vasculature UBERON_0006252 intersubcardinal venous anastomosis +UBERON_0002049 vasculature UBERON_0006282 primary head vein +UBERON_0002049 vasculature UBERON_0006296 subcardinal vein +UBERON_0002049 vasculature UBERON_0006300 supracardinal vein +UBERON_0002049 vasculature UBERON_0006305 tunica vasculosa lentis +UBERON_0002049 vasculature UBERON_0006309 venous vitelline plexus +UBERON_0002049 vasculature UBERON_0006310 vitelline venous plexus +UBERON_0002049 vasculature UBERON_0006338 lateral ventricle choroid plexus stroma +UBERON_0002049 vasculature UBERON_0006339 third ventricle choroid plexus stroma +UBERON_0002049 vasculature UBERON_0006340 fourth ventricle choroid plexus stroma +UBERON_0002049 vasculature UBERON_0006341 outer renal medulla peritubular capillary +UBERON_0002049 vasculature UBERON_0006345 stapedial artery +UBERON_0002049 vasculature UBERON_0006347 communicating artery +UBERON_0002049 vasculature UBERON_0006349 epigastric artery +UBERON_0002049 vasculature UBERON_0006351 principal vein of forelimb +UBERON_0002049 vasculature UBERON_0006353 principal vein of hindlimb +UBERON_0002049 vasculature UBERON_0006355 superior vesical vein +UBERON_0002049 vasculature UBERON_0006356 epigastric vein +UBERON_0002049 vasculature UBERON_0006358 vasa hyaloidea propria +UBERON_0002049 vasculature UBERON_0006374 part of afferent arteriole forming the juxtaglomerular complex +UBERON_0002049 vasculature UBERON_0006436 principal artery to forelimb +UBERON_0002049 vasculature UBERON_0006438 principal artery to hindlimb +UBERON_0002049 vasculature UBERON_0006443 prinicipal vein of limb +UBERON_0002049 vasculature UBERON_0006544 kidney vasculature +UBERON_0002049 vasculature UBERON_0006563 tunica media of pulmonary trunk +UBERON_0002049 vasculature UBERON_0006564 superficial palmar arch +UBERON_0002049 vasculature UBERON_0006615 venous sinus +UBERON_0002049 vasculature UBERON_0006632 musculo-phrenic artery +UBERON_0002049 vasculature UBERON_0006634 lingual vein +UBERON_0002049 vasculature UBERON_0006636 lumbar artery +UBERON_0002049 vasculature UBERON_0006637 celiac trunk +UBERON_0002049 vasculature UBERON_0006656 deep dorsal vein of penis +UBERON_0002049 vasculature UBERON_0006662 musculo-phrenic vein +UBERON_0002049 vasculature UBERON_0006663 hemiazygos vein +UBERON_0002049 vasculature UBERON_0006664 greater palatine artery +UBERON_0002049 vasculature UBERON_0006665 accessory hemiazygos vein +UBERON_0002049 vasculature UBERON_0006666 great cerebral vein +UBERON_0002049 vasculature UBERON_0006675 venous valve +UBERON_0002049 vasculature UBERON_0006686 spinal vein +UBERON_0002049 vasculature UBERON_0006687 median sacral vein +UBERON_0002049 vasculature UBERON_0006690 deep dorsal vein of clitoris +UBERON_0002049 vasculature UBERON_0006694 cerebellum vasculature +UBERON_0002049 vasculature UBERON_0006764 anterior communicating artery +UBERON_0002049 vasculature UBERON_0006765 left anterior vena cava +UBERON_0002049 vasculature UBERON_0006766 right anterior vena cava +UBERON_0002049 vasculature UBERON_0006829 remnant of left anterior vena cava +UBERON_0002049 vasculature UBERON_0006841 central vein of liver +UBERON_0002049 vasculature UBERON_0006842 lymphatic capillary +UBERON_0002049 vasculature UBERON_0006851 renal cortex peritubular capillary +UBERON_0002049 vasculature UBERON_0006876 vasculature of organ +UBERON_0002049 vasculature UBERON_0006877 vasculature of liver +UBERON_0002049 vasculature UBERON_0006958 great vein of heart +UBERON_0002049 vasculature UBERON_0006966 coronary capillary +UBERON_0002049 vasculature UBERON_0007142 left internal carotid artery +UBERON_0002049 vasculature UBERON_0007143 right internal carotid artery +UBERON_0002049 vasculature UBERON_0007146 posterior spinal artery +UBERON_0002049 vasculature UBERON_0007149 inferior thyroid artery +UBERON_0002049 vasculature UBERON_0007150 superior thyroid artery +UBERON_0002049 vasculature UBERON_0007152 inferior sagittal sinus +UBERON_0002049 vasculature UBERON_0007153 superior epigastric artery +UBERON_0002049 vasculature UBERON_0007154 inferior epigastric vein +UBERON_0002049 vasculature UBERON_0007155 superior epigastric vein +UBERON_0002049 vasculature UBERON_0007156 inferior thyroid vein +UBERON_0002049 vasculature UBERON_0007157 superior thyroid vein +UBERON_0002049 vasculature UBERON_0007160 inferior petrosal sinus +UBERON_0002049 vasculature UBERON_0007204 brachiocephalic vasculature +UBERON_0002049 vasculature UBERON_0007239 tunica media of artery +UBERON_0002049 vasculature UBERON_0007240 tunica adventitia of artery +UBERON_0002049 vasculature UBERON_0007241 tunica adventitia of vein +UBERON_0002049 vasculature UBERON_0007242 tunica intima of vein +UBERON_0002049 vasculature UBERON_0007243 tunica media of vein +UBERON_0002049 vasculature UBERON_0007299 choroid plexus of tectal ventricle +UBERON_0002049 vasculature UBERON_0007300 pectoral appendage blood vessel +UBERON_0002049 vasculature UBERON_0007301 appendage blood vessel +UBERON_0002049 vasculature UBERON_0007302 pectoral appendage vasculature +UBERON_0002049 vasculature UBERON_0007303 pharyngeal vasculature +UBERON_0002049 vasculature UBERON_0007304 appendage vasculature +UBERON_0002049 vasculature UBERON_0007306 pronephric glomerular capillary +UBERON_0002049 vasculature UBERON_0007312 pudendal artery +UBERON_0002049 vasculature UBERON_0007314 superior external pudendal artery +UBERON_0002049 vasculature UBERON_0007315 internal pudendal artery +UBERON_0002049 vasculature UBERON_0007316 deep external pudendal artery +UBERON_0002049 vasculature UBERON_0007317 superficial external pudendal artery +UBERON_0002049 vasculature UBERON_0007318 saphenous vein +UBERON_0002049 vasculature UBERON_0007319 medial saphenous vein +UBERON_0002049 vasculature UBERON_0007321 lateral saphenous vein +UBERON_0002049 vasculature UBERON_0007352 stria vascularis vasculature +UBERON_0002049 vasculature UBERON_0007384 appendage lymph vessel +UBERON_0002049 vasculature UBERON_0007385 pectoral appendage lymph vessel +UBERON_0002049 vasculature UBERON_0007386 pelvic appendage lymph vessel +UBERON_0002049 vasculature UBERON_0007610 tibial artery +UBERON_0002049 vasculature UBERON_0007622 pecten oculi +UBERON_0002049 vasculature UBERON_0007679 intersomitic vein +UBERON_0002049 vasculature UBERON_0007693 caroticotympanic artery +UBERON_0002049 vasculature UBERON_0007718 principal artery to limb +UBERON_0002049 vasculature UBERON_0007777 umbilical vein endothelium +UBERON_0002049 vasculature UBERON_0007778 umbilical artery endothelium +UBERON_0002049 vasculature UBERON_0007807 connecting stalk vasculature +UBERON_0002049 vasculature UBERON_0008267 left supracardinal vein +UBERON_0002049 vasculature UBERON_0008268 right supracardinal vein +UBERON_0002049 vasculature UBERON_0008311 penile bulb artery +UBERON_0002049 vasculature UBERON_0008320 common penile artery +UBERON_0002049 vasculature UBERON_0008321 deep artery of penis +UBERON_0002049 vasculature UBERON_0008322 deep artery of clitoris +UBERON_0002049 vasculature UBERON_0008323 dorsal artery of clitoris +UBERON_0002049 vasculature UBERON_0008339 microvascular endothelium +UBERON_0002049 vasculature UBERON_0008783 dorsal venous arch +UBERON_0002049 vasculature UBERON_0008887 rectal venous plexus +UBERON_0002049 vasculature UBERON_0008888 vesical venous plexus +UBERON_0002049 vasculature UBERON_0008889 uterine venous plexus +UBERON_0002049 vasculature UBERON_0008998 vasculature of brain +UBERON_0002049 vasculature UBERON_0009007 superficial inguinal lymph node +UBERON_0002049 vasculature UBERON_0009025 gastroepiploic artery +UBERON_0002049 vasculature UBERON_0009026 iliac circumflex artery +UBERON_0002049 vasculature UBERON_0009027 vesical artery +UBERON_0002049 vasculature UBERON_0009029 pudendal vein +UBERON_0002049 vasculature UBERON_0009030 left pulmonary vein +UBERON_0002049 vasculature UBERON_0009032 right pulmonary vein +UBERON_0002049 vasculature UBERON_0009040 deep circumflex iliac artery +UBERON_0002049 vasculature UBERON_0009041 superficial circumflex iliac artery +UBERON_0002049 vasculature UBERON_0009042 prostatic venous plexus +UBERON_0002049 vasculature UBERON_0009044 pudendal venous plexus +UBERON_0002049 vasculature UBERON_0009046 inferior external pudendal vein +UBERON_0002049 vasculature UBERON_0009047 superior external pudendal vein +UBERON_0002049 vasculature UBERON_0009048 deep external pudendal vein +UBERON_0002049 vasculature UBERON_0009049 superficial external pudendal vein +UBERON_0002049 vasculature UBERON_0009089 inner medulla vasa recta descending limb +UBERON_0002049 vasculature UBERON_0009090 outer medulla vasa recta descending limb +UBERON_0002049 vasculature UBERON_0009091 vasa recta ascending limb +UBERON_0002049 vasculature UBERON_0009092 inner medulla vasa recta ascending limb +UBERON_0002049 vasculature UBERON_0009093 outer medulla vasa recta ascending limb +UBERON_0002049 vasculature UBERON_0009138 right common cardinal vein +UBERON_0002049 vasculature UBERON_0009139 right posterior cardinal vein +UBERON_0002049 vasculature UBERON_0009140 right subcardinal vein +UBERON_0002049 vasculature UBERON_0009141 craniocervical region vein +UBERON_0002049 vasculature UBERON_0009202 vasa recta descending limb +UBERON_0002049 vasculature UBERON_0009536 vascular element of left lung +UBERON_0002049 vasculature UBERON_0009537 vascular element of right lung +UBERON_0002049 vasculature UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0002049 vasculature UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0002049 vasculature UBERON_0009654 alveolar artery +UBERON_0002049 vasculature UBERON_0009655 auricular artery +UBERON_0002049 vasculature UBERON_0009657 artery of lip +UBERON_0002049 vasculature UBERON_0009658 pancreaticoduodenal artery +UBERON_0002049 vasculature UBERON_0009659 spermatic artery +UBERON_0002049 vasculature UBERON_0009687 middle cardiac vein +UBERON_0002049 vasculature UBERON_0009688 posterior inferior cerebellar artery +UBERON_0002049 vasculature UBERON_0009689 anterior inferior cerebellar artery +UBERON_0002049 vasculature UBERON_0009769 left common cardinal vein +UBERON_0002049 vasculature UBERON_0009771 left anterior cardinal vein +UBERON_0002049 vasculature UBERON_0009772 right anterior cardinal vein +UBERON_0002049 vasculature UBERON_0009885 interlobar artery +UBERON_0002049 vasculature UBERON_0009887 interlobar vein +UBERON_0002049 vasculature UBERON_0009967 spleen venous sinus +UBERON_0002049 vasculature UBERON_0009968 primitive superior sagittal sinus +UBERON_0002049 vasculature UBERON_0009976 hypothalamo-hypophyseal system +UBERON_0002049 vasculature UBERON_0010078 optic choroid vascular plexus +UBERON_0002049 vasculature UBERON_0010132 gastroduodenal artery +UBERON_0002049 vasculature UBERON_0010160 lumen of lymphatic vessel +UBERON_0002049 vasculature UBERON_0010161 lumen of blood vessel +UBERON_0002049 vasculature UBERON_0010172 bulb of aorta +UBERON_0002049 vasculature UBERON_0010173 sinotubular junction +UBERON_0002049 vasculature UBERON_0010174 Schweigger-Seidel sheath +UBERON_0002049 vasculature UBERON_0010175 nutrient foramen vein +UBERON_0002049 vasculature UBERON_0010176 nutrient foramen artery +UBERON_0002049 vasculature UBERON_0010181 straight venules of kidney +UBERON_0002049 vasculature UBERON_0010189 right atrium venous valve +UBERON_0002049 vasculature UBERON_0010192 genital artery +UBERON_0002049 vasculature UBERON_0010193 renal portal vein +UBERON_0002049 vasculature UBERON_0010194 hepatic portal system +UBERON_0002049 vasculature UBERON_0010195 renal portal system +UBERON_0002049 vasculature UBERON_0010197 trunk of common carotid artery +UBERON_0002049 vasculature UBERON_0010198 carotid duct +UBERON_0002049 vasculature UBERON_0010204 tail vasculature +UBERON_0002049 vasculature UBERON_0010205 mesencephalic vein +UBERON_0002049 vasculature UBERON_0010244 choroid tapetum lucidum +UBERON_0002049 vasculature UBERON_0010246 choroidal guanine tapetum +UBERON_0002049 vasculature UBERON_0010247 choroidal tapetum cellulosum +UBERON_0002049 vasculature UBERON_0010248 choroidal tapetum fibrosum +UBERON_0002049 vasculature UBERON_0010249 posterior meningeal artery +UBERON_0002049 vasculature UBERON_0010250 middle meningeal artery +UBERON_0002049 vasculature UBERON_0010251 anterior meningeal artery +UBERON_0002049 vasculature UBERON_0010260 umbilical blood vessel +UBERON_0002049 vasculature UBERON_0010293 suprachoroid lamina +UBERON_0002049 vasculature UBERON_0010366 conjunctival vasculature +UBERON_0002049 vasculature UBERON_0010367 conjunctival vein +UBERON_0002049 vasculature UBERON_0010370 tibial vein +UBERON_0002049 vasculature UBERON_0010396 afferent lymphatic vessel +UBERON_0002049 vasculature UBERON_0010397 efferent lymphatic vessel +UBERON_0002049 vasculature UBERON_0010399 spleen trabecular artery +UBERON_0002049 vasculature UBERON_0010400 spleen trabecular vein +UBERON_0002049 vasculature UBERON_0010401 spleen central arteriole +UBERON_0002049 vasculature UBERON_0010408 ocular angle artery +UBERON_0002049 vasculature UBERON_0010523 microcirculatory vessel +UBERON_0002049 vasculature UBERON_0011191 ophthalmic vein +UBERON_0002049 vasculature UBERON_0011192 superior ophthalmic vein +UBERON_0002049 vasculature UBERON_0011193 inferior ophthalmic vein +UBERON_0002049 vasculature UBERON_0011362 cranial blood vasculature +UBERON_0002049 vasculature UBERON_0011363 cranial lymph vasculature +UBERON_0002049 vasculature UBERON_0011383 inferior pancreaticoduodenal vein +UBERON_0002049 vasculature UBERON_0011384 superior pancreaticoduodenal vein +UBERON_0002049 vasculature UBERON_0011392 blood vessel internal elastic membrane +UBERON_0002049 vasculature UBERON_0011693 extraembryonic portion of umbilical artery +UBERON_0002049 vasculature UBERON_0011694 embryo portion of umbilical artery +UBERON_0002049 vasculature UBERON_0011696 left extraembryonic umbilical artery +UBERON_0002049 vasculature UBERON_0011697 right extraembryonic umbilical artery +UBERON_0002049 vasculature UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0002049 vasculature UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0002049 vasculature UBERON_0011742 aortic valve leaflet +UBERON_0002049 vasculature UBERON_0011861 aorta collagen fibril +UBERON_0002049 vasculature UBERON_0011944 subintestinal vein +UBERON_0002049 vasculature UBERON_0011955 left hepatic vein +UBERON_0002049 vasculature UBERON_0011956 right hepatic vein +UBERON_0002049 vasculature UBERON_0011957 middle hepatic vein +UBERON_0002049 vasculature UBERON_0012173 middle suprarenal artery +UBERON_0002049 vasculature UBERON_0012187 frontal artery +UBERON_0002049 vasculature UBERON_0012193 phrenic vein +UBERON_0002049 vasculature UBERON_0012194 superior intercostal vein +UBERON_0002049 vasculature UBERON_0012195 left superior intercostal vein +UBERON_0002049 vasculature UBERON_0012196 right superior intercostal vein +UBERON_0002049 vasculature UBERON_0012197 intercostal vein +UBERON_0002049 vasculature UBERON_0012199 posterior intercostal vein +UBERON_0002049 vasculature UBERON_0012200 anterior intercostal vein +UBERON_0002049 vasculature UBERON_0012237 superior phrenic vein +UBERON_0002049 vasculature UBERON_0012239 urinary bladder vasculature +UBERON_0002049 vasculature UBERON_0012254 abdominal aorta artery +UBERON_0002049 vasculature UBERON_0012255 inferior phrenic artery +UBERON_0002049 vasculature UBERON_0012308 superficial lateral cervical lymph node +UBERON_0002049 vasculature UBERON_0012309 superficial anterior cervical lymph node +UBERON_0002049 vasculature UBERON_0012310 deep lateral cervical lymph node +UBERON_0002049 vasculature UBERON_0012311 deep anterior cervical lymph node +UBERON_0002049 vasculature UBERON_0012318 anterior ethmoidal artery +UBERON_0002049 vasculature UBERON_0012319 posterior ethmoidal artery +UBERON_0002049 vasculature UBERON_0012320 cervical artery +UBERON_0002049 vasculature UBERON_0012321 deep cervical artery +UBERON_0002049 vasculature UBERON_0012322 ascending cervical artery +UBERON_0002049 vasculature UBERON_0012324 transverse cervical artery +UBERON_0002049 vasculature UBERON_0012416 respiratory system arterial smooth muscle +UBERON_0002049 vasculature UBERON_0012418 respiratory system venous smooth muscle +UBERON_0002049 vasculature UBERON_0012441 endothelium of peritubular capillary +UBERON_0002049 vasculature UBERON_0013124 left posterior cardinal vein +UBERON_0002049 vasculature UBERON_0013125 left subcardinal vein +UBERON_0002049 vasculature UBERON_0013126 vein of abdomen +UBERON_0002049 vasculature UBERON_0013127 pulmonary venous system +UBERON_0002049 vasculature UBERON_0013132 penicillar arteriole +UBERON_0002049 vasculature UBERON_0013133 superior phrenic artery +UBERON_0002049 vasculature UBERON_0013136 vein of lip +UBERON_0002049 vasculature UBERON_0013137 external pudendal artery +UBERON_0002049 vasculature UBERON_0013140 systemic vein +UBERON_0002049 vasculature UBERON_0013141 capillary bed +UBERON_0002049 vasculature UBERON_0013142 soleal vein +UBERON_0002049 vasculature UBERON_0013143 gastrocnemius vein +UBERON_0002049 vasculature UBERON_0013144 vein of genicular venous plexus +UBERON_0002049 vasculature UBERON_0013145 accessory saphenous vein +UBERON_0002049 vasculature UBERON_0013151 choroidal artery +UBERON_0002049 vasculature UBERON_0013218 rete mirabile +UBERON_0002049 vasculature UBERON_0013397 stratum argenteum of choroid +UBERON_0002049 vasculature UBERON_0013398 choroidal gland +UBERON_0002049 vasculature UBERON_0013399 blood vessel layer of choroid +UBERON_0002049 vasculature UBERON_0013479 lung endothelium +UBERON_0002049 vasculature UBERON_0013648 masseteric artery +UBERON_0002049 vasculature UBERON_0013768 great vessel of heart +UBERON_0002049 vasculature UBERON_0014399 sinusoidal space +UBERON_0002049 vasculature UBERON_0014400 hepatic sinusoidal space +UBERON_0002049 vasculature UBERON_0014401 renal venous blood vessel +UBERON_0002049 vasculature UBERON_0014685 pterygoid plexus +UBERON_0002049 vasculature UBERON_0014686 angular vein +UBERON_0002049 vasculature UBERON_0014690 left gastric vein +UBERON_0002049 vasculature UBERON_0014691 right gastric vein +UBERON_0002049 vasculature UBERON_0014692 superficial epigastric vein +UBERON_0002049 vasculature UBERON_0014693 inferior alveolar artery +UBERON_0002049 vasculature UBERON_0014694 posterior auricular artery +UBERON_0002049 vasculature UBERON_0014695 deep auricular artery +UBERON_0002049 vasculature UBERON_0014696 anterior choroidal artery +UBERON_0002049 vasculature UBERON_0014697 posterior choroidal artery +UBERON_0002049 vasculature UBERON_0014768 superior palpebral vein +UBERON_0002049 vasculature UBERON_0014769 palpebral vein +UBERON_0002049 vasculature UBERON_0014770 palpebral artery +UBERON_0002049 vasculature UBERON_0014772 lateral palpebral artery +UBERON_0002049 vasculature UBERON_0014773 medial palpebral artery +UBERON_0002049 vasculature UBERON_0014786 extraembryonic umbilical vein +UBERON_0002049 vasculature UBERON_0014787 left extraembryonic umbilical vein +UBERON_0002049 vasculature UBERON_0014788 right extraembryonic umbilical vein +UBERON_0002049 vasculature UBERON_0014789 embryo portion of umbilical vein +UBERON_0002049 vasculature UBERON_0014904 intersegmental pulmonary vein +UBERON_0002049 vasculature UBERON_0014907 intersomitic vessel +UBERON_0002049 vasculature UBERON_0015156 terminal branch of ophthalmic artery +UBERON_0002049 vasculature UBERON_0015157 zygomatico-orbital artery +UBERON_0002049 vasculature UBERON_0015158 ophthalmotemporal branch of external ophthalmic artery +UBERON_0002049 vasculature UBERON_0015160 supraorbital artery +UBERON_0002049 vasculature UBERON_0015161 inferior branch of oculomotor nerve +UBERON_0002049 vasculature UBERON_0015162 superior branch of oculomotor nerve +UBERON_0002049 vasculature UBERON_0015171 uterine spiral artery +UBERON_0002049 vasculature UBERON_0015172 endometrial blood vessel +UBERON_0002049 vasculature UBERON_0015173 helicine branch of uterine artery +UBERON_0002049 vasculature UBERON_0015174 helicine artery of penis +UBERON_0002049 vasculature UBERON_0015177 helicine artery +UBERON_0002049 vasculature UBERON_0015189 perineural vascular plexus +UBERON_0002049 vasculature UBERON_0015350 saphenous artery +UBERON_0002049 vasculature UBERON_0015433 blood vessel external elastic membrane +UBERON_0002049 vasculature UBERON_0015455 accessory hepatic vein +UBERON_0002049 vasculature UBERON_0015480 proper hepatic artery +UBERON_0002049 vasculature UBERON_0015481 left hepatic artery +UBERON_0002049 vasculature UBERON_0015482 right hepatic artery +UBERON_0002049 vasculature UBERON_0015704 sagittal sinus +UBERON_0002049 vasculature UBERON_0015796 liver blood vessel +UBERON_0002049 vasculature UBERON_0015869 retropharyngeal lymph node +UBERON_0002049 vasculature UBERON_0015917 superficial lymph node +UBERON_0002049 vasculature UBERON_0015918 deep lymph node +UBERON_0002049 vasculature UBERON_0015923 superficial parotid lymph node +UBERON_0002049 vasculature UBERON_0015925 superficial intraparotid lymph node +UBERON_0002049 vasculature UBERON_0016393 deep parotid lymph node +UBERON_0002049 vasculature UBERON_0016394 anterior auricular lymph node +UBERON_0002049 vasculature UBERON_0016395 infra-auricular lymph node +UBERON_0002049 vasculature UBERON_0016396 intraglandular lymph node +UBERON_0002049 vasculature UBERON_0016405 pulmonary capillary +UBERON_0002049 vasculature UBERON_0016559 superficial cerebral vein +UBERON_0002049 vasculature UBERON_0016564 deep cerebral vein +UBERON_0002049 vasculature UBERON_0016565 cerebral blood vessel +UBERON_0002049 vasculature UBERON_0016890 intrahepatic branch of portal vein +UBERON_0002049 vasculature UBERON_0016920 descending trunk of arch of aorta +UBERON_0002049 vasculature UBERON_0016923 preductal region of aortic arch +UBERON_0002049 vasculature UBERON_0016924 postductal region of aortic arch +UBERON_0002049 vasculature UBERON_0016925 juxtaductal region of aortic arch +UBERON_0002049 vasculature UBERON_0017616 afferent spiracular artery +UBERON_0002049 vasculature UBERON_0017617 efferent spiracular artery +UBERON_0002049 vasculature UBERON_0017633 choroid plexus corpora arenacea +UBERON_0002049 vasculature UBERON_0017635 paired venous dural sinus +UBERON_0002049 vasculature UBERON_0017637 marginal venous sinus +UBERON_0002049 vasculature UBERON_0017638 primitive marginal sinus +UBERON_0002049 vasculature UBERON_0017640 unpaired venous dural sinus +UBERON_0002049 vasculature UBERON_0017643 external thoracic vein +UBERON_0002049 vasculature UBERON_0017646 internal mammary vein +UBERON_0002049 vasculature UBERON_0018227 pulmonary lymphatic vessel +UBERON_0002049 vasculature UBERON_0018228 extrahepatic branch of portal vein +UBERON_0002049 vasculature UBERON_0018231 labyrinthine artery +UBERON_0002049 vasculature UBERON_0018243 thymic artery +UBERON_0002049 vasculature UBERON_0018246 thyroid vein +UBERON_0002049 vasculature UBERON_0018247 cervical thymic artery +UBERON_0002049 vasculature UBERON_0018248 inferior superficial cervical thymic artery +UBERON_0002049 vasculature UBERON_0018249 superior superficial cervical thymic artery +UBERON_0002049 vasculature UBERON_0018250 middle thyroid artery +UBERON_0002049 vasculature UBERON_0018251 meningeal vein +UBERON_0002049 vasculature UBERON_0018252 internal pudendal vein +UBERON_0002049 vasculature UBERON_0018253 external pudendal vein +UBERON_0002049 vasculature UBERON_0018255 jejunal artery +UBERON_0002049 vasculature UBERON_0018256 lacrimal vein +UBERON_0002049 vasculature UBERON_0018335 lateral dorsal aorta canal +UBERON_0002049 vasculature UBERON_0018397 posterior superior alveolar artery +UBERON_0002049 vasculature UBERON_0018410 lacteal +UBERON_0002049 vasculature UBERON_0018549 ventral wall of dorsal aorta +UBERON_0002049 vasculature UBERON_0018674 heart vasculature +UBERON_0002049 vasculature UBERON_0019189 carotid artery endothelium +UBERON_0002049 vasculature UBERON_0019196 iliac artery endothelium +UBERON_0002049 vasculature UBERON_0020550 auricular blood vessel +UBERON_0002049 vasculature UBERON_0022292 splenic arteriole +UBERON_0002049 vasculature UBERON_0022358 placenta blood vessel +UBERON_0002049 vasculature UBERON_0034693 cremasteric artery +UBERON_0002049 vasculature UBERON_0034727 vestibular bulb artery +UBERON_0002049 vasculature UBERON_0034884 juxtaglomerular arteriole +UBERON_0002049 vasculature UBERON_0034927 arcuate artery of foot +UBERON_0002049 vasculature UBERON_0034940 venous sinus cavity +UBERON_0002049 vasculature UBERON_0034949 lymphatic valve +UBERON_0002049 vasculature UBERON_0034950 lymph sac of lymph heart +UBERON_0002049 vasculature UBERON_0034951 subcutaneous lymph sac +UBERON_0002049 vasculature UBERON_0034952 intrapleuroperitoneal lymph sac +UBERON_0002049 vasculature UBERON_0034964 superficial epigastric artery +UBERON_0002049 vasculature UBERON_0034965 middle thyroid vein +UBERON_0002049 vasculature UBERON_0034971 aortic body +UBERON_0002049 vasculature UBERON_0034972 jugular body +UBERON_0002049 vasculature UBERON_0034980 jugular bulb +UBERON_0002049 vasculature UBERON_0034981 superior bulb of internal jugular vein +UBERON_0002049 vasculature UBERON_0034982 inferior bulb of internal jugular vein +UBERON_0002049 vasculature UBERON_0035039 rectal artery +UBERON_0002049 vasculature UBERON_0035040 superior rectal artery +UBERON_0002049 vasculature UBERON_0035041 deep temporal artery +UBERON_0002049 vasculature UBERON_0035042 middle temporal artery +UBERON_0002049 vasculature UBERON_0035043 temporal branch of lateral pretrosal artery +UBERON_0002049 vasculature UBERON_0035150 superior cerebral vein +UBERON_0002049 vasculature UBERON_0035151 dorsal cerebral vein +UBERON_0002049 vasculature UBERON_0035152 internal cerebral vein +UBERON_0002049 vasculature UBERON_0035162 infraclavicular lymph node +UBERON_0002049 vasculature UBERON_0035180 sigmoid artery +UBERON_0002049 vasculature UBERON_0035183 calcarine artery +UBERON_0002049 vasculature UBERON_0035195 plantar metatarsal artery +UBERON_0002049 vasculature UBERON_0035198 superficial lymphatic vessel +UBERON_0002049 vasculature UBERON_0035204 occipital lymph node +UBERON_0002049 vasculature UBERON_0035222 posterior parietal artery +UBERON_0002049 vasculature UBERON_0035225 anterior temporal artery +UBERON_0002049 vasculature UBERON_0035231 superficial middle cerebral vein +UBERON_0002049 vasculature UBERON_0035234 medial circumflex femoral vein +UBERON_0002049 vasculature UBERON_0035237 branch of internal carotid artery +UBERON_0002049 vasculature UBERON_0035249 posterior external jugular vein +UBERON_0002049 vasculature UBERON_0035252 left subcostal vein +UBERON_0002049 vasculature UBERON_0035261 posterior temporal artery +UBERON_0002049 vasculature UBERON_0035273 superior thoracic artery +UBERON_0002049 vasculature UBERON_0035292 branch of posterior tibial artery +UBERON_0002049 vasculature UBERON_0035304 branch of ulnar artery +UBERON_0002049 vasculature UBERON_0035307 branch of vertebral artery +UBERON_0002049 vasculature UBERON_0035322 right common iliac artery +UBERON_0002049 vasculature UBERON_0035338 sphenoparietal sinus +UBERON_0002049 vasculature UBERON_0035350 branch of middle cerebral artery +UBERON_0002049 vasculature UBERON_0035359 branch of brachial artery +UBERON_0002049 vasculature UBERON_0035374 small cardiac vein +UBERON_0002049 vasculature UBERON_0035380 branch of anterior cerebral artery +UBERON_0002049 vasculature UBERON_0035392 cystic vein +UBERON_0002049 vasculature UBERON_0035395 branch of left coronary artery +UBERON_0002049 vasculature UBERON_0035398 branch of external carotid artery +UBERON_0002049 vasculature UBERON_0035403 hypophysial artery +UBERON_0002049 vasculature UBERON_0035404 superior hypophysial artery +UBERON_0002049 vasculature UBERON_0035422 circumflex branch of left coronary artery +UBERON_0002049 vasculature UBERON_0035428 postcapillary venule +UBERON_0002049 vasculature UBERON_0035435 right suprarenal vein +UBERON_0002049 vasculature UBERON_0035462 anterior parietal artery +UBERON_0002049 vasculature UBERON_0035474 right subcostal vein +UBERON_0002049 vasculature UBERON_0035483 left suprarenal vein +UBERON_0002049 vasculature UBERON_0035489 branch of basilar artery +UBERON_0002049 vasculature UBERON_0035492 inferior hypophysial artery +UBERON_0002049 vasculature UBERON_0035508 branch of posterior cerebral artery +UBERON_0002049 vasculature UBERON_0035529 left common iliac artery +UBERON_0002049 vasculature UBERON_0035530 basal vein +UBERON_0002049 vasculature UBERON_0035532 deep middle cerebral vein +UBERON_0002049 vasculature UBERON_0035539 esophageal artery +UBERON_0002049 vasculature UBERON_0035545 deep lymphatic vessel +UBERON_0002049 vasculature UBERON_0035546 uveal vein +UBERON_0002049 vasculature UBERON_0035547 posterior ciliary vein +UBERON_0002049 vasculature UBERON_0035548 colic artery +UBERON_0002049 vasculature UBERON_0035549 vasculature of integument +UBERON_0002049 vasculature UBERON_0035550 superficial vein +UBERON_0002049 vasculature UBERON_0035551 deep vasculature +UBERON_0002049 vasculature UBERON_0035552 deep vein +UBERON_0002049 vasculature UBERON_0035608 dura mater lymph vessel +UBERON_0002049 vasculature UBERON_0035640 middle vesical artery +UBERON_0002049 vasculature UBERON_0035655 paraumbilical vein +UBERON_0002049 vasculature UBERON_0035659 deep facial vein +UBERON_0002049 vasculature UBERON_0035662 parotid vein +UBERON_0002049 vasculature UBERON_0035675 anterior facial vein +UBERON_0002049 vasculature UBERON_0035753 capillary plexus +UBERON_0002049 vasculature UBERON_0035754 pulmonary capillary plexus +UBERON_0002049 vasculature UBERON_0035755 systemic capillary plexus +UBERON_0002049 vasculature UBERON_0035756 capillary network of liver +UBERON_0002049 vasculature UBERON_0035757 embryonic capillary plexus +UBERON_0002049 vasculature UBERON_0035758 peritubular capillary plexus of kidney +UBERON_0002049 vasculature UBERON_0035762 capillary network of kidney +UBERON_0002049 vasculature UBERON_0035829 right gastroepiploic artery +UBERON_0002049 vasculature UBERON_0035830 left gastroepiploic artery +UBERON_0002049 vasculature UBERON_0035965 wall of blood vessel +UBERON_0002049 vasculature UBERON_0036074 vein of vestibular aqueduct +UBERON_0002049 vasculature UBERON_0036167 Sattler's layer +UBERON_0002049 vasculature UBERON_0036168 Haller's layer +UBERON_0002049 vasculature UBERON_0036267 vulval vein +UBERON_0002049 vasculature UBERON_0036268 pelvic vein +UBERON_0002049 vasculature UBERON_0036269 penis blood vessel +UBERON_0002049 vasculature UBERON_0036300 tributary of central retinal vein +UBERON_0002049 vasculature UBERON_0036301 vasculature of spleen +UBERON_0002049 vasculature UBERON_0036302 vasculature of central nervous system plus retina +UBERON_0002049 vasculature UBERON_0036303 vasculature of central nervous system +UBERON_0002049 vasculature UBERON_0036328 wall of coronary artery +UBERON_0002049 vasculature UBERON_0036351 wall of brachiocephalic artery +UBERON_0002049 vasculature UBERON_0036352 wall of subclavian artery +UBERON_0002049 vasculature UBERON_0036422 wall of pulmonary artery +UBERON_0002049 vasculature UBERON_0037094 wall of common carotid artery +UBERON_0002049 vasculature UBERON_0037722 right retropharyngeal lymph node +UBERON_0002049 vasculature UBERON_0037723 left retropharyngeal lymph node +UBERON_0002049 vasculature UBERON_0037763 lateral superior deep cervical lymph node +UBERON_0002049 vasculature UBERON_0037764 anterior superior deep cervical lymph node +UBERON_0002049 vasculature UBERON_0037765 lateral inferior deep cervical lymph node +UBERON_0002049 vasculature UBERON_0037766 anterior inferior deep cervical lymph node +UBERON_0002049 vasculature UBERON_0037787 right occipital lymph node +UBERON_0002049 vasculature UBERON_0037788 left occipital lymph node +UBERON_0002049 vasculature UBERON_0038855 superior medial inguinal lymph node +UBERON_0002049 vasculature UBERON_0038856 superior lateral inguinal lymph node +UBERON_0002049 vasculature UBERON_0038857 inferior inguinal lymph node +UBERON_0002049 vasculature UBERON_0038894 paratracheal lymph node +UBERON_0002049 vasculature UBERON_0038929 infrahyoid lymph node +UBERON_0002049 vasculature UBERON_0038930 prelaryngeal lymph node +UBERON_0002049 vasculature UBERON_0038931 thyroid lymph node +UBERON_0002049 vasculature UBERON_0038932 pretracheal lymph node +UBERON_0002049 vasculature UBERON_0038934 superior deep lateral cervical lymph node +UBERON_0002049 vasculature UBERON_0038935 inferior deep lateral cervical lymph node +UBERON_0002049 vasculature UBERON_0038936 jugulodigastric lymph node +UBERON_0002049 vasculature UBERON_0039169 anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039170 mammary branch of internal thoracic artery +UBERON_0002049 vasculature UBERON_0039185 accessory vertebral vein +UBERON_0002049 vasculature UBERON_0039186 anterior vertebral vein +UBERON_0002049 vasculature UBERON_0039187 suprascapular vein +UBERON_0002049 vasculature UBERON_0039188 superior laryngeal vein +UBERON_0002049 vasculature UBERON_0039215 appendicular artery +UBERON_0002049 vasculature UBERON_0039222 cystic artery +UBERON_0002049 vasculature UBERON_0039228 sigmoid vein +UBERON_0002049 vasculature UBERON_0039230 prepyloric vein +UBERON_0002049 vasculature UBERON_0039232 conus artery +UBERON_0002049 vasculature UBERON_0039256 pubic vein +UBERON_0002049 vasculature UBERON_0039258 external vertebral venous plexus +UBERON_0002049 vasculature UBERON_0039259 vertebral venous plexus +UBERON_0002049 vasculature UBERON_0039260 thyrocervical artery +UBERON_0002049 vasculature UBERON_0039261 pancreatic artery +UBERON_0002049 vasculature UBERON_0039262 segmental pulmonary artery +UBERON_0002049 vasculature UBERON_0039351 posterior labial artery +UBERON_0002049 vasculature UBERON_0039355 urethral artery +UBERON_0002049 vasculature UBERON_0039376 penile bulb vein +UBERON_0002049 vasculature UBERON_0039377 urethral vein +UBERON_0002049 vasculature UBERON_0039379 vestibular bulb vein +UBERON_0002049 vasculature UBERON_0039421 superficial dorsal vein of penis +UBERON_0002049 vasculature UBERON_0039422 dorsal vein of penis +UBERON_0002049 vasculature UBERON_0039835 posterior intercostal artery +UBERON_0002049 vasculature UBERON_0039838 seventh anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039839 eighth anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039840 ninth anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039841 first anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039842 second anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039843 third anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039844 fourth anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039845 fifth anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039846 sixth anterior intercostal artery +UBERON_0002049 vasculature UBERON_0039847 suprascapular artery +UBERON_0002049 vasculature UBERON_0039848 anterior external vertebral venous plexus +UBERON_0002049 vasculature UBERON_0039849 posterior external vertebral venous plexus +UBERON_0002049 vasculature UBERON_0039851 apicoposterior segmental artery +UBERON_0002049 vasculature UBERON_0039856 right ovarian vein +UBERON_0002049 vasculature UBERON_0039857 left ovarian vein +UBERON_0002049 vasculature UBERON_2000039 median axial vein +UBERON_0002049 vasculature UBERON_2000096 cardinal system +UBERON_0002049 vasculature UBERON_2000202 efferent portion of pharyngeal arch artery +UBERON_0002049 vasculature UBERON_2000214 hypobranchial vessel +UBERON_0002049 vasculature UBERON_2000484 celiacomesenteric artery +UBERON_0002049 vasculature UBERON_2000666 filamental artery +UBERON_0002049 vasculature UBERON_2000673 hypobranchial artery +UBERON_0002049 vasculature UBERON_2000677 segmental intercostal artery +UBERON_0002049 vasculature UBERON_2000716 afferent portion of pharyngeal arch artery +UBERON_0002049 vasculature UBERON_2001051 caudal division of the internal carotid artery +UBERON_0002049 vasculature UBERON_2001052 primordial hindbrain channel +UBERON_0002049 vasculature UBERON_2001053 future internal carotid artery +UBERON_0002049 vasculature UBERON_2001054 lateral dorsal aorta +UBERON_0002049 vasculature UBERON_2001059 cranial division of the internal carotid artery +UBERON_0002049 vasculature UBERON_2001062 presumptive mesencephalic artery +UBERON_0002049 vasculature UBERON_2001063 posterior caudal vein +UBERON_0002049 vasculature UBERON_2001073 axial vasculature +UBERON_0002049 vasculature UBERON_2001286 caudal vein plexus +UBERON_0002049 vasculature UBERON_2001857 hyoidean artery +UBERON_0002049 vasculature UBERON_2001975 suprabranchial artery +UBERON_0002049 vasculature UBERON_2005000 basal communicating artery +UBERON_0002049 vasculature UBERON_2005010 mid cerebral vein +UBERON_0002049 vasculature UBERON_2005011 pseudobranchial artery +UBERON_0002049 vasculature UBERON_2005012 afferent filamental artery +UBERON_0002049 vasculature UBERON_2005013 concurrent branch afferent branchial artery +UBERON_0002049 vasculature UBERON_2005014 recurrent branch afferent branchial artery +UBERON_0002049 vasculature UBERON_2005015 afferent lamellar arteriole +UBERON_0002049 vasculature UBERON_2005017 primordial midbrain channel +UBERON_0002049 vasculature UBERON_2005018 efferent filamental artery +UBERON_0002049 vasculature UBERON_2005019 efferent lamellar arteriole +UBERON_0002049 vasculature UBERON_2005020 central artery +UBERON_0002049 vasculature UBERON_2005021 cerebellar central artery +UBERON_0002049 vasculature UBERON_2005022 opercular artery +UBERON_0002049 vasculature UBERON_2005025 dorsal longitudinal anastomotic vessel +UBERON_0002049 vasculature UBERON_2005026 primary head sinus +UBERON_0002049 vasculature UBERON_2005027 posterior cerebral vein +UBERON_0002049 vasculature UBERON_2005030 dorsal ciliary vein +UBERON_0002049 vasculature UBERON_2005031 dorsal longitudinal vein +UBERON_0002049 vasculature UBERON_2005032 optic vein +UBERON_0002049 vasculature UBERON_2005034 parachordal vessel +UBERON_0002049 vasculature UBERON_2005036 supraintestinal artery +UBERON_0002049 vasculature UBERON_2005038 supraintestinal vein +UBERON_0002049 vasculature UBERON_2005044 optic artery +UBERON_0002049 vasculature UBERON_2005048 primitive prosencephalic artery +UBERON_0002049 vasculature UBERON_2005049 prosencephalic artery +UBERON_0002049 vasculature UBERON_2005050 palatocerebral artery +UBERON_0002049 vasculature UBERON_2005051 communicating vessel palatocerebral artery +UBERON_0002049 vasculature UBERON_2005052 anterior mesencephalic central artery +UBERON_0002049 vasculature UBERON_2005053 nasal ciliary artery +UBERON_0002049 vasculature UBERON_2005054 inner optic circle +UBERON_0002049 vasculature UBERON_2005055 median palatocerebral vein +UBERON_0002049 vasculature UBERON_2005056 palatocerebral vein +UBERON_0002049 vasculature UBERON_2005078 middle mesencephalic central artery +UBERON_0002049 vasculature UBERON_2005079 posterior mesencephalic central artery +UBERON_0002049 vasculature UBERON_2005080 anterior mesenteric artery +UBERON_0002049 vasculature UBERON_2005082 dorsal branch nasal ciliary artery +UBERON_0002049 vasculature UBERON_2005083 ventral branch nasal ciliary artery +UBERON_0002049 vasculature UBERON_2005084 metencephalic artery +UBERON_0002049 vasculature UBERON_2005085 nasal artery +UBERON_0002049 vasculature UBERON_2005087 pectoral vein +UBERON_0002049 vasculature UBERON_2005088 posterior mesenteric artery +UBERON_0002049 vasculature UBERON_2005089 swim bladder artery +UBERON_0002049 vasculature UBERON_2005093 nasal vein +UBERON_0002049 vasculature UBERON_2005097 caudal fin vasculature +UBERON_0002049 vasculature UBERON_2005098 central ray artery +UBERON_0002049 vasculature UBERON_2005099 ray vein +UBERON_0002049 vasculature UBERON_2005100 intervessel commissure +UBERON_0002049 vasculature UBERON_2005101 interray vessel +UBERON_0002049 vasculature UBERON_2005106 longitudinal lateral lymphatic vessel +UBERON_0002049 vasculature UBERON_2005219 choroid plexus vascular circuit +UBERON_0002049 vasculature UBERON_2005248 trans-choroid plexus branch +UBERON_0002049 vasculature UBERON_2005259 continuous capillary +UBERON_0002049 vasculature UBERON_2005260 fenestrated capillary +UBERON_0002049 vasculature UBERON_2005295 axial blood vessel +UBERON_0002049 vasculature UBERON_2005303 caudal fin lymph vessel +UBERON_0002049 vasculature UBERON_2005304 caudal fin blood vessel +UBERON_0002049 vasculature UBERON_2005319 intersegmental lymph vessel +UBERON_0002049 vasculature UBERON_2005320 dorsal longitudinal lymphatic vessel +UBERON_0002049 vasculature UBERON_3010200 vasculature of respiratory integument +UBERON_0002049 vasculature UBERON_3010404 capillary system of liver +UBERON_0002049 vasculature UBERON_3010413 left channel of ventral aorta +UBERON_0002049 vasculature UBERON_3010417 posterior palatine artery +UBERON_0002049 vasculature UBERON_3010423 larval aorta +UBERON_0002049 vasculature UBERON_3010424 right channel of ventral aorta +UBERON_0002049 vasculature UBERON_3010489 muscular artery +UBERON_0002049 vasculature UBERON_3010494 lateral pretrosal artery +UBERON_0002049 vasculature UBERON_3010496 mandibular artery +UBERON_0002049 vasculature UBERON_3010498 cutaneus artery +UBERON_0002049 vasculature UBERON_3010499 coeliaco-mesenteric artery +UBERON_0002049 vasculature UBERON_3010500 gastrico-linealis +UBERON_0002049 vasculature UBERON_3010501 duodeno-pancreatic artery +UBERON_0002049 vasculature UBERON_3010502 duodeno-hepatic artery +UBERON_0002049 vasculature UBERON_3010503 oviduct artery +UBERON_0002049 vasculature UBERON_3010506 postcaval vein +UBERON_0002049 vasculature UBERON_3010507 precaval vein +UBERON_0002049 vasculature UBERON_3010515 lateral vein +UBERON_0002049 vasculature UBERON_3010516 cutaneus magnus +UBERON_0002049 vasculature UBERON_3010517 ventral abdominal vein +UBERON_0002049 vasculature UBERON_3010519 Jacobson's vein +UBERON_0002049 vasculature UBERON_3010520 oviducal vein +UBERON_0002049 vasculature UBERON_8410001 small intestine venule +UBERON_0002049 vasculature UBERON_8410002 small intestine lymphatic vessel +UBERON_0002049 vasculature UBERON_8410004 small intestine arteriole +UBERON_0002049 vasculature UBERON_8410008 venule of anorectum +UBERON_0002049 vasculature UBERON_8410009 arteriole of anorectum +UBERON_0002049 vasculature UBERON_8410013 afferent lymphatic vessel valve +UBERON_0002049 vasculature UBERON_8410014 efferent lymphatic vessel valve +UBERON_0002049 vasculature UBERON_8410015 arteriole of colon +UBERON_0002049 vasculature UBERON_8410017 left colic vein +UBERON_0002049 vasculature UBERON_8410018 right colic vein +UBERON_0002049 vasculature UBERON_8410020 venule of appendix +UBERON_0002049 vasculature UBERON_8410022 left colic artery +UBERON_0002049 vasculature UBERON_8410023 right colic artery +UBERON_0002049 vasculature UBERON_8410028 arteriole of appendix +UBERON_0002049 vasculature UBERON_8410029 lymphatic capillary of appendix +UBERON_0002049 vasculature UBERON_8410030 lymphatic vessel of appendix +UBERON_0002049 vasculature UBERON_8410033 lymph node vein +UBERON_0002049 vasculature UBERON_8410034 lymph node artery +UBERON_0002049 vasculature UBERON_8410035 medullary arteriole of lymph node +UBERON_0002049 vasculature UBERON_8410036 medullary venule of lymph node +UBERON_0002049 vasculature UBERON_8410037 high endothelial venule +UBERON_0002049 vasculature UBERON_8410038 high endothelial venule of lymph node +UBERON_0002049 vasculature UBERON_8410039 high endothelial venule of appendix +UBERON_0002049 vasculature UBERON_8410040 high endothelial venule of small intestine Peyer's patch +UBERON_0002049 vasculature UBERON_8410041 venule of lymph node +UBERON_0002049 vasculature UBERON_8410042 arteriole of lymph node +UBERON_0002049 vasculature UBERON_8410044 vein of appendix +UBERON_0002049 vasculature UBERON_8410045 artery of appendix +UBERON_0002049 vasculature UBERON_8410048 venule of colon +UBERON_0002049 vasculature UBERON_8410051 lymphatic vessel of colon +UBERON_0002049 vasculature UBERON_8410054 lymphatic capillary of colon +UBERON_0002049 vasculature UBERON_8410055 lymphatic capillary of anorectum +UBERON_0002049 vasculature UBERON_8410056 capillary of anorectum +UBERON_0002049 vasculature UBERON_8410057 capillary of colon +UBERON_0002049 vasculature UBERON_8410068 capillary of small intestine +UBERON_0002049 vasculature UBERON_8410078 right lymphatic duct +UBERON_0002049 vasculature UBERON_8410081 blood microvessel +UBERON_0002049 vasculature UBERON_8480000 iliac vein smooth muscle tissue +UBERON_0002049 vasculature UBERON_8480001 capillary of brain +UBERON_0002049 vasculature UBERON_8480002 thoracic aorta smooth muscle tissue +UBERON_0002049 vasculature UBERON_8480003 iliac artery smooth muscle tissue +UBERON_0002049 vasculature UBERON_8480004 iliac vein endothelium +UBERON_0002049 vasculature UBERON_8480005 placental artery endothelium +UBERON_0002049 vasculature UBERON_8480006 mesenteric lymphatic vessel +UBERON_0002049 vasculature UBERON_8480007 placental artery +UBERON_0002049 vasculature UBERON_8480008 placental vein +UBERON_0002097 skin of body UBERON_0000014 zone of skin +UBERON_0002097 skin of body UBERON_0000041 odontode scale +UBERON_0002097 skin of body UBERON_0000212 toilet claw +UBERON_0002097 skin of body UBERON_0000329 hair root +UBERON_0002097 skin of body UBERON_0000359 preputial gland +UBERON_0002097 skin of body UBERON_0000382 apocrine sweat gland +UBERON_0002097 skin of body UBERON_0000412 dermal papilla +UBERON_0002097 skin of body UBERON_0000423 eccrine sweat gland +UBERON_0002097 skin of body UBERON_0001003 epidermis +UBERON_0002097 skin of body UBERON_0001003 skin epidermis +UBERON_0002097 skin of body UBERON_0001037 strand of hair +UBERON_0002097 skin of body UBERON_0001068 skin of back +UBERON_0002097 skin of body UBERON_0001084 skin of head +UBERON_0002097 skin of body UBERON_0001085 skin of trunk +UBERON_0002097 skin of body UBERON_0001331 skin of penis +UBERON_0002097 skin of body UBERON_0001415 skin of pelvis +UBERON_0002097 skin of body UBERON_0001416 skin of abdomen +UBERON_0002097 skin of body UBERON_0001417 skin of neck +UBERON_0002097 skin of body UBERON_0001418 skin of thorax +UBERON_0002097 skin of body UBERON_0001419 skin of limb +UBERON_0002097 skin of body UBERON_0001457 skin of eyelid +UBERON_0002097 skin of body UBERON_0001458 skin of lip +UBERON_0002097 skin of body UBERON_0001459 skin of external ear +UBERON_0002097 skin of body UBERON_0001471 skin of prepuce of penis +UBERON_0002097 skin of body UBERON_0001483 skin of shoulder +UBERON_0002097 skin of body UBERON_0001510 skin of knee +UBERON_0002097 skin of body UBERON_0001511 skin of leg +UBERON_0002097 skin of body UBERON_0001512 skin of ankle +UBERON_0002097 skin of body UBERON_0001513 skin of pes +UBERON_0002097 skin of body UBERON_0001517 skin of elbow +UBERON_0002097 skin of body UBERON_0001518 skin of wrist +UBERON_0002097 skin of body UBERON_0001519 skin of manus +UBERON_0002097 skin of body UBERON_0001554 skin of hip +UBERON_0002097 skin of body UBERON_0001702 eyelash +UBERON_0002097 skin of body UBERON_0001705 nail +UBERON_0002097 skin of body UBERON_0001818 tarsal gland +UBERON_0002097 skin of body UBERON_0001820 sweat gland +UBERON_0002097 skin of body UBERON_0001821 sebaceous gland +UBERON_0002097 skin of body UBERON_0001868 skin of chest +UBERON_0002097 skin of body UBERON_0001992 papillary layer of dermis +UBERON_0002097 skin of body UBERON_0001993 reticular layer of dermis +UBERON_0002097 skin of body UBERON_0002025 stratum basale of epidermis +UBERON_0002097 skin of body UBERON_0002026 stratum spinosum of epidermis +UBERON_0002097 skin of body UBERON_0002067 dermis +UBERON_0002097 skin of body UBERON_0002069 stratum granulosum of epidermis +UBERON_0002097 skin of body UBERON_0002071 stratum lucidum of epidermis +UBERON_0002097 skin of body UBERON_0002073 hair follicle +UBERON_0002097 skin of body UBERON_0002074 hair shaft +UBERON_0002097 skin of body UBERON_0002076 cuticle of hair +UBERON_0002097 skin of body UBERON_0002077 cortex of hair +UBERON_0002097 skin of body UBERON_0002097 skin of body +UBERON_0002097 skin of body UBERON_0002283 nail matrix +UBERON_0002097 skin of body UBERON_0002284 hyponychium +UBERON_0002097 skin of body UBERON_0002419 skin gland +UBERON_0002097 skin of body UBERON_0002427 arm skin +UBERON_0002097 skin of body UBERON_0003403 skin of forearm +UBERON_0002097 skin of body UBERON_0003426 dermis adipose tissue +UBERON_0002097 skin of body UBERON_0003484 eye sebaceous gland +UBERON_0002097 skin of body UBERON_0003485 vagina sebaceous gland +UBERON_0002097 skin of body UBERON_0003487 skin sebaceous gland +UBERON_0002097 skin of body UBERON_0003530 pedal digit skin +UBERON_0002097 skin of body UBERON_0003531 forelimb skin +UBERON_0002097 skin of body UBERON_0003532 hindlimb skin +UBERON_0002097 skin of body UBERON_0003533 manual digit skin +UBERON_0002097 skin of body UBERON_0003534 tail skin +UBERON_0002097 skin of body UBERON_0003585 dermis connective tissue +UBERON_0002097 skin of body UBERON_0003605 eye skin gland +UBERON_0002097 skin of body UBERON_0003719 Pacinian corpuscle +UBERON_0002097 skin of body UBERON_0003836 abdominal segment skin +UBERON_0002097 skin of body UBERON_0003967 cutaneous elastic tissue +UBERON_0002097 skin of body UBERON_0004000 tarsal gland acinus +UBERON_0002097 skin of body UBERON_0004014 labium minora +UBERON_0002097 skin of body UBERON_0004034 cutaneous microfibril +UBERON_0002097 skin of body UBERON_0004084 genital labium +UBERON_0002097 skin of body UBERON_0004085 labium majora +UBERON_0002097 skin of body UBERON_0004105 subungual region +UBERON_0002097 skin of body UBERON_0004262 upper leg skin +UBERON_0002097 skin of body UBERON_0004263 upper arm skin +UBERON_0002097 skin of body UBERON_0004264 lower leg skin +UBERON_0002097 skin of body UBERON_0004790 skin mucous gland +UBERON_0002097 skin of body UBERON_0004882 eponychium +UBERON_0002097 skin of body UBERON_0005083 nipple sheath +UBERON_0002097 skin of body UBERON_0005184 hair medulla +UBERON_0002097 skin of body UBERON_0005273 nail bed +UBERON_0002097 skin of body UBERON_0005274 proximal nail bed +UBERON_0002097 skin of body UBERON_0005275 dorsal skin of digit +UBERON_0002097 skin of body UBERON_0005276 dorsal skin of finger +UBERON_0002097 skin of body UBERON_0005277 dorsal skin of toe +UBERON_0002097 skin of body UBERON_0005278 nail bed of finger +UBERON_0002097 skin of body UBERON_0005279 nail bed of toe +UBERON_0002097 skin of body UBERON_0005298 skin of clitoris +UBERON_0002097 skin of body UBERON_0005301 male preputial gland +UBERON_0002097 skin of body UBERON_0005302 female preputial gland +UBERON_0002097 skin of body UBERON_0005932 bulb of hair follicle +UBERON_0002097 skin of body UBERON_0005933 hair root sheath +UBERON_0002097 skin of body UBERON_0005941 hair inner root sheath +UBERON_0002097 skin of body UBERON_0005942 hair outer root sheath +UBERON_0002097 skin of body UBERON_0005943 hair root sheath matrix +UBERON_0002097 skin of body UBERON_0005968 infundibulum of hair follicle +UBERON_0002097 skin of body UBERON_0005975 hair follicle bulge +UBERON_0002097 skin of body UBERON_0006004 hair follicle matrix region +UBERON_0002097 skin of body UBERON_0006005 hair follicle isthmus +UBERON_0002097 skin of body UBERON_0006378 strand of vibrissa hair +UBERON_0002097 skin of body UBERON_0007121 skin nerve field +UBERON_0002097 skin of body UBERON_0007330 rhamphotheca +UBERON_0002097 skin of body UBERON_0007331 maxillary rhamphotheca +UBERON_0002097 skin of body UBERON_0007332 mandibular rhamphotheca +UBERON_0002097 skin of body UBERON_0007377 stratum compactum of dermis +UBERON_0002097 skin of body UBERON_0007380 dermal scale +UBERON_0002097 skin of body UBERON_0007381 epidermal scale +UBERON_0002097 skin of body UBERON_0007771 epidermis gland +UBERON_0002097 skin of body UBERON_0007773 scrotal sweat gland +UBERON_0002097 skin of body UBERON_0008198 nail plate +UBERON_0002097 skin of body UBERON_0008201 scute +UBERON_0002097 skin of body UBERON_0008802 cheek pouch +UBERON_0002097 skin of body UBERON_0008803 skin of cheek +UBERON_0002097 skin of body UBERON_0008838 metapodial pad +UBERON_0002097 skin of body UBERON_0008839 palmar pad +UBERON_0002097 skin of body UBERON_0008840 plantar pad +UBERON_0002097 skin of body UBERON_0008877 epidermal-dermal junction +UBERON_0002097 skin of body UBERON_0008963 hoof +UBERON_0002097 skin of body UBERON_0008999 hoof lamina +UBERON_0002097 skin of body UBERON_0009014 lower back skin +UBERON_0002097 skin of body UBERON_0009015 upper back skin +UBERON_0002097 skin of body UBERON_0009200 limb epidermis +UBERON_0002097 skin of body UBERON_0009564 distal limb integumentary appendage +UBERON_0002097 skin of body UBERON_0009565 nail of manual digit +UBERON_0002097 skin of body UBERON_0009567 nail of pedal digit +UBERON_0002097 skin of body UBERON_0010171 strand of hair of face +UBERON_0002097 skin of body UBERON_0010402 epidermis suprabasal layer +UBERON_0002097 skin of body UBERON_0010419 vibrissa follicle +UBERON_0002097 skin of body UBERON_0010509 strand of pelage hair +UBERON_0002097 skin of body UBERON_0010510 strand of auchene hair +UBERON_0002097 skin of body UBERON_0010511 strand of awl hair +UBERON_0002097 skin of body UBERON_0010512 strand of guard hair +UBERON_0002097 skin of body UBERON_0010513 strand of zigzag hair +UBERON_0002097 skin of body UBERON_0010514 strand of duvet hair +UBERON_0002097 skin of body UBERON_0010515 brille +UBERON_0002097 skin of body UBERON_0010854 skin of front of neck +UBERON_0002097 skin of body UBERON_0010855 skin of forelimb wing +UBERON_0002097 skin of body UBERON_0010878 humeral patagium +UBERON_0002097 skin of body UBERON_0010880 gular fold +UBERON_0002097 skin of body UBERON_0011190 lunule of nail +UBERON_0002097 skin of body UBERON_0011255 Eimer's organ +UBERON_0002097 skin of body UBERON_0011273 nail of manual digit 1 +UBERON_0002097 skin of body UBERON_0011274 nail of manual digit 2 +UBERON_0002097 skin of body UBERON_0011275 nail of manual digit 3 +UBERON_0002097 skin of body UBERON_0011276 nail of manual digit 4 +UBERON_0002097 skin of body UBERON_0011277 nail of manual digit 5 +UBERON_0002097 skin of body UBERON_0011278 nail of pedal digit 1 +UBERON_0002097 skin of body UBERON_0011279 nail of pedal digit 2 +UBERON_0002097 skin of body UBERON_0011280 nail of pedal digit 3 +UBERON_0002097 skin of body UBERON_0011281 nail of pedal digit 4 +UBERON_0002097 skin of body UBERON_0011282 nail of pedal digit 5 +UBERON_0002097 skin of body UBERON_0011375 skin of prepuce of clitoris +UBERON_0002097 skin of body UBERON_0011673 plastron scute +UBERON_0002097 skin of body UBERON_0011674 carapace scute +UBERON_0002097 skin of body UBERON_0011782 feather follicle +UBERON_0002097 skin of body UBERON_0011783 feather follicle placode +UBERON_0002097 skin of body UBERON_0011801 dermal condensation of feather follicle +UBERON_0002097 skin of body UBERON_0011805 cavity of feather follicle +UBERON_0002097 skin of body UBERON_0011806 dermis of feather follicle +UBERON_0002097 skin of body UBERON_0011807 epidermis of feather follicle +UBERON_0002097 skin of body UBERON_0011808 outer epidermal layer of feather follicle +UBERON_0002097 skin of body UBERON_0011809 inner epidermal layer of feather follicle +UBERON_0002097 skin of body UBERON_0011827 areolar gland +UBERON_0002097 skin of body UBERON_0011844 duct of areolar gland +UBERON_0002097 skin of body UBERON_0011845 duct of sebaceous gland +UBERON_0002097 skin of body UBERON_0011846 acinus of sebaceous gland +UBERON_0002097 skin of body UBERON_0011854 acinus of areolar gland +UBERON_0002097 skin of body UBERON_0011901 hair matrix +UBERON_0002097 skin of body UBERON_0011931 nasal hair +UBERON_0002097 skin of body UBERON_0011936 vibrissa hair bulb +UBERON_0002097 skin of body UBERON_0011937 vibrissa root sheath +UBERON_0002097 skin of body UBERON_0011938 vibrissa inner root sheath +UBERON_0002097 skin of body UBERON_0011939 vibrissa outer root sheath +UBERON_0002097 skin of body UBERON_0011940 arrector pili muscle of vibrissa +UBERON_0002097 skin of body UBERON_0012177 skin apocrine gland +UBERON_0002097 skin of body UBERON_0012180 head or neck skin +UBERON_0002097 skin of body UBERON_0012243 nuptial pad +UBERON_0002097 skin of body UBERON_0012244 stratum intermedium of epidermis +UBERON_0002097 skin of body UBERON_0012281 perianal sebaceous gland +UBERON_0002097 skin of body UBERON_0012304 nasal diverticulum +UBERON_0002097 skin of body UBERON_0012305 marginal cutaneous pouch of ear +UBERON_0002097 skin of body UBERON_0012336 perianal skin +UBERON_0002097 skin of body UBERON_0012348 autopod pad +UBERON_0002097 skin of body UBERON_0012349 digital pad +UBERON_0002097 skin of body UBERON_0012350 carpal pad +UBERON_0002097 skin of body UBERON_0012447 podotheca +UBERON_0002097 skin of body UBERON_0012458 antler velvet +UBERON_0002097 skin of body UBERON_0013196 strand of wool +UBERON_0002097 skin of body UBERON_0013206 nasal tentacle +UBERON_0002097 skin of body UBERON_0013211 cerumen gland +UBERON_0002097 skin of body UBERON_0013228 sweat gland of eyelid +UBERON_0002097 skin of body UBERON_0013231 sebaceous gland of eyelid +UBERON_0002097 skin of body UBERON_0013487 epidermal ridge of digit +UBERON_0002097 skin of body UBERON_0013494 keratin-coated spine +UBERON_0002097 skin of body UBERON_0013495 barbed keratin-coated spine +UBERON_0002097 skin of body UBERON_0013496 unbarbed keratin-coated spine +UBERON_0002097 skin of body UBERON_0013622 manual autopod pad +UBERON_0002097 skin of body UBERON_0013623 pedal autopod pad +UBERON_0002097 skin of body UBERON_0013626 medial metatarsal pad +UBERON_0002097 skin of body UBERON_0013627 lateral metatarsal pad +UBERON_0002097 skin of body UBERON_0013628 pollical pad +UBERON_0002097 skin of body UBERON_0013629 hallical pad +UBERON_0002097 skin of body UBERON_0013640 internal cheek pouch +UBERON_0002097 skin of body UBERON_0013641 external cheek pouch +UBERON_0002097 skin of body UBERON_0013698 strand of pubic hair +UBERON_0002097 skin of body UBERON_0013699 strand of axillary hair +UBERON_0002097 skin of body UBERON_0013720 dartos muscle of labia majora +UBERON_0002097 skin of body UBERON_0013766 epicanthal fold +UBERON_0002097 skin of body UBERON_0013776 skin of palmar/plantar part of autopod +UBERON_0002097 skin of body UBERON_0013777 skin of palm of manus +UBERON_0002097 skin of body UBERON_0013778 skin of sole of pes +UBERON_0002097 skin of body UBERON_0014391 palmar/plantar sweat gland +UBERON_0002097 skin of body UBERON_0014481 sex skin +UBERON_0002097 skin of body UBERON_0014482 ischial callosity +UBERON_0002097 skin of body UBERON_0014931 periungual skin +UBERON_0002097 skin of body UBERON_0015144 autopod hair +UBERON_0002097 skin of body UBERON_0015145 pes hair +UBERON_0002097 skin of body UBERON_0015146 manus hair +UBERON_0002097 skin of body UBERON_0015147 pinna hair +UBERON_0002097 skin of body UBERON_0015148 tail hair +UBERON_0002097 skin of body UBERON_0015149 ventral hair +UBERON_0002097 skin of body UBERON_0015150 dorsal hair +UBERON_0002097 skin of body UBERON_0015249 digit skin +UBERON_0002097 skin of body UBERON_0015251 modified sebaceous gland +UBERON_0002097 skin of body UBERON_0015252 coat hair follicle +UBERON_0002097 skin of body UBERON_0015474 axilla skin +UBERON_0002097 skin of body UBERON_0015476 nose skin +UBERON_0002097 skin of body UBERON_0015479 scrotum skin +UBERON_0002097 skin of body UBERON_0015484 epidermis of metapodial pad +UBERON_0002097 skin of body UBERON_0015790 autopod skin +UBERON_0002097 skin of body UBERON_0015873 heel skin +UBERON_0002097 skin of body UBERON_0015886 root of nail +UBERON_0002097 skin of body UBERON_0016446 hair of head +UBERON_0002097 skin of body UBERON_0016447 hair of trunk +UBERON_0002097 skin of body UBERON_0016462 periorbital skin +UBERON_0002097 skin of body UBERON_0016475 skin of forehead +UBERON_0002097 skin of body UBERON_0016852 skin scent gland +UBERON_0002097 skin of body UBERON_0016853 interdigital gland +UBERON_0002097 skin of body UBERON_0016915 vermilion +UBERON_0002097 skin of body UBERON_0016918 upper vermilion +UBERON_0002097 skin of body UBERON_0016919 lower vermilion +UBERON_0002097 skin of body UBERON_0018134 rugal fold of scrotum +UBERON_0002097 skin of body UBERON_0018150 skin of lower lip +UBERON_0002097 skin of body UBERON_0018151 skin of upper lip +UBERON_0002097 skin of body UBERON_0018232 axillary sweat gland +UBERON_0002097 skin of body UBERON_0018233 gland of Zeis +UBERON_0002097 skin of body UBERON_0018278 epidermal egg tooth +UBERON_0002097 skin of body UBERON_0018309 central figure of scute +UBERON_0002097 skin of body UBERON_0018310 cephalic dermal scale +UBERON_0002097 skin of body UBERON_0018317 dorsal osteoderm +UBERON_0002097 skin of body UBERON_0019200 skin of anterior chest +UBERON_0002097 skin of body UBERON_0019204 skin epithelium +UBERON_0002097 skin of body UBERON_0019243 skin crease +UBERON_0002097 skin of body UBERON_0019246 palmar skin crease +UBERON_0002097 skin of body UBERON_0019247 plantar skin crease +UBERON_0002097 skin of body UBERON_0019254 upper eyelash +UBERON_0002097 skin of body UBERON_0019255 lower eyelash +UBERON_0002097 skin of body UBERON_0022279 strand of hair on external ear +UBERON_0002097 skin of body UBERON_0022285 strand of tylotrich hair +UBERON_0002097 skin of body UBERON_0034720 head taste bud +UBERON_0002097 skin of body UBERON_0034726 trunk taste bud +UBERON_0002097 skin of body UBERON_0034762 areolar sweat gland +UBERON_0002097 skin of body UBERON_0034765 glabella skin +UBERON_0002097 skin of body UBERON_0035073 duct of eccrine sweat gland +UBERON_0002097 skin of body UBERON_0035074 duct of apocrine sweat gland +UBERON_0002097 skin of body UBERON_0035501 unencapsulated tactile receptor +UBERON_0002097 skin of body UBERON_0035609 outer root sheath companion layer +UBERON_0002097 skin of body UBERON_0035610 hair canal +UBERON_0002097 skin of body UBERON_0035611 hair peg +UBERON_0002097 skin of body UBERON_0036149 suprapubic skin +UBERON_0002097 skin of body UBERON_0036150 skin appendage follicle +UBERON_0002097 skin of body UBERON_0036219 ungulate coronary band +UBERON_0002097 skin of body UBERON_0037458 hair of neck +UBERON_0002097 skin of body UBERON_0037459 hair of limb +UBERON_0002097 skin of body UBERON_0037461 primary hair +UBERON_0002097 skin of body UBERON_0037462 vellus hair +UBERON_0002097 skin of body UBERON_0037463 terminal hair +UBERON_0002097 skin of body UBERON_0037464 androgenic hair +UBERON_0002097 skin of body UBERON_0037465 catagen hair +UBERON_0002097 skin of body UBERON_0037466 telogen hair +UBERON_0002097 skin of body UBERON_0037467 anagen hair +UBERON_0002097 skin of body UBERON_1000003 dewlap +UBERON_0002097 skin of body UBERON_1000010 mole +UBERON_0002097 skin of body UBERON_1000015 skin of snout +UBERON_0002097 skin of body UBERON_1000021 skin of face +UBERON_0002097 skin of body UBERON_1000022 Zymbal's gland +UBERON_0002097 skin of body UBERON_2001179 epidermal superficial stratum +UBERON_0002097 skin of body UBERON_2001181 epidermal intermediate stratum +UBERON_0002097 skin of body UBERON_2001183 dermal superficial region +UBERON_0002097 skin of body UBERON_2001186 collagenous dermal stroma +UBERON_0002097 skin of body UBERON_2001824 lateral line scale +UBERON_0002097 skin of body UBERON_2002051 scale circulus +UBERON_0002097 skin of body UBERON_2002118 scale radius +UBERON_0002097 skin of body UBERON_2002119 dermal scale focus +UBERON_0002097 skin of body UBERON_2002122 pouch scale +UBERON_0002097 skin of body UBERON_2002195 epidermal placode +UBERON_0002097 skin of body UBERON_2002242 scale primordium +UBERON_0002097 skin of body UBERON_2002249 ctenius +UBERON_0002097 skin of body UBERON_2002273 ctenoid scale +UBERON_0002097 skin of body UBERON_2002274 transforming ctenoid scale +UBERON_0002097 skin of body UBERON_2002285 cycloid scale +UBERON_0002097 skin of body UBERON_3010599 stratum spongiosum +UBERON_0002097 skin of body UBERON_3010802 courtship gland +UBERON_0002097 skin of body UBERON_4000051 lepidosteoid scale +UBERON_0002097 skin of body UBERON_4000052 ganoid scale +UBERON_0002097 skin of body UBERON_4000055 polypteroid scale +UBERON_0002097 skin of body UBERON_4000070 elasmoid scale +UBERON_0002097 skin of body UBERON_4000074 palaeoniscoid scale +UBERON_0002097 skin of body UBERON_4000080 keratin-based scale +UBERON_0002097 skin of body UBERON_4000081 cosmoid scale +UBERON_0002097 skin of body UBERON_4000104 ganoine +UBERON_0002097 skin of body UBERON_4000105 limiting layer of elasmoid scale +UBERON_0002097 skin of body UBERON_4000107 elasmodine +UBERON_0002097 skin of body UBERON_4200165 basal scute +UBERON_0002097 skin of body UBERON_4300031 fin web +UBERON_0002097 skin of body UBERON_4300102 postcleithral scale +UBERON_0002097 skin of body UBERON_4300188 terminal scale +UBERON_0002097 skin of body UBERON_4300222 axilar scale +UBERON_0002097 skin of body UBERON_4300235 spinoid scale +UBERON_0002097 skin of body UBERON_4300238 pored lateral line scale +UBERON_0002097 skin of body UBERON_4300242 lateral line scale 6 +UBERON_0002097 skin of body UBERON_4500003 predorsal scale +UBERON_0002097 skin of body UBERON_8300000 skin of scalp +UBERON_0002097 skin of body UBERON_8410021 inguinal region skin +UBERON_0002097 skin of body UBERON_8420000 hair of scalp +UBERON_0002106 spleen UBERON_0001248 hilum of spleen +UBERON_0002106 spleen UBERON_0001249 spleen lymphoid follicle +UBERON_0002106 spleen UBERON_0001250 red pulp of spleen +UBERON_0002106 spleen UBERON_0001251 marginal zone of spleen +UBERON_0002106 spleen UBERON_0001265 trabecula of spleen +UBERON_0002106 spleen UBERON_0001266 splenic cord +UBERON_0002106 spleen UBERON_0001959 white pulp of spleen +UBERON_0002106 spleen UBERON_0001960 periarterial lymphatic sheath +UBERON_0002106 spleen UBERON_0002106 spleen +UBERON_0002106 spleen UBERON_0003910 splenic sinusoid +UBERON_0002106 spleen UBERON_0004041 spleen primary B follicle +UBERON_0002106 spleen UBERON_0004042 spleen secondary B follicle +UBERON_0002106 spleen UBERON_0004238 spleen smooth muscle +UBERON_0002106 spleen UBERON_0004641 spleen capsule +UBERON_0002106 spleen UBERON_0005196 spleen germinal center +UBERON_0002106 spleen UBERON_0005353 spleen perifollicular zone +UBERON_0002106 spleen UBERON_0009967 spleen venous sinus +UBERON_0002106 spleen UBERON_0010174 Schweigger-Seidel sheath +UBERON_0002106 spleen UBERON_0010398 spleen marginal sinus +UBERON_0002106 spleen UBERON_0010399 spleen trabecular artery +UBERON_0002106 spleen UBERON_0010400 spleen trabecular vein +UBERON_0002106 spleen UBERON_0010401 spleen central arteriole +UBERON_0002106 spleen UBERON_0010421 spleen B cell corona +UBERON_0002106 spleen UBERON_0010756 spleen follicular dendritic cell network +UBERON_0002106 spleen UBERON_0013132 penicillar arteriole +UBERON_0002106 spleen UBERON_0022292 splenic arteriole +UBERON_0002106 spleen UBERON_0036301 vasculature of spleen +UBERON_0002106 spleen UBERON_1000023 spleen pulp +UBERON_0002106 spleen UBERON_1000024 parenchyma of spleen +UBERON_0002107 liver UBERON_0001113 lobe of liver +UBERON_0002107 liver UBERON_0001114 right lobe of liver +UBERON_0002107 liver UBERON_0001115 left lobe of liver +UBERON_0002107 liver UBERON_0001116 quadrate lobe of liver +UBERON_0002107 liver UBERON_0001117 caudate lobe of liver +UBERON_0002107 liver UBERON_0001143 hepatic vein +UBERON_0002107 liver UBERON_0001149 bare area of liver +UBERON_0002107 liver UBERON_0001171 portal lobule +UBERON_0002107 liver UBERON_0001172 hepatic acinus +UBERON_0002107 liver UBERON_0001246 interlobular bile duct +UBERON_0002107 liver UBERON_0001247 falciform ligament +UBERON_0002107 liver UBERON_0001279 portal triad +UBERON_0002107 liver UBERON_0001280 liver parenchyma +UBERON_0002107 liver UBERON_0001281 hepatic sinusoid +UBERON_0002107 liver UBERON_0001282 intralobular bile duct +UBERON_0002107 liver UBERON_0001283 bile canaliculus +UBERON_0002107 liver UBERON_0002107 liver +UBERON_0002107 liver UBERON_0003704 intrahepatic bile duct +UBERON_0002107 liver UBERON_0004058 biliary ductule +UBERON_0002107 liver UBERON_0004647 liver lobule +UBERON_0002107 liver UBERON_0004823 intrahepatic bile duct epithelium +UBERON_0002107 liver UBERON_0005050 liver papillary process +UBERON_0002107 liver UBERON_0005221 liver right lobe parenchyma +UBERON_0002107 liver UBERON_0005222 liver left lobe parenchyma +UBERON_0002107 liver UBERON_0005452 hepatic cord +UBERON_0002107 liver UBERON_0005605 intrahepatic part of hepatic duct +UBERON_0002107 liver UBERON_0006588 round ligament of liver +UBERON_0002107 liver UBERON_0006727 liver left lateral lobe +UBERON_0002107 liver UBERON_0006728 liver left medial lobe +UBERON_0002107 liver UBERON_0006729 liver perisinusoidal space +UBERON_0002107 liver UBERON_0006841 central vein of liver +UBERON_0002107 liver UBERON_0006877 vasculature of liver +UBERON_0002107 liver UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0002107 liver UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0002107 liver UBERON_0010183 liver trabecula +UBERON_0002107 liver UBERON_0010704 parenchyma of quadrate lobe of liver +UBERON_0002107 liver UBERON_0010706 parenchyma of caudate lobe of liver +UBERON_0002107 liver UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0002107 liver UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0002107 liver UBERON_0011955 left hepatic vein +UBERON_0002107 liver UBERON_0011956 right hepatic vein +UBERON_0002107 liver UBERON_0011957 middle hepatic vein +UBERON_0002107 liver UBERON_0013138 coronary ligament of liver +UBERON_0002107 liver UBERON_0013139 ligament of liver +UBERON_0002107 liver UBERON_0014400 hepatic sinusoidal space +UBERON_0002107 liver UBERON_0014779 liver reticuloendothelial system +UBERON_0002107 liver UBERON_0015142 falciform fat +UBERON_0002107 liver UBERON_0015455 accessory hepatic vein +UBERON_0002107 liver UBERON_0015481 left hepatic artery +UBERON_0002107 liver UBERON_0015482 right hepatic artery +UBERON_0002107 liver UBERON_0015796 liver blood vessel +UBERON_0002107 liver UBERON_0016478 liver stroma +UBERON_0002107 liver UBERON_0016479 capsule of liver +UBERON_0002107 liver UBERON_0016480 interlobular stroma of liver +UBERON_0002107 liver UBERON_0016890 intrahepatic branch of portal vein +UBERON_0002107 liver UBERON_0035444 triangular ligament of liver +UBERON_0002107 liver UBERON_0035756 capillary network of liver +UBERON_0002107 liver UBERON_0039222 cystic artery +UBERON_0002107 liver UBERON_2005174 ventral liver lobe +UBERON_0002107 liver UBERON_3010404 capillary system of liver +UBERON_0002107 liver UBERON_8400001 hepatic acinus zone 1 +UBERON_0002107 liver UBERON_8400002 hepatic acinus zone 3 +UBERON_0002107 liver UBERON_8400003 hepatic acinus zone 2 +UBERON_0002107 liver UBERON_8400005 metabolic zone of liver +UBERON_0002107 liver UBERON_8400006 liver lobule periportal region +UBERON_0002107 liver UBERON_8400007 liver lobule centrilobular region +UBERON_0002107 liver UBERON_8400008 liver lobule midzonal region +UBERON_0002107 liver UBERON_8400021 liver serosa +UBERON_0002107 liver UBERON_8400023 liver subserosa +UBERON_0002107 liver UBERON_8400024 subcapsular region of liver +UBERON_0002113 kidney UBERON_0000074 renal glomerulus +UBERON_0002113 kidney UBERON_0000080 mesonephros +UBERON_0002113 kidney UBERON_0000081 metanephros +UBERON_0002113 kidney UBERON_0000082 adult mammalian kidney +UBERON_0002113 kidney UBERON_0000083 mesonephric tubule +UBERON_0002113 kidney UBERON_0000084 ureteric bud +UBERON_0002113 kidney UBERON_0000362 renal medulla +UBERON_0002113 kidney UBERON_0001224 renal pelvis +UBERON_0002113 kidney UBERON_0001225 cortex of kidney +UBERON_0002113 kidney UBERON_0001225 left renal cortex +UBERON_0002113 kidney UBERON_0001225 right renal cortex +UBERON_0002113 kidney UBERON_0001226 major calyx +UBERON_0002113 kidney UBERON_0001227 minor calyx +UBERON_0002113 kidney UBERON_0001228 renal papilla +UBERON_0002113 kidney UBERON_0001229 renal corpuscle +UBERON_0002113 kidney UBERON_0001230 glomerular capsule +UBERON_0002113 kidney UBERON_0001231 nephron tubule +UBERON_0002113 kidney UBERON_0001232 collecting duct of renal tubule +UBERON_0002113 kidney UBERON_0001284 renal column +UBERON_0002113 kidney UBERON_0001285 nephron +UBERON_0002113 kidney UBERON_0001286 Bowman's space +UBERON_0002113 kidney UBERON_0001287 proximal convoluted tubule +UBERON_0002113 kidney UBERON_0001288 loop of Henle +UBERON_0002113 kidney UBERON_0001289 descending limb of loop of Henle +UBERON_0002113 kidney UBERON_0001290 proximal straight tubule +UBERON_0002113 kidney UBERON_0001291 thick ascending limb of loop of Henle +UBERON_0002113 kidney UBERON_0001292 distal convoluted tubule +UBERON_0002113 kidney UBERON_0001293 outer medulla of kidney +UBERON_0002113 kidney UBERON_0001294 inner medulla of kidney +UBERON_0002113 kidney UBERON_0001552 kidney arcuate artery +UBERON_0002113 kidney UBERON_0002015 kidney capsule +UBERON_0002113 kidney UBERON_0002113 kidney +UBERON_0002113 kidney UBERON_0002120 pronephros +UBERON_0002113 kidney UBERON_0002189 outer cortex of kidney +UBERON_0002113 kidney UBERON_0002303 juxtaglomerular apparatus +UBERON_0002113 kidney UBERON_0002319 mesangium +UBERON_0002113 kidney UBERON_0002320 glomerular mesangium +UBERON_0002113 kidney UBERON_0002321 extraglomerular mesangium +UBERON_0002113 kidney UBERON_0002335 macula densa +UBERON_0002113 kidney UBERON_0003060 pronephric duct +UBERON_0002113 kidney UBERON_0003074 mesonephric duct +UBERON_0002113 kidney UBERON_0003455 inner renal medulla loop of Henle +UBERON_0002113 kidney UBERON_0003517 kidney blood vessel +UBERON_0002113 kidney UBERON_0003527 kidney capillary +UBERON_0002113 kidney UBERON_0003546 distal convoluted tubule macula densa +UBERON_0002113 kidney UBERON_0003644 kidney arterial blood vessel +UBERON_0002113 kidney UBERON_0004100 renal collecting system +UBERON_0002113 kidney UBERON_0004134 proximal tubule +UBERON_0002113 kidney UBERON_0004135 distal tubule +UBERON_0002113 kidney UBERON_0004136 intermediate tubule +UBERON_0002113 kidney UBERON_0004188 glomerular epithelium +UBERON_0002113 kidney UBERON_0004189 glomerular endothelium +UBERON_0002113 kidney UBERON_0004190 renal glomerulus vasculature +UBERON_0002113 kidney UBERON_0004193 loop of Henle ascending limb thin segment +UBERON_0002113 kidney UBERON_0004194 long nephron +UBERON_0002113 kidney UBERON_0004195 short nephron +UBERON_0002113 kidney UBERON_0004196 proximal convoluted tubule segment 1 +UBERON_0002113 kidney UBERON_0004197 proximal convoluted tubule segment 2 +UBERON_0002113 kidney UBERON_0004198 comma-shaped body +UBERON_0002113 kidney UBERON_0004199 S-shaped body +UBERON_0002113 kidney UBERON_0004200 kidney pyramid +UBERON_0002113 kidney UBERON_0004201 kidney outer medulla inner stripe +UBERON_0002113 kidney UBERON_0004202 kidney outer medulla outer stripe +UBERON_0002113 kidney UBERON_0004203 cortical collecting duct +UBERON_0002113 kidney UBERON_0004204 outer medullary collecting duct +UBERON_0002113 kidney UBERON_0004205 inner medullary collecting duct +UBERON_0002113 kidney UBERON_0004206 long descending thin limb bend +UBERON_0002113 kidney UBERON_0004207 prebend segment of loop of Henle +UBERON_0002113 kidney UBERON_0004211 nephron epithelium +UBERON_0002113 kidney UBERON_0004212 glomerular capillary +UBERON_0002113 kidney UBERON_0004227 kidney pelvis smooth muscle +UBERON_0002113 kidney UBERON_0004294 glomerular capillary endothelium +UBERON_0002113 kidney UBERON_0004538 left kidney +UBERON_0002113 kidney UBERON_0004539 right kidney +UBERON_0002113 kidney UBERON_0004639 renal afferent arteriole +UBERON_0002113 kidney UBERON_0004640 renal efferent arteriole +UBERON_0002113 kidney UBERON_0004719 kidney arcuate vein +UBERON_0002113 kidney UBERON_0004723 interlobular artery +UBERON_0002113 kidney UBERON_0004736 metanephric glomerulus +UBERON_0002113 kidney UBERON_0004737 metanephric collecting duct +UBERON_0002113 kidney UBERON_0004738 metanephric juxtaglomerular apparatus +UBERON_0002113 kidney UBERON_0004739 pronephric glomerulus +UBERON_0002113 kidney UBERON_0004775 outer renal medulla vasa recta +UBERON_0002113 kidney UBERON_0004776 inner renal medulla vasa recta +UBERON_0002113 kidney UBERON_0004788 kidney pelvis urothelium +UBERON_0002113 kidney UBERON_0004810 nephron tubule epithelium +UBERON_0002113 kidney UBERON_0004819 kidney epithelium +UBERON_0002113 kidney UBERON_0005006 mucosa of renal pelvis +UBERON_0002113 kidney UBERON_0005007 mucosa of major calyx +UBERON_0002113 kidney UBERON_0005008 mucosa of minor calyx +UBERON_0002113 kidney UBERON_0005080 metanephric ureteric bud +UBERON_0002113 kidney UBERON_0005081 ureter ureteric bud +UBERON_0002113 kidney UBERON_0005096 descending thin limb +UBERON_0002113 kidney UBERON_0005097 renal connecting tubule +UBERON_0002113 kidney UBERON_0005099 short descending thin limb +UBERON_0002113 kidney UBERON_0005100 long descending thin limb +UBERON_0002113 kidney UBERON_0005101 early distal convoluted tubule +UBERON_0002113 kidney UBERON_0005102 late distal convoluted tubule +UBERON_0002113 kidney UBERON_0005103 mesonephric epithelium +UBERON_0002113 kidney UBERON_0005104 anterior mesonephric tubule +UBERON_0002113 kidney UBERON_0005105 posterior mesonephric tubule +UBERON_0002113 kidney UBERON_0005106 metanephric tubule +UBERON_0002113 kidney UBERON_0005108 metanephric epithelium +UBERON_0002113 kidney UBERON_0005109 metanephric smooth muscle tissue +UBERON_0002113 kidney UBERON_0005110 metanephric nephron +UBERON_0002113 kidney UBERON_0005111 metanephric pyramid +UBERON_0002113 kidney UBERON_0005114 metanephric ascending thin limb +UBERON_0002113 kidney UBERON_0005115 metanephric cortical collecting duct +UBERON_0002113 kidney UBERON_0005116 metanephric descending thin limb +UBERON_0002113 kidney UBERON_0005117 metanephric distal convoluted tubule +UBERON_0002113 kidney UBERON_0005118 metanephric early distal convoluted tubule +UBERON_0002113 kidney UBERON_0005119 metanephric glomerular mesangium +UBERON_0002113 kidney UBERON_0005120 metanephric late distal convoluted tubule +UBERON_0002113 kidney UBERON_0005121 metanephric long descending thin limb bend +UBERON_0002113 kidney UBERON_0005122 metanephric macula densa +UBERON_0002113 kidney UBERON_0005123 metanephric prebend segment +UBERON_0002113 kidney UBERON_0005124 metanephric proximal convoluted tubule +UBERON_0002113 kidney UBERON_0005125 metanephric proximal straight tubule +UBERON_0002113 kidney UBERON_0005126 metanephric S1 +UBERON_0002113 kidney UBERON_0005127 metanephric thick ascending limb +UBERON_0002113 kidney UBERON_0005129 metanephric distal tubule +UBERON_0002113 kidney UBERON_0005130 metanephric loop of Henle +UBERON_0002113 kidney UBERON_0005132 metanephric long nephron +UBERON_0002113 kidney UBERON_0005133 metanephric glomerulus vasculature +UBERON_0002113 kidney UBERON_0005134 metanephric nephron epithelium +UBERON_0002113 kidney UBERON_0005135 metanephric glomerular epithelium +UBERON_0002113 kidney UBERON_0005136 metanephric glomerular endothelium +UBERON_0002113 kidney UBERON_0005137 metanephric capsule +UBERON_0002113 kidney UBERON_0005139 metanephric long descending thin limb +UBERON_0002113 kidney UBERON_0005140 metanephric short nephron +UBERON_0002113 kidney UBERON_0005141 metanephric short descending thin limb +UBERON_0002113 kidney UBERON_0005144 metanephric glomerular capillary +UBERON_0002113 kidney UBERON_0005145 metanephric comma-shaped body +UBERON_0002113 kidney UBERON_0005146 metanephric nephron tubule +UBERON_0002113 kidney UBERON_0005147 metanephric renal vesicle +UBERON_0002113 kidney UBERON_0005148 metanephric S-shaped body +UBERON_0002113 kidney UBERON_0005149 metanephric connecting tubule +UBERON_0002113 kidney UBERON_0005151 metanephric proximal tubule +UBERON_0002113 kidney UBERON_0005164 ascending limb of loop of Henle +UBERON_0002113 kidney UBERON_0005167 papillary duct +UBERON_0002113 kidney UBERON_0005168 renal interlobular vein +UBERON_0002113 kidney UBERON_0005185 renal medulla collecting duct +UBERON_0002113 kidney UBERON_0005202 distal straight tubule macula densa +UBERON_0002113 kidney UBERON_0005211 renal medulla interstitium +UBERON_0002113 kidney UBERON_0005213 outer renal medulla interstitium +UBERON_0002113 kidney UBERON_0005214 inner renal medulla interstitium +UBERON_0002113 kidney UBERON_0005215 kidney interstitium +UBERON_0002113 kidney UBERON_0005249 metanephric renal pelvis +UBERON_0002113 kidney UBERON_0005268 renal cortex artery +UBERON_0002113 kidney UBERON_0005269 renal cortex vein +UBERON_0002113 kidney UBERON_0005270 renal cortex interstitium +UBERON_0002113 kidney UBERON_0005271 juxtamedullary cortex +UBERON_0002113 kidney UBERON_0005272 peritubular capillary +UBERON_0002113 kidney UBERON_0005308 nephrostome +UBERON_0002113 kidney UBERON_0005309 pronephric nephron +UBERON_0002113 kidney UBERON_0005310 pronephric nephron tubule +UBERON_0002113 kidney UBERON_0005312 primary ureteric bud +UBERON_0002113 kidney UBERON_0005319 mesonephric collecting duct +UBERON_0002113 kidney UBERON_0005320 mesonephric juxtaglomerular apparatus +UBERON_0002113 kidney UBERON_0005321 mesonephric smooth muscle tissue +UBERON_0002113 kidney UBERON_0005322 mesonephric nephron +UBERON_0002113 kidney UBERON_0005323 mesonephric mesenchyme +UBERON_0002113 kidney UBERON_0005324 mesonephric macula densa +UBERON_0002113 kidney UBERON_0005325 mesonephric glomerulus +UBERON_0002113 kidney UBERON_0005326 mesonephric glomerulus vasculature +UBERON_0002113 kidney UBERON_0005327 mesonephric glomerular epithelium +UBERON_0002113 kidney UBERON_0005328 mesonephric comma-shaped body +UBERON_0002113 kidney UBERON_0005329 mesonephric nephron tubule +UBERON_0002113 kidney UBERON_0005330 mesonephric nephron epithelium +UBERON_0002113 kidney UBERON_0005331 mesonephric renal vesicle +UBERON_0002113 kidney UBERON_0005332 mesonephric S-shaped body +UBERON_0002113 kidney UBERON_0005749 glomerular tuft +UBERON_0002113 kidney UBERON_0005750 glomerular parietal epithelium +UBERON_0002113 kidney UBERON_0005751 glomerular visceral epithelium +UBERON_0002113 kidney UBERON_0005777 glomerular basement membrane +UBERON_0002113 kidney UBERON_0005787 lamina densa of glomerular basement membrane +UBERON_0002113 kidney UBERON_0005788 lamina rara interna +UBERON_0002113 kidney UBERON_0005789 lamina rara externa +UBERON_0002113 kidney UBERON_0005892 mesonephric early distal tubule +UBERON_0002113 kidney UBERON_0005912 transitional epithelium of major calyx +UBERON_0002113 kidney UBERON_0006170 mesonephric capsule +UBERON_0002113 kidney UBERON_0006171 renal sinus +UBERON_0002113 kidney UBERON_0006172 rectal diverticulum +UBERON_0002113 kidney UBERON_0006173 pronephric proximal tubule +UBERON_0002113 kidney UBERON_0006174 pronephric sinus +UBERON_0002113 kidney UBERON_0006175 pronephric distal tubule +UBERON_0002113 kidney UBERON_0006182 mesonephric glomerular mesangium +UBERON_0002113 kidney UBERON_0006183 mesonephric glomerular capillary +UBERON_0002113 kidney UBERON_0006189 mesonephric connecting tubule +UBERON_0002113 kidney UBERON_0006190 mesonephric distal tubule +UBERON_0002113 kidney UBERON_0006192 mesonephric proximal tubule +UBERON_0002113 kidney UBERON_0006194 renal sinus of right kidney +UBERON_0002113 kidney UBERON_0006195 renal sinus of left kidney +UBERON_0002113 kidney UBERON_0006196 mesonephric sinus +UBERON_0002113 kidney UBERON_0006337 distal early tubule +UBERON_0002113 kidney UBERON_0006341 outer renal medulla peritubular capillary +UBERON_0002113 kidney UBERON_0006364 ureteric bud tip +UBERON_0002113 kidney UBERON_0006373 perihilar interstitium +UBERON_0002113 kidney UBERON_0006374 part of afferent arteriole forming the juxtaglomerular complex +UBERON_0002113 kidney UBERON_0006376 premacula segment of distal straight tubule +UBERON_0002113 kidney UBERON_0006517 kidney calyx +UBERON_0002113 kidney UBERON_0006534 renal convoluted tubule +UBERON_0002113 kidney UBERON_0006541 outer medulla inner stripe loop of Henle +UBERON_0002113 kidney UBERON_0006542 outer medulla outer stripe loop of Henle +UBERON_0002113 kidney UBERON_0006544 kidney vasculature +UBERON_0002113 kidney UBERON_0006553 renal duct +UBERON_0002113 kidney UBERON_0006851 renal cortex peritubular capillary +UBERON_0002113 kidney UBERON_0006853 renal cortex tubule +UBERON_0002113 kidney UBERON_0006854 distal straight tubule postmacula segment +UBERON_0002113 kidney UBERON_0006856 interrenal gland +UBERON_0002113 kidney UBERON_0006857 interrenal primordium +UBERON_0002113 kidney UBERON_0007132 head kidney +UBERON_0002113 kidney UBERON_0007298 pronephric proximal convoluted tubule +UBERON_0002113 kidney UBERON_0007306 pronephric glomerular capillary +UBERON_0002113 kidney UBERON_0007307 pronephric glomerular basement membrane +UBERON_0002113 kidney UBERON_0007308 pronephric distal early tubule +UBERON_0002113 kidney UBERON_0007653 capillary loop nephron +UBERON_0002113 kidney UBERON_0007654 maturing nephron +UBERON_0002113 kidney UBERON_0007684 uriniferous tubule +UBERON_0002113 kidney UBERON_0007685 region of nephron tubule +UBERON_0002113 kidney UBERON_0008404 proximal tubular epithelium +UBERON_0002113 kidney UBERON_0008408 distal tubular epithelium +UBERON_0002113 kidney UBERON_0008716 hilum of kidney +UBERON_0002113 kidney UBERON_0008987 renal parenchyma +UBERON_0002113 kidney UBERON_0009035 renal straight tubule +UBERON_0002113 kidney UBERON_0009089 inner medulla vasa recta descending limb +UBERON_0002113 kidney UBERON_0009090 outer medulla vasa recta descending limb +UBERON_0002113 kidney UBERON_0009092 inner medulla vasa recta ascending limb +UBERON_0002113 kidney UBERON_0009093 outer medulla vasa recta ascending limb +UBERON_0002113 kidney UBERON_0009095 tip of renal papilla +UBERON_0002113 kidney UBERON_0009201 nephric duct +UBERON_0002113 kidney UBERON_0009622 pronephric proximal straight tubule +UBERON_0002113 kidney UBERON_0009650 cortical arch of kidney +UBERON_0002113 kidney UBERON_0009651 nephron tubule basement membrane +UBERON_0002113 kidney UBERON_0009871 nephrogenic zone +UBERON_0002113 kidney UBERON_0009883 medullary ray +UBERON_0002113 kidney UBERON_0009913 renal lobe +UBERON_0002113 kidney UBERON_0009914 renal lobule +UBERON_0002113 kidney UBERON_0009917 kidney corticomedullary boundary +UBERON_0002113 kidney UBERON_0010181 straight venules of kidney +UBERON_0002113 kidney UBERON_0010531 metanephros induced blastemal cells +UBERON_0002113 kidney UBERON_0010532 primitive nephron +UBERON_0002113 kidney UBERON_0010533 metanephros cortex +UBERON_0002113 kidney UBERON_0010534 primitive mesonephric nephron +UBERON_0002113 kidney UBERON_0010535 primitive metanephric nephron +UBERON_0002113 kidney UBERON_0010537 mesonephric nephron progenitor +UBERON_0002113 kidney UBERON_0011574 mesonephric duct lumen +UBERON_0002113 kidney UBERON_0012238 ureteric bud trunk +UBERON_0002113 kidney UBERON_0012352 mesangial matrix +UBERON_0002113 kidney UBERON_0012428 proximal convoluted tubule brush border +UBERON_0002113 kidney UBERON_0012441 endothelium of peritubular capillary +UBERON_0002113 kidney UBERON_0014388 kidney collecting duct epithelium +UBERON_0002113 kidney UBERON_0014401 renal venous blood vessel +UBERON_0002113 kidney UBERON_0014464 renal fat pad +UBERON_0002113 kidney UBERON_0018113 left kidney interstitium +UBERON_0002113 kidney UBERON_0018114 right kidney interstitium +UBERON_0002113 kidney UBERON_0018115 left renal pelvis +UBERON_0002113 kidney UBERON_0018116 right renal pelvis +UBERON_0002113 kidney UBERON_0018117 left renal cortex interstitium +UBERON_0002113 kidney UBERON_0018118 right renal cortex interstitium +UBERON_0002113 kidney UBERON_0018119 left renal medulla interstitium +UBERON_0002113 kidney UBERON_0018120 right renal medulla interstitium +UBERON_0002113 kidney UBERON_0034884 juxtaglomerular arteriole +UBERON_0002113 kidney UBERON_0034996 outer renal medulla loop of Henle +UBERON_0002113 kidney UBERON_0034997 renal medulla loop of Henle +UBERON_0002113 kidney UBERON_0035368 anterior surface of kidney +UBERON_0002113 kidney UBERON_0035471 posterior surface of kidney +UBERON_0002113 kidney UBERON_0035758 peritubular capillary plexus of kidney +UBERON_0002113 kidney UBERON_0035762 capillary network of kidney +UBERON_0002113 kidney UBERON_2001055 pronephric duct opening +UBERON_0002113 kidney UBERON_2001200 corpuscles of Stannius +UBERON_0002113 kidney UBERON_2001293 posterior kidney +UBERON_0002113 kidney UBERON_2002225 posterior pronephric duct +UBERON_0002113 kidney UBERON_2005292 distal late tubule +UBERON_0002113 kidney UBERON_2005311 pronephric glomerular capsule epithelium +UBERON_0002113 kidney UBERON_3010392 mesonephric early proximal tubule +UBERON_0002113 kidney UBERON_3010393 mesonephric late distal segment +UBERON_0002113 kidney UBERON_3010394 mesonephric late proximal tubule +UBERON_0002113 kidney UBERON_3011120 early proximal tubule +UBERON_0002113 kidney UBERON_3011121 late distal segment +UBERON_0002113 kidney UBERON_8410073 medullary region of kidney +UBERON_0002240 spinal cord UBERON_0001948 regional part of spinal cord +UBERON_0002240 spinal cord UBERON_0002093 spinal dura mater +UBERON_0002240 spinal cord UBERON_0002175 intermediolateral nucleus +UBERON_0002240 spinal cord UBERON_0002176 lateral cervical nucleus +UBERON_0002240 spinal cord UBERON_0002179 lateral funiculus of spinal cord +UBERON_0002240 spinal cord UBERON_0002180 ventral funiculus of spinal cord +UBERON_0002240 spinal cord UBERON_0002181 substantia gelatinosa +UBERON_0002240 spinal cord UBERON_0002240 spinal cord +UBERON_0002240 spinal cord UBERON_0002246 dorsal thoracic nucleus +UBERON_0002240 spinal cord UBERON_0002256 dorsal horn of spinal cord +UBERON_0002240 spinal cord UBERON_0002257 ventral horn of spinal cord +UBERON_0002240 spinal cord UBERON_0002258 dorsal funiculus of spinal cord +UBERON_0002240 spinal cord UBERON_0002291 central canal of spinal cord +UBERON_0002240 spinal cord UBERON_0002315 gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0002318 white matter of spinal cord +UBERON_0002240 spinal cord UBERON_0002726 cervical spinal cord +UBERON_0002240 spinal cord UBERON_0002792 lumbar spinal cord +UBERON_0002240 spinal cord UBERON_0003038 thoracic spinal cord +UBERON_0002240 spinal cord UBERON_0003292 meninx of spinal cord +UBERON_0002240 spinal cord UBERON_0003555 spinal cord pia mater +UBERON_0002240 spinal cord UBERON_0003560 spinal cord arachnoid mater +UBERON_0002240 spinal cord UBERON_0003990 spinal cord motor column +UBERON_0002240 spinal cord UBERON_0004059 spinal cord medial motor column +UBERON_0002240 spinal cord UBERON_0004170 spinal cord ventral commissure +UBERON_0002240 spinal cord UBERON_0004676 spinal cord lateral horn +UBERON_0002240 spinal cord UBERON_0004677 spinal cord gray commissure +UBERON_0002240 spinal cord UBERON_0004678 apex of spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0005359 spinal cord ependyma +UBERON_0002240 spinal cord UBERON_0005373 spinal cord dorsal column +UBERON_0002240 spinal cord UBERON_0005374 spinal cord lateral column +UBERON_0002240 spinal cord UBERON_0005375 spinal cord ventral column +UBERON_0002240 spinal cord UBERON_0005437 conus medullaris +UBERON_0002240 spinal cord UBERON_0005443 filum terminale +UBERON_0002240 spinal cord UBERON_0005723 floor plate spinal cord region +UBERON_0002240 spinal cord UBERON_0005724 roof plate spinal cord region +UBERON_0002240 spinal cord UBERON_0005826 gracile fasciculus of spinal cord +UBERON_0002240 spinal cord UBERON_0005835 cuneate fasciculus of spinal cord +UBERON_0002240 spinal cord UBERON_0005837 fasciculus of spinal cord +UBERON_0002240 spinal cord UBERON_0005839 thoracic spinal cord dorsal column +UBERON_0002240 spinal cord UBERON_0005840 sacral spinal cord dorsal column +UBERON_0002240 spinal cord UBERON_0005841 cervical spinal cord dorsal column +UBERON_0002240 spinal cord UBERON_0005842 lumbar spinal cord dorsal column +UBERON_0002240 spinal cord UBERON_0005843 sacral spinal cord +UBERON_0002240 spinal cord UBERON_0005844 spinal cord segment +UBERON_0002240 spinal cord UBERON_0005845 caudal segment of spinal cord +UBERON_0002240 spinal cord UBERON_0005847 thoracic spinal cord lateral column +UBERON_0002240 spinal cord UBERON_0005848 sacral spinal cord lateral column +UBERON_0002240 spinal cord UBERON_0005849 cervical spinal cord lateral column +UBERON_0002240 spinal cord UBERON_0005850 lumbar spinal cord lateral column +UBERON_0002240 spinal cord UBERON_0005852 thoracic spinal cord ventral column +UBERON_0002240 spinal cord UBERON_0005853 sacral spinal cord ventral column +UBERON_0002240 spinal cord UBERON_0005854 cervical spinal cord ventral column +UBERON_0002240 spinal cord UBERON_0005855 lumbar spinal cord ventral column +UBERON_0002240 spinal cord UBERON_0006078 subdivision of spinal cord lateral column +UBERON_0002240 spinal cord UBERON_0006079 subdivision of spinal cord dorsal column +UBERON_0002240 spinal cord UBERON_0006118 lamina I of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0006127 funiculus of spinal cord +UBERON_0002240 spinal cord UBERON_0006319 spinal cord reticular nucleus +UBERON_0002240 spinal cord UBERON_0006447 fifth lumbar spinal cord segment +UBERON_0002240 spinal cord UBERON_0006448 first lumbar spinal cord segment +UBERON_0002240 spinal cord UBERON_0006449 third lumbar spinal cord segment +UBERON_0002240 spinal cord UBERON_0006450 second lumbar spinal cord segment +UBERON_0002240 spinal cord UBERON_0006451 fourth lumbar spinal cord segment +UBERON_0002240 spinal cord UBERON_0006452 fourth thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006453 fifth thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006454 sixth thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006455 seventh thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006456 eighth thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006457 first thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006458 second thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006459 third thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006460 first sacral spinal cord segment +UBERON_0002240 spinal cord UBERON_0006461 second sacral spinal cord segment +UBERON_0002240 spinal cord UBERON_0006462 third sacral spinal cord segment +UBERON_0002240 spinal cord UBERON_0006463 fourth sacral spinal cord segment +UBERON_0002240 spinal cord UBERON_0006464 fifth sacral spinal cord segment +UBERON_0002240 spinal cord UBERON_0006465 ninth thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006466 tenth thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006467 eleventh thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006468 twelfth thoracic spinal cord segment +UBERON_0002240 spinal cord UBERON_0006469 C1 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0006470 C8 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0006488 C3 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0006489 C2 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0006490 C4 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0006491 C5 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0006492 C6 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0006493 C7 segment of cervical spinal cord +UBERON_0002240 spinal cord UBERON_0007699 tract of spinal cord +UBERON_0002240 spinal cord UBERON_0007714 cervical subsegment of spinal cord +UBERON_0002240 spinal cord UBERON_0007715 thoracic subsegment of spinal cord +UBERON_0002240 spinal cord UBERON_0007716 lumbar subsegment of spinal cord +UBERON_0002240 spinal cord UBERON_0007717 sacral subsegment of spinal cord +UBERON_0002240 spinal cord UBERON_0007834 lumbar spinal cord ventral commissure +UBERON_0002240 spinal cord UBERON_0007835 sacral spinal cord ventral commissure +UBERON_0002240 spinal cord UBERON_0007836 cervical spinal cord ventral commissure +UBERON_0002240 spinal cord UBERON_0007837 thoracic spinal cord ventral commissure +UBERON_0002240 spinal cord UBERON_0007838 spinal cord white commissure +UBERON_0002240 spinal cord UBERON_0007840 spinal cord dorsal white commissure +UBERON_0002240 spinal cord UBERON_0008882 spinal cord commissure +UBERON_0002240 spinal cord UBERON_0009572 lumen of central canal of spinal cord +UBERON_0002240 spinal cord UBERON_0009582 spinal cord lateral wall +UBERON_0002240 spinal cord UBERON_0010269 filum terminale internum +UBERON_0002240 spinal cord UBERON_0010270 filum terminale externum +UBERON_0002240 spinal cord UBERON_0010405 spinal cord lateral motor column +UBERON_0002240 spinal cord UBERON_0011359 urophysis +UBERON_0002240 spinal cord UBERON_0011360 ampulla caudalis +UBERON_0002240 spinal cord UBERON_0011776 dorsal commissural nucleus of spinal cord +UBERON_0002240 spinal cord UBERON_0011777 nucleus of spinal cord +UBERON_0002240 spinal cord UBERON_0014538 subdivision of spinal cord central canal +UBERON_0002240 spinal cord UBERON_0014541 thoracic division of spinal cord central canal +UBERON_0002240 spinal cord UBERON_0014542 cervical division of cord spinal central canal +UBERON_0002240 spinal cord UBERON_0014543 lumbar division of spinal cord central canal +UBERON_0002240 spinal cord UBERON_0014547 sacral division of spinal cord central canal +UBERON_0002240 spinal cord UBERON_0014607 thoracic spinal cord lateral horn +UBERON_0002240 spinal cord UBERON_0014609 thoracic spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014610 thoracic spinal cord ventral horn +UBERON_0002240 spinal cord UBERON_0014611 apex of thoracic spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014612 substantia gelatinosa of thoracic spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014613 cervical spinal cord gray matter +UBERON_0002240 spinal cord UBERON_0014614 cervical spinal cord white matter +UBERON_0002240 spinal cord UBERON_0014619 cervical spinal cord lateral horn +UBERON_0002240 spinal cord UBERON_0014620 cervical spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014621 cervical spinal cord ventral horn +UBERON_0002240 spinal cord UBERON_0014622 apex of cervical spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014623 substantia gelatinosa of cervical spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014630 ventral gray commissure of spinal cord +UBERON_0002240 spinal cord UBERON_0014631 dorsal gray commissure of spinal cord +UBERON_0002240 spinal cord UBERON_0014632 apex of lumbar spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014633 substantia gelatinosa of lumbar spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0014636 thoracic spinal cord gray matter +UBERON_0002240 spinal cord UBERON_0014637 thoracic spinal cord white matter +UBERON_0002240 spinal cord UBERON_0014638 lumbar spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0016550 spinal cord column +UBERON_0002240 spinal cord UBERON_0016551 subdivision of spinal cord ventral column +UBERON_0002240 spinal cord UBERON_0016570 lamina of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016574 lamina III of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016575 lamina IV of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016576 lamina V of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016577 lamina VI of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016578 lamina VII of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016579 lamina VIII of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016580 lamina IX of gray matter of spinal cord +UBERON_0002240 spinal cord UBERON_0016610 nucleus proprius of spinal cord +UBERON_0002240 spinal cord UBERON_0016850 nucleus of phrenic nerve +UBERON_0002240 spinal cord UBERON_0018545 nucleus of the bulbocavernosus +UBERON_0002240 spinal cord UBERON_0022278 nucleus of pudendal nerve +UBERON_0002240 spinal cord UBERON_0026246 sacral spinal cord white matter +UBERON_0002240 spinal cord UBERON_0026293 thoracic spinal cord gray commissure +UBERON_0002240 spinal cord UBERON_0026386 lumbar spinal cord white matter +UBERON_0002240 spinal cord UBERON_0029503 sacral spinal cord gray matter +UBERON_0002240 spinal cord UBERON_0029538 sacral spinal cord lateral horn +UBERON_0002240 spinal cord UBERON_0029626 cervical spinal cord gray commissure +UBERON_0002240 spinal cord UBERON_0029636 lumbar spinal cord gray matter +UBERON_0002240 spinal cord UBERON_0030276 lumbar spinal cord ventral horn +UBERON_0002240 spinal cord UBERON_0031111 sacral spinal cord gray commissure +UBERON_0002240 spinal cord UBERON_0031906 lumbar spinal cord lateral horn +UBERON_0002240 spinal cord UBERON_0032748 sacral spinal cord ventral horn +UBERON_0002240 spinal cord UBERON_0033483 lumbar spinal cord gray commissure +UBERON_0002240 spinal cord UBERON_0033939 sacral spinal cord dorsal horn +UBERON_0002240 spinal cord UBERON_0034771 ventral commissural nucleus of spinal cord +UBERON_0002240 spinal cord UBERON_0035024 lateral spinal nucleus +UBERON_0002240 spinal cord UBERON_0036658 wall of central canal of spinal cord +UBERON_0002240 spinal cord UBERON_0039176 subarachnoid space of spinal cord +UBERON_0002331 umbilical cord UBERON_0002331 umbilical cord +UBERON_0002331 umbilical cord UBERON_0003422 mesenchyme of umbilical cord +UBERON_0002331 umbilical cord UBERON_0005667 connecting stalk mesoderm +UBERON_0002331 umbilical cord UBERON_0011921 connecting stalk blood islands +UBERON_0002331 umbilical cord UBERON_0012615 umbilical smooth muscle +UBERON_0002358 peritoneum UBERON_0001170 mesentery of small intestine +UBERON_0002358 peritoneum UBERON_0001178 visceral peritoneum +UBERON_0002358 peritoneum UBERON_0001366 parietal peritoneum +UBERON_0002358 peritoneum UBERON_0002358 peritoneum +UBERON_0002358 peritoneum UBERON_0002399 lesser omentum +UBERON_0002358 peritoneum UBERON_0003396 mesentery of colon +UBERON_0002358 peritoneum UBERON_0003397 mesentery of duodenum +UBERON_0002358 peritoneum UBERON_0003398 mesentery of jejunum +UBERON_0002358 peritoneum UBERON_0003688 omentum +UBERON_0002358 peritoneum UBERON_0004346 gubernaculum (male or female) +UBERON_0002358 peritoneum UBERON_0004686 gastro-splenic ligament +UBERON_0002358 peritoneum UBERON_0004687 lieno-renal ligament +UBERON_0002358 peritoneum UBERON_0005344 peritoneal vaginal process +UBERON_0002358 peritoneum UBERON_0005448 greater omentum +UBERON_0002358 peritoneum UBERON_0005670 greater omentum mesothelium +UBERON_0002358 peritoneum UBERON_0005677 caecum mesentery +UBERON_0002358 peritoneum UBERON_0005711 foregut duodenum mesentery +UBERON_0002358 peritoneum UBERON_0005712 midgut duodenum mesentery +UBERON_0002358 peritoneum UBERON_0006359 mesoduodenum +UBERON_0002358 peritoneum UBERON_0006594 gubernacular cord +UBERON_0002358 peritoneum UBERON_0007111 Douglas' pouch +UBERON_0002358 peritoneum UBERON_0007136 rectouterine fold +UBERON_0002358 peritoneum UBERON_0007826 peritoneal mesentery +UBERON_0002358 peritoneum UBERON_0008843 gubernaculum testis +UBERON_0002358 peritoneum UBERON_0008844 gubernaculum (female) +UBERON_0002358 peritoneum UBERON_0009130 dorsal meso-duodenum +UBERON_0002358 peritoneum UBERON_0010411 retroperitoneal fat pad +UBERON_0002358 peritoneum UBERON_0010414 omental fat pad +UBERON_0002358 peritoneum UBERON_0011049 uterovesical pouch +UBERON_0002358 peritoneum UBERON_0011204 rectovesical pouch +UBERON_0002358 peritoneum UBERON_0012326 gubernacular bulb +UBERON_0002358 peritoneum UBERON_0012333 ovarian bursa +UBERON_0002358 peritoneum UBERON_0012471 hepatogastric ligament +UBERON_0002358 peritoneum UBERON_0012472 hepatoduodenal ligament +UBERON_0002358 peritoneum UBERON_0013138 coronary ligament of liver +UBERON_0002358 peritoneum UBERON_0022357 mesentery of ileum +UBERON_0002358 peritoneum UBERON_0034694 gubernacular bulb, intra-abdominal part +UBERON_0002358 peritoneum UBERON_0034695 gubernacular bulb, extra-abdominal part +UBERON_0002358 peritoneum UBERON_0034696 fold of peritoneum +UBERON_0002358 peritoneum UBERON_0035201 gastrocolic ligament +UBERON_0002358 peritoneum UBERON_0035498 gastrophrenic ligament +UBERON_0002358 peritoneum UBERON_3010818 hepatic peritoneum +UBERON_0002358 peritoneum UBERON_3010819 gastrointestinal peritoneum +UBERON_0002360 meninx UBERON_0000391 leptomeninx +UBERON_0002360 meninx UBERON_0000437 arachnoid barrier layer +UBERON_0002360 meninx UBERON_0000439 arachnoid trabecula +UBERON_0002360 meninx UBERON_0002092 brain dura mater +UBERON_0002360 meninx UBERON_0002093 spinal dura mater +UBERON_0002360 meninx UBERON_0002360 meninx +UBERON_0002360 meninx UBERON_0002361 pia mater +UBERON_0002360 meninx UBERON_0002362 arachnoid mater +UBERON_0002360 meninx UBERON_0002363 dura mater +UBERON_0002360 meninx UBERON_0003288 meninx of midbrain +UBERON_0002360 meninx UBERON_0003289 meninx of telencephalon +UBERON_0002360 meninx UBERON_0003290 meninx of diencephalon +UBERON_0002360 meninx UBERON_0003291 meninx of hindbrain +UBERON_0002360 meninx UBERON_0003292 meninx of spinal cord +UBERON_0002360 meninx UBERON_0003547 brain meninx +UBERON_0002360 meninx UBERON_0003548 forebrain meninges +UBERON_0002360 meninx UBERON_0003549 brain pia mater +UBERON_0002360 meninx UBERON_0003550 forebrain pia mater +UBERON_0002360 meninx UBERON_0003551 midbrain pia mater +UBERON_0002360 meninx UBERON_0003552 telencephalon pia mater +UBERON_0002360 meninx UBERON_0003553 diencephalon pia mater +UBERON_0002360 meninx UBERON_0003554 hindbrain pia mater +UBERON_0002360 meninx UBERON_0003555 spinal cord pia mater +UBERON_0002360 meninx UBERON_0003556 forebrain arachnoid mater +UBERON_0002360 meninx UBERON_0003557 midbrain arachnoid mater +UBERON_0002360 meninx UBERON_0003558 diencephalon arachnoid mater +UBERON_0002360 meninx UBERON_0003559 hindbrain arachnoid mater +UBERON_0002360 meninx UBERON_0003560 spinal cord arachnoid mater +UBERON_0002360 meninx UBERON_0003561 forebrain dura mater +UBERON_0002360 meninx UBERON_0003562 midbrain dura mater +UBERON_0002360 meninx UBERON_0003563 telencephalon dura mater +UBERON_0002360 meninx UBERON_0003564 diencephalon dura mater +UBERON_0002360 meninx UBERON_0003565 hindbrain dura mater +UBERON_0002360 meninx UBERON_0005397 brain arachnoid mater +UBERON_0002360 meninx UBERON_0005400 telencephalon arachnoid mater +UBERON_0002360 meninx UBERON_0006059 falx cerebri +UBERON_0002360 meninx UBERON_0006691 tentorium cerebelli +UBERON_0002360 meninx UBERON_0010505 periosteal dura mater +UBERON_0002360 meninx UBERON_0010506 meningeal dura mater +UBERON_0002360 meninx UBERON_0010507 layer of dura mater +UBERON_0002360 meninx UBERON_0013153 arachnoid villus +UBERON_0002360 meninx UBERON_0035416 diaphragma sellae +UBERON_0002360 meninx UBERON_0035425 falx cerebelli +UBERON_0002365 exocrine gland UBERON_0000017 exocrine pancreas +UBERON_0002365 exocrine gland UBERON_0000325 gastric gland +UBERON_0002365 exocrine gland UBERON_0000359 preputial gland +UBERON_0002365 exocrine gland UBERON_0000382 apocrine sweat gland +UBERON_0002365 exocrine gland UBERON_0000409 serous gland +UBERON_0002365 exocrine gland UBERON_0000414 mucous gland +UBERON_0002365 exocrine gland UBERON_0000423 eccrine sweat gland +UBERON_0002365 exocrine gland UBERON_0000460 major vestibular gland +UBERON_0002365 exocrine gland UBERON_0000461 minor vestibular gland +UBERON_0002365 exocrine gland UBERON_0001044 saliva-secreting gland +UBERON_0002365 exocrine gland UBERON_0001064 ventral pancreatic duct +UBERON_0002365 exocrine gland UBERON_0001065 parotid main excretory duct +UBERON_0002365 exocrine gland UBERON_0001113 lobe of liver +UBERON_0002365 exocrine gland UBERON_0001114 right lobe of liver +UBERON_0002365 exocrine gland UBERON_0001115 left lobe of liver +UBERON_0002365 exocrine gland UBERON_0001116 quadrate lobe of liver +UBERON_0002365 exocrine gland UBERON_0001117 caudate lobe of liver +UBERON_0002365 exocrine gland UBERON_0001143 hepatic vein +UBERON_0002365 exocrine gland UBERON_0001149 bare area of liver +UBERON_0002365 exocrine gland UBERON_0001171 portal lobule +UBERON_0002365 exocrine gland UBERON_0001172 hepatic acinus +UBERON_0002365 exocrine gland UBERON_0001212 duodenal gland +UBERON_0002365 exocrine gland UBERON_0001246 interlobular bile duct +UBERON_0002365 exocrine gland UBERON_0001247 falciform ligament +UBERON_0002365 exocrine gland UBERON_0001263 pancreatic acinus +UBERON_0002365 exocrine gland UBERON_0001279 portal triad +UBERON_0002365 exocrine gland UBERON_0001280 liver parenchyma +UBERON_0002365 exocrine gland UBERON_0001281 hepatic sinusoid +UBERON_0002365 exocrine gland UBERON_0001282 intralobular bile duct +UBERON_0002365 exocrine gland UBERON_0001283 bile canaliculus +UBERON_0002365 exocrine gland UBERON_0001338 urethral gland +UBERON_0002365 exocrine gland UBERON_0001736 submandibular gland +UBERON_0002365 exocrine gland UBERON_0001765 mammary duct +UBERON_0002365 exocrine gland UBERON_0001817 lacrimal gland +UBERON_0002365 exocrine gland UBERON_0001818 tarsal gland +UBERON_0002365 exocrine gland UBERON_0001820 sweat gland +UBERON_0002365 exocrine gland UBERON_0001821 sebaceous gland +UBERON_0002365 exocrine gland UBERON_0001829 major salivary gland +UBERON_0002365 exocrine gland UBERON_0001830 minor salivary gland +UBERON_0002365 exocrine gland UBERON_0001831 parotid gland +UBERON_0002365 exocrine gland UBERON_0001832 sublingual gland +UBERON_0002365 exocrine gland UBERON_0001837 duct of salivary gland +UBERON_0002365 exocrine gland UBERON_0001838 sublingual duct +UBERON_0002365 exocrine gland UBERON_0001911 mammary gland +UBERON_0002365 exocrine gland UBERON_0001912 lobule of mammary gland +UBERON_0002365 exocrine gland UBERON_0002032 areola +UBERON_0002365 exocrine gland UBERON_0002107 liver +UBERON_0002365 exocrine gland UBERON_0002232 olfactory gland +UBERON_0002365 exocrine gland UBERON_0002334 submandibular duct +UBERON_0002365 exocrine gland UBERON_0002365 exocrine gland +UBERON_0002365 exocrine gland UBERON_0002366 bulbo-urethral gland +UBERON_0002365 exocrine gland UBERON_0002447 palatine gland +UBERON_0002365 exocrine gland UBERON_0002451 endometrial gland +UBERON_0002365 exocrine gland UBERON_0003214 mammary gland alveolus +UBERON_0002365 exocrine gland UBERON_0003244 epithelium of mammary gland +UBERON_0002365 exocrine gland UBERON_0003326 mesenchyme of mammary gland +UBERON_0002365 exocrine gland UBERON_0003359 epithelium of submandibular gland +UBERON_0002365 exocrine gland UBERON_0003360 epithelium of parotid gland +UBERON_0002365 exocrine gland UBERON_0003361 epithelium of sublingual gland +UBERON_0002365 exocrine gland UBERON_0003409 gland of tongue +UBERON_0002365 exocrine gland UBERON_0003418 mesenchyme of submandibular gland +UBERON_0002365 exocrine gland UBERON_0003419 mesenchyme of parotid +UBERON_0002365 exocrine gland UBERON_0003420 mesenchyme of sublingual gland +UBERON_0002365 exocrine gland UBERON_0003484 eye sebaceous gland +UBERON_0002365 exocrine gland UBERON_0003485 vagina sebaceous gland +UBERON_0002365 exocrine gland UBERON_0003487 skin sebaceous gland +UBERON_0002365 exocrine gland UBERON_0003488 abdominal mammary gland +UBERON_0002365 exocrine gland UBERON_0003584 mammary gland connective tissue +UBERON_0002365 exocrine gland UBERON_0003704 intrahepatic bile duct +UBERON_0002365 exocrine gland UBERON_0003985 major sublingual duct +UBERON_0002365 exocrine gland UBERON_0003986 minor sublingual duct +UBERON_0002365 exocrine gland UBERON_0004000 tarsal gland acinus +UBERON_0002365 exocrine gland UBERON_0004058 biliary ductule +UBERON_0002365 exocrine gland UBERON_0004180 mammary gland fat +UBERON_0002365 exocrine gland UBERON_0004182 mammary gland cord +UBERON_0002365 exocrine gland UBERON_0004187 Harderian gland +UBERON_0002365 exocrine gland UBERON_0004235 mammary gland smooth muscle +UBERON_0002365 exocrine gland UBERON_0004647 liver lobule +UBERON_0002365 exocrine gland UBERON_0004694 Harderian gland epithelium +UBERON_0002365 exocrine gland UBERON_0004789 larynx mucous gland +UBERON_0002365 exocrine gland UBERON_0004790 skin mucous gland +UBERON_0002365 exocrine gland UBERON_0004793 secretion of exocrine pancreas +UBERON_0002365 exocrine gland UBERON_0004809 salivary gland epithelium +UBERON_0002365 exocrine gland UBERON_0004817 lacrimal gland epithelium +UBERON_0002365 exocrine gland UBERON_0004823 intrahepatic bile duct epithelium +UBERON_0002365 exocrine gland UBERON_0005050 liver papillary process +UBERON_0002365 exocrine gland UBERON_0005199 cervical mammary gland +UBERON_0002365 exocrine gland UBERON_0005200 thoracic mammary gland +UBERON_0002365 exocrine gland UBERON_0005203 trachea gland +UBERON_0002365 exocrine gland UBERON_0005221 liver right lobe parenchyma +UBERON_0002365 exocrine gland UBERON_0005222 liver left lobe parenchyma +UBERON_0002365 exocrine gland UBERON_0005301 male preputial gland +UBERON_0002365 exocrine gland UBERON_0005302 female preputial gland +UBERON_0002365 exocrine gland UBERON_0005313 mammary duct terminal end bud +UBERON_0002365 exocrine gland UBERON_0005429 dorsal pancreatic duct +UBERON_0002365 exocrine gland UBERON_0005452 hepatic cord +UBERON_0002365 exocrine gland UBERON_0005605 intrahepatic part of hepatic duct +UBERON_0002365 exocrine gland UBERON_0006330 anterior lingual gland +UBERON_0002365 exocrine gland UBERON_0006588 round ligament of liver +UBERON_0002365 exocrine gland UBERON_0006727 liver left lateral lobe +UBERON_0002365 exocrine gland UBERON_0006728 liver left medial lobe +UBERON_0002365 exocrine gland UBERON_0006729 liver perisinusoidal space +UBERON_0002365 exocrine gland UBERON_0006841 central vein of liver +UBERON_0002365 exocrine gland UBERON_0006877 vasculature of liver +UBERON_0002365 exocrine gland UBERON_0006954 mammary gland myoepithelium +UBERON_0002365 exocrine gland UBERON_0007324 pancreatic lobule +UBERON_0002365 exocrine gland UBERON_0007329 pancreatic duct +UBERON_0002365 exocrine gland UBERON_0007773 scrotal sweat gland +UBERON_0002365 exocrine gland UBERON_0007802 uropygial gland +UBERON_0002365 exocrine gland UBERON_0008424 inguinal mammary gland +UBERON_0002365 exocrine gland UBERON_0008859 cardiac gastric gland +UBERON_0002365 exocrine gland UBERON_0008860 intermediate gastric gland +UBERON_0002365 exocrine gland UBERON_0008861 pyloric gastric gland +UBERON_0002365 exocrine gland UBERON_0008974 apocrine gland +UBERON_0002365 exocrine gland UBERON_0008976 snake venom gland +UBERON_0002365 exocrine gland UBERON_0008989 submucosal esophageal gland +UBERON_0002365 exocrine gland UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0002365 exocrine gland UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0002365 exocrine gland UBERON_0009708 dorsal pancreas +UBERON_0002365 exocrine gland UBERON_0009709 ventral pancreas +UBERON_0002365 exocrine gland UBERON_0009970 epithelium of pancreatic duct +UBERON_0002365 exocrine gland UBERON_0009971 principal gastric gland +UBERON_0002365 exocrine gland UBERON_0010038 fundic gastric gland +UBERON_0002365 exocrine gland UBERON_0010047 oral gland +UBERON_0002365 exocrine gland UBERON_0010048 Duvernoy's gland +UBERON_0002365 exocrine gland UBERON_0010049 supralabial gland +UBERON_0002365 exocrine gland UBERON_0010050 infralabial gland +UBERON_0002365 exocrine gland UBERON_0010150 duct of major vestibular gland +UBERON_0002365 exocrine gland UBERON_0010151 duct of bulbourethral gland +UBERON_0002365 exocrine gland UBERON_0010183 liver trabecula +UBERON_0002365 exocrine gland UBERON_0010186 male urethral gland +UBERON_0002365 exocrine gland UBERON_0010187 female urethral gland +UBERON_0002365 exocrine gland UBERON_0010240 zygomatic gland +UBERON_0002365 exocrine gland UBERON_0010241 molar gland +UBERON_0002365 exocrine gland UBERON_0010242 anterior buccal gland +UBERON_0002365 exocrine gland UBERON_0010243 merocrine gland +UBERON_0002365 exocrine gland UBERON_0010704 parenchyma of quadrate lobe of liver +UBERON_0002365 exocrine gland UBERON_0010706 parenchyma of caudate lobe of liver +UBERON_0002365 exocrine gland UBERON_0011146 silk gland +UBERON_0002365 exocrine gland UBERON_0011147 Verson's gland +UBERON_0002365 exocrine gland UBERON_0011148 submucosal gland +UBERON_0002365 exocrine gland UBERON_0011149 Marshall's gland +UBERON_0002365 exocrine gland UBERON_0011186 Krause's gland +UBERON_0002365 exocrine gland UBERON_0011252 scent gland +UBERON_0002365 exocrine gland UBERON_0011253 gland of anal sac +UBERON_0002365 exocrine gland UBERON_0011263 femoral gland +UBERON_0002365 exocrine gland UBERON_0011264 femoral pore +UBERON_0002365 exocrine gland UBERON_0011579 venom gland +UBERON_0002365 exocrine gland UBERON_0011580 platypus crural gland +UBERON_0002365 exocrine gland UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0002365 exocrine gland UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0002365 exocrine gland UBERON_0011827 areolar gland +UBERON_0002365 exocrine gland UBERON_0011830 duct of lesser vestibular gland +UBERON_0002365 exocrine gland UBERON_0011844 duct of areolar gland +UBERON_0002365 exocrine gland UBERON_0011845 duct of sebaceous gland +UBERON_0002365 exocrine gland UBERON_0011846 acinus of sebaceous gland +UBERON_0002365 exocrine gland UBERON_0011847 acinus of parotid gland +UBERON_0002365 exocrine gland UBERON_0011850 acinus of salivary gland +UBERON_0002365 exocrine gland UBERON_0011854 acinus of areolar gland +UBERON_0002365 exocrine gland UBERON_0011856 acinus of lactiferous gland +UBERON_0002365 exocrine gland UBERON_0011857 acinus of lacrimal gland +UBERON_0002365 exocrine gland UBERON_0011858 acinus of exocrine gland +UBERON_0002365 exocrine gland UBERON_0011950 mammary gland luminal epithelium +UBERON_0002365 exocrine gland UBERON_0011955 left hepatic vein +UBERON_0002365 exocrine gland UBERON_0011956 right hepatic vein +UBERON_0002365 exocrine gland UBERON_0011957 middle hepatic vein +UBERON_0002365 exocrine gland UBERON_0012102 buccal salivary gland +UBERON_0002365 exocrine gland UBERON_0012103 suspensory ligament of breast +UBERON_0002365 exocrine gland UBERON_0012177 skin apocrine gland +UBERON_0002365 exocrine gland UBERON_0012247 cervical gland +UBERON_0002365 exocrine gland UBERON_0012278 gland of nasal mucosa +UBERON_0002365 exocrine gland UBERON_0012281 perianal sebaceous gland +UBERON_0002365 exocrine gland UBERON_0012282 mammary fat pad +UBERON_0002365 exocrine gland UBERON_0012344 holocrine gland +UBERON_0002365 exocrine gland UBERON_0013075 venom gland duct +UBERON_0002365 exocrine gland UBERON_0013138 coronary ligament of liver +UBERON_0002365 exocrine gland UBERON_0013139 ligament of liver +UBERON_0002365 exocrine gland UBERON_0013211 cerumen gland +UBERON_0002365 exocrine gland UBERON_0013224 Ciaccio's gland +UBERON_0002365 exocrine gland UBERON_0013226 accessory lacrimal gland +UBERON_0002365 exocrine gland UBERON_0013227 crypt of Henle +UBERON_0002365 exocrine gland UBERON_0013228 sweat gland of eyelid +UBERON_0002365 exocrine gland UBERON_0013231 sebaceous gland of eyelid +UBERON_0002365 exocrine gland UBERON_0013232 serous acinus +UBERON_0002365 exocrine gland UBERON_0013233 supraorbital gland +UBERON_0002365 exocrine gland UBERON_0013234 violet gland +UBERON_0002365 exocrine gland UBERON_0013475 gustatory gland +UBERON_0002365 exocrine gland UBERON_0013697 exocrine pancreas epithelium +UBERON_0002365 exocrine gland UBERON_0014391 palmar/plantar sweat gland +UBERON_0002365 exocrine gland UBERON_0014400 hepatic sinusoidal space +UBERON_0002365 exocrine gland UBERON_0014717 mucous acinus +UBERON_0002365 exocrine gland UBERON_0014727 intercalated duct of salivary gland +UBERON_0002365 exocrine gland UBERON_0014729 striated duct of salivary gland +UBERON_0002365 exocrine gland UBERON_0014779 liver reticuloendothelial system +UBERON_0002365 exocrine gland UBERON_0015132 extralobar lactiferous duct +UBERON_0002365 exocrine gland UBERON_0015133 terminal lactiferous duct +UBERON_0002365 exocrine gland UBERON_0015134 main lactiferous duct +UBERON_0002365 exocrine gland UBERON_0015135 primary lactiferous duct +UBERON_0002365 exocrine gland UBERON_0015136 secondary lactiferous duct +UBERON_0002365 exocrine gland UBERON_0015137 tertiary lactiferous duct +UBERON_0002365 exocrine gland UBERON_0015138 quarternary lactiferous duct +UBERON_0002365 exocrine gland UBERON_0015142 falciform fat +UBERON_0002365 exocrine gland UBERON_0015151 Harderian gland duct +UBERON_0002365 exocrine gland UBERON_0015213 barnacle cement gland +UBERON_0002365 exocrine gland UBERON_0015251 modified sebaceous gland +UBERON_0002365 exocrine gland UBERON_0015280 pancreas left lobe +UBERON_0002365 exocrine gland UBERON_0015281 pancreas right lobe +UBERON_0002365 exocrine gland UBERON_0015445 anterior lingual gland duct +UBERON_0002365 exocrine gland UBERON_0015455 accessory hepatic vein +UBERON_0002365 exocrine gland UBERON_0015481 left hepatic artery +UBERON_0002365 exocrine gland UBERON_0015482 right hepatic artery +UBERON_0002365 exocrine gland UBERON_0015766 epithelium of duct of salivary gland +UBERON_0002365 exocrine gland UBERON_0015784 duct of olfactory gland +UBERON_0002365 exocrine gland UBERON_0015785 acinus of olfactory gland +UBERON_0002365 exocrine gland UBERON_0015796 liver blood vessel +UBERON_0002365 exocrine gland UBERON_0016478 liver stroma +UBERON_0002365 exocrine gland UBERON_0016479 capsule of liver +UBERON_0002365 exocrine gland UBERON_0016480 interlobular stroma of liver +UBERON_0002365 exocrine gland UBERON_0016852 skin scent gland +UBERON_0002365 exocrine gland UBERON_0016853 interdigital gland +UBERON_0002365 exocrine gland UBERON_0016890 intrahepatic branch of portal vein +UBERON_0002365 exocrine gland UBERON_0017161 hemipenial mucuous gland +UBERON_0002365 exocrine gland UBERON_0017162 hemipenial holocrine gland +UBERON_0002365 exocrine gland UBERON_0017653 intermaxillary salivary gland +UBERON_0002365 exocrine gland UBERON_0017654 buccal gland +UBERON_0002365 exocrine gland UBERON_0018140 mammary lobe +UBERON_0002365 exocrine gland UBERON_0018232 axillary sweat gland +UBERON_0002365 exocrine gland UBERON_0018233 gland of Zeis +UBERON_0002365 exocrine gland UBERON_0019190 mucous gland of lung +UBERON_0002365 exocrine gland UBERON_0019319 exocrine gland of integumental system +UBERON_0002365 exocrine gland UBERON_0019324 intraorbital lacrimal gland +UBERON_0002365 exocrine gland UBERON_0019325 exorbital lacrimal gland +UBERON_0002365 exocrine gland UBERON_0022360 male mammary gland duct +UBERON_0002365 exocrine gland UBERON_0034762 areolar sweat gland +UBERON_0002365 exocrine gland UBERON_0034770 bulbourethral gland epithelium +UBERON_0002365 exocrine gland UBERON_0034934 Weber's gland +UBERON_0002365 exocrine gland UBERON_0035045 parotid gland intralobular duct +UBERON_0002365 exocrine gland UBERON_0035046 parotid gland intercalated duct +UBERON_0002365 exocrine gland UBERON_0035047 parotid gland striated duct +UBERON_0002365 exocrine gland UBERON_0035048 parotid gland excretory duct +UBERON_0002365 exocrine gland UBERON_0035049 excretory duct of salivary gland +UBERON_0002365 exocrine gland UBERON_0035053 interlobular duct of salivary gland +UBERON_0002365 exocrine gland UBERON_0035073 duct of eccrine sweat gland +UBERON_0002365 exocrine gland UBERON_0035074 duct of apocrine sweat gland +UBERON_0002365 exocrine gland UBERON_0035076 parotid gland myoepithelium +UBERON_0002365 exocrine gland UBERON_0035077 lateral nasal gland +UBERON_0002365 exocrine gland UBERON_0035078 parotid gland interlobular duct +UBERON_0002365 exocrine gland UBERON_0035444 triangular ligament of liver +UBERON_0002365 exocrine gland UBERON_0035756 capillary network of liver +UBERON_0002365 exocrine gland UBERON_0036245 parenchyma of mammary gland +UBERON_0002365 exocrine gland UBERON_0039222 cystic artery +UBERON_0002365 exocrine gland UBERON_1000022 Zymbal's gland +UBERON_0002365 exocrine gland UBERON_2005174 ventral liver lobe +UBERON_0002365 exocrine gland UBERON_2005346 extrapancreatic duct +UBERON_0002365 exocrine gland UBERON_3010404 capillary system of liver +UBERON_0002365 exocrine gland UBERON_8400001 hepatic acinus zone 1 +UBERON_0002365 exocrine gland UBERON_8400002 hepatic acinus zone 3 +UBERON_0002365 exocrine gland UBERON_8400003 hepatic acinus zone 2 +UBERON_0002365 exocrine gland UBERON_8400005 metabolic zone of liver +UBERON_0002365 exocrine gland UBERON_8400006 liver lobule periportal region +UBERON_0002365 exocrine gland UBERON_8400007 liver lobule centrilobular region +UBERON_0002365 exocrine gland UBERON_8400008 liver lobule midzonal region +UBERON_0002365 exocrine gland UBERON_8400021 liver serosa +UBERON_0002365 exocrine gland UBERON_8400023 liver subserosa +UBERON_0002365 exocrine gland UBERON_8400024 subcapsular region of liver +UBERON_0002365 exocrine gland UBERON_8410043 bronchus submucosal gland +UBERON_0002365 exocrine gland UBERON_8410077 airway submucosal gland +UBERON_0002368 endocrine gland UBERON_0000007 pituitary gland +UBERON_0002368 endocrine gland UBERON_0001053 arthropod neurohemal organ +UBERON_0002368 endocrine gland UBERON_0001056 corpus cardiacum +UBERON_0002368 endocrine gland UBERON_0001057 corpus allatum +UBERON_0002368 endocrine gland UBERON_0001113 lobe of liver +UBERON_0002368 endocrine gland UBERON_0001114 right lobe of liver +UBERON_0002368 endocrine gland UBERON_0001115 left lobe of liver +UBERON_0002368 endocrine gland UBERON_0001116 quadrate lobe of liver +UBERON_0002368 endocrine gland UBERON_0001117 caudate lobe of liver +UBERON_0002368 endocrine gland UBERON_0001118 lobe of thyroid gland +UBERON_0002368 endocrine gland UBERON_0001119 right lobe of thyroid gland +UBERON_0002368 endocrine gland UBERON_0001120 left lobe of thyroid gland +UBERON_0002368 endocrine gland UBERON_0001132 parathyroid gland +UBERON_0002368 endocrine gland UBERON_0001143 hepatic vein +UBERON_0002368 endocrine gland UBERON_0001149 bare area of liver +UBERON_0002368 endocrine gland UBERON_0001171 portal lobule +UBERON_0002368 endocrine gland UBERON_0001172 hepatic acinus +UBERON_0002368 endocrine gland UBERON_0001233 right adrenal gland +UBERON_0002368 endocrine gland UBERON_0001234 left adrenal gland +UBERON_0002368 endocrine gland UBERON_0001235 adrenal cortex +UBERON_0002368 endocrine gland UBERON_0001236 adrenal medulla +UBERON_0002368 endocrine gland UBERON_0001246 interlobular bile duct +UBERON_0002368 endocrine gland UBERON_0001247 falciform ligament +UBERON_0002368 endocrine gland UBERON_0001279 portal triad +UBERON_0002368 endocrine gland UBERON_0001280 liver parenchyma +UBERON_0002368 endocrine gland UBERON_0001281 hepatic sinusoid +UBERON_0002368 endocrine gland UBERON_0001282 intralobular bile duct +UBERON_0002368 endocrine gland UBERON_0001283 bile canaliculus +UBERON_0002368 endocrine gland UBERON_0001609 isthmus of thyroid gland +UBERON_0002368 endocrine gland UBERON_0001746 capsule of thyroid gland +UBERON_0002368 endocrine gland UBERON_0001747 parenchyma of thyroid gland +UBERON_0002368 endocrine gland UBERON_0001748 capsule of parathyroid gland +UBERON_0002368 endocrine gland UBERON_0001749 parenchyma of parathyroid gland +UBERON_0002368 endocrine gland UBERON_0001905 pineal body +UBERON_0002368 endocrine gland UBERON_0002046 thyroid gland +UBERON_0002368 endocrine gland UBERON_0002052 adrenal gland capsule +UBERON_0002368 endocrine gland UBERON_0002053 zona glomerulosa of adrenal gland +UBERON_0002368 endocrine gland UBERON_0002054 zona fasciculata of adrenal gland +UBERON_0002368 endocrine gland UBERON_0002055 zona reticularis of adrenal gland +UBERON_0002368 endocrine gland UBERON_0002107 liver +UBERON_0002368 endocrine gland UBERON_0002122 capsule of thymus +UBERON_0002368 endocrine gland UBERON_0002123 cortex of thymus +UBERON_0002368 endocrine gland UBERON_0002124 medulla of thymus +UBERON_0002368 endocrine gland UBERON_0002125 thymus lobule +UBERON_0002368 endocrine gland UBERON_0002139 subcommissural organ +UBERON_0002368 endocrine gland UBERON_0002196 adenohypophysis +UBERON_0002368 endocrine gland UBERON_0002197 median eminence of neurohypophysis +UBERON_0002368 endocrine gland UBERON_0002198 neurohypophysis +UBERON_0002368 endocrine gland UBERON_0002254 thyroglossal duct +UBERON_0002368 endocrine gland UBERON_0002368 endocrine gland +UBERON_0002368 endocrine gland UBERON_0002369 adrenal gland +UBERON_0002368 endocrine gland UBERON_0002370 thymus +UBERON_0002368 endocrine gland UBERON_0002432 pars intermedia of adenohypophysis +UBERON_0002368 endocrine gland UBERON_0002433 pars tuberalis of adenohypophysis +UBERON_0002368 endocrine gland UBERON_0002434 pituitary stalk +UBERON_0002368 endocrine gland UBERON_0002512 corpus luteum +UBERON_0002368 endocrine gland UBERON_0002648 anterior median eminence +UBERON_0002368 endocrine gland UBERON_0002652 posterior median eminence +UBERON_0002368 endocrine gland UBERON_0003092 ultimobranchial body +UBERON_0002368 endocrine gland UBERON_0003217 neural lobe of neurohypophysis +UBERON_0002368 endocrine gland UBERON_0003483 thymus lymphoid tissue +UBERON_0002368 endocrine gland UBERON_0003704 intrahepatic bile duct +UBERON_0002368 endocrine gland UBERON_0003846 thymus epithelium +UBERON_0002368 endocrine gland UBERON_0003987 Hassall's corpuscle +UBERON_0002368 endocrine gland UBERON_0003988 thymus corticomedullary boundary +UBERON_0002368 endocrine gland UBERON_0004058 biliary ductule +UBERON_0002368 endocrine gland UBERON_0004647 liver lobule +UBERON_0002368 endocrine gland UBERON_0004791 thymus trabecula +UBERON_0002368 endocrine gland UBERON_0004823 intrahepatic bile duct epithelium +UBERON_0002368 endocrine gland UBERON_0004827 thyroid gland medulla +UBERON_0002368 endocrine gland UBERON_0005050 liver papillary process +UBERON_0002368 endocrine gland UBERON_0005221 liver right lobe parenchyma +UBERON_0002368 endocrine gland UBERON_0005222 liver left lobe parenchyma +UBERON_0002368 endocrine gland UBERON_0005305 thyroid follicle +UBERON_0002368 endocrine gland UBERON_0005452 hepatic cord +UBERON_0002368 endocrine gland UBERON_0005457 left thymus lobe +UBERON_0002368 endocrine gland UBERON_0005469 right thymus lobe +UBERON_0002368 endocrine gland UBERON_0005483 thymus lobe +UBERON_0002368 endocrine gland UBERON_0005605 intrahepatic part of hepatic duct +UBERON_0002368 endocrine gland UBERON_0005642 ultimobranchial body epithelium +UBERON_0002368 endocrine gland UBERON_0006377 remnant of Rathke's pouch +UBERON_0002368 endocrine gland UBERON_0006588 round ligament of liver +UBERON_0002368 endocrine gland UBERON_0006727 liver left lateral lobe +UBERON_0002368 endocrine gland UBERON_0006728 liver left medial lobe +UBERON_0002368 endocrine gland UBERON_0006729 liver perisinusoidal space +UBERON_0002368 endocrine gland UBERON_0006749 superior parathyroid gland +UBERON_0002368 endocrine gland UBERON_0006755 inferior parathyroid gland +UBERON_0002368 endocrine gland UBERON_0006841 central vein of liver +UBERON_0002368 endocrine gland UBERON_0006856 interrenal gland +UBERON_0002368 endocrine gland UBERON_0006858 adrenal/interrenal gland +UBERON_0002368 endocrine gland UBERON_0006877 vasculature of liver +UBERON_0002368 endocrine gland UBERON_0006925 digestive system gland +UBERON_0002368 endocrine gland UBERON_0006936 thymus subcapsular epithelium +UBERON_0002368 endocrine gland UBERON_0006964 pars distalis of adenohypophysis +UBERON_0002368 endocrine gland UBERON_0009024 adrenal gland X zone +UBERON_0002368 endocrine gland UBERON_0009114 cervical thymus +UBERON_0002368 endocrine gland UBERON_0009115 thoracic thymus +UBERON_0002368 endocrine gland UBERON_0009116 thymoid +UBERON_0002368 endocrine gland UBERON_0009548 hepatic sinusoid of left of lobe of liver +UBERON_0002368 endocrine gland UBERON_0009549 hepatic sinusoid of right of lobe of liver +UBERON_0002368 endocrine gland UBERON_0009753 adrenal gland cortex zone +UBERON_0002368 endocrine gland UBERON_0009860 ascidian digestive gland +UBERON_0002368 endocrine gland UBERON_0009975 remnant of lumen of Rathke's pouch +UBERON_0002368 endocrine gland UBERON_0010133 neuroendocrine gland +UBERON_0002368 endocrine gland UBERON_0010134 secretory circumventricular organ +UBERON_0002368 endocrine gland UBERON_0010183 liver trabecula +UBERON_0002368 endocrine gland UBERON_0010233 stroma of thyroid gland +UBERON_0002368 endocrine gland UBERON_0010264 hepatopancreas +UBERON_0002368 endocrine gland UBERON_0010265 mollusc hepatopancreas +UBERON_0002368 endocrine gland UBERON_0010266 arthropod hepatopancreas +UBERON_0002368 endocrine gland UBERON_0010704 parenchyma of quadrate lobe of liver +UBERON_0002368 endocrine gland UBERON_0010706 parenchyma of caudate lobe of liver +UBERON_0002368 endocrine gland UBERON_0011195 inferior parathyroid epithelium +UBERON_0002368 endocrine gland UBERON_0011196 superior parathyroid epithelium +UBERON_0002368 endocrine gland UBERON_0011197 parathyroid epithelium +UBERON_0002368 endocrine gland UBERON_0011359 urophysis +UBERON_0002368 endocrine gland UBERON_0011737 caudate lobe hepatic sinusoid +UBERON_0002368 endocrine gland UBERON_0011738 quadrate lobe hepatic sinusoid +UBERON_0002368 endocrine gland UBERON_0011768 pineal gland stalk +UBERON_0002368 endocrine gland UBERON_0011955 left hepatic vein +UBERON_0002368 endocrine gland UBERON_0011956 right hepatic vein +UBERON_0002368 endocrine gland UBERON_0011957 middle hepatic vein +UBERON_0002368 endocrine gland UBERON_0012246 thyroid follicular lumen +UBERON_0002368 endocrine gland UBERON_0012325 retrocerebral complex +UBERON_0002368 endocrine gland UBERON_0012363 thyroid follicle epithelium +UBERON_0002368 endocrine gland UBERON_0012364 colloid of thyroid follicle +UBERON_0002368 endocrine gland UBERON_0013138 coronary ligament of liver +UBERON_0002368 endocrine gland UBERON_0013139 ligament of liver +UBERON_0002368 endocrine gland UBERON_0013745 zona intermedia of adrenal gland +UBERON_0002368 endocrine gland UBERON_0014400 hepatic sinusoidal space +UBERON_0002368 endocrine gland UBERON_0014779 liver reticuloendothelial system +UBERON_0002368 endocrine gland UBERON_0015142 falciform fat +UBERON_0002368 endocrine gland UBERON_0015455 accessory hepatic vein +UBERON_0002368 endocrine gland UBERON_0015481 left hepatic artery +UBERON_0002368 endocrine gland UBERON_0015482 right hepatic artery +UBERON_0002368 endocrine gland UBERON_0015796 liver blood vessel +UBERON_0002368 endocrine gland UBERON_0016478 liver stroma +UBERON_0002368 endocrine gland UBERON_0016479 capsule of liver +UBERON_0002368 endocrine gland UBERON_0016480 interlobular stroma of liver +UBERON_0002368 endocrine gland UBERON_0016890 intrahepatic branch of portal vein +UBERON_0002368 endocrine gland UBERON_0017632 pineal corpora arenacea +UBERON_0002368 endocrine gland UBERON_0018244 superficial cervical thymus +UBERON_0002368 endocrine gland UBERON_0018245 deep cervical thymus +UBERON_0002368 endocrine gland UBERON_0018268 type 1 adrenal tissue +UBERON_0002368 endocrine gland UBERON_0018269 type 2 adrenal tissue +UBERON_0002368 endocrine gland UBERON_0018270 type 3 adrenal tissue +UBERON_0002368 endocrine gland UBERON_0018271 type 4 adrenal tissue +UBERON_0002368 endocrine gland UBERON_0018303 adrenal tissue +UBERON_0002368 endocrine gland UBERON_0023752 intermediate part of hypophysis +UBERON_0002368 endocrine gland UBERON_0027109 lateral eminence of hypophysis +UBERON_0002368 endocrine gland UBERON_0034907 pineal parenchyma +UBERON_0002368 endocrine gland UBERON_0035075 thymus subunit +UBERON_0002368 endocrine gland UBERON_0035444 triangular ligament of liver +UBERON_0002368 endocrine gland UBERON_0035756 capillary network of liver +UBERON_0002368 endocrine gland UBERON_0035825 left adrenal gland cortex +UBERON_0002368 endocrine gland UBERON_0035826 left adrenal gland medulla +UBERON_0002368 endocrine gland UBERON_0035827 right adrenal gland cortex +UBERON_0002368 endocrine gland UBERON_0035828 right adrenal gland medulla +UBERON_0002368 endocrine gland UBERON_0039222 cystic artery +UBERON_0002368 endocrine gland UBERON_2001200 corpuscles of Stannius +UBERON_0002368 endocrine gland UBERON_2005174 ventral liver lobe +UBERON_0002368 endocrine gland UBERON_2007004 epiphysial cluster +UBERON_0002368 endocrine gland UBERON_3010404 capillary system of liver +UBERON_0002368 endocrine gland UBERON_3010541 median pars intermedia +UBERON_0002368 endocrine gland UBERON_8400001 hepatic acinus zone 1 +UBERON_0002368 endocrine gland UBERON_8400002 hepatic acinus zone 3 +UBERON_0002368 endocrine gland UBERON_8400003 hepatic acinus zone 2 +UBERON_0002368 endocrine gland UBERON_8400005 metabolic zone of liver +UBERON_0002368 endocrine gland UBERON_8400006 liver lobule periportal region +UBERON_0002368 endocrine gland UBERON_8400007 liver lobule centrilobular region +UBERON_0002368 endocrine gland UBERON_8400008 liver lobule midzonal region +UBERON_0002368 endocrine gland UBERON_8400021 liver serosa +UBERON_0002368 endocrine gland UBERON_8400023 liver subserosa +UBERON_0002368 endocrine gland UBERON_8400024 subcapsular region of liver +UBERON_0002384 connective tissue CL_0000057 fibroblast +UBERON_0002384 connective tissue CL_0000057 transformed skin fibroblast +UBERON_0002384 connective tissue UBERON_0000031 lamina propria of trachea +UBERON_0002384 connective tissue UBERON_0000043 tendon +UBERON_0002384 connective tissue UBERON_0000114 lung connective tissue +UBERON_0002384 connective tissue UBERON_0000121 perineurium +UBERON_0002384 connective tissue UBERON_0000123 endoneurium +UBERON_0002384 connective tissue UBERON_0000124 epineurium +UBERON_0002384 connective tissue UBERON_0000304 tendon sheath +UBERON_0002384 connective tissue UBERON_0000313 portion of cartilage tissue in tibia +UBERON_0002384 connective tissue UBERON_0000363 reticuloendothelial system +UBERON_0002384 connective tissue UBERON_0000398 cartilage tissue of sternum +UBERON_0002384 connective tissue UBERON_0001013 adipose tissue +UBERON_0002384 connective tissue UBERON_0001282 intralobular bile duct +UBERON_0002384 connective tissue UBERON_0001347 white adipose tissue +UBERON_0002384 connective tissue UBERON_0001348 brown adipose tissue +UBERON_0002384 connective tissue UBERON_0001439 compact bone tissue +UBERON_0002384 connective tissue UBERON_0001741 corniculate cartilage +UBERON_0002384 connective tissue UBERON_0001751 dentine +UBERON_0002384 connective tissue UBERON_0001752 enamel +UBERON_0002384 connective tissue UBERON_0001753 cementum +UBERON_0002384 connective tissue UBERON_0001754 dental pulp +UBERON_0002384 connective tissue UBERON_0001797 vitreous humor +UBERON_0002384 connective tissue UBERON_0001798 vitreous body +UBERON_0002384 connective tissue UBERON_0001818 tarsal gland +UBERON_0002384 connective tissue UBERON_0001822 orbital septum +UBERON_0002384 connective tissue UBERON_0001823 nasal cartilage +UBERON_0002384 connective tissue UBERON_0001957 submucosa of bronchus +UBERON_0002384 connective tissue UBERON_0001994 hyaline cartilage tissue +UBERON_0002384 connective tissue UBERON_0001995 fibrocartilage +UBERON_0002384 connective tissue UBERON_0001996 elastic cartilage tissue +UBERON_0002384 connective tissue UBERON_0002015 kidney capsule +UBERON_0002384 connective tissue UBERON_0002190 subcutaneous adipose tissue +UBERON_0002384 connective tissue UBERON_0002202 submucosa of trachea +UBERON_0002384 connective tissue UBERON_0002222 perichondrium +UBERON_0002384 connective tissue UBERON_0002242 nucleus pulposus +UBERON_0002384 connective tissue UBERON_0002338 lamina propria of bronchus +UBERON_0002384 connective tissue UBERON_0002384 connective tissue +UBERON_0002384 connective tissue UBERON_0002418 cartilage tissue +UBERON_0002384 connective tissue UBERON_0002481 bone tissue +UBERON_0002384 connective tissue UBERON_0002482 lamellar bone +UBERON_0002384 connective tissue UBERON_0002483 trabecular bone tissue +UBERON_0002384 connective tissue UBERON_0002484 bone marrow cavity +UBERON_0002384 connective tissue UBERON_0002516 epiphyseal plate +UBERON_0002384 connective tissue UBERON_0002521 elastic tissue +UBERON_0002384 connective tissue UBERON_0003407 cartilage of nasal septum +UBERON_0002384 connective tissue UBERON_0003426 dermis adipose tissue +UBERON_0002384 connective tissue UBERON_0003427 abdominal fat pad +UBERON_0002384 connective tissue UBERON_0003428 gonadal fat pad +UBERON_0002384 connective tissue UBERON_0003482 vein of trabecular bone +UBERON_0002384 connective tissue UBERON_0003492 bronchus reticular lamina +UBERON_0002384 connective tissue UBERON_0003493 trachea reticular lamina +UBERON_0002384 connective tissue UBERON_0003566 head connective tissue +UBERON_0002384 connective tissue UBERON_0003567 abdomen connective tissue +UBERON_0002384 connective tissue UBERON_0003568 neck connective tissue +UBERON_0002384 connective tissue UBERON_0003569 leg connective tissue +UBERON_0002384 connective tissue UBERON_0003570 respiratory system connective tissue +UBERON_0002384 connective tissue UBERON_0003571 trachea connective tissue +UBERON_0002384 connective tissue UBERON_0003572 chest connective tissue +UBERON_0002384 connective tissue UBERON_0003573 arm connective tissue +UBERON_0002384 connective tissue UBERON_0003574 elbow connective tissue +UBERON_0002384 connective tissue UBERON_0003575 wrist connective tissue +UBERON_0002384 connective tissue UBERON_0003576 hip connective tissue +UBERON_0002384 connective tissue UBERON_0003577 knee connective tissue +UBERON_0002384 connective tissue UBERON_0003578 pedal digit connective tissue +UBERON_0002384 connective tissue UBERON_0003579 shoulder connective tissue +UBERON_0002384 connective tissue UBERON_0003580 lower respiratory tract connective tissue +UBERON_0002384 connective tissue UBERON_0003581 eyelid connective tissue +UBERON_0002384 connective tissue UBERON_0003582 nasopharynx connective tissue +UBERON_0002384 connective tissue UBERON_0003583 larynx connective tissue +UBERON_0002384 connective tissue UBERON_0003584 mammary gland connective tissue +UBERON_0002384 connective tissue UBERON_0003585 dermis connective tissue +UBERON_0002384 connective tissue UBERON_0003586 trunk connective tissue +UBERON_0002384 connective tissue UBERON_0003587 limb connective tissue +UBERON_0002384 connective tissue UBERON_0003588 forelimb connective tissue +UBERON_0002384 connective tissue UBERON_0003589 hindlimb connective tissue +UBERON_0002384 connective tissue UBERON_0003590 main bronchus connective tissue +UBERON_0002384 connective tissue UBERON_0003591 lobar bronchus connective tissue +UBERON_0002384 connective tissue UBERON_0003592 bronchus connective tissue +UBERON_0002384 connective tissue UBERON_0003593 thoracic cavity connective tissue +UBERON_0002384 connective tissue UBERON_0003594 pelvis connective tissue +UBERON_0002384 connective tissue UBERON_0003595 pes connective tissue +UBERON_0002384 connective tissue UBERON_0003596 ankle connective tissue +UBERON_0002384 connective tissue UBERON_0003597 manual digit connective tissue +UBERON_0002384 connective tissue UBERON_0003598 manus connective tissue +UBERON_0002384 connective tissue UBERON_0003599 tail connective tissue +UBERON_0002384 connective tissue UBERON_0003609 aorta elastic tissue +UBERON_0002384 connective tissue UBERON_0003610 heart elastic tissue +UBERON_0002384 connective tissue UBERON_0003611 respiratory system elastic tissue +UBERON_0002384 connective tissue UBERON_0003613 cardiovascular system elastic tissue +UBERON_0002384 connective tissue UBERON_0003614 blood vessel elastic tissue +UBERON_0002384 connective tissue UBERON_0003615 lung elastic tissue +UBERON_0002384 connective tissue UBERON_0003616 bronchus elastic tissue +UBERON_0002384 connective tissue UBERON_0003617 trachea elastic tissue +UBERON_0002384 connective tissue UBERON_0003669 fascia lata +UBERON_0002384 connective tissue UBERON_0003701 calcaneal tendon +UBERON_0002384 connective tissue UBERON_0003837 thoracic segment connective tissue +UBERON_0002384 connective tissue UBERON_0003838 abdominal segment connective tissue +UBERON_0002384 connective tissue UBERON_0003916 fat pad +UBERON_0002384 connective tissue UBERON_0003952 anterior stroma of cornea +UBERON_0002384 connective tissue UBERON_0003953 posterior stroma of cornea +UBERON_0002384 connective tissue UBERON_0003958 long bone epiphyseal ossification zone +UBERON_0002384 connective tissue UBERON_0003967 cutaneous elastic tissue +UBERON_0002384 connective tissue UBERON_0004000 tarsal gland acinus +UBERON_0002384 connective tissue UBERON_0004034 cutaneous microfibril +UBERON_0002384 connective tissue UBERON_0004109 cortex of humerus +UBERON_0002384 connective tissue UBERON_0004129 growth plate cartilage +UBERON_0002384 connective tissue UBERON_0004180 mammary gland fat +UBERON_0002384 connective tissue UBERON_0004266 upper leg connective tissue +UBERON_0002384 connective tissue UBERON_0004267 back connective tissue +UBERON_0002384 connective tissue UBERON_0004268 lower arm connective tissue +UBERON_0002384 connective tissue UBERON_0004269 upper arm connective tissue +UBERON_0002384 connective tissue UBERON_0004270 lower leg connective tissue +UBERON_0002384 connective tissue UBERON_0004292 cardiac skeleton +UBERON_0002384 connective tissue UBERON_0004400 bone tissue of epiphysis +UBERON_0002384 connective tissue UBERON_0004401 bone tissue of distal epiphysis +UBERON_0002384 connective tissue UBERON_0004402 bone tissue of proximal epiphysis +UBERON_0002384 connective tissue UBERON_0004715 annulus fibrosus disci intervertebralis +UBERON_0002384 connective tissue UBERON_0004724 medial palpebral ligament +UBERON_0002384 connective tissue UBERON_0004755 skeletal tissue +UBERON_0002384 connective tissue UBERON_0004763 endochondral bone tissue +UBERON_0002384 connective tissue UBERON_0004764 intramembranous bone tissue +UBERON_0002384 connective tissue UBERON_0004772 eyelid tarsus +UBERON_0002384 connective tissue UBERON_0004773 superior eyelid tarsus +UBERON_0002384 connective tissue UBERON_0004774 inferior eyelid tarsus +UBERON_0002384 connective tissue UBERON_0004777 respiratory system submucosa +UBERON_0002384 connective tissue UBERON_0004778 larynx submucosa +UBERON_0002384 connective tissue UBERON_0004779 respiratory system lamina propria +UBERON_0002384 connective tissue UBERON_0004857 skeletal muscle connective tissue +UBERON_0002384 connective tissue UBERON_0004858 cellular cartilage +UBERON_0002384 connective tissue UBERON_0004924 submucosa of pharynx +UBERON_0002384 connective tissue UBERON_0004925 submucosa of laryngopharynx +UBERON_0002384 connective tissue UBERON_0004947 submucosa of right main bronchus +UBERON_0002384 connective tissue UBERON_0004948 submucosa of left main bronchus +UBERON_0002384 connective tissue UBERON_0004949 submucosa of main bronchus +UBERON_0002384 connective tissue UBERON_0004950 submucosa of lobar bronchus +UBERON_0002384 connective tissue UBERON_0004951 submucosa of segmental bronchus +UBERON_0002384 connective tissue UBERON_0004952 submucosa of bronchiole +UBERON_0002384 connective tissue UBERON_0005137 metanephric capsule +UBERON_0002384 connective tissue UBERON_0005203 trachea gland +UBERON_0002384 connective tissue UBERON_0005204 larynx submucosa gland +UBERON_0002384 connective tissue UBERON_0005405 pararenal fat +UBERON_0002384 connective tissue UBERON_0005406 perirenal fat +UBERON_0002384 connective tissue UBERON_0005808 bone tissue of long bone +UBERON_0002384 connective tissue UBERON_0005809 cortex of manus bone +UBERON_0002384 connective tissue UBERON_0005991 aortic valve anulus +UBERON_0002384 connective tissue UBERON_0005993 pulmonary valve anulus +UBERON_0002384 connective tissue UBERON_0005995 mitral valve anulus +UBERON_0002384 connective tissue UBERON_0005997 tricuspid valve anulus +UBERON_0002384 connective tissue UBERON_0006008 fibrous ring of heart +UBERON_0002384 connective tissue UBERON_0006170 mesonephric capsule +UBERON_0002384 connective tissue UBERON_0006239 future central tendon +UBERON_0002384 connective tissue UBERON_0006326 base of arytenoid +UBERON_0002384 connective tissue UBERON_0006332 nasal capsule +UBERON_0002384 connective tissue UBERON_0006430 xiphoid cartilage +UBERON_0002384 connective tissue UBERON_0006431 xiphoid process bone +UBERON_0002384 connective tissue UBERON_0006444 annulus fibrosus +UBERON_0002384 connective tissue UBERON_0006494 apex of arytenoid +UBERON_0002384 connective tissue UBERON_0006654 perineal body +UBERON_0002384 connective tissue UBERON_0006670 central tendon of diaphragm +UBERON_0002384 connective tissue UBERON_0006671 orbital fat pad +UBERON_0002384 connective tissue UBERON_0006771 long bone epiphyseal plate proliferative zone +UBERON_0002384 connective tissue UBERON_0006772 long bone epiphyseal plate hypertrophic zone +UBERON_0002384 connective tissue UBERON_0006773 long bone epiphyseal plate ossification zone +UBERON_0002384 connective tissue UBERON_0006775 zone of epiphyseal plate +UBERON_0002384 connective tissue UBERON_0006804 reticular tissue +UBERON_0002384 connective tissue UBERON_0006815 areolar connective tissue +UBERON_0002384 connective tissue UBERON_0007168 long head of biceps brachii +UBERON_0002384 connective tissue UBERON_0007169 short head of biceps brachii +UBERON_0002384 connective tissue UBERON_0007355 bony part of pharyngotympanic tube +UBERON_0002384 connective tissue UBERON_0007389 paired limb/fin cartilage +UBERON_0002384 connective tissue UBERON_0007390 pectoral appendage cartilage tissue +UBERON_0002384 connective tissue UBERON_0007391 pelvic appendage cartilage tissue +UBERON_0002384 connective tissue UBERON_0007808 adipose tissue of abdominal region +UBERON_0002384 connective tissue UBERON_0007809 fascia of Camper +UBERON_0002384 connective tissue UBERON_0007818 major alar cartilage +UBERON_0002384 connective tissue UBERON_0007819 minor alar cartilage +UBERON_0002384 connective tissue UBERON_0007820 accessory nasal cartilage +UBERON_0002384 connective tissue UBERON_0007821 lateral nasal cartilage +UBERON_0002384 connective tissue UBERON_0007822 vomeronasal cartilage +UBERON_0002384 connective tissue UBERON_0007845 regular connective tissue +UBERON_0002384 connective tissue UBERON_0007846 dense regular connective tissue +UBERON_0002384 connective tissue UBERON_0007862 perichordal tissue +UBERON_0002384 connective tissue UBERON_0008187 hypertrophic cartilage zone +UBERON_0002384 connective tissue UBERON_0008188 tendon of biceps brachii +UBERON_0002384 connective tissue UBERON_0008192 tendon of triceps brachii +UBERON_0002384 connective tissue UBERON_0008269 nacre +UBERON_0002384 connective tissue UBERON_0008304 inner chondrogenic layer of perichondrium +UBERON_0002384 connective tissue UBERON_0008305 outer fibrous layer of perichondrium +UBERON_0002384 connective tissue UBERON_0008867 trabecular network of bone +UBERON_0002384 connective tissue UBERON_0008883 osteoid +UBERON_0002384 connective tissue UBERON_0008977 pes anserinus of tibia +UBERON_0002384 connective tissue UBERON_0008982 fascia +UBERON_0002384 connective tissue UBERON_0009013 white fibrocartilage +UBERON_0002384 connective tissue UBERON_0009644 trachea non-cartilage connective tissue +UBERON_0002384 connective tissue UBERON_0009648 eyelid subcutaneous connective tissue +UBERON_0002384 connective tissue UBERON_0009652 bronchus basement membrane +UBERON_0002384 connective tissue UBERON_0009653 trachea basement membrane +UBERON_0002384 connective tissue UBERON_0009754 blubber +UBERON_0002384 connective tissue UBERON_0010076 network of trabecular spaces in bone tissue +UBERON_0002384 connective tissue UBERON_0010211 granulation tissue +UBERON_0002384 connective tissue UBERON_0010365 odontoid tissue +UBERON_0002384 connective tissue UBERON_0010379 superior tarsal muscle +UBERON_0002384 connective tissue UBERON_0010410 inguinal fat pad +UBERON_0002384 connective tissue UBERON_0010411 retroperitoneal fat pad +UBERON_0002384 connective tissue UBERON_0010412 epididymal fat pad +UBERON_0002384 connective tissue UBERON_0010413 parametrial fat pad +UBERON_0002384 connective tissue UBERON_0010414 omental fat pad +UBERON_0002384 connective tissue UBERON_0010996 articular cartilage of joint +UBERON_0002384 connective tissue UBERON_0011157 cuneiform cartilage +UBERON_0002384 connective tissue UBERON_0011233 synovial membrane of synovial tendon sheath +UBERON_0002384 connective tissue UBERON_0011234 fibrous membrane of synovial tendon sheath +UBERON_0002384 connective tissue UBERON_0011236 deep fascia +UBERON_0002384 connective tissue UBERON_0011237 visceral fascia +UBERON_0002384 connective tissue UBERON_0011345 pharyngeal raphe +UBERON_0002384 connective tissue UBERON_0011346 palatine raphe +UBERON_0002384 connective tissue UBERON_0011347 raphe of hard palate +UBERON_0002384 connective tissue UBERON_0011348 raphe of soft palate +UBERON_0002384 connective tissue UBERON_0011349 pterygomandibular raphe +UBERON_0002384 connective tissue UBERON_0011350 mylohyoid raphe +UBERON_0002384 connective tissue UBERON_0011392 blood vessel internal elastic membrane +UBERON_0002384 connective tissue UBERON_0011587 pre-dentine +UBERON_0002384 connective tissue UBERON_0011588 pre-enamel +UBERON_0002384 connective tissue UBERON_0011589 non-mineralized cartilage tissue +UBERON_0002384 connective tissue UBERON_0011675 perichordal ring +UBERON_0002384 connective tissue UBERON_0011688 pre-enameloid +UBERON_0002384 connective tissue UBERON_0011692 enameloid +UBERON_0002384 connective tissue UBERON_0011821 irregular connective tissue +UBERON_0002384 connective tissue UBERON_0011822 dense irregular connective tissue +UBERON_0002384 connective tissue UBERON_0011823 dense connective tissue +UBERON_0002384 connective tissue UBERON_0011824 fibrous connective tissue +UBERON_0002384 connective tissue UBERON_0011825 loose connective tissue +UBERON_0002384 connective tissue UBERON_0011864 tendon collagen fibril +UBERON_0002384 connective tissue UBERON_0011893 endoneurial fluid +UBERON_0002384 connective tissue UBERON_0011895 endomysium +UBERON_0002384 connective tissue UBERON_0011896 smooth muscle endomysium +UBERON_0002384 connective tissue UBERON_0011897 cardiac endomysium +UBERON_0002384 connective tissue UBERON_0011898 skeletal muscle endomysium +UBERON_0002384 connective tissue UBERON_0011899 epimysium +UBERON_0002384 connective tissue UBERON_0011900 perimysium +UBERON_0002384 connective tissue UBERON_0011971 calcaneofibular ligament +UBERON_0002384 connective tissue UBERON_0012118 infraspinatus tendon +UBERON_0002384 connective tissue UBERON_0012119 vinculum tendon of wing +UBERON_0002384 connective tissue UBERON_0012120 vinculum of tendon +UBERON_0002384 connective tissue UBERON_0012167 buccal fat pad +UBERON_0002384 connective tissue UBERON_0012282 mammary fat pad +UBERON_0002384 connective tissue UBERON_0012283 femoral fat pad +UBERON_0002384 connective tissue UBERON_0013120 eyelid submuscular connective tissue +UBERON_0002384 connective tissue UBERON_0013177 dorsal bursa +UBERON_0002384 connective tissue UBERON_0013178 anterior dorsal bursa +UBERON_0002384 connective tissue UBERON_0013179 posterior dorsal bursa +UBERON_0002384 connective tissue UBERON_0013488 panniculus adiposus +UBERON_0002384 connective tissue UBERON_0013489 superficial cervical fascia +UBERON_0002384 connective tissue UBERON_0013490 deep cervical fascia +UBERON_0002384 connective tissue UBERON_0013491 cervical fascia +UBERON_0002384 connective tissue UBERON_0013492 prevertebral cervical fascia +UBERON_0002384 connective tissue UBERON_0013493 abdominal fascia +UBERON_0002384 connective tissue UBERON_0013705 fascia of Scarpa +UBERON_0002384 connective tissue UBERON_0013718 dartos muscle +UBERON_0002384 connective tissue UBERON_0013719 dartos muscle of scrotum +UBERON_0002384 connective tissue UBERON_0013720 dartos muscle of labia majora +UBERON_0002384 connective tissue UBERON_0014394 uterine fat pad +UBERON_0002384 connective tissue UBERON_0014396 interscapular fat pad +UBERON_0002384 connective tissue UBERON_0014454 visceral abdominal adipose tissue +UBERON_0002384 connective tissue UBERON_0014455 subcutaneous abdominal adipose tissue +UBERON_0002384 connective tissue UBERON_0014464 renal fat pad +UBERON_0002384 connective tissue UBERON_0014716 interlobular duct +UBERON_0002384 connective tissue UBERON_0014720 interlobar duct +UBERON_0002384 connective tissue UBERON_0014730 osteon +UBERON_0002384 connective tissue UBERON_0014731 haversian canal +UBERON_0002384 connective tissue UBERON_0014779 liver reticuloendothelial system +UBERON_0002384 connective tissue UBERON_0014848 tendon of quadriceps femoris +UBERON_0002384 connective tissue UBERON_0015129 epicardial fat +UBERON_0002384 connective tissue UBERON_0015130 connective tissue of prostate gland +UBERON_0002384 connective tissue UBERON_0015131 subepithelial connective tissue of prostatic gland +UBERON_0002384 connective tissue UBERON_0015142 falciform fat +UBERON_0002384 connective tissue UBERON_0015143 mesenteric fat pad +UBERON_0002384 connective tissue UBERON_0015329 respiratory system basement membrane +UBERON_0002384 connective tissue UBERON_0015433 blood vessel external elastic membrane +UBERON_0002384 connective tissue UBERON_0015454 pancreatic fat pad +UBERON_0002384 connective tissue UBERON_0015458 mediastinal fat pad +UBERON_0002384 connective tissue UBERON_0015477 axillary fat pad +UBERON_0002384 connective tissue UBERON_0015751 inferior tarsal muscle +UBERON_0002384 connective tissue UBERON_0015764 dense regular elastic tissue +UBERON_0002384 connective tissue UBERON_0015791 digit connective tissue +UBERON_0002384 connective tissue UBERON_0015837 incisor dental pulp +UBERON_0002384 connective tissue UBERON_0015838 molar dental pulp +UBERON_0002384 connective tissue UBERON_0015853 dental pulp of median incisor tusk +UBERON_0002384 connective tissue UBERON_0016400 infrapatellar fat pad +UBERON_0002384 connective tissue UBERON_0016413 medullary cavity of long bone +UBERON_0002384 connective tissue UBERON_0016422 compact bone of long bone +UBERON_0002384 connective tissue UBERON_0016423 compact bone of diaphysis +UBERON_0002384 connective tissue UBERON_0016425 epiphyseal plate of radius +UBERON_0002384 connective tissue UBERON_0016496 tendon of palmaris longus +UBERON_0002384 connective tissue UBERON_0016851 renal fascia +UBERON_0002384 connective tissue UBERON_0018131 periovarian fat pad +UBERON_0002384 connective tissue UBERON_0018132 tail fat pad +UBERON_0002384 connective tissue UBERON_0018135 fibrocollagenous connective tissue +UBERON_0002384 connective tissue UBERON_0018352 prismatic cartilage +UBERON_0002384 connective tissue UBERON_0019143 intramuscular adipose tissue +UBERON_0002384 connective tissue UBERON_0034688 spermatic fascia +UBERON_0002384 connective tissue UBERON_0034690 external spermatic fascia +UBERON_0002384 connective tissue UBERON_0034691 internal spermatic fascia +UBERON_0002384 connective tissue UBERON_0034712 yellow fibrocartilage +UBERON_0002384 connective tissue UBERON_0034938 mucocartilage tissue +UBERON_0002384 connective tissue UBERON_0034988 tendon of obturator internus +UBERON_0002384 connective tissue UBERON_0035053 interlobular duct of salivary gland +UBERON_0002384 connective tissue UBERON_0035078 parotid gland interlobular duct +UBERON_0002384 connective tissue UBERON_0035096 fascia of tail +UBERON_0002384 connective tissue UBERON_0035103 perineal body smooth muscle muscle tissue +UBERON_0002384 connective tissue UBERON_0035108 temporalis fascia +UBERON_0002384 connective tissue UBERON_0035438 mucoid tissue +UBERON_0002384 connective tissue UBERON_0035814 pericardial fat +UBERON_0002384 connective tissue UBERON_0035815 paracardial fat +UBERON_0002384 connective tissue UBERON_0035818 visceral fat +UBERON_0002384 connective tissue UBERON_0035845 enthesis +UBERON_0002384 connective tissue UBERON_0035846 fibrous enthesis +UBERON_0002384 connective tissue UBERON_0035847 fibrocartilage enthesis +UBERON_0002384 connective tissue UBERON_0036186 fibroelastic connective tissue +UBERON_0002384 connective tissue UBERON_0036553 wall of synovial tendon sheath +UBERON_0002384 connective tissue UBERON_2001456 pectoral fin endoskeletal disc +UBERON_0002384 connective tissue UBERON_3000002 alary cartilage +UBERON_0002384 connective tissue UBERON_3000068 cartilago ectochoanalis +UBERON_0002384 connective tissue UBERON_3000069 cartilago infranarina +UBERON_0002384 connective tissue UBERON_3000079 cartilago retronarina +UBERON_0002384 connective tissue UBERON_3000160 fenestra dorsalis nasi +UBERON_0002384 connective tissue UBERON_3000161 fenestra endochoanalis +UBERON_0002384 connective tissue UBERON_3000162 fenestra endonarina communis +UBERON_0002384 connective tissue UBERON_3000164 fenestra lateralis nasi +UBERON_0002384 connective tissue UBERON_3000166 fenestra nasobasalis +UBERON_0002384 connective tissue UBERON_3000167 fenestra nasolateralis +UBERON_0002384 connective tissue UBERON_3000170 fenestra precerebralis +UBERON_0002384 connective tissue UBERON_3000171 fenestra prechoanalis +UBERON_0002384 connective tissue UBERON_3000189 foramen orbitonasale laterale +UBERON_0002384 connective tissue UBERON_3000190 foramen orbitonasale mediale +UBERON_0002384 connective tissue UBERON_3000234 inferior prenasal cartilage +UBERON_0002384 connective tissue UBERON_3000259 lamina inferior +UBERON_0002384 connective tissue UBERON_3000260 lamina nariochoanalis +UBERON_0002384 connective tissue UBERON_3000290 medial inferior prenasal cartilage +UBERON_0002384 connective tissue UBERON_3000291 medial orbitonasal foramen +UBERON_0002384 connective tissue UBERON_3000316 nasal opening +UBERON_0002384 connective tissue UBERON_3000329 oblique cartilage +UBERON_0002384 connective tissue UBERON_3000333 olfactory foramen +UBERON_0002384 connective tissue UBERON_3000381 paranasal commissure +UBERON_0002384 connective tissue UBERON_3000389 paries nasi +UBERON_0002384 connective tissue UBERON_3000434 planum antorbitale +UBERON_0002384 connective tissue UBERON_3000437 planum conchale +UBERON_0002384 connective tissue UBERON_3000438 planum internasale +UBERON_0002384 connective tissue UBERON_3000563 seydels palatal process +UBERON_0002384 connective tissue UBERON_3000571 specialized connective tissue +UBERON_0002384 connective tissue UBERON_3000586 superior prenasal cartilage +UBERON_0002384 connective tissue UBERON_3010529 ovisac +UBERON_0002384 connective tissue UBERON_3010827 anterior prenasal cartilage +UBERON_0002384 connective tissue UBERON_4000013 mineralized skeletal tissue +UBERON_0002384 connective tissue UBERON_4000053 vacuolated notochordal tissue +UBERON_0002384 connective tissue UBERON_4000077 non-mineralized chondroid tissue +UBERON_0002384 connective tissue UBERON_4000078 chondroid tissue +UBERON_0002384 connective tissue UBERON_4000086 secondary cartilage tissue +UBERON_0002384 connective tissue UBERON_4000087 cosmine +UBERON_0002384 connective tissue UBERON_4000088 mineralized cartilage tissue +UBERON_0002384 connective tissue UBERON_4000097 orthodentine +UBERON_0002384 connective tissue UBERON_4000102 osteodentine +UBERON_0002384 connective tissue UBERON_4000104 ganoine +UBERON_0002384 connective tissue UBERON_4000106 vasodentine +UBERON_0002384 connective tissue UBERON_4000107 elasmodine +UBERON_0002384 connective tissue UBERON_4000108 non-mineralized hyaline cartilage tissue +UBERON_0002384 connective tissue UBERON_4000109 mineralized hyaline cartilage tissue +UBERON_0002384 connective tissue UBERON_4000115 mineralized bone tissue +UBERON_0002384 connective tissue UBERON_4000118 cellular bone tissue +UBERON_0002384 connective tissue UBERON_4000119 non-mineralized avascular GAG-rich matrix +UBERON_0002384 connective tissue UBERON_4000120 mineralized avascular GAG-rich matrix +UBERON_0002384 connective tissue UBERON_4000122 acellular bone tissue +UBERON_0002384 connective tissue UBERON_4000123 odontode tissue +UBERON_0002384 connective tissue UBERON_4300153 Sharpey's fiber +UBERON_0002384 connective tissue UBERON_4300197 Westoll line +UBERON_0002384 connective tissue UBERON_4300212 acrodin +UBERON_0002384 connective tissue UBERON_7500085 endodontium +UBERON_0002384 connective tissue UBERON_8000008 cementocyte lacuna +UBERON_0003133 reproductive organ UBERON_0000002 cervix, uterine +UBERON_0003133 reproductive organ UBERON_0000002 uterine cervix +UBERON_0003133 reproductive organ UBERON_0000035 primary ovarian follicle +UBERON_0003133 reproductive organ UBERON_0000036 secondary ovarian follicle +UBERON_0003133 reproductive organ UBERON_0000037 tertiary ovarian follicle +UBERON_0003133 reproductive organ UBERON_0000038 follicular fluid +UBERON_0003133 reproductive organ UBERON_0000039 follicular antrum +UBERON_0003133 reproductive organ UBERON_0000051 fornix of vagina +UBERON_0003133 reproductive organ UBERON_0000086 zona pellucida +UBERON_0003133 reproductive organ UBERON_0000155 theca cell layer +UBERON_0003133 reproductive organ UBERON_0000156 theca externa +UBERON_0003133 reproductive organ UBERON_0000157 theca interna +UBERON_0003133 reproductive organ UBERON_0000450 corpus albicans +UBERON_0003133 reproductive organ UBERON_0000458 endocervix +UBERON_0003133 reproductive organ UBERON_0000459 uterine wall +UBERON_0003133 reproductive organ UBERON_0000460 major vestibular gland +UBERON_0003133 reproductive organ UBERON_0000461 minor vestibular gland +UBERON_0003133 reproductive organ UBERON_0000473 testis +UBERON_0003133 reproductive organ UBERON_0000989 penis +UBERON_0003133 reproductive organ UBERON_0000991 gonad +UBERON_0003133 reproductive organ UBERON_0000992 ovary +UBERON_0003133 reproductive organ UBERON_0000994 spermathecum +UBERON_0003133 reproductive organ UBERON_0000995 uterus +UBERON_0003133 reproductive organ UBERON_0000996 vagina +UBERON_0003133 reproductive organ UBERON_0000997 mammalian vulva +UBERON_0003133 reproductive organ UBERON_0000998 seminal vesicle +UBERON_0003133 reproductive organ UBERON_0001000 vas deferens +UBERON_0003133 reproductive organ UBERON_0001295 endometrium +UBERON_0003133 reproductive organ UBERON_0001296 myometrium +UBERON_0003133 reproductive organ UBERON_0001297 serosa of uterus +UBERON_0003133 reproductive organ UBERON_0001299 glans penis +UBERON_0003133 reproductive organ UBERON_0001300 scrotum +UBERON_0003133 reproductive organ UBERON_0001301 epididymis +UBERON_0003133 reproductive organ UBERON_0001302 right uterine tube +UBERON_0003133 reproductive organ UBERON_0001303 left uterine tube +UBERON_0003133 reproductive organ UBERON_0001304 germinal epithelium of ovary +UBERON_0003133 reproductive organ UBERON_0001305 ovarian follicle +UBERON_0003133 reproductive organ UBERON_0001306 cumulus oophorus +UBERON_0003133 reproductive organ UBERON_0001307 capsule of ovary +UBERON_0003133 reproductive organ UBERON_0001319 vaginal vein +UBERON_0003133 reproductive organ UBERON_0001331 skin of penis +UBERON_0003133 reproductive organ UBERON_0001332 prepuce of penis +UBERON_0003133 reproductive organ UBERON_0001337 spongiose part of urethra +UBERON_0003133 reproductive organ UBERON_0001340 dorsal artery of penis +UBERON_0003133 reproductive organ UBERON_0001342 mesovarium +UBERON_0003133 reproductive organ UBERON_0001343 seminiferous tubule of testis +UBERON_0003133 reproductive organ UBERON_0001344 epithelium of vagina +UBERON_0003133 reproductive organ UBERON_0001346 vaginal hymen +UBERON_0003133 reproductive organ UBERON_0001471 skin of prepuce of penis +UBERON_0003133 reproductive organ UBERON_0001472 vaginal venous plexus +UBERON_0003133 reproductive organ UBERON_0002118 right ovary +UBERON_0003133 reproductive organ UBERON_0002119 left ovary +UBERON_0003133 reproductive organ UBERON_0002247 uterine horn +UBERON_0003133 reproductive organ UBERON_0002337 endometrial stroma +UBERON_0003133 reproductive organ UBERON_0002366 bulbo-urethral gland +UBERON_0003133 reproductive organ UBERON_0002411 clitoris +UBERON_0003133 reproductive organ UBERON_0002451 endometrial gland +UBERON_0003133 reproductive organ UBERON_0002493 uterine artery +UBERON_0003133 reproductive organ UBERON_0002512 corpus luteum +UBERON_0003133 reproductive organ UBERON_0002537 hermaphrodite gonad +UBERON_0003133 reproductive organ UBERON_0003133 reproductive organ +UBERON_0003133 reproductive organ UBERON_0003134 female reproductive organ +UBERON_0003133 reproductive organ UBERON_0003135 male reproductive organ +UBERON_0003133 reproductive organ UBERON_0003199 egg chamber +UBERON_0003133 reproductive organ UBERON_0003218 ovary septum +UBERON_0003133 reproductive organ UBERON_0003312 mesenchyme of testis +UBERON_0003133 reproductive organ UBERON_0003315 mesenchyme of ovary +UBERON_0003133 reproductive organ UBERON_0003366 epithelium of uterine horn +UBERON_0003133 reproductive organ UBERON_0003428 gonadal fat pad +UBERON_0003133 reproductive organ UBERON_0003480 vein of clitoris +UBERON_0003133 reproductive organ UBERON_0003485 vagina sebaceous gland +UBERON_0003133 reproductive organ UBERON_0003855 gonad mesenchyme +UBERON_0003133 reproductive organ UBERON_0003885 mesometrium +UBERON_0003133 reproductive organ UBERON_0003889 fallopian tube +UBERON_0003133 reproductive organ UBERON_0003959 rete testis +UBERON_0003133 reproductive organ UBERON_0003974 upper part of vagina +UBERON_0003133 reproductive organ UBERON_0003975 internal female genitalia +UBERON_0003133 reproductive organ UBERON_0003981 primordial ovarian follicle +UBERON_0003133 reproductive organ UBERON_0003982 mature ovarian follicle +UBERON_0003133 reproductive organ UBERON_0004014 labium minora +UBERON_0003133 reproductive organ UBERON_0004053 external male genitalia +UBERON_0003133 reproductive organ UBERON_0004054 internal male genitalia +UBERON_0003133 reproductive organ UBERON_0004084 genital labium +UBERON_0003133 reproductive organ UBERON_0004085 labium majora +UBERON_0003133 reproductive organ UBERON_0004175 internal genitalia +UBERON_0003133 reproductive organ UBERON_0004176 external genitalia +UBERON_0003133 reproductive organ UBERON_0004223 vagina smooth muscle +UBERON_0003133 reproductive organ UBERON_0004224 muscular coat of vas deferens +UBERON_0003133 reproductive organ UBERON_0004245 oviduct smooth muscle +UBERON_0003133 reproductive organ UBERON_0004358 caput epididymis +UBERON_0003133 reproductive organ UBERON_0004359 corpus epididymis +UBERON_0003133 reproductive organ UBERON_0004360 cauda epididymis +UBERON_0003133 reproductive organ UBERON_0004533 left testis +UBERON_0003133 reproductive organ UBERON_0004534 right testis +UBERON_0003133 reproductive organ UBERON_0004544 epididymis epithelium +UBERON_0003133 reproductive organ UBERON_0004665 muscular coat of seminal vesicle +UBERON_0003133 reproductive organ UBERON_0004713 corpus cavernosum penis +UBERON_0003133 reproductive organ UBERON_0004801 cervix epithelium +UBERON_0003133 reproductive organ UBERON_0004803 penis epithelium +UBERON_0003133 reproductive organ UBERON_0004804 oviduct epithelium +UBERON_0003133 reproductive organ UBERON_0004805 seminal vesicle epithelium +UBERON_0003133 reproductive organ UBERON_0004806 vas deferens epithelium +UBERON_0003133 reproductive organ UBERON_0004811 endometrium epithelium +UBERON_0003133 reproductive organ UBERON_0004812 male prepuce epithelium +UBERON_0003133 reproductive organ UBERON_0004813 seminiferous tubule epithelium +UBERON_0003133 reproductive organ UBERON_0004835 epididymis smooth muscle +UBERON_0003133 reproductive organ UBERON_0004876 urogenital fold +UBERON_0003133 reproductive organ UBERON_0004909 epithelium of gonad +UBERON_0003133 reproductive organ UBERON_0004910 epithelium of male gonad +UBERON_0003133 reproductive organ UBERON_0004911 epithelium of female gonad +UBERON_0003133 reproductive organ UBERON_0004983 mucosa of vagina +UBERON_0003133 reproductive organ UBERON_0004984 mucosa of seminal vesicle +UBERON_0003133 reproductive organ UBERON_0004986 mucosa of deferent duct +UBERON_0003133 reproductive organ UBERON_0005011 mucosa of right uterine tube +UBERON_0003133 reproductive organ UBERON_0005012 mucosa of left uterine tube +UBERON_0003133 reproductive organ UBERON_0005048 mucosa of uterine tube +UBERON_0003133 reproductive organ UBERON_0005051 mediastinum testis +UBERON_0003133 reproductive organ UBERON_0005056 external female genitalia +UBERON_0003133 reproductive organ UBERON_0005170 granulosa cell layer +UBERON_0003133 reproductive organ UBERON_0005192 deferent duct artery +UBERON_0003133 reproductive organ UBERON_0005195 deferent duct vein +UBERON_0003133 reproductive organ UBERON_0005205 lamina propria of vagina +UBERON_0003133 reproductive organ UBERON_0005212 Leydig cell region of testis +UBERON_0003133 reproductive organ UBERON_0005296 ovary sex cord +UBERON_0003133 reproductive organ UBERON_0005297 testis sex cord +UBERON_0003133 reproductive organ UBERON_0005298 skin of clitoris +UBERON_0003133 reproductive organ UBERON_0005299 prepuce of clitoris +UBERON_0003133 reproductive organ UBERON_0005301 male preputial gland +UBERON_0003133 reproductive organ UBERON_0005302 female preputial gland +UBERON_0003133 reproductive organ UBERON_0005352 spermatic cord +UBERON_0003133 reproductive organ UBERON_0005398 female reproductive gland +UBERON_0003133 reproductive organ UBERON_0005796 duplex uterus +UBERON_0003133 reproductive organ UBERON_0005797 bipartite uterus +UBERON_0003133 reproductive organ UBERON_0005798 bicornuate uterus +UBERON_0003133 reproductive organ UBERON_0005799 simplex uterus +UBERON_0003133 reproductive organ UBERON_0005876 undifferentiated genital tubercle +UBERON_0003133 reproductive organ UBERON_0005890 gonad germinal epithelium +UBERON_0003133 reproductive organ UBERON_0005903 duct of seminal vesicle +UBERON_0003133 reproductive organ UBERON_0006233 female genital tubercle +UBERON_0003133 reproductive organ UBERON_0006261 male genital tubercle +UBERON_0003133 reproductive organ UBERON_0006435 os penis +UBERON_0003133 reproductive organ UBERON_0006440 os clitoris +UBERON_0003133 reproductive organ UBERON_0006608 corpus cavernosum clitoridis +UBERON_0003133 reproductive organ UBERON_0006610 tunica albuginea +UBERON_0003133 reproductive organ UBERON_0006639 crus of penis +UBERON_0003133 reproductive organ UBERON_0006640 crus of clitoris +UBERON_0003133 reproductive organ UBERON_0006641 appendix epididymis +UBERON_0003133 reproductive organ UBERON_0006642 muscle layer of oviduct +UBERON_0003133 reproductive organ UBERON_0006643 tunica albuginea of testis +UBERON_0003133 reproductive organ UBERON_0006644 tunica albuginea of ovary +UBERON_0003133 reproductive organ UBERON_0006645 adventitia of epididymis +UBERON_0003133 reproductive organ UBERON_0006646 muscle layer of epididymis +UBERON_0003133 reproductive organ UBERON_0006647 adventitia of ductus deferens +UBERON_0003133 reproductive organ UBERON_0006648 adventitia of seminal vesicle +UBERON_0003133 reproductive organ UBERON_0006650 tunica vaginalis testis +UBERON_0003133 reproductive organ UBERON_0006652 muscular layer of vagina +UBERON_0003133 reproductive organ UBERON_0006653 glans clitoris +UBERON_0003133 reproductive organ UBERON_0006655 septum of scrotum +UBERON_0003133 reproductive organ UBERON_0006656 deep dorsal vein of penis +UBERON_0003133 reproductive organ UBERON_0006690 deep dorsal vein of clitoris +UBERON_0003133 reproductive organ UBERON_0006868 seminal fluid secreting gland +UBERON_0003133 reproductive organ UBERON_0006922 cervix squamous epithelium +UBERON_0003133 reproductive organ UBERON_0006923 vagina squamous epithelium +UBERON_0003133 reproductive organ UBERON_0006946 efferent duct +UBERON_0003133 reproductive organ UBERON_0006947 male genital duct +UBERON_0003133 reproductive organ UBERON_0006948 efferent duct epithelium +UBERON_0003133 reproductive organ UBERON_0006955 uterine epithelium +UBERON_0003133 reproductive organ UBERON_0006960 ovary stroma +UBERON_0003133 reproductive organ UBERON_0007180 atretic follicle of ovary +UBERON_0003133 reproductive organ UBERON_0007589 ciliated columnar oviduct epithelium +UBERON_0003133 reproductive organ UBERON_0007590 cuboidal oviduct epithelium +UBERON_0003133 reproductive organ UBERON_0007719 bone of reproductive organ +UBERON_0003133 reproductive organ UBERON_0007773 scrotal sweat gland +UBERON_0003133 reproductive organ UBERON_0008311 penile bulb artery +UBERON_0003133 reproductive organ UBERON_0008320 common penile artery +UBERON_0003133 reproductive organ UBERON_0008321 deep artery of penis +UBERON_0003133 reproductive organ UBERON_0008322 deep artery of clitoris +UBERON_0003133 reproductive organ UBERON_0008323 dorsal artery of clitoris +UBERON_0003133 reproductive organ UBERON_0008330 vestibule of vagina +UBERON_0003133 reproductive organ UBERON_0008331 clitoral smooth muscle +UBERON_0003133 reproductive organ UBERON_0008798 rugal fold of vagina +UBERON_0003133 reproductive organ UBERON_0008811 intromittent organ +UBERON_0003133 reproductive organ UBERON_0008812 hemipenis +UBERON_0003133 reproductive organ UBERON_0008824 duct of epididymis +UBERON_0003133 reproductive organ UBERON_0008842 suspensory ligament of testis +UBERON_0003133 reproductive organ UBERON_0008848 cranial suspensory ligament +UBERON_0003133 reproductive organ UBERON_0008855 placenta metrial gland +UBERON_0003133 reproductive organ UBERON_0008935 gastropod albumen gland +UBERON_0003133 reproductive organ UBERON_0008975 oviduct shell gland +UBERON_0003133 reproductive organ UBERON_0009020 left uterine horn +UBERON_0003133 reproductive organ UBERON_0009022 right uterine horn +UBERON_0003133 reproductive organ UBERON_0009098 gravid uterus +UBERON_0003133 reproductive organ UBERON_0009117 indifferent gonad +UBERON_0003133 reproductive organ UBERON_0009196 indifferent external genitalia +UBERON_0003133 reproductive organ UBERON_0009645 ampullary gland +UBERON_0003133 reproductive organ UBERON_0009853 body of uterus +UBERON_0003133 reproductive organ UBERON_0010041 median ovary +UBERON_0003133 reproductive organ UBERON_0010141 primitive sex cord of indifferent gonad +UBERON_0003133 reproductive organ UBERON_0010145 paraurethral gland +UBERON_0003133 reproductive organ UBERON_0010146 paraurethral duct +UBERON_0003133 reproductive organ UBERON_0010150 duct of major vestibular gland +UBERON_0003133 reproductive organ UBERON_0010151 duct of bulbourethral gland +UBERON_0003133 reproductive organ UBERON_0010185 rete ovarii +UBERON_0003133 reproductive organ UBERON_0010391 parametrium +UBERON_0003133 reproductive organ UBERON_0010412 epididymal fat pad +UBERON_0003133 reproductive organ UBERON_0010413 parametrial fat pad +UBERON_0003133 reproductive organ UBERON_0010516 clasper +UBERON_0003133 reproductive organ UBERON_0010517 cephalic clasper +UBERON_0003133 reproductive organ UBERON_0010518 pelvic fin clasper +UBERON_0003133 reproductive organ UBERON_0011183 corpus spongiosum of penis +UBERON_0003133 reproductive organ UBERON_0011298 submucosa of uterine tube +UBERON_0003133 reproductive organ UBERON_0011374 prepuce +UBERON_0003133 reproductive organ UBERON_0011375 skin of prepuce of clitoris +UBERON_0003133 reproductive organ UBERON_0011754 genital swelling +UBERON_0003133 reproductive organ UBERON_0011755 female labial swelling +UBERON_0003133 reproductive organ UBERON_0011756 male genital swelling +UBERON_0003133 reproductive organ UBERON_0011757 differentiated genital tubercle +UBERON_0003133 reproductive organ UBERON_0011826 vestibular gland +UBERON_0003133 reproductive organ UBERON_0011830 duct of lesser vestibular gland +UBERON_0003133 reproductive organ UBERON_0011831 duct of vestibular gland +UBERON_0003133 reproductive organ UBERON_0011879 mesorchium +UBERON_0003133 reproductive organ UBERON_0011894 lumen of vagina +UBERON_0003133 reproductive organ UBERON_0011949 endometrium luminal epithelium +UBERON_0003133 reproductive organ UBERON_0012186 ovary growing follicle +UBERON_0003133 reproductive organ UBERON_0012241 male urethral meatus +UBERON_0003133 reproductive organ UBERON_0012247 cervical gland +UBERON_0003133 reproductive organ UBERON_0012248 cervical mucosa +UBERON_0003133 reproductive organ UBERON_0012249 ectocervix +UBERON_0003133 reproductive organ UBERON_0012250 cervix glandular epithelium +UBERON_0003133 reproductive organ UBERON_0012251 ectocervical epithelium +UBERON_0003133 reproductive organ UBERON_0012252 endocervical epithelium +UBERON_0003133 reproductive organ UBERON_0012253 cervical squamo-columnar junction +UBERON_0003133 reproductive organ UBERON_0012276 endometrium glandular epithelium +UBERON_0003133 reproductive organ UBERON_0012294 navicular fossa of spongiose part of urethra +UBERON_0003133 reproductive organ UBERON_0012295 GuΓ©rin's valve +UBERON_0003133 reproductive organ UBERON_0012317 vagina orifice +UBERON_0003133 reproductive organ UBERON_0012327 pearly penile papule +UBERON_0003133 reproductive organ UBERON_0012328 penile spine +UBERON_0003133 reproductive organ UBERON_0012487 vaginal sphincter +UBERON_0003133 reproductive organ UBERON_0012499 serosa of uterine tube +UBERON_0003133 reproductive organ UBERON_0012648 ampulla of uterine tube +UBERON_0003133 reproductive organ UBERON_0013128 bulb of penis +UBERON_0003133 reproductive organ UBERON_0013129 bulb of vestibule +UBERON_0003133 reproductive organ UBERON_0013191 ovarian cortex +UBERON_0003133 reproductive organ UBERON_0013192 ovarian medulla +UBERON_0003133 reproductive organ UBERON_0013237 genital papilla of vulva +UBERON_0003133 reproductive organ UBERON_0013238 future glans +UBERON_0003133 reproductive organ UBERON_0013239 future glans penis +UBERON_0003133 reproductive organ UBERON_0013240 future glans clitoris +UBERON_0003133 reproductive organ UBERON_0013277 remnant of processus vaginalis +UBERON_0003133 reproductive organ UBERON_0013523 lateral vaginal canal +UBERON_0003133 reproductive organ UBERON_0013524 median vaginal canal +UBERON_0003133 reproductive organ UBERON_0013672 priapium +UBERON_0003133 reproductive organ UBERON_0013673 os priapium +UBERON_0003133 reproductive organ UBERON_0013674 ctenactinium +UBERON_0003133 reproductive organ UBERON_0013675 toxactinium +UBERON_0003133 reproductive organ UBERON_0013676 aproctal bone of priapium +UBERON_0003133 reproductive organ UBERON_0013677 serrated projection of ctenactinium +UBERON_0003133 reproductive organ UBERON_0013719 dartos muscle of scrotum +UBERON_0003133 reproductive organ UBERON_0013720 dartos muscle of labia majora +UBERON_0003133 reproductive organ UBERON_0013758 cervical os +UBERON_0003133 reproductive organ UBERON_0013759 internal cervical os +UBERON_0003133 reproductive organ UBERON_0013760 external cervical os +UBERON_0003133 reproductive organ UBERON_0013761 cervical cavity +UBERON_0003133 reproductive organ UBERON_0013769 uterine lumen +UBERON_0003133 reproductive organ UBERON_0014394 uterine fat pad +UBERON_0003133 reproductive organ UBERON_0015171 uterine spiral artery +UBERON_0003133 reproductive organ UBERON_0015172 endometrial blood vessel +UBERON_0003133 reproductive organ UBERON_0015173 helicine branch of uterine artery +UBERON_0003133 reproductive organ UBERON_0015174 helicine artery of penis +UBERON_0003133 reproductive organ UBERON_0015243 lower part of vagina +UBERON_0003133 reproductive organ UBERON_0015479 scrotum skin +UBERON_0003133 reproductive organ UBERON_0016408 corona of glans penis +UBERON_0003133 reproductive organ UBERON_0016409 base of glans penis +UBERON_0003133 reproductive organ UBERON_0016486 posterior fornix of vagina +UBERON_0003133 reproductive organ UBERON_0016487 anterior fornix of vagina +UBERON_0003133 reproductive organ UBERON_0016524 muscle layer of spongiose part of urethra +UBERON_0003133 reproductive organ UBERON_0016632 isthmus of fallopian tube +UBERON_0003133 reproductive organ UBERON_0017160 lumen of hemipenial sheath +UBERON_0003133 reproductive organ UBERON_0017161 hemipenial mucuous gland +UBERON_0003133 reproductive organ UBERON_0017162 hemipenial holocrine gland +UBERON_0003133 reproductive organ UBERON_0017180 hemipenis keratinized epithelium +UBERON_0003133 reproductive organ UBERON_0017294 horn of hemipenis +UBERON_0003133 reproductive organ UBERON_0017623 prepelvic clasper +UBERON_0003133 reproductive organ UBERON_0017624 pseudoclasper +UBERON_0003133 reproductive organ UBERON_0017659 ventral surface of penis +UBERON_0003133 reproductive organ UBERON_0017732 raphe of scrotum +UBERON_0003133 reproductive organ UBERON_0018131 periovarian fat pad +UBERON_0003133 reproductive organ UBERON_0018134 rugal fold of scrotum +UBERON_0003133 reproductive organ UBERON_0018315 clasper plate +UBERON_0003133 reproductive organ UBERON_0019197 dorsal nerve of penis +UBERON_0003133 reproductive organ UBERON_0019198 dorsal nerve of clitoris +UBERON_0003133 reproductive organ UBERON_0022355 basal layer of endometrium +UBERON_0003133 reproductive organ UBERON_0022356 outer layer of endometrium +UBERON_0003133 reproductive organ UBERON_0034691 internal spermatic fascia +UBERON_0003133 reproductive organ UBERON_0034735 oviduct albumen gland +UBERON_0003133 reproductive organ UBERON_0034770 bulbourethral gland epithelium +UBERON_0003133 reproductive organ UBERON_0034928 dorsal surface of penis +UBERON_0003133 reproductive organ UBERON_0034963 lateral fornix of vagina +UBERON_0003133 reproductive organ UBERON_0035004 preputial swelling +UBERON_0003133 reproductive organ UBERON_0035005 preputial swelling of male +UBERON_0003133 reproductive organ UBERON_0035006 preputial swelling of female +UBERON_0003133 reproductive organ UBERON_0035098 hemipenis transversus muscle +UBERON_0003133 reproductive organ UBERON_0035104 raphe of penis +UBERON_0003133 reproductive organ UBERON_0035105 sac of scrotum +UBERON_0003133 reproductive organ UBERON_0035142 preputial space of male +UBERON_0003133 reproductive organ UBERON_0035143 preputial space of female +UBERON_0003133 reproductive organ UBERON_0035144 preputial space +UBERON_0003133 reproductive organ UBERON_0035258 mons pubis +UBERON_0003133 reproductive organ UBERON_0035465 endometrial cavity +UBERON_0003133 reproductive organ UBERON_0035651 glans +UBERON_0003133 reproductive organ UBERON_0035956 epididymal lumen +UBERON_0003133 reproductive organ UBERON_0035962 supravaginal part of cervix +UBERON_0003133 reproductive organ UBERON_0036262 uterine ligament +UBERON_0003133 reproductive organ UBERON_0036292 adnexa of uterus +UBERON_0003133 reproductive organ UBERON_0036441 wall of uterine tube +UBERON_0003133 reproductive organ UBERON_0036523 wall of vagina +UBERON_0003133 reproductive organ UBERON_0039288 rima vulvae +UBERON_0003133 reproductive organ UBERON_0039421 superficial dorsal vein of penis +UBERON_0003133 reproductive organ UBERON_0039422 dorsal vein of penis +UBERON_0003133 reproductive organ UBERON_2001263 ovarian follicle stage I +UBERON_0003133 reproductive organ UBERON_2001265 ovarian follicle stage II +UBERON_0003133 reproductive organ UBERON_2001266 ovarian follicle stage III +UBERON_0003133 reproductive organ UBERON_2001571 postovulatory follicle +UBERON_0003133 reproductive organ UBERON_3010240 Nobelian rod +UBERON_0003133 reproductive organ UBERON_3010259 phallodeum +UBERON_0003133 reproductive organ UBERON_3010260 intromittent organ (Ascaphus type) +UBERON_0003133 reproductive organ UBERON_3010529 ovisac +UBERON_0003133 reproductive organ UBERON_3010586 vasa efferentia +UBERON_0003133 reproductive organ UBERON_4100111 hemipenal sheath +UBERON_0003133 reproductive organ UBERON_4300018 ventral marginal cartilage +UBERON_0003133 reproductive organ UBERON_8410010 fimbria of uterine tube +UBERON_0003133 reproductive organ UBERON_8450001 egg follicle +UBERON_0004765 skeletal element UBERON_0000041 odontode scale +UBERON_0004765 skeletal element UBERON_0000130 transverse foramen +UBERON_0004765 skeletal element UBERON_0000144 trochlea of humerus +UBERON_0004765 skeletal element UBERON_0000199 neck of radius +UBERON_0004765 skeletal element UBERON_0000209 tetrapod frontal bone +UBERON_0004765 skeletal element UBERON_0000210 tetrapod parietal bone +UBERON_0004765 skeletal element UBERON_0000218 vertebral arch of axis +UBERON_0004765 skeletal element UBERON_0000219 vertebral foramen of atlas +UBERON_0004765 skeletal element UBERON_0000221 supraauricular point +UBERON_0004765 skeletal element UBERON_0000312 inner cambium layer of periosteum +UBERON_0004765 skeletal element UBERON_0000313 portion of cartilage tissue in tibia +UBERON_0004765 skeletal element UBERON_0000332 yellow bone marrow +UBERON_0004765 skeletal element UBERON_0000361 red bone marrow +UBERON_0004765 skeletal element UBERON_0000398 cartilage tissue of sternum +UBERON_0004765 skeletal element UBERON_0000401 mandibular ramus +UBERON_0004765 skeletal element UBERON_0000975 sternum +UBERON_0004765 skeletal element UBERON_0000976 humerus +UBERON_0004765 skeletal element UBERON_0000979 tibia +UBERON_0004765 skeletal element UBERON_0000980 trochanter +UBERON_0004765 skeletal element UBERON_0000981 femur +UBERON_0004765 skeletal element UBERON_0001010 diaphysis of ulna +UBERON_0004765 skeletal element UBERON_0001012 head of radius +UBERON_0004765 skeletal element UBERON_0001028 diaphysis of radius +UBERON_0004765 skeletal element UBERON_0001066 intervertebral disk +UBERON_0004765 skeletal element UBERON_0001067 vertebral arch joint +UBERON_0004765 skeletal element UBERON_0001075 bony vertebral centrum +UBERON_0004765 skeletal element UBERON_0001076 neural spine +UBERON_0004765 skeletal element UBERON_0001077 transverse process of vertebra +UBERON_0004765 skeletal element UBERON_0001078 pedicle of vertebra +UBERON_0004765 skeletal element UBERON_0001079 prezygapophysis +UBERON_0004765 skeletal element UBERON_0001080 postzygapophysis +UBERON_0004765 skeletal element UBERON_0001091 calcareous tooth +UBERON_0004765 skeletal element UBERON_0001092 vertebral bone 1 +UBERON_0004765 skeletal element UBERON_0001093 vertebral bone 2 +UBERON_0004765 skeletal element UBERON_0001094 sacral vertebra +UBERON_0004765 skeletal element UBERON_0001095 caudal vertebra +UBERON_0004765 skeletal element UBERON_0001098 incisor tooth +UBERON_0004765 skeletal element UBERON_0001102 cartilage of main bronchus +UBERON_0004765 skeletal element UBERON_0001105 clavicle bone +UBERON_0004765 skeletal element UBERON_0001131 vertebral foramen +UBERON_0004765 skeletal element UBERON_0001269 acetabular part of hip bone +UBERON_0004765 skeletal element UBERON_0001272 innominate bone +UBERON_0004765 skeletal element UBERON_0001273 ilium +UBERON_0004765 skeletal element UBERON_0001274 ischium +UBERON_0004765 skeletal element UBERON_0001275 pubis +UBERON_0004765 skeletal element UBERON_0001350 coccyx +UBERON_0004765 skeletal element UBERON_0001423 radius bone +UBERON_0004765 skeletal element UBERON_0001424 ulna +UBERON_0004765 skeletal element UBERON_0001427 radiale +UBERON_0004765 skeletal element UBERON_0001428 intermedium +UBERON_0004765 skeletal element UBERON_0001429 pisiform +UBERON_0004765 skeletal element UBERON_0001430 distal carpal bone 1 +UBERON_0004765 skeletal element UBERON_0001431 distal carpal bone 2 +UBERON_0004765 skeletal element UBERON_0001432 distal carpal bone 3 +UBERON_0004765 skeletal element UBERON_0001433 distal carpal bone 4 +UBERON_0004765 skeletal element UBERON_0001435 carpal bone +UBERON_0004765 skeletal element UBERON_0001436 phalanx of manus +UBERON_0004765 skeletal element UBERON_0001437 epiphysis +UBERON_0004765 skeletal element UBERON_0001438 metaphysis +UBERON_0004765 skeletal element UBERON_0001439 compact bone tissue +UBERON_0004765 skeletal element UBERON_0001446 fibula +UBERON_0004765 skeletal element UBERON_0001447 tarsal bone +UBERON_0004765 skeletal element UBERON_0001448 metatarsal bone +UBERON_0004765 skeletal element UBERON_0001449 phalanx of pes +UBERON_0004765 skeletal element UBERON_0001450 calcaneus +UBERON_0004765 skeletal element UBERON_0001451 navicular bone of pes +UBERON_0004765 skeletal element UBERON_0001452 distal tarsal bone 1 +UBERON_0004765 skeletal element UBERON_0001453 distal tarsal bone 2 +UBERON_0004765 skeletal element UBERON_0001454 distal tarsal bone 3 +UBERON_0004765 skeletal element UBERON_0001455 cuboid bone +UBERON_0004765 skeletal element UBERON_0001470 glenohumeral joint +UBERON_0004765 skeletal element UBERON_0001474 bone element +UBERON_0004765 skeletal element UBERON_0001479 sesamoid bone +UBERON_0004765 skeletal element UBERON_0001480 proximal carpal bone +UBERON_0004765 skeletal element UBERON_0001481 distal carpal bone +UBERON_0004765 skeletal element UBERON_0001676 occipital bone +UBERON_0004765 skeletal element UBERON_0001677 sphenoid bone +UBERON_0004765 skeletal element UBERON_0001678 temporal bone +UBERON_0004765 skeletal element UBERON_0001679 ethmoid bone +UBERON_0004765 skeletal element UBERON_0001680 lacrimal bone +UBERON_0004765 skeletal element UBERON_0001681 nasal bone +UBERON_0004765 skeletal element UBERON_0001682 palatine bone +UBERON_0004765 skeletal element UBERON_0001683 jugal bone +UBERON_0004765 skeletal element UBERON_0001684 mandible +UBERON_0004765 skeletal element UBERON_0001685 hyoid bone +UBERON_0004765 skeletal element UBERON_0001686 auditory ossicle bone +UBERON_0004765 skeletal element UBERON_0001687 stapes bone +UBERON_0004765 skeletal element UBERON_0001688 incus bone +UBERON_0004765 skeletal element UBERON_0001689 malleus bone +UBERON_0004765 skeletal element UBERON_0001692 basioccipital bone +UBERON_0004765 skeletal element UBERON_0001693 exoccipital bone +UBERON_0004765 skeletal element UBERON_0001694 petrous part of temporal bone +UBERON_0004765 skeletal element UBERON_0001695 squamous part of temporal bone +UBERON_0004765 skeletal element UBERON_0001698 foramen ovale of skull +UBERON_0004765 skeletal element UBERON_0001724 sphenoidal sinus +UBERON_0004765 skeletal element UBERON_0001738 thyroid cartilage +UBERON_0004765 skeletal element UBERON_0001739 laryngeal cartilage +UBERON_0004765 skeletal element UBERON_0001740 arytenoid cartilage +UBERON_0004765 skeletal element UBERON_0001741 corniculate cartilage +UBERON_0004765 skeletal element UBERON_0001742 epiglottic cartilage +UBERON_0004765 skeletal element UBERON_0001751 dentine +UBERON_0004765 skeletal element UBERON_0001752 enamel +UBERON_0004765 skeletal element UBERON_0001753 cementum +UBERON_0004765 skeletal element UBERON_0001754 dental pulp +UBERON_0004765 skeletal element UBERON_0001755 distal part of styloid process of temporal bone +UBERON_0004765 skeletal element UBERON_0001762 turbinate bone +UBERON_0004765 skeletal element UBERON_0001764 maxillary sinus +UBERON_0004765 skeletal element UBERON_0001823 nasal cartilage +UBERON_0004765 skeletal element UBERON_0001839 bony labyrinth +UBERON_0004765 skeletal element UBERON_0001844 cochlea +UBERON_0004765 skeletal element UBERON_0001845 perilymph +UBERON_0004765 skeletal element UBERON_0001848 auricular cartilage +UBERON_0004765 skeletal element UBERON_0001852 endolymph +UBERON_0004765 skeletal element UBERON_0001863 scala vestibuli +UBERON_0004765 skeletal element UBERON_0001864 scala tympani +UBERON_0004765 skeletal element UBERON_0001867 cartilage of external ear +UBERON_0004765 skeletal element UBERON_0001956 cartilage of bronchus +UBERON_0004765 skeletal element UBERON_0001994 hyaline cartilage tissue +UBERON_0004765 skeletal element UBERON_0001995 fibrocartilage +UBERON_0004765 skeletal element UBERON_0001996 elastic cartilage tissue +UBERON_0004765 skeletal element UBERON_0002205 manubrium of sternum +UBERON_0004765 skeletal element UBERON_0002207 xiphoid process +UBERON_0004765 skeletal element UBERON_0002208 sternebra +UBERON_0004765 skeletal element UBERON_0002218 tympanic ring +UBERON_0004765 skeletal element UBERON_0002222 perichondrium +UBERON_0004765 skeletal element UBERON_0002225 costal arch +UBERON_0004765 skeletal element UBERON_0002228 rib +UBERON_0004765 skeletal element UBERON_0002229 interparietal bone +UBERON_0004765 skeletal element UBERON_0002230 head of rib +UBERON_0004765 skeletal element UBERON_0002231 body of rib +UBERON_0004765 skeletal element UBERON_0002234 proximal phalanx of manus +UBERON_0004765 skeletal element UBERON_0002235 tubercle of rib +UBERON_0004765 skeletal element UBERON_0002236 costal cartilage +UBERON_0004765 skeletal element UBERON_0002237 true rib +UBERON_0004765 skeletal element UBERON_0002238 false rib +UBERON_0004765 skeletal element UBERON_0002239 floating rib +UBERON_0004765 skeletal element UBERON_0002242 nucleus pulposus +UBERON_0004765 skeletal element UBERON_0002244 premaxilla +UBERON_0004765 skeletal element UBERON_0002279 vestibular aqueduct +UBERON_0004765 skeletal element UBERON_0002295 scala media +UBERON_0004765 skeletal element UBERON_0002347 thoracic vertebra +UBERON_0004765 skeletal element UBERON_0002371 bone marrow +UBERON_0004765 skeletal element UBERON_0002374 metacarpal bone +UBERON_0004765 skeletal element UBERON_0002375 cricoid cartilage +UBERON_0004765 skeletal element UBERON_0002395 talus +UBERON_0004765 skeletal element UBERON_0002396 vomer +UBERON_0004765 skeletal element UBERON_0002397 maxilla +UBERON_0004765 skeletal element UBERON_0002412 vertebra +UBERON_0004765 skeletal element UBERON_0002413 cervical vertebra +UBERON_0004765 skeletal element UBERON_0002414 lumbar vertebra +UBERON_0004765 skeletal element UBERON_0002418 cartilage tissue +UBERON_0004765 skeletal element UBERON_0002428 limb bone +UBERON_0004765 skeletal element UBERON_0002445 ulnare +UBERON_0004765 skeletal element UBERON_0002446 patella +UBERON_0004765 skeletal element UBERON_0002478 orbitosphenoid +UBERON_0004765 skeletal element UBERON_0002481 bone tissue +UBERON_0004765 skeletal element UBERON_0002482 lamellar bone +UBERON_0004765 skeletal element UBERON_0002483 trabecular bone tissue +UBERON_0004765 skeletal element UBERON_0002484 bone marrow cavity +UBERON_0004765 skeletal element UBERON_0002487 tooth cavity +UBERON_0004765 skeletal element UBERON_0002495 long bone +UBERON_0004765 skeletal element UBERON_0002496 stapes base +UBERON_0004765 skeletal element UBERON_0002497 acromion +UBERON_0004765 skeletal element UBERON_0002498 deltopectoral crest +UBERON_0004765 skeletal element UBERON_0002500 zygomatic arch +UBERON_0004765 skeletal element UBERON_0002501 oval window +UBERON_0004765 skeletal element UBERON_0002502 round window of inner ear +UBERON_0004765 skeletal element UBERON_0002503 greater trochanter +UBERON_0004765 skeletal element UBERON_0002504 lesser trochanter +UBERON_0004765 skeletal element UBERON_0002513 endochondral bone +UBERON_0004765 skeletal element UBERON_0002514 intramembranous bone +UBERON_0004765 skeletal element UBERON_0002515 periosteum +UBERON_0004765 skeletal element UBERON_0002516 epiphyseal plate +UBERON_0004765 skeletal element UBERON_0002819 apex of cochlea +UBERON_0004765 skeletal element UBERON_0003106 urostyle +UBERON_0004765 skeletal element UBERON_0003107 Meckel's cartilage +UBERON_0004765 skeletal element UBERON_0003109 parapophysis +UBERON_0004765 skeletal element UBERON_0003221 phalanx +UBERON_0004765 skeletal element UBERON_0003253 neck of rib +UBERON_0004765 skeletal element UBERON_0003267 tooth of upper jaw +UBERON_0004765 skeletal element UBERON_0003268 tooth of lower jaw +UBERON_0004765 skeletal element UBERON_0003317 odontogenic papilla of incisor +UBERON_0004765 skeletal element UBERON_0003355 epithelium of incisor +UBERON_0004765 skeletal element UBERON_0003406 cartilage of respiratory system +UBERON_0004765 skeletal element UBERON_0003407 cartilage of nasal septum +UBERON_0004765 skeletal element UBERON_0003414 mesenchyme of mandible +UBERON_0004765 skeletal element UBERON_0003449 tail intervertebral disc +UBERON_0004765 skeletal element UBERON_0003450 upper jaw incisor +UBERON_0004765 skeletal element UBERON_0003451 lower jaw incisor +UBERON_0004765 skeletal element UBERON_0003457 head bone +UBERON_0004765 skeletal element UBERON_0003458 neck bone +UBERON_0004765 skeletal element UBERON_0003459 chest bone +UBERON_0004765 skeletal element UBERON_0003460 arm bone +UBERON_0004765 skeletal element UBERON_0003461 shoulder bone +UBERON_0004765 skeletal element UBERON_0003462 facial bone +UBERON_0004765 skeletal element UBERON_0003463 trunk bone +UBERON_0004765 skeletal element UBERON_0003464 hindlimb bone +UBERON_0004765 skeletal element UBERON_0003466 forelimb zeugopod bone +UBERON_0004765 skeletal element UBERON_0003467 sesamoid bone of gastrocnemius +UBERON_0004765 skeletal element UBERON_0003482 vein of trabecular bone +UBERON_0004765 skeletal element UBERON_0003601 neck cartilage +UBERON_0004765 skeletal element UBERON_0003603 lower respiratory tract cartilage +UBERON_0004765 skeletal element UBERON_0003604 trachea cartilage +UBERON_0004765 skeletal element UBERON_0003606 limb long bone +UBERON_0004765 skeletal element UBERON_0003607 forelimb long bone +UBERON_0004765 skeletal element UBERON_0003608 hindlimb long bone +UBERON_0004765 skeletal element UBERON_0003620 manual digit 1 phalanx +UBERON_0004765 skeletal element UBERON_0003636 manual digit 2 phalanx +UBERON_0004765 skeletal element UBERON_0003637 manual digit 3 phalanx +UBERON_0004765 skeletal element UBERON_0003638 manual digit 4 phalanx +UBERON_0004765 skeletal element UBERON_0003639 manual digit 5 phalanx +UBERON_0004765 skeletal element UBERON_0003640 pedal digit 1 phalanx +UBERON_0004765 skeletal element UBERON_0003641 pedal digit 2 phalanx +UBERON_0004765 skeletal element UBERON_0003642 pedal digit 3 phalanx +UBERON_0004765 skeletal element UBERON_0003645 metacarpal bone of digit 1 +UBERON_0004765 skeletal element UBERON_0003646 metacarpal bone of digit 2 +UBERON_0004765 skeletal element UBERON_0003647 metacarpal bone of digit 3 +UBERON_0004765 skeletal element UBERON_0003648 metacarpal bone of digit 4 +UBERON_0004765 skeletal element UBERON_0003649 metacarpal bone of digit 5 +UBERON_0004765 skeletal element UBERON_0003650 metatarsal bone of digit 1 +UBERON_0004765 skeletal element UBERON_0003651 metatarsal bone of digit 2 +UBERON_0004765 skeletal element UBERON_0003652 metatarsal bone of digit 3 +UBERON_0004765 skeletal element UBERON_0003653 metatarsal bone of digit 4 +UBERON_0004765 skeletal element UBERON_0003654 metatarsal bone of digit 5 +UBERON_0004765 skeletal element UBERON_0003655 molar tooth +UBERON_0004765 skeletal element UBERON_0003656 mesopodium bone +UBERON_0004765 skeletal element UBERON_0003666 upper jaw molar +UBERON_0004765 skeletal element UBERON_0003667 lower jaw molar +UBERON_0004765 skeletal element UBERON_0003674 cuspid +UBERON_0004765 skeletal element UBERON_0003675 tooth crown +UBERON_0004765 skeletal element UBERON_0003677 tooth root +UBERON_0004765 skeletal element UBERON_0003678 tooth apex +UBERON_0004765 skeletal element UBERON_0003686 tooth socket +UBERON_0004765 skeletal element UBERON_0003687 foramen magnum +UBERON_0004765 skeletal element UBERON_0003689 sella turcica +UBERON_0004765 skeletal element UBERON_0003690 fused sacrum +UBERON_0004765 skeletal element UBERON_0003699 pubic symphysis +UBERON_0004765 skeletal element UBERON_0003720 anterior cranial fossa +UBERON_0004765 skeletal element UBERON_0003722 middle cranial fossa +UBERON_0004765 skeletal element UBERON_0003821 metapodium bone +UBERON_0004765 skeletal element UBERON_0003826 upper leg bone +UBERON_0004765 skeletal element UBERON_0003827 thoracic segment bone +UBERON_0004765 skeletal element UBERON_0003828 abdominal segment bone +UBERON_0004765 skeletal element UBERON_0003861 neural arch +UBERON_0004765 skeletal element UBERON_0003862 pedal digit 4 phalanx +UBERON_0004765 skeletal element UBERON_0003863 pedal digit 5 phalanx +UBERON_0004765 skeletal element UBERON_0003864 middle phalanx of manus +UBERON_0004765 skeletal element UBERON_0003865 distal phalanx of manus +UBERON_0004765 skeletal element UBERON_0003866 middle phalanx of pes +UBERON_0004765 skeletal element UBERON_0003867 distal phalanx of pes +UBERON_0004765 skeletal element UBERON_0003868 proximal phalanx of pes +UBERON_0004765 skeletal element UBERON_0003912 chitinous tooth +UBERON_0004765 skeletal element UBERON_0003913 tooth-like structure +UBERON_0004765 skeletal element UBERON_0003932 cartilage element of chondrocranium +UBERON_0004765 skeletal element UBERON_0003933 cranial cartilage +UBERON_0004765 skeletal element UBERON_0003955 molar crown +UBERON_0004765 skeletal element UBERON_0003958 long bone epiphyseal ossification zone +UBERON_0004765 skeletal element UBERON_0003960 styloid process of temporal bone +UBERON_0004765 skeletal element UBERON_0003966 gonial bone +UBERON_0004765 skeletal element UBERON_0003971 interfrontal bone +UBERON_0004765 skeletal element UBERON_0003973 nasal concha of ethmoid bone +UBERON_0004765 skeletal element UBERON_0003995 subarcuate fossa +UBERON_0004765 skeletal element UBERON_0003996 cervical vertebra 1 arcus anterior +UBERON_0004765 skeletal element UBERON_0003997 hyoid bone greater horn +UBERON_0004765 skeletal element UBERON_0003998 hyoid bone lesser horn +UBERON_0004765 skeletal element UBERON_0003999 hyoid bone body +UBERON_0004765 skeletal element UBERON_0004096 odontoid process of cervical vertebra 2 +UBERON_0004765 skeletal element UBERON_0004098 tibial plateaux +UBERON_0004765 skeletal element UBERON_0004103 alveolar ridge +UBERON_0004765 skeletal element UBERON_0004106 crus of ear +UBERON_0004765 skeletal element UBERON_0004108 clivus of occipital bone +UBERON_0004765 skeletal element UBERON_0004109 cortex of humerus +UBERON_0004765 skeletal element UBERON_0004129 growth plate cartilage +UBERON_0004765 skeletal element UBERON_0004247 bone of dorsum +UBERON_0004765 skeletal element UBERON_0004248 pedal digit bone +UBERON_0004765 skeletal element UBERON_0004249 manual digit bone +UBERON_0004765 skeletal element UBERON_0004250 upper arm bone +UBERON_0004765 skeletal element UBERON_0004251 hindlimb zeugopod bone +UBERON_0004765 skeletal element UBERON_0004300 distal phalanx +UBERON_0004765 skeletal element UBERON_0004301 middle phalanx +UBERON_0004765 skeletal element UBERON_0004302 proximal phalanx +UBERON_0004765 skeletal element UBERON_0004311 distal phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0004312 distal phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0004313 distal phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0004314 distal phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0004315 distal phalanx of pedal digit 1 +UBERON_0004765 skeletal element UBERON_0004316 distal phalanx of pedal digit 2 +UBERON_0004765 skeletal element UBERON_0004317 distal phalanx of pedal digit 3 +UBERON_0004765 skeletal element UBERON_0004318 distal phalanx of pedal digit 4 +UBERON_0004765 skeletal element UBERON_0004319 distal phalanx of pedal digit 5 +UBERON_0004765 skeletal element UBERON_0004320 middle phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0004321 middle phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0004322 middle phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0004323 middle phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0004324 middle phalanx of pedal digit 2 +UBERON_0004765 skeletal element UBERON_0004325 middle phalanx of pedal digit 3 +UBERON_0004765 skeletal element UBERON_0004326 middle phalanx of pedal digit 4 +UBERON_0004765 skeletal element UBERON_0004327 middle phalanx of pedal digit 5 +UBERON_0004765 skeletal element UBERON_0004328 proximal phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0004329 proximal phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0004330 proximal phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0004331 proximal phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0004332 proximal phalanx of pedal digit 1 +UBERON_0004765 skeletal element UBERON_0004333 proximal phalanx of pedal digit 2 +UBERON_0004765 skeletal element UBERON_0004334 proximal phalanx of pedal digit 3 +UBERON_0004765 skeletal element UBERON_0004335 proximal phalanx of pedal digit 4 +UBERON_0004765 skeletal element UBERON_0004336 proximal phalanx of pedal digit 5 +UBERON_0004765 skeletal element UBERON_0004337 distal phalanx of manual digit 1 +UBERON_0004765 skeletal element UBERON_0004338 proximal phalanx of manual digit 1 +UBERON_0004765 skeletal element UBERON_0004368 Reichert's cartilage +UBERON_0004765 skeletal element UBERON_0004375 bone of free limb or fin +UBERON_0004765 skeletal element UBERON_0004376 fin bone +UBERON_0004765 skeletal element UBERON_0004377 distal metaphysis +UBERON_0004765 skeletal element UBERON_0004378 proximal metaphysis +UBERON_0004765 skeletal element UBERON_0004379 distal epiphysis +UBERON_0004765 skeletal element UBERON_0004380 proximal epiphysis +UBERON_0004765 skeletal element UBERON_0004382 epiphysis of humerus +UBERON_0004765 skeletal element UBERON_0004383 epiphysis of tibia +UBERON_0004765 skeletal element UBERON_0004384 epiphysis of femur +UBERON_0004765 skeletal element UBERON_0004385 epiphysis of radius +UBERON_0004765 skeletal element UBERON_0004386 epiphysis of ulna +UBERON_0004765 skeletal element UBERON_0004387 epiphysis of phalanx of manus +UBERON_0004765 skeletal element UBERON_0004388 epiphysis of fibula +UBERON_0004765 skeletal element UBERON_0004389 epiphysis of metatarsal bone +UBERON_0004765 skeletal element UBERON_0004390 epiphysis of metacarpal bone +UBERON_0004765 skeletal element UBERON_0004391 epiphysis of first metacarpal bone +UBERON_0004765 skeletal element UBERON_0004392 epiphysis of second metacarpal bone +UBERON_0004765 skeletal element UBERON_0004393 epiphysis of third metacarpal bone +UBERON_0004765 skeletal element UBERON_0004394 epiphysis of fourth metacarpal bone +UBERON_0004765 skeletal element UBERON_0004395 epiphysis of first metatarsal bone +UBERON_0004765 skeletal element UBERON_0004396 epiphysis of second metatarsal bone +UBERON_0004765 skeletal element UBERON_0004397 epiphysis of third metatarsal bone +UBERON_0004765 skeletal element UBERON_0004398 epiphysis of fourth metatarsal bone +UBERON_0004765 skeletal element UBERON_0004399 epiphysis of fifth metatarsal bone +UBERON_0004765 skeletal element UBERON_0004400 bone tissue of epiphysis +UBERON_0004765 skeletal element UBERON_0004401 bone tissue of distal epiphysis +UBERON_0004765 skeletal element UBERON_0004402 bone tissue of proximal epiphysis +UBERON_0004765 skeletal element UBERON_0004403 periosteum of epiphysis +UBERON_0004765 skeletal element UBERON_0004404 distal epiphysis of humerus +UBERON_0004765 skeletal element UBERON_0004405 distal epiphysis of tibia +UBERON_0004765 skeletal element UBERON_0004406 distal epiphysis of femur +UBERON_0004765 skeletal element UBERON_0004407 distal epiphysis of radius +UBERON_0004765 skeletal element UBERON_0004408 distal epiphysis of ulna +UBERON_0004765 skeletal element UBERON_0004409 distal epiphysis of phalanx of manus +UBERON_0004765 skeletal element UBERON_0004410 distal epiphysis of fibula +UBERON_0004765 skeletal element UBERON_0004411 proximal epiphysis of humerus +UBERON_0004765 skeletal element UBERON_0004412 proximal epiphysis of femur +UBERON_0004765 skeletal element UBERON_0004413 proximal epiphysis of radius +UBERON_0004765 skeletal element UBERON_0004414 proximal epiphysis of phalanx of manus +UBERON_0004765 skeletal element UBERON_0004415 proximal epiphysis of metatarsal bone +UBERON_0004765 skeletal element UBERON_0004416 proximal epiphysis of metacarpal bone +UBERON_0004765 skeletal element UBERON_0004417 proximal epiphysis of phalanx of manual digit 1 +UBERON_0004765 skeletal element UBERON_0004418 proximal epiphysis of phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0004419 proximal epiphysis of phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0004420 proximal epiphysis of phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0004421 proximal epiphysis of phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0004422 proximal epiphysis of first metacarpal bone +UBERON_0004765 skeletal element UBERON_0004423 proximal epiphysis of second metacarpal bone +UBERON_0004765 skeletal element UBERON_0004424 proximal epiphysis of third metacarpal bone +UBERON_0004765 skeletal element UBERON_0004425 proximal epiphysis of fourth metacarpal bone +UBERON_0004765 skeletal element UBERON_0004426 proximal epiphysis of fifth metacarpal bone +UBERON_0004765 skeletal element UBERON_0004427 proximal epiphysis of first metatarsal bone +UBERON_0004765 skeletal element UBERON_0004428 proximal epiphysis of second metatarsal bone +UBERON_0004765 skeletal element UBERON_0004429 proximal epiphysis of third metatarsal bone +UBERON_0004765 skeletal element UBERON_0004430 proximal epiphysis of fourth metatarsal bone +UBERON_0004765 skeletal element UBERON_0004431 proximal epiphysis of fifth metatarsal bone +UBERON_0004765 skeletal element UBERON_0004432 proximal epiphysis of distal phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0004433 proximal epiphysis of distal phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0004434 proximal epiphysis of distal phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0004435 proximal epiphysis of distal phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0004436 proximal epiphysis of middle phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0004437 proximal epiphysis of middle phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0004438 proximal epiphysis of middle phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0004439 proximal epiphysis of middle phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0004440 proximal epiphysis of proximal phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0004441 proximal epiphysis of proximal phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0004442 proximal epiphysis of proximal phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0004443 proximal epiphysis of proximal phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0004444 proximal epiphysis of distal phalanx of manual digit 1 +UBERON_0004765 skeletal element UBERON_0004445 proximal epiphysis of proximal phalanx of manual digit 1 +UBERON_0004765 skeletal element UBERON_0004446 epiphysis of phalanx +UBERON_0004765 skeletal element UBERON_0004447 proximal epiphysis of phalanx +UBERON_0004765 skeletal element UBERON_0004448 distal epiphysis of phalanx +UBERON_0004765 skeletal element UBERON_0004451 trunk or cervical vertebra +UBERON_0004765 skeletal element UBERON_0004527 alveolar process of maxilla +UBERON_0004765 skeletal element UBERON_0004528 alveolar ridge of mandible +UBERON_0004765 skeletal element UBERON_0004530 bony projection +UBERON_0004765 skeletal element UBERON_0004546 cribriform plate +UBERON_0004765 skeletal element UBERON_0004601 rib 1 +UBERON_0004765 skeletal element UBERON_0004602 rib 2 +UBERON_0004765 skeletal element UBERON_0004603 rib 3 +UBERON_0004765 skeletal element UBERON_0004604 rib 4 +UBERON_0004765 skeletal element UBERON_0004605 rib 5 +UBERON_0004765 skeletal element UBERON_0004606 rib 6 +UBERON_0004765 skeletal element UBERON_0004607 rib 7 +UBERON_0004765 skeletal element UBERON_0004608 rib 9 +UBERON_0004765 skeletal element UBERON_0004609 rib 10 +UBERON_0004765 skeletal element UBERON_0004610 rib 11 +UBERON_0004765 skeletal element UBERON_0004611 rib 12 +UBERON_0004765 skeletal element UBERON_0004612 mammalian cervical vertebra 3 +UBERON_0004765 skeletal element UBERON_0004613 mammalian cervical vertebra 4 +UBERON_0004765 skeletal element UBERON_0004614 mammalian cervical vertebra 5 +UBERON_0004765 skeletal element UBERON_0004615 mammalian cervical vertebra 6 +UBERON_0004765 skeletal element UBERON_0004616 mammalian cervical vertebra 7 +UBERON_0004765 skeletal element UBERON_0004617 lumbar vertebra 1 +UBERON_0004765 skeletal element UBERON_0004618 lumbar vertebra 2 +UBERON_0004765 skeletal element UBERON_0004619 lumbar vertebra 3 +UBERON_0004765 skeletal element UBERON_0004620 lumbar vertebra 4 +UBERON_0004765 skeletal element UBERON_0004621 lumbar vertebra 5 +UBERON_0004765 skeletal element UBERON_0004622 sacral vertebra 1 +UBERON_0004765 skeletal element UBERON_0004623 sacral vertebra 2 +UBERON_0004765 skeletal element UBERON_0004624 sacral vertebra 3 +UBERON_0004765 skeletal element UBERON_0004625 sacral vertebra 4 +UBERON_0004765 skeletal element UBERON_0004626 thoracic vertebra 1 +UBERON_0004765 skeletal element UBERON_0004627 thoracic vertebra 2 +UBERON_0004765 skeletal element UBERON_0004628 thoracic vertebra 3 +UBERON_0004765 skeletal element UBERON_0004629 thoracic vertebra 4 +UBERON_0004765 skeletal element UBERON_0004630 thoracic vertebra 5 +UBERON_0004765 skeletal element UBERON_0004631 thoracic vertebra 6 +UBERON_0004765 skeletal element UBERON_0004632 thoracic vertebra 7 +UBERON_0004765 skeletal element UBERON_0004633 thoracic vertebra 9 +UBERON_0004765 skeletal element UBERON_0004634 thoracic vertebra 10 +UBERON_0004765 skeletal element UBERON_0004635 thoracic vertebra 11 +UBERON_0004765 skeletal element UBERON_0004636 thoracic vertebra 12 +UBERON_0004765 skeletal element UBERON_0004637 otic capsule +UBERON_0004765 skeletal element UBERON_0004649 sphenoid bone pterygoid process +UBERON_0004765 skeletal element UBERON_0004651 scapula spine +UBERON_0004765 skeletal element UBERON_0004652 humerus diaphysis +UBERON_0004765 skeletal element UBERON_0004654 temporal process of zygomatic bone +UBERON_0004765 skeletal element UBERON_0004655 zygomatic process of temporal bone +UBERON_0004765 skeletal element UBERON_0004657 mandible condylar process +UBERON_0004765 skeletal element UBERON_0004658 mandible head +UBERON_0004765 skeletal element UBERON_0004659 mandible neck +UBERON_0004765 skeletal element UBERON_0004660 mandible coronoid process +UBERON_0004765 skeletal element UBERON_0004661 mandible temporal crest +UBERON_0004765 skeletal element UBERON_0004662 vertebra lamina +UBERON_0004765 skeletal element UBERON_0004704 bone fossa +UBERON_0004765 skeletal element UBERON_0004705 fenestra +UBERON_0004765 skeletal element UBERON_0004715 annulus fibrosus disci intervertebralis +UBERON_0004765 skeletal element UBERON_0004740 basibranchial bone +UBERON_0004765 skeletal element UBERON_0004741 cleithrum +UBERON_0004765 skeletal element UBERON_0004742 dentary +UBERON_0004765 skeletal element UBERON_0004743 coracoid bone +UBERON_0004765 skeletal element UBERON_0004744 articular/anguloarticular +UBERON_0004765 skeletal element UBERON_0004745 parasphenoid +UBERON_0004765 skeletal element UBERON_0004746 prootic bone +UBERON_0004765 skeletal element UBERON_0004747 supraoccipital bone +UBERON_0004765 skeletal element UBERON_0004751 hypohyal bone +UBERON_0004765 skeletal element UBERON_0004752 palatoquadrate cartilage +UBERON_0004765 skeletal element UBERON_0004753 scapulocoracoid +UBERON_0004765 skeletal element UBERON_0004755 skeletal tissue +UBERON_0004765 skeletal element UBERON_0004756 dermal skeletal element +UBERON_0004765 skeletal element UBERON_0004763 endochondral bone tissue +UBERON_0004765 skeletal element UBERON_0004764 intramembranous bone tissue +UBERON_0004765 skeletal element UBERON_0004765 skeletal element +UBERON_0004765 skeletal element UBERON_0004766 cranial bone +UBERON_0004765 skeletal element UBERON_0004767 vomerine tooth +UBERON_0004765 skeletal element UBERON_0004768 bone of lower jaw +UBERON_0004765 skeletal element UBERON_0004769 diaphysis +UBERON_0004765 skeletal element UBERON_0004858 cellular cartilage +UBERON_0004765 skeletal element UBERON_0004865 actinopterygian parietal bone +UBERON_0004765 skeletal element UBERON_0004866 actinopterygian frontal bone +UBERON_0004765 skeletal element UBERON_0005055 zone of long bone +UBERON_0004765 skeletal element UBERON_0005236 osseus labyrinth vestibule +UBERON_0004765 skeletal element UBERON_0005342 malleus head +UBERON_0004765 skeletal element UBERON_0005354 malleus processus brevis +UBERON_0004765 skeletal element UBERON_0005355 malleus neck +UBERON_0004765 skeletal element UBERON_0005410 cartilaginous otic capsule +UBERON_0004765 skeletal element UBERON_0005411 bony otic capsule +UBERON_0004765 skeletal element UBERON_0005446 foramen rotundum +UBERON_0004765 skeletal element UBERON_0005456 jugular foramen +UBERON_0004765 skeletal element UBERON_0005480 superior orbital fissure +UBERON_0004765 skeletal element UBERON_0005620 primary palate +UBERON_0004765 skeletal element UBERON_0005653 upper jaw molar epithelium +UBERON_0004765 skeletal element UBERON_0005654 lower jaw molar epithelium +UBERON_0004765 skeletal element UBERON_0005659 primary palate epithelium +UBERON_0004765 skeletal element UBERON_0005687 orbitosphenoid cartilage element +UBERON_0004765 skeletal element UBERON_0005700 upper jaw molar odontogenic papilla +UBERON_0004765 skeletal element UBERON_0005701 lower jaw molar odontogenic papilla +UBERON_0004765 skeletal element UBERON_0005705 primary palate mesenchyme +UBERON_0004765 skeletal element UBERON_0005707 upper jaw incisor odontogenic papilla +UBERON_0004765 skeletal element UBERON_0005708 lower jaw incisor odontogenic papilla +UBERON_0004765 skeletal element UBERON_0005709 upper jaw incisor epithelium +UBERON_0004765 skeletal element UBERON_0005710 lower jaw incisor epithelium +UBERON_0004765 skeletal element UBERON_0005744 bone foramen +UBERON_0004765 skeletal element UBERON_0005745 optic foramen +UBERON_0004765 skeletal element UBERON_0005808 bone tissue of long bone +UBERON_0004765 skeletal element UBERON_0005809 cortex of manus bone +UBERON_0004765 skeletal element UBERON_0005810 cervical vertebra 1 anterior tubercle +UBERON_0004765 skeletal element UBERON_0005814 arch of atlas +UBERON_0004765 skeletal element UBERON_0005815 anterior tubercle of transverse process of cervical vertebra +UBERON_0004765 skeletal element UBERON_0005816 posterior tubercle of transverse process of cervical vertebra +UBERON_0004765 skeletal element UBERON_0005869 maxillary process of inferior nasal concha +UBERON_0004765 skeletal element UBERON_0005871 palatine process of maxilla +UBERON_0004765 skeletal element UBERON_0005893 leg bone +UBERON_0004765 skeletal element UBERON_0005897 manus bone +UBERON_0004765 skeletal element UBERON_0005899 pes bone +UBERON_0004765 skeletal element UBERON_0005913 zone of bone organ +UBERON_0004765 skeletal element UBERON_0005919 supreme nasal concha +UBERON_0004765 skeletal element UBERON_0005920 superior nasal concha +UBERON_0004765 skeletal element UBERON_0005921 middle nasal concha +UBERON_0004765 skeletal element UBERON_0005922 inferior nasal concha +UBERON_0004765 skeletal element UBERON_0005925 ethmoidal process of inferior nasal concha +UBERON_0004765 skeletal element UBERON_0005945 neurocranial trabecula +UBERON_0004765 skeletal element UBERON_0005991 aortic valve anulus +UBERON_0004765 skeletal element UBERON_0005993 pulmonary valve anulus +UBERON_0004765 skeletal element UBERON_0005995 mitral valve anulus +UBERON_0004765 skeletal element UBERON_0005997 tricuspid valve anulus +UBERON_0004765 skeletal element UBERON_0006006 metoptic pillar +UBERON_0004765 skeletal element UBERON_0006008 fibrous ring of heart +UBERON_0004765 skeletal element UBERON_0006061 process of vertebra +UBERON_0004765 skeletal element UBERON_0006062 zygapophysis +UBERON_0004765 skeletal element UBERON_0006063 cartilaginous neural arch +UBERON_0004765 skeletal element UBERON_0006065 hemal arch +UBERON_0004765 skeletal element UBERON_0006068 bone of tail +UBERON_0004765 skeletal element UBERON_0006106 cochlear canal +UBERON_0004765 skeletal element UBERON_0006209 basioccipital cartilage element +UBERON_0004765 skeletal element UBERON_0006213 carpus cartilage element +UBERON_0004765 skeletal element UBERON_0006214 carpus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006228 exoccipital pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006231 facial bone primordium +UBERON_0004765 skeletal element UBERON_0006234 femur pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006245 humerus cartilage element +UBERON_0004765 skeletal element UBERON_0006246 humerus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006247 iliac pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006248 incus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006254 ischial cartilage element +UBERON_0004765 skeletal element UBERON_0006255 ischial pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006262 malleus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006271 orbital fissure +UBERON_0004765 skeletal element UBERON_0006285 pubic pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006286 radius cartilage element +UBERON_0004765 skeletal element UBERON_0006287 radius-ulna pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006288 rib cartilage element +UBERON_0004765 skeletal element UBERON_0006289 rib pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006290 scapula cartilage element +UBERON_0004765 skeletal element UBERON_0006291 scapula pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006294 stapes pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006295 sternebral bone pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0006306 ulna cartilage element +UBERON_0004765 skeletal element UBERON_0006326 base of arytenoid +UBERON_0004765 skeletal element UBERON_0006332 nasal capsule +UBERON_0004765 skeletal element UBERON_0006428 basisphenoid bone +UBERON_0004765 skeletal element UBERON_0006430 xiphoid cartilage +UBERON_0004765 skeletal element UBERON_0006431 xiphoid process bone +UBERON_0004765 skeletal element UBERON_0006435 os penis +UBERON_0004765 skeletal element UBERON_0006440 os clitoris +UBERON_0004765 skeletal element UBERON_0006444 annulus fibrosus +UBERON_0004765 skeletal element UBERON_0006494 apex of arytenoid +UBERON_0004765 skeletal element UBERON_0006495 osseus cochlear canal +UBERON_0004765 skeletal element UBERON_0006586 otolymph +UBERON_0004765 skeletal element UBERON_0006597 quadrate bone +UBERON_0004765 skeletal element UBERON_0006604 lamina orbitonasalis +UBERON_0004765 skeletal element UBERON_0006605 tectum synoticum +UBERON_0004765 skeletal element UBERON_0006633 coracoid process of scapula +UBERON_0004765 skeletal element UBERON_0006657 glenoid fossa +UBERON_0004765 skeletal element UBERON_0006667 pituitary fossa +UBERON_0004765 skeletal element UBERON_0006668 carotid canal +UBERON_0004765 skeletal element UBERON_0006669 alveolar canal +UBERON_0004765 skeletal element UBERON_0006672 incisive canal +UBERON_0004765 skeletal element UBERON_0006673 mandibular canal +UBERON_0004765 skeletal element UBERON_0006679 carina of trachea +UBERON_0004765 skeletal element UBERON_0006682 hypoglossal canal +UBERON_0004765 skeletal element UBERON_0006713 foramen cecum of frontal bone +UBERON_0004765 skeletal element UBERON_0006714 tibiofibula +UBERON_0004765 skeletal element UBERON_0006715 radio-ulna +UBERON_0004765 skeletal element UBERON_0006721 alisphenoid bone +UBERON_0004765 skeletal element UBERON_0006722 manubrium of malleus +UBERON_0004765 skeletal element UBERON_0006723 cochlear modiolus +UBERON_0004765 skeletal element UBERON_0006724 osseus spiral lamina +UBERON_0004765 skeletal element UBERON_0006767 head of femur +UBERON_0004765 skeletal element UBERON_0006768 epiphyseal line +UBERON_0004765 skeletal element UBERON_0006770 apophysis +UBERON_0004765 skeletal element UBERON_0006771 long bone epiphyseal plate proliferative zone +UBERON_0004765 skeletal element UBERON_0006772 long bone epiphyseal plate hypertrophic zone +UBERON_0004765 skeletal element UBERON_0006773 long bone epiphyseal plate ossification zone +UBERON_0004765 skeletal element UBERON_0006775 zone of epiphyseal plate +UBERON_0004765 skeletal element UBERON_0006776 annular epiphysis +UBERON_0004765 skeletal element UBERON_0006801 proximal head of humerus +UBERON_0004765 skeletal element UBERON_0006802 acetabular rim +UBERON_0004765 skeletal element UBERON_0006805 sternal end of clavicle +UBERON_0004765 skeletal element UBERON_0006806 entepicondyle of humerus +UBERON_0004765 skeletal element UBERON_0006807 ectepicondyle of humerus +UBERON_0004765 skeletal element UBERON_0006810 olecranon +UBERON_0004765 skeletal element UBERON_0006811 occipital condyle +UBERON_0004765 skeletal element UBERON_0006812 mental foramen +UBERON_0004765 skeletal element UBERON_0006820 body of sternum +UBERON_0004765 skeletal element UBERON_0006822 proximal epiphysis of ulna +UBERON_0004765 skeletal element UBERON_0006836 medial tibial tarsal bone +UBERON_0004765 skeletal element UBERON_0006837 tegmen tympani +UBERON_0004765 skeletal element UBERON_0006844 cusp of tooth +UBERON_0004765 skeletal element UBERON_0006849 scapula +UBERON_0004765 skeletal element UBERON_0006861 diaphysis proper +UBERON_0004765 skeletal element UBERON_0006862 diaphysis of femur +UBERON_0004765 skeletal element UBERON_0006863 proximal metaphysis of femur +UBERON_0004765 skeletal element UBERON_0006864 distal metaphysis of femur +UBERON_0004765 skeletal element UBERON_0006865 metaphysis of femur +UBERON_0004765 skeletal element UBERON_0006959 mandible angular process +UBERON_0004765 skeletal element UBERON_0006970 bony core of horn +UBERON_0004765 skeletal element UBERON_0007115 deciduous tooth +UBERON_0004765 skeletal element UBERON_0007119 neck of femur +UBERON_0004765 skeletal element UBERON_0007120 premolar tooth +UBERON_0004765 skeletal element UBERON_0007170 squamous part of occipital bone +UBERON_0004765 skeletal element UBERON_0007171 border of scapula +UBERON_0004765 skeletal element UBERON_0007172 angle of scapula +UBERON_0004765 skeletal element UBERON_0007173 lateral border of scapula +UBERON_0004765 skeletal element UBERON_0007174 medial border of scapula +UBERON_0004765 skeletal element UBERON_0007175 inferior angle of scapula +UBERON_0004765 skeletal element UBERON_0007176 superior angle of scapula +UBERON_0004765 skeletal element UBERON_0007195 stroma of bone marrow +UBERON_0004765 skeletal element UBERON_0007215 trabecula cranii +UBERON_0004765 skeletal element UBERON_0007223 osseus cochlea +UBERON_0004765 skeletal element UBERON_0007252 intervertebral disk of cervical vertebra +UBERON_0004765 skeletal element UBERON_0007254 intervertebral disk of thoracic vertebra +UBERON_0004765 skeletal element UBERON_0007255 intervertebral disk of lumbar vertebra +UBERON_0004765 skeletal element UBERON_0007257 intervertebral disk of sacral vertebra +UBERON_0004765 skeletal element UBERON_0007260 intervertebral disk of third cervical vertebra +UBERON_0004765 skeletal element UBERON_0007261 intervertebral disk of fourth cervical vertebra +UBERON_0004765 skeletal element UBERON_0007262 intervertebral disk of fifth cervical vertebra +UBERON_0004765 skeletal element UBERON_0007263 intervertebral disk of sixth cervical vertebra +UBERON_0004765 skeletal element UBERON_0007264 intervertebral disk of seventh cervical vertebra +UBERON_0004765 skeletal element UBERON_0007265 intervertebral disk of axis +UBERON_0004765 skeletal element UBERON_0007266 intervertebral disk of atlas +UBERON_0004765 skeletal element UBERON_0007354 cartilage of pharyngotympanic tube +UBERON_0004765 skeletal element UBERON_0007355 bony part of pharyngotympanic tube +UBERON_0004765 skeletal element UBERON_0007374 incus cartilage element +UBERON_0004765 skeletal element UBERON_0007380 dermal scale +UBERON_0004765 skeletal element UBERON_0007389 paired limb/fin cartilage +UBERON_0004765 skeletal element UBERON_0007390 pectoral appendage cartilage tissue +UBERON_0004765 skeletal element UBERON_0007391 pelvic appendage cartilage tissue +UBERON_0004765 skeletal element UBERON_0007719 bone of reproductive organ +UBERON_0004765 skeletal element UBERON_0007775 secondary tooth +UBERON_0004765 skeletal element UBERON_0007776 unerupted tooth +UBERON_0004765 skeletal element UBERON_0007800 proatlas +UBERON_0004765 skeletal element UBERON_0007801 pygostyle +UBERON_0004765 skeletal element UBERON_0007804 sclerotic ring +UBERON_0004765 skeletal element UBERON_0007805 synsacrum +UBERON_0004765 skeletal element UBERON_0007818 major alar cartilage +UBERON_0004765 skeletal element UBERON_0007819 minor alar cartilage +UBERON_0004765 skeletal element UBERON_0007820 accessory nasal cartilage +UBERON_0004765 skeletal element UBERON_0007821 lateral nasal cartilage +UBERON_0004765 skeletal element UBERON_0007822 vomeronasal cartilage +UBERON_0004765 skeletal element UBERON_0007828 girdle bone/zone +UBERON_0004765 skeletal element UBERON_0007829 pectoral girdle bone +UBERON_0004765 skeletal element UBERON_0007830 pelvic girdle bone/zone +UBERON_0004765 skeletal element UBERON_0007833 osseus semicircular canal +UBERON_0004765 skeletal element UBERON_0007841 furcula +UBERON_0004765 skeletal element UBERON_0007842 membrane bone +UBERON_0004765 skeletal element UBERON_0007843 uncinate process of ribs +UBERON_0004765 skeletal element UBERON_0007844 cartilage element +UBERON_0004765 skeletal element UBERON_0007914 bone of craniocervical region +UBERON_0004765 skeletal element UBERON_0007958 central carpal bone +UBERON_0004765 skeletal element UBERON_0007959 falciform carpal bone +UBERON_0004765 skeletal element UBERON_0007960 scapholunate +UBERON_0004765 skeletal element UBERON_0007990 proximal sesamoid bone of pes +UBERON_0004765 skeletal element UBERON_0007991 proximal sesamoid bone of manus +UBERON_0004765 skeletal element UBERON_0007993 ulnar sesamoid bone +UBERON_0004765 skeletal element UBERON_0007997 sesamoid bone of manus +UBERON_0004765 skeletal element UBERON_0008000 sesamoid bone of pes +UBERON_0004765 skeletal element UBERON_0008001 irregular bone +UBERON_0004765 skeletal element UBERON_0008115 surface of cartilage +UBERON_0004765 skeletal element UBERON_0008124 joint articular surface +UBERON_0004765 skeletal element UBERON_0008187 hypertrophic cartilage zone +UBERON_0004765 skeletal element UBERON_0008193 pneumatized bone +UBERON_0004765 skeletal element UBERON_0008194 tibiotarsus +UBERON_0004765 skeletal element UBERON_0008195 tarsometatarsus +UBERON_0004765 skeletal element UBERON_0008202 bone of hip region +UBERON_0004765 skeletal element UBERON_0008254 styliform cartilage +UBERON_0004765 skeletal element UBERON_0008255 right clavicle +UBERON_0004765 skeletal element UBERON_0008256 left clavicle +UBERON_0004765 skeletal element UBERON_0008257 radial sesamoid +UBERON_0004765 skeletal element UBERON_0008269 nacre +UBERON_0004765 skeletal element UBERON_0008304 inner chondrogenic layer of perichondrium +UBERON_0004765 skeletal element UBERON_0008305 outer fibrous layer of perichondrium +UBERON_0004765 skeletal element UBERON_0008426 transverse foramen of atlas +UBERON_0004765 skeletal element UBERON_0008427 transverse foramen of axis +UBERON_0004765 skeletal element UBERON_0008429 cervical vertebral foramen +UBERON_0004765 skeletal element UBERON_0008430 lumbar vertebral foramen +UBERON_0004765 skeletal element UBERON_0008431 sacral foramen +UBERON_0004765 skeletal element UBERON_0008432 thoracic vertebral foramen +UBERON_0004765 skeletal element UBERON_0008433 lumbar vertebral arch +UBERON_0004765 skeletal element UBERON_0008434 cervical vertebral arch +UBERON_0004765 skeletal element UBERON_0008435 vertebral arch of sacral segment +UBERON_0004765 skeletal element UBERON_0008436 thoracic vertebral arch +UBERON_0004765 skeletal element UBERON_0008437 posterior arch of atlas +UBERON_0004765 skeletal element UBERON_0008449 trochlear notch +UBERON_0004765 skeletal element UBERON_0008456 prezygapophysis of lumbar vertebra +UBERON_0004765 skeletal element UBERON_0008457 prezygapophysis of sacral vertebra +UBERON_0004765 skeletal element UBERON_0008459 prezygapophysis of cervical vertebra +UBERON_0004765 skeletal element UBERON_0008460 prezygapophysis of thoracic vertebra +UBERON_0004765 skeletal element UBERON_0008461 postzygapophysis of lumbar vertebra +UBERON_0004765 skeletal element UBERON_0008462 postzygapophysis of cervical vertebra +UBERON_0004765 skeletal element UBERON_0008463 postzygapophysis of thoracic vertebra +UBERON_0004765 skeletal element UBERON_0008772 proximal epiphysis of tibia +UBERON_0004765 skeletal element UBERON_0008775 proximal epiphysis of fibula +UBERON_0004765 skeletal element UBERON_0008786 third trochanter +UBERON_0004765 skeletal element UBERON_0008787 fourth trochanter +UBERON_0004765 skeletal element UBERON_0008788 posterior cranial fossa +UBERON_0004765 skeletal element UBERON_0008789 cranial fossa +UBERON_0004765 skeletal element UBERON_0008809 foramina of scarpa +UBERON_0004765 skeletal element UBERON_0008828 presphenoid bone +UBERON_0004765 skeletal element UBERON_0008854 root of molar tooth +UBERON_0004765 skeletal element UBERON_0008867 trabecular network of bone +UBERON_0004765 skeletal element UBERON_0008883 osteoid +UBERON_0004765 skeletal element UBERON_0008907 dermal bone +UBERON_0004765 skeletal element UBERON_0008909 perichordal bone +UBERON_0004765 skeletal element UBERON_0008911 chondral bone +UBERON_0004765 skeletal element UBERON_0008913 perichondral bone +UBERON_0004765 skeletal element UBERON_0008956 involucrum +UBERON_0004765 skeletal element UBERON_0008957 sequestrum +UBERON_0004765 skeletal element UBERON_0008958 cetacean involucrum +UBERON_0004765 skeletal element UBERON_0008959 auditory bulla +UBERON_0004765 skeletal element UBERON_0008962 forelimb bone +UBERON_0004765 skeletal element UBERON_0009000 ischial spine +UBERON_0004765 skeletal element UBERON_0009013 white fibrocartilage +UBERON_0004765 skeletal element UBERON_0009078 pessulus +UBERON_0004765 skeletal element UBERON_0009191 sphenoid bone pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0009193 sphenoid cartilage element +UBERON_0004765 skeletal element UBERON_0009194 basisphenoid cartilage condenstion +UBERON_0004765 skeletal element UBERON_0009197 basioccipital pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0009291 cartilaginous vertebral centrum +UBERON_0004765 skeletal element UBERON_0009468 basiotic bone +UBERON_0004765 skeletal element UBERON_0009470 postsphenoidal bone +UBERON_0004765 skeletal element UBERON_0009555 short pastern bone +UBERON_0004765 skeletal element UBERON_0009556 long pastern bone +UBERON_0004765 skeletal element UBERON_0009558 pastern bone +UBERON_0004765 skeletal element UBERON_0009635 parachordal cartilage +UBERON_0004765 skeletal element UBERON_0009636 prechordal cartilage +UBERON_0004765 skeletal element UBERON_0009637 alisphenoid ossification center +UBERON_0004765 skeletal element UBERON_0009638 orbitosphenoid ossification center +UBERON_0004765 skeletal element UBERON_0009639 body of sphenoid +UBERON_0004765 skeletal element UBERON_0009640 hypophyseal cartilage +UBERON_0004765 skeletal element UBERON_0009858 outer fibrous layer of periosteum +UBERON_0004765 skeletal element UBERON_0009859 endosteum +UBERON_0004765 skeletal element UBERON_0009949 humeral diverticulum of clavicular air sac +UBERON_0004765 skeletal element UBERON_0009977 natal tooth +UBERON_0004765 skeletal element UBERON_0009978 epicondyle +UBERON_0004765 skeletal element UBERON_0009979 condyle +UBERON_0004765 skeletal element UBERON_0009980 condyle of femur +UBERON_0004765 skeletal element UBERON_0009984 medial condyle of femur +UBERON_0004765 skeletal element UBERON_0009985 lateral condyle of femur +UBERON_0004765 skeletal element UBERON_0009986 lateral epicondyle of femur +UBERON_0004765 skeletal element UBERON_0009987 medial epicondyle of femur +UBERON_0004765 skeletal element UBERON_0009988 condyle of humerus +UBERON_0004765 skeletal element UBERON_0009989 condyle of tibia +UBERON_0004765 skeletal element UBERON_0009990 medial condyle of tibia +UBERON_0004765 skeletal element UBERON_0009991 lateral condyle of tibia +UBERON_0004765 skeletal element UBERON_0010054 malleus cartilage element +UBERON_0004765 skeletal element UBERON_0010055 stapes cartilage element +UBERON_0004765 skeletal element UBERON_0010066 tympanic plate +UBERON_0004765 skeletal element UBERON_0010076 network of trabecular spaces in bone tissue +UBERON_0004765 skeletal element UBERON_0010129 femur cartilage element +UBERON_0004765 skeletal element UBERON_0010273 zone of hyoid bone +UBERON_0004765 skeletal element UBERON_0010289 scleral cartilage +UBERON_0004765 skeletal element UBERON_0010290 scleral ossicle +UBERON_0004765 skeletal element UBERON_0010296 scleral skeletal element +UBERON_0004765 skeletal element UBERON_0010297 endochondral scleral ossicle +UBERON_0004765 skeletal element UBERON_0010298 intramembranous scleral ossicle +UBERON_0004765 skeletal element UBERON_0010308 os opticus +UBERON_0004765 skeletal element UBERON_0010309 palpebral bone +UBERON_0004765 skeletal element UBERON_0010310 nictitating membrane lamina +UBERON_0004765 skeletal element UBERON_0010311 scleral sesamoid bone +UBERON_0004765 skeletal element UBERON_0010321 skeletal element of eye region +UBERON_0004765 skeletal element UBERON_0010326 optic pedicel +UBERON_0004765 skeletal element UBERON_0010349 otic capsule pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010355 ossification center +UBERON_0004765 skeletal element UBERON_0010356 primary ossification center +UBERON_0004765 skeletal element UBERON_0010357 secondary ossification center +UBERON_0004765 skeletal element UBERON_0010358 arch of centrum of vertebra +UBERON_0004765 skeletal element UBERON_0010363 endochondral element +UBERON_0004765 skeletal element UBERON_0010365 odontoid tissue +UBERON_0004765 skeletal element UBERON_0010372 uncinate process of ethmoid +UBERON_0004765 skeletal element UBERON_0010388 proximal segment of rib +UBERON_0004765 skeletal element UBERON_0010389 pterygoid bone +UBERON_0004765 skeletal element UBERON_0010424 distal segment of rib +UBERON_0004765 skeletal element UBERON_0010428 flat bone +UBERON_0004765 skeletal element UBERON_0010522 replacement element +UBERON_0004765 skeletal element UBERON_0010527 cavity of bone organ +UBERON_0004765 skeletal element UBERON_0010528 pneumatic cavity of bone +UBERON_0004765 skeletal element UBERON_0010540 tarsus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010541 tarsus cartilage element +UBERON_0004765 skeletal element UBERON_0010544 metacarpus skeleton +UBERON_0004765 skeletal element UBERON_0010545 metatarsus skeleton +UBERON_0004765 skeletal element UBERON_0010547 pedal digit 1 metatarsal pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010548 pedal digit 2 metatarsal pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010549 pedal digit 3 metatarsal pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010550 pedal digit 4 metatarsal pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010551 pedal digit 5 metatarsal pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010557 pedal digit 1 metatarsal cartilage element +UBERON_0004765 skeletal element UBERON_0010558 pedal digit 2 metatarsal cartilage element +UBERON_0004765 skeletal element UBERON_0010559 pedal digit 3 metatarsal cartilage element +UBERON_0004765 skeletal element UBERON_0010560 pedal digit 4 metatarsal cartilage element +UBERON_0004765 skeletal element UBERON_0010561 pedal digit 5 metatarsal cartilage element +UBERON_0004765 skeletal element UBERON_0010565 manual digit 1 metacarpus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010566 manual digit 2 metacarpus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010567 manual digit 3 metacarpus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010568 manual digit 4 metacarpus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010569 manual digit 5 metacarpus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010570 manual digit 1 metacarpus cartilage element +UBERON_0004765 skeletal element UBERON_0010571 manual digit 2 metacarpus cartilage element +UBERON_0004765 skeletal element UBERON_0010572 manual digit 3 metacarpus cartilage element +UBERON_0004765 skeletal element UBERON_0010573 manual digit 4 metacarpus cartilage element +UBERON_0004765 skeletal element UBERON_0010574 manual digit 5 metacarpus cartilage element +UBERON_0004765 skeletal element UBERON_0010575 manual digit 1 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010576 manual digit 2 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010577 manual digit 3 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010578 manual digit 4 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010579 manual digit 5 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010580 pedal digit 1 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010581 pedal digit 2 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010582 pedal digit 3 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010583 pedal digit 4 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010584 pedal digit 5 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010585 pedal digit phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010586 manual digit phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010675 manual digit 1 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010676 manual digit 2 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010677 manual digit 3 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010678 manual digit 4 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010679 manual digit 5 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010680 pedal digit 1 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010681 pedal digit 2 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010682 pedal digit 3 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010683 pedal digit 4 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010684 pedal digit 5 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010685 pedal digit phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010686 manual digit phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010687 pedal digit metatarsal pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010697 pedal digit metatarsal cartilage element +UBERON_0004765 skeletal element UBERON_0010698 manual digit metacarpus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010699 manual digit metacarpus cartilage element +UBERON_0004765 skeletal element UBERON_0010700 phalanx pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010701 phalanx cartilage element +UBERON_0004765 skeletal element UBERON_0010714 iliac cartilage element +UBERON_0004765 skeletal element UBERON_0010718 pubic cartilage element +UBERON_0004765 skeletal element UBERON_0010721 distal tarsal bone +UBERON_0004765 skeletal element UBERON_0010722 accessory bone +UBERON_0004765 skeletal element UBERON_0010723 os vesalianum pedis +UBERON_0004765 skeletal element UBERON_0010725 accessory navicular bone +UBERON_0004765 skeletal element UBERON_0010726 os vesalianum manus +UBERON_0004765 skeletal element UBERON_0010727 sutural bone +UBERON_0004765 skeletal element UBERON_0010728 sphenoid lesser wing pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010732 alisphenoid pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010733 alisphenoid cartilage element +UBERON_0004765 skeletal element UBERON_0010737 distal tarsal bone 4 +UBERON_0004765 skeletal element UBERON_0010738 distal tarsal bone 5 +UBERON_0004765 skeletal element UBERON_0010739 distal carpal bone 5 +UBERON_0004765 skeletal element UBERON_0010740 bone of appendage girdle complex +UBERON_0004765 skeletal element UBERON_0010741 bone of pectoral complex +UBERON_0004765 skeletal element UBERON_0010742 bone of pelvic complex +UBERON_0004765 skeletal element UBERON_0010744 sacral vertebra pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010745 sacral vertebra cartilage element +UBERON_0004765 skeletal element UBERON_0010746 iliac blade +UBERON_0004765 skeletal element UBERON_0010747 body of ilium +UBERON_0004765 skeletal element UBERON_0010750 prefrontal bone +UBERON_0004765 skeletal element UBERON_0010752 exoccipital cartilage element +UBERON_0004765 skeletal element UBERON_0010757 rib 8 +UBERON_0004765 skeletal element UBERON_0010759 equine distal sesamoid +UBERON_0004765 skeletal element UBERON_0010760 supraglenoid tubercle +UBERON_0004765 skeletal element UBERON_0010801 calcaneum pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010842 calcaneum cartilage element +UBERON_0004765 skeletal element UBERON_0010846 radius pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010847 ulna pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010848 radius-ulna cartilage element +UBERON_0004765 skeletal element UBERON_0010849 tibia cartilage element +UBERON_0004765 skeletal element UBERON_0010850 tibia pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010851 fibula cartilage element +UBERON_0004765 skeletal element UBERON_0010852 fibula pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010853 capitulum of humerus +UBERON_0004765 skeletal element UBERON_0010869 calcar +UBERON_0004765 skeletal element UBERON_0010879 tusk +UBERON_0004765 skeletal element UBERON_0010881 limb cartilage element +UBERON_0004765 skeletal element UBERON_0010882 limb bone pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010883 forelimb cartilage element +UBERON_0004765 skeletal element UBERON_0010884 forelimb bone pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010885 hindlimb cartilage element +UBERON_0004765 skeletal element UBERON_0010886 hindlimb pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010889 ectethmoid +UBERON_0004765 skeletal element UBERON_0010892 mesethmoid element +UBERON_0004765 skeletal element UBERON_0010894 keratinous tooth +UBERON_0004765 skeletal element UBERON_0010896 piston cartilage +UBERON_0004765 skeletal element UBERON_0010898 gastralium +UBERON_0004765 skeletal element UBERON_0010900 tarsometatarsus cartilage element +UBERON_0004765 skeletal element UBERON_0010901 tarsometatarsus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010902 tibiotarsus cartilage element +UBERON_0004765 skeletal element UBERON_0010903 tibiotarsus pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0010907 parafibula +UBERON_0004765 skeletal element UBERON_0010908 paraglossale +UBERON_0004765 skeletal element UBERON_0010910 opisthotic +UBERON_0004765 skeletal element UBERON_0010911 ossicle +UBERON_0004765 skeletal element UBERON_0010913 vertebral element +UBERON_0004765 skeletal element UBERON_0010994 coronoid process of ulna +UBERON_0004765 skeletal element UBERON_0010996 articular cartilage of joint +UBERON_0004765 skeletal element UBERON_0011002 articular cartilage element +UBERON_0004765 skeletal element UBERON_0011004 pharyngeal arch cartilage +UBERON_0004765 skeletal element UBERON_0011015 iliac fossa +UBERON_0004765 skeletal element UBERON_0011050 thoracic vertebra 8 +UBERON_0004765 skeletal element UBERON_0011078 endolymphatic space +UBERON_0004765 skeletal element UBERON_0011079 angular bone +UBERON_0004765 skeletal element UBERON_0011094 vertebra cartilage element +UBERON_0004765 skeletal element UBERON_0011095 vertebra pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0011104 epiphysis of fifth metacarpal bone +UBERON_0004765 skeletal element UBERON_0011130 temporomandibular joint primordium +UBERON_0004765 skeletal element UBERON_0011135 intervertebral cartilage +UBERON_0004765 skeletal element UBERON_0011141 appendicular ossicle +UBERON_0004765 skeletal element UBERON_0011142 axial ossicle +UBERON_0004765 skeletal element UBERON_0011157 cuneiform cartilage +UBERON_0004765 skeletal element UBERON_0011162 supraoccipital cartilage element +UBERON_0004765 skeletal element UBERON_0011163 supraoccipital pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0011164 neurocranium bone +UBERON_0004765 skeletal element UBERON_0011167 septomaxilla bone +UBERON_0004765 skeletal element UBERON_0011168 postfrontal bone +UBERON_0004765 skeletal element UBERON_0011169 postorbital bone +UBERON_0004765 skeletal element UBERON_0011187 ventral tubercle of humerus +UBERON_0004765 skeletal element UBERON_0011188 lesser tubercle of humerus +UBERON_0004765 skeletal element UBERON_0011205 carpometacarpus +UBERON_0004765 skeletal element UBERON_0011220 mastoid process of temporal bone +UBERON_0004765 skeletal element UBERON_0011238 mesethmoid bone +UBERON_0004765 skeletal element UBERON_0011242 ethmoid cartilage +UBERON_0004765 skeletal element UBERON_0011244 perpendicular plate of ethmoid +UBERON_0004765 skeletal element UBERON_0011245 infra-orbital canal of maxilla +UBERON_0004765 skeletal element UBERON_0011246 procoracoid bone +UBERON_0004765 skeletal element UBERON_0011247 procoracoid cartilage +UBERON_0004765 skeletal element UBERON_0011248 procoracoid element +UBERON_0004765 skeletal element UBERON_0011250 autopod bone +UBERON_0004765 skeletal element UBERON_0011267 quadratojugal bone +UBERON_0004765 skeletal element UBERON_0011301 manubrium sternum pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0011309 body of mandible +UBERON_0004765 skeletal element UBERON_0011310 masseteric fossa +UBERON_0004765 skeletal element UBERON_0011319 disk of temporomandibular joint +UBERON_0004765 skeletal element UBERON_0011342 surface of mandible +UBERON_0004765 skeletal element UBERON_0011343 medial surface of mandible +UBERON_0004765 skeletal element UBERON_0011344 lateral surface of mandible +UBERON_0004765 skeletal element UBERON_0011370 transverse process of atlas +UBERON_0004765 skeletal element UBERON_0011575 styloid process of ulna +UBERON_0004765 skeletal element UBERON_0011576 supraorbital ridge +UBERON_0004765 skeletal element UBERON_0011587 pre-dentine +UBERON_0004765 skeletal element UBERON_0011588 pre-enamel +UBERON_0004765 skeletal element UBERON_0011589 non-mineralized cartilage tissue +UBERON_0004765 skeletal element UBERON_0011593 maxillary tooth +UBERON_0004765 skeletal element UBERON_0011594 dentary tooth +UBERON_0004765 skeletal element UBERON_0011597 bone of upper jaw +UBERON_0004765 skeletal element UBERON_0011598 coronoid bone +UBERON_0004765 skeletal element UBERON_0011599 lenticular process of incus bone +UBERON_0004765 skeletal element UBERON_0011603 coronoid tooth +UBERON_0004765 skeletal element UBERON_0011604 carina of sternum +UBERON_0004765 skeletal element UBERON_0011606 hyomandibular bone +UBERON_0004765 skeletal element UBERON_0011607 hyomandibular cartilage +UBERON_0004765 skeletal element UBERON_0011608 hyomandibular element +UBERON_0004765 skeletal element UBERON_0011609 ceratohyal element +UBERON_0004765 skeletal element UBERON_0011610 ceratohyal cartilage +UBERON_0004765 skeletal element UBERON_0011611 ceratohyal bone +UBERON_0004765 skeletal element UBERON_0011612 hypohyal cartilage +UBERON_0004765 skeletal element UBERON_0011613 hypohyal element +UBERON_0004765 skeletal element UBERON_0011614 basihyal element +UBERON_0004765 skeletal element UBERON_0011615 basihyal cartilage +UBERON_0004765 skeletal element UBERON_0011618 basihyal bone +UBERON_0004765 skeletal element UBERON_0011619 stylohyoid bone +UBERON_0004765 skeletal element UBERON_0011620 basihyal lingual process +UBERON_0004765 skeletal element UBERON_0011621 thyrohyoid cartilage +UBERON_0004765 skeletal element UBERON_0011622 thyrohyoid bone +UBERON_0004765 skeletal element UBERON_0011623 horn of thyroid cartilage +UBERON_0004765 skeletal element UBERON_0011624 superior horn of thyroid cartilage +UBERON_0004765 skeletal element UBERON_0011625 inferior horn of thyroid cartilage +UBERON_0004765 skeletal element UBERON_0011626 tympanohyoid cartilage +UBERON_0004765 skeletal element UBERON_0011627 orbital part of frontal bone +UBERON_0004765 skeletal element UBERON_0011628 early premaxilla +UBERON_0004765 skeletal element UBERON_0011629 supratemporal bone +UBERON_0004765 skeletal element UBERON_0011630 intertemporal bone +UBERON_0004765 skeletal element UBERON_0011631 tabular bone +UBERON_0004765 skeletal element UBERON_0011634 ectopterygoid bone +UBERON_0004765 skeletal element UBERON_0011635 splenial bone +UBERON_0004765 skeletal element UBERON_0011636 surangular bone +UBERON_0004765 skeletal element UBERON_0011637 prearticular bone +UBERON_0004765 skeletal element UBERON_0011639 frontoparietal bone +UBERON_0004765 skeletal element UBERON_0011641 odontogenic mesenchyme of molar +UBERON_0004765 skeletal element UBERON_0011651 ventral head of rib +UBERON_0004765 skeletal element UBERON_0011652 dorsal head of rib +UBERON_0004765 skeletal element UBERON_0011653 diapophysis of neural arch +UBERON_0004765 skeletal element UBERON_0011655 interclavicle +UBERON_0004765 skeletal element UBERON_0011657 dermal element of plastron +UBERON_0004765 skeletal element UBERON_0011658 epiplastron +UBERON_0004765 skeletal element UBERON_0011659 entoplastron +UBERON_0004765 skeletal element UBERON_0011660 hypoplastron +UBERON_0004765 skeletal element UBERON_0011661 xiphiplastron +UBERON_0004765 skeletal element UBERON_0011665 carapace bone +UBERON_0004765 skeletal element UBERON_0011666 peripheral plate of carapace +UBERON_0004765 skeletal element UBERON_0011667 pleural plate of carapace +UBERON_0004765 skeletal element UBERON_0011669 neural plate of carapace +UBERON_0004765 skeletal element UBERON_0011670 pygal plate of carapace +UBERON_0004765 skeletal element UBERON_0011671 nuchal plate of carapace +UBERON_0004765 skeletal element UBERON_0011672 suprapygal plate of carapace +UBERON_0004765 skeletal element UBERON_0011677 trunk vertebra +UBERON_0004765 skeletal element UBERON_0011678 hindlimb intermedium bone +UBERON_0004765 skeletal element UBERON_0011679 proximal tarsal bone +UBERON_0004765 skeletal element UBERON_0011688 pre-enameloid +UBERON_0004765 skeletal element UBERON_0011692 enameloid +UBERON_0004765 skeletal element UBERON_0011770 mentomeckelian +UBERON_0004765 skeletal element UBERON_0011772 lower jaw opening +UBERON_0004765 skeletal element UBERON_0011773 upper jaw opening +UBERON_0004765 skeletal element UBERON_0011863 bone collagen fibril +UBERON_0004765 skeletal element UBERON_0011941 lateral angle of scapula +UBERON_0004765 skeletal element UBERON_0011958 acetabular labrum +UBERON_0004765 skeletal element UBERON_0011959 glenoid labrum of scapula +UBERON_0004765 skeletal element UBERON_0011960 articular capsule of glenohumeral joint +UBERON_0004765 skeletal element UBERON_0011973 epiphysis of phalanx of pes +UBERON_0004765 skeletal element UBERON_0011974 epiphysis of proximal phalanx of pes +UBERON_0004765 skeletal element UBERON_0011975 epiphysis of middle phalanx of pes +UBERON_0004765 skeletal element UBERON_0011976 epiphysis of distal phalanx of pes +UBERON_0004765 skeletal element UBERON_0011977 epiphysis of proximal phalanx of manus +UBERON_0004765 skeletal element UBERON_0011978 epiphysis of middle phalanx of manus +UBERON_0004765 skeletal element UBERON_0011979 epiphysis of distal phalanx of manus +UBERON_0004765 skeletal element UBERON_0012070 palatal tooth +UBERON_0004765 skeletal element UBERON_0012071 palate bone +UBERON_0004765 skeletal element UBERON_0012073 tooth of palatine bone +UBERON_0004765 skeletal element UBERON_0012075 replacement bone +UBERON_0004765 skeletal element UBERON_0012078 fovea capitis of femur +UBERON_0004765 skeletal element UBERON_0012104 sesamoid bone of the peroneus longus muscle +UBERON_0004765 skeletal element UBERON_0012108 postorbital bar +UBERON_0004765 skeletal element UBERON_0012109 zygomatic process of frontal bone +UBERON_0004765 skeletal element UBERON_0012110 frontal process of zygomatic bone +UBERON_0004765 skeletal element UBERON_0012116 nutrient foramen conduit +UBERON_0004765 skeletal element UBERON_0012117 lumen of nutrient foramen +UBERON_0004765 skeletal element UBERON_0012124 avian scapholunar bone +UBERON_0004765 skeletal element UBERON_0012126 fibulare +UBERON_0004765 skeletal element UBERON_0012129 radial head of humerus +UBERON_0004765 skeletal element UBERON_0012130 olecranon fossa +UBERON_0004765 skeletal element UBERON_0012131 centrale +UBERON_0004765 skeletal element UBERON_0012179 bone of pelvis +UBERON_0004765 skeletal element UBERON_0012267 equine splint bone +UBERON_0004765 skeletal element UBERON_0012268 equine forelimb splint bone +UBERON_0004765 skeletal element UBERON_0012269 equine hindlimb splint bone +UBERON_0004765 skeletal element UBERON_0012288 centroquartal bone +UBERON_0004765 skeletal element UBERON_0012289 fused tarsal bones 2 and 3 +UBERON_0004765 skeletal element UBERON_0012290 fused carpal bones 2 and 3 +UBERON_0004765 skeletal element UBERON_0012291 lateral malleolus of fibula +UBERON_0004765 skeletal element UBERON_0012315 incisive foramen +UBERON_0004765 skeletal element UBERON_0012357 digitopodium bone +UBERON_0004765 skeletal element UBERON_0012358 manual digitopodium bone +UBERON_0004765 skeletal element UBERON_0012359 pedal digitopodium bone +UBERON_0004765 skeletal element UBERON_0012360 bone of jaw +UBERON_0004765 skeletal element UBERON_0012459 antler pedicle +UBERON_0004765 skeletal element UBERON_0012468 anal tooth +UBERON_0004765 skeletal element UBERON_0013068 palatine torus +UBERON_0004765 skeletal element UBERON_0013069 popliteal area +UBERON_0004765 skeletal element UBERON_0013078 venom-injecting tooth +UBERON_0004765 skeletal element UBERON_0013113 angular/surangular bone +UBERON_0004765 skeletal element UBERON_0013121 proximal epiphysis of phalanx of pes +UBERON_0004765 skeletal element UBERON_0013122 distal epiphysis of phalanx of pes +UBERON_0004765 skeletal element UBERON_0013135 interdental plate +UBERON_0004765 skeletal element UBERON_0013164 molariform tooth +UBERON_0004765 skeletal element UBERON_0013173 anterior part of tympanic bone +UBERON_0004765 skeletal element UBERON_0013174 sigmoid process of tympanic bone +UBERON_0004765 skeletal element UBERON_0013180 bursal cartilage +UBERON_0004765 skeletal element UBERON_0013190 entotympanic bone +UBERON_0004765 skeletal element UBERON_0013204 epipubic bone +UBERON_0004765 skeletal element UBERON_0013207 entepicondylar foramen +UBERON_0004765 skeletal element UBERON_0013217 zygomatic plate +UBERON_0004765 skeletal element UBERON_0013222 otic notch +UBERON_0004765 skeletal element UBERON_0013279 diaphysis of fibula +UBERON_0004765 skeletal element UBERON_0013280 diaphysis of tibia +UBERON_0004765 skeletal element UBERON_0013420 groove for sigmoid sinus +UBERON_0004765 skeletal element UBERON_0013422 infratemporal fossa +UBERON_0004765 skeletal element UBERON_0013427 occipital bun +UBERON_0004765 skeletal element UBERON_0013442 postorbital process +UBERON_0004765 skeletal element UBERON_0013447 sagittal crest +UBERON_0004765 skeletal element UBERON_0013448 sagittal keel +UBERON_0004765 skeletal element UBERON_0013450 simian shelf +UBERON_0004765 skeletal element UBERON_0013454 spheno-maxillary fossa +UBERON_0004765 skeletal element UBERON_0013460 suprainiac fossa +UBERON_0004765 skeletal element UBERON_0013463 temporal fossa +UBERON_0004765 skeletal element UBERON_0013468 zygomatic fossa +UBERON_0004765 skeletal element UBERON_0013469 external occipital protuberance +UBERON_0004765 skeletal element UBERON_0013471 retromolar space +UBERON_0004765 skeletal element UBERON_0013503 caudal vertebra cartilage element +UBERON_0004765 skeletal element UBERON_0013504 caudal vertebra pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0013505 cervical vertebra cartilage element +UBERON_0004765 skeletal element UBERON_0013506 cervical vertebra pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0013507 thoracic vertebra cartilage element +UBERON_0004765 skeletal element UBERON_0013508 thoracic vertebra pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0013509 lumbar vertebra cartilage element +UBERON_0004765 skeletal element UBERON_0013510 lumbar vertebra pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0013581 metapodium bone 1 +UBERON_0004765 skeletal element UBERON_0013582 metapodium bone 2 +UBERON_0004765 skeletal element UBERON_0013583 metapodium bone 3 +UBERON_0004765 skeletal element UBERON_0013584 metapodium bone 4 +UBERON_0004765 skeletal element UBERON_0013585 metapodium bone 5 +UBERON_0004765 skeletal element UBERON_0013586 fused metapodial bones 3 and 4 +UBERON_0004765 skeletal element UBERON_0013587 fused metacarpal bones 3 and 4 +UBERON_0004765 skeletal element UBERON_0013588 fused metatarsal bones 3 and 4 +UBERON_0004765 skeletal element UBERON_0013612 lower jaw cingulum +UBERON_0004765 skeletal element UBERON_0013613 upper jaw cingulum +UBERON_0004765 skeletal element UBERON_0013616 primary molar tooth +UBERON_0004765 skeletal element UBERON_0013617 upper primary molar tooth +UBERON_0004765 skeletal element UBERON_0013618 secondary molar tooth +UBERON_0004765 skeletal element UBERON_0013619 upper secondary molar tooth +UBERON_0004765 skeletal element UBERON_0013620 lower primary molar tooth +UBERON_0004765 skeletal element UBERON_0013621 lower secondary molar tooth +UBERON_0004765 skeletal element UBERON_0013630 short bone +UBERON_0004765 skeletal element UBERON_0013631 sesamoid element +UBERON_0004765 skeletal element UBERON_0013632 sesamoid cartilage +UBERON_0004765 skeletal element UBERON_0013633 intertrochanteric crest +UBERON_0004765 skeletal element UBERON_0013634 intertrochanteric line +UBERON_0004765 skeletal element UBERON_0013649 fused tarsal bones 1 and 2 +UBERON_0004765 skeletal element UBERON_0013673 os priapium +UBERON_0004765 skeletal element UBERON_0013674 ctenactinium +UBERON_0004765 skeletal element UBERON_0013676 aproctal bone of priapium +UBERON_0004765 skeletal element UBERON_0013677 serrated projection of ctenactinium +UBERON_0004765 skeletal element UBERON_0013685 foramen of skull +UBERON_0004765 skeletal element UBERON_0013687 pericranium +UBERON_0004765 skeletal element UBERON_0013706 bone spine +UBERON_0004765 skeletal element UBERON_0013707 iliac spine +UBERON_0004765 skeletal element UBERON_0013708 anterior superior iliac spine +UBERON_0004765 skeletal element UBERON_0013709 anterior inferior iliac spine +UBERON_0004765 skeletal element UBERON_0013710 posterior superior iliac spine +UBERON_0004765 skeletal element UBERON_0013711 posterior inferior iliac spine +UBERON_0004765 skeletal element UBERON_0013712 anterior iliac spine +UBERON_0004765 skeletal element UBERON_0013713 posterior iliac spine +UBERON_0004765 skeletal element UBERON_0013746 basibranchial element +UBERON_0004765 skeletal element UBERON_0013747 basibranchial cartilage +UBERON_0004765 skeletal element UBERON_0013748 ulnar metaphysis +UBERON_0004765 skeletal element UBERON_0013749 metaphysis of humerus +UBERON_0004765 skeletal element UBERON_0013750 metaphysis of tibia +UBERON_0004765 skeletal element UBERON_0013751 metaphysis of radius +UBERON_0004765 skeletal element UBERON_0013752 diaphysis of metacarpal bone +UBERON_0004765 skeletal element UBERON_0013753 distal epiphysis of metacarpal bone +UBERON_0004765 skeletal element UBERON_0013767 frontal process of maxilla +UBERON_0004765 skeletal element UBERON_0013774 diaphysis of metatarsal bone +UBERON_0004765 skeletal element UBERON_0014386 vertebral endplate +UBERON_0004765 skeletal element UBERON_0014395 proximal mesopodial bone +UBERON_0004765 skeletal element UBERON_0014397 lateral process of malleus +UBERON_0004765 skeletal element UBERON_0014409 metacromion +UBERON_0004765 skeletal element UBERON_0014411 greater sciatic notch +UBERON_0004765 skeletal element UBERON_0014430 sciatic notch +UBERON_0004765 skeletal element UBERON_0014436 lesser sciatic notch +UBERON_0004765 skeletal element UBERON_0014437 iliac crest +UBERON_0004765 skeletal element UBERON_0014438 superior pubic ramus +UBERON_0004765 skeletal element UBERON_0014439 inferior pubic ramus +UBERON_0004765 skeletal element UBERON_0014440 ischiopubic ramus +UBERON_0004765 skeletal element UBERON_0014441 ischial ramus +UBERON_0004765 skeletal element UBERON_0014442 superior ischial ramus +UBERON_0004765 skeletal element UBERON_0014443 inferior ischial ramus +UBERON_0004765 skeletal element UBERON_0014444 pubic ramus +UBERON_0004765 skeletal element UBERON_0014445 acetabular fossa +UBERON_0004765 skeletal element UBERON_0014446 acetabular notch +UBERON_0004765 skeletal element UBERON_0014459 temporal fenestra +UBERON_0004765 skeletal element UBERON_0014460 supratemporal fenestra +UBERON_0004765 skeletal element UBERON_0014461 infratemporal fenestra +UBERON_0004765 skeletal element UBERON_0014465 antorbital fenestra +UBERON_0004765 skeletal element UBERON_0014483 distal phalanx of digit 1 +UBERON_0004765 skeletal element UBERON_0014484 distal phalanx of digit 2 +UBERON_0004765 skeletal element UBERON_0014485 distal phalanx of digit 3 +UBERON_0004765 skeletal element UBERON_0014486 distal phalanx of digit 4 +UBERON_0004765 skeletal element UBERON_0014487 distal phalanx of digit 5 +UBERON_0004765 skeletal element UBERON_0014488 middle phalanx of digit 2 +UBERON_0004765 skeletal element UBERON_0014489 middle phalanx of digit 3 +UBERON_0004765 skeletal element UBERON_0014490 middle phalanx of digit 4 +UBERON_0004765 skeletal element UBERON_0014491 middle phalanx of digit 5 +UBERON_0004765 skeletal element UBERON_0014501 proximal phalanx of digit 1 +UBERON_0004765 skeletal element UBERON_0014502 proximal phalanx of digit 2 +UBERON_0004765 skeletal element UBERON_0014503 proximal phalanx of digit 3 +UBERON_0004765 skeletal element UBERON_0014504 proximal phalanx of digit 4 +UBERON_0004765 skeletal element UBERON_0014505 proximal phalanx of digit 5 +UBERON_0004765 skeletal element UBERON_0014624 basis modioli +UBERON_0004765 skeletal element UBERON_0014626 base of cochlear canal +UBERON_0004765 skeletal element UBERON_0014628 vestibular fissure of the cochlear canal +UBERON_0004765 skeletal element UBERON_0014629 terminal part of the cochlear canal +UBERON_0004765 skeletal element UBERON_0014707 hyoplastron +UBERON_0004765 skeletal element UBERON_0014708 costal plate of carapace +UBERON_0004765 skeletal element UBERON_0014730 osteon +UBERON_0004765 skeletal element UBERON_0014731 haversian canal +UBERON_0004765 skeletal element UBERON_0014762 fused metapodial bones 2-4 +UBERON_0004765 skeletal element UBERON_0014763 fused metatarsal bones 2-4 +UBERON_0004765 skeletal element UBERON_0014801 nuchal line attachment site +UBERON_0004765 skeletal element UBERON_0014802 highest nuchal line attachment site +UBERON_0004765 skeletal element UBERON_0014803 superior nuchal line attachment site +UBERON_0004765 skeletal element UBERON_0014804 median nuchal line attachment site +UBERON_0004765 skeletal element UBERON_0014805 inferior nuchal line attachment site +UBERON_0004765 skeletal element UBERON_0014870 inferior orbital fissure +UBERON_0004765 skeletal element UBERON_0014871 distal epiphysis of distal phalanx of pedal digit 1 +UBERON_0004765 skeletal element UBERON_0014872 distal epiphysis of distal phalanx of pedal digit 2 +UBERON_0004765 skeletal element UBERON_0014873 distal epiphysis of distal phalanx of pedal digit 3 +UBERON_0004765 skeletal element UBERON_0014874 distal epiphysis of distal phalanx of pedal digit 4 +UBERON_0004765 skeletal element UBERON_0014875 distal epiphysis of distal phalanx of pedal digit 5 +UBERON_0004765 skeletal element UBERON_0014876 distal epiphysis of distal phalanx of pedal digit +UBERON_0004765 skeletal element UBERON_0014881 distal epiphysis of distal phalanx of manual digit 1 +UBERON_0004765 skeletal element UBERON_0014882 distal epiphysis of distal phalanx of manual digit 2 +UBERON_0004765 skeletal element UBERON_0014883 distal epiphysis of distal phalanx of manual digit 3 +UBERON_0004765 skeletal element UBERON_0014884 distal epiphysis of distal phalanx of manual digit 4 +UBERON_0004765 skeletal element UBERON_0014885 distal epiphysis of distal phalanx of manual digit 5 +UBERON_0004765 skeletal element UBERON_0014886 distal epiphysis of distal phalanx of manual digit +UBERON_0004765 skeletal element UBERON_0014887 distal epiphysis of distal phalanx of digit +UBERON_0004765 skeletal element UBERON_0014898 lamina terminalis of ischium +UBERON_0004765 skeletal element UBERON_0015001 radius endochondral element +UBERON_0004765 skeletal element UBERON_0015002 radius-ulna endochondral element +UBERON_0004765 skeletal element UBERON_0015003 ulna endochondral element +UBERON_0004765 skeletal element UBERON_0015004 tibia endochondral element +UBERON_0004765 skeletal element UBERON_0015007 cervical vertebra endochondral element +UBERON_0004765 skeletal element UBERON_0015008 thoracic vertebra endochondral element +UBERON_0004765 skeletal element UBERON_0015009 lumbar vertebra endochondral element +UBERON_0004765 skeletal element UBERON_0015010 sacral vertebra endochondral element +UBERON_0004765 skeletal element UBERON_0015011 tibiotarsus endochondral element +UBERON_0004765 skeletal element UBERON_0015012 tarsometatarsus endochondral element +UBERON_0004765 skeletal element UBERON_0015013 fibula endochondral element +UBERON_0004765 skeletal element UBERON_0015014 calcaneum endochondral element +UBERON_0004765 skeletal element UBERON_0015015 supraoccipital endochondral element +UBERON_0004765 skeletal element UBERON_0015016 stapes endochondral element +UBERON_0004765 skeletal element UBERON_0015017 incus endochondral element +UBERON_0004765 skeletal element UBERON_0015018 malleus endochondral element +UBERON_0004765 skeletal element UBERON_0015019 rib endochondral element +UBERON_0004765 skeletal element UBERON_0015021 forelimb endochondral element +UBERON_0004765 skeletal element UBERON_0015022 hindlimb endochondral element +UBERON_0004765 skeletal element UBERON_0015023 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015024 manual digit phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015025 manual digit 1 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015026 manual digit 2 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015027 manual digit 3 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015028 manual digit 4 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015029 manual digit 5 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015030 pedal digit phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015031 pedal digit 1 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015032 pedal digit 2 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015033 pedal digit 3 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015034 pedal digit 4 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015035 pedal digit 5 phalanx endochondral element +UBERON_0004765 skeletal element UBERON_0015036 pedal digit metatarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015037 pedal digit 1 metatarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015038 pedal digit 2 metatarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015039 pedal digit 3 metatarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015040 pedal digit 4 metatarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015041 pedal digit 5 metatarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015042 manual digit metacarpus endochondral element +UBERON_0004765 skeletal element UBERON_0015043 manual digit 1 metacarpus endochondral element +UBERON_0004765 skeletal element UBERON_0015044 manual digit 2 metacarpus endochondral element +UBERON_0004765 skeletal element UBERON_0015045 manual digit 3 metacarpus endochondral element +UBERON_0004765 skeletal element UBERON_0015046 manual digit 4 metacarpus endochondral element +UBERON_0004765 skeletal element UBERON_0015047 manual digit 5 metacarpus endochondral element +UBERON_0004765 skeletal element UBERON_0015048 basioccipital endochondral element +UBERON_0004765 skeletal element UBERON_0015049 carpus endochondral element +UBERON_0004765 skeletal element UBERON_0015050 tarsus endochondral element +UBERON_0004765 skeletal element UBERON_0015051 exoccipital endochondral element +UBERON_0004765 skeletal element UBERON_0015052 femur endochondral element +UBERON_0004765 skeletal element UBERON_0015053 humerus endochondral element +UBERON_0004765 skeletal element UBERON_0015054 iliac endochondral element +UBERON_0004765 skeletal element UBERON_0015055 pubic endochondral element +UBERON_0004765 skeletal element UBERON_0015056 ischial endochondral element +UBERON_0004765 skeletal element UBERON_0015057 scapula endochondral element +UBERON_0004765 skeletal element UBERON_0015058 alisphenoid endochondral element +UBERON_0004765 skeletal element UBERON_0015059 orbitosphenoid endochondral element +UBERON_0004765 skeletal element UBERON_0015060 sphenoid endochondral element +UBERON_0004765 skeletal element UBERON_0015061 limb endochondral element +UBERON_0004765 skeletal element UBERON_0015063 autopod endochondral element +UBERON_0004765 skeletal element UBERON_0015064 autopod cartilage +UBERON_0004765 skeletal element UBERON_0015067 centrale endochondral element +UBERON_0004765 skeletal element UBERON_0015068 distal carpal endochondral element +UBERON_0004765 skeletal element UBERON_0015069 distal carpal cartilage element +UBERON_0004765 skeletal element UBERON_0015077 centrale cartilage +UBERON_0004765 skeletal element UBERON_0015078 proximal carpal endochondral element +UBERON_0004765 skeletal element UBERON_0015079 proximal carpal cartilage +UBERON_0004765 skeletal element UBERON_0015080 proximal carpal bone pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015081 proximal tarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015082 proximal tarsal cartilage +UBERON_0004765 skeletal element UBERON_0015083 proximal tarsal bone pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015084 distal carpal bone 1 endochondral element +UBERON_0004765 skeletal element UBERON_0015085 distal carpal bone 1 cartilage +UBERON_0004765 skeletal element UBERON_0015086 distal carpal bone 1 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015087 distal carpal bone 2 endochondral element +UBERON_0004765 skeletal element UBERON_0015088 distal carpal bone 2 cartilage +UBERON_0004765 skeletal element UBERON_0015089 distal carpal bone 2 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015090 distal carpal bone 3 endochondral element +UBERON_0004765 skeletal element UBERON_0015091 distal carpal bone 3 cartilage +UBERON_0004765 skeletal element UBERON_0015092 distal carpal bone 3 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015093 distal carpal bone 4 endochondral element +UBERON_0004765 skeletal element UBERON_0015094 distal carpal bone 4 cartilage +UBERON_0004765 skeletal element UBERON_0015095 distal carpal bone 4 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015096 distal carpal bone 5 endochondral element +UBERON_0004765 skeletal element UBERON_0015097 distal carpal bone 5 cartilage +UBERON_0004765 skeletal element UBERON_0015098 distal carpal bone 5 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015099 distal tarsal endochondral element +UBERON_0004765 skeletal element UBERON_0015100 distal tarsal cartilage +UBERON_0004765 skeletal element UBERON_0015101 distal tarsal bone pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015102 distal tarsal bone 1 endochondral element +UBERON_0004765 skeletal element UBERON_0015103 distal tarsal bone 1 cartilage +UBERON_0004765 skeletal element UBERON_0015104 distal tarsal bone 1 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015105 distal tarsal bone 2 endochondral element +UBERON_0004765 skeletal element UBERON_0015106 distal tarsal bone 2 cartilage +UBERON_0004765 skeletal element UBERON_0015107 distal tarsal bone 2 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015108 distal tarsal bone 3 endochondral element +UBERON_0004765 skeletal element UBERON_0015109 distal tarsal bone 3 cartilage +UBERON_0004765 skeletal element UBERON_0015110 distal tarsal bone 3 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015111 distal tarsal bone 4 endochondral element +UBERON_0004765 skeletal element UBERON_0015112 distal tarsal bone 4 cartilage +UBERON_0004765 skeletal element UBERON_0015113 distal tarsal bone 4 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015114 distal tarsal bone 5 endochondral element +UBERON_0004765 skeletal element UBERON_0015115 distal tarsal bone 5 cartilage +UBERON_0004765 skeletal element UBERON_0015116 distal tarsal bone 5 pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0015180 neck of talus +UBERON_0004765 skeletal element UBERON_0015181 neck of tooth +UBERON_0004765 skeletal element UBERON_0015837 incisor dental pulp +UBERON_0004765 skeletal element UBERON_0015838 molar dental pulp +UBERON_0004765 skeletal element UBERON_0015839 molar epithelium +UBERON_0004765 skeletal element UBERON_0015840 incisor dental lamina +UBERON_0004765 skeletal element UBERON_0015841 molar dental lamina +UBERON_0004765 skeletal element UBERON_0015842 incisor enamel organ +UBERON_0004765 skeletal element UBERON_0015843 molar enamel organ +UBERON_0004765 skeletal element UBERON_0015844 molar dental papilla +UBERON_0004765 skeletal element UBERON_0015846 incisor mesenchyme +UBERON_0004765 skeletal element UBERON_0015847 upper left incisor tooth +UBERON_0004765 skeletal element UBERON_0015848 incisor tusk +UBERON_0004765 skeletal element UBERON_0015849 canine tusk +UBERON_0004765 skeletal element UBERON_0015850 upper left incisor tusk +UBERON_0004765 skeletal element UBERON_0015851 upper right incisor tusk +UBERON_0004765 skeletal element UBERON_0015852 narwhal tusk +UBERON_0004765 skeletal element UBERON_0015853 dental pulp of median incisor tusk +UBERON_0004765 skeletal element UBERON_0016404 cervical vertebral arch joint +UBERON_0004765 skeletal element UBERON_0016412 central part of body of bony vertebral centrum +UBERON_0004765 skeletal element UBERON_0016413 medullary cavity of long bone +UBERON_0004765 skeletal element UBERON_0016419 bony part of vertebral arch +UBERON_0004765 skeletal element UBERON_0016422 compact bone of long bone +UBERON_0004765 skeletal element UBERON_0016423 compact bone of diaphysis +UBERON_0004765 skeletal element UBERON_0016425 epiphyseal plate of radius +UBERON_0004765 skeletal element UBERON_0016440 glabella region of bone +UBERON_0004765 skeletal element UBERON_0016452 upper secondary premolar tooth +UBERON_0004765 skeletal element UBERON_0016453 lower secondary premolar tooth +UBERON_0004765 skeletal element UBERON_0016454 upper central secondary incisor tooth +UBERON_0004765 skeletal element UBERON_0016455 upper lateral secondary incisor tooth +UBERON_0004765 skeletal element UBERON_0016476 primary incisor tooth +UBERON_0004765 skeletal element UBERON_0016491 vertebral centrum element +UBERON_0004765 skeletal element UBERON_0016492 foramen spinosum of sphenoid bone +UBERON_0004765 skeletal element UBERON_0016497 epicondyle of humerus +UBERON_0004765 skeletal element UBERON_0016619 Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0004765 skeletal element UBERON_0016628 stem of Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0004765 skeletal element UBERON_0016629 branch of Y-shaped fibrocartilage skeleton of ventral pouch +UBERON_0004765 skeletal element UBERON_0016881 craniopharyngeal canal +UBERON_0004765 skeletal element UBERON_0016896 periosteum of long bone +UBERON_0004765 skeletal element UBERON_0016928 metaphysis of fibula +UBERON_0004765 skeletal element UBERON_0016929 lingual cusp of tooth +UBERON_0004765 skeletal element UBERON_0016930 ridge of tooth +UBERON_0004765 skeletal element UBERON_0016931 transverse ridge of tooth +UBERON_0004765 skeletal element UBERON_0016932 triangular ridge of tooth +UBERON_0004765 skeletal element UBERON_0016933 oblique ridge of tooth +UBERON_0004765 skeletal element UBERON_0016934 marginal ridge of tooth +UBERON_0004765 skeletal element UBERON_0016937 transverse marginal ridge of tooth +UBERON_0004765 skeletal element UBERON_0016938 mesial marginal ridge of tooth +UBERON_0004765 skeletal element UBERON_0016939 distal marginal ridge of tooth +UBERON_0004765 skeletal element UBERON_0016942 rostral margin of orbit +UBERON_0004765 skeletal element UBERON_0016943 lower premolar tooth +UBERON_0004765 skeletal element UBERON_0016944 upper premolar tooth +UBERON_0004765 skeletal element UBERON_0017249 incisive process of premaxilla +UBERON_0004765 skeletal element UBERON_0017261 intertarsal sesamoid +UBERON_0004765 skeletal element UBERON_0017269 primary premolar tooth +UBERON_0004765 skeletal element UBERON_0017270 secondary premolar tooth +UBERON_0004765 skeletal element UBERON_0017271 upper primary premolar tooth +UBERON_0004765 skeletal element UBERON_0017272 lower primary premolar tooth +UBERON_0004765 skeletal element UBERON_0017295 cingulum of tooth +UBERON_0004765 skeletal element UBERON_0017296 cingulum of incisor tooth +UBERON_0004765 skeletal element UBERON_0017297 cingulum of canine tooth +UBERON_0004765 skeletal element UBERON_0017298 cingulum of upper incisor tooth +UBERON_0004765 skeletal element UBERON_0017299 cingulum of lower incisor tooth +UBERON_0004765 skeletal element UBERON_0017312 cingulum of upper canine tooth +UBERON_0004765 skeletal element UBERON_0017313 cingulum of lower canine tooth +UBERON_0004765 skeletal element UBERON_0017612 cingulum of lower jaw molar +UBERON_0004765 skeletal element UBERON_0017613 cingulum of upper jaw molar +UBERON_0004765 skeletal element UBERON_0017614 cingulum of molar tooth +UBERON_0004765 skeletal element UBERON_0017670 bony part of cervical vertebral arch +UBERON_0004765 skeletal element UBERON_0017671 bony part of vertebral arch of first sacral vertebra +UBERON_0004765 skeletal element UBERON_0017690 internal surface of frontal bone +UBERON_0004765 skeletal element UBERON_0017692 internal surface of cranial base +UBERON_0004765 skeletal element UBERON_0017748 lower primary incisor tooth +UBERON_0004765 skeletal element UBERON_0017750 proximal mesopodial endochondral element +UBERON_0004765 skeletal element UBERON_0017751 proximal mesopodial cartilage element +UBERON_0004765 skeletal element UBERON_0018099 distal mesopodial endochondral element +UBERON_0004765 skeletal element UBERON_0018100 distal mesopodial cartilage element +UBERON_0004765 skeletal element UBERON_0018101 distal mesopodial pre-cartilage condensation +UBERON_0004765 skeletal element UBERON_0018102 distal mesopodial bone +UBERON_0004765 skeletal element UBERON_0018136 maxillary fenestra +UBERON_0004765 skeletal element UBERON_0018137 premaxillary fenestra +UBERON_0004765 skeletal element UBERON_0018142 caudal vertebra endochondral element +UBERON_0004765 skeletal element UBERON_0018143 transverse process of cervical vertebra +UBERON_0004765 skeletal element UBERON_0018144 cervical rib +UBERON_0004765 skeletal element UBERON_0018145 lumbar rib +UBERON_0004765 skeletal element UBERON_0018146 transverse process of lumbar vertebra +UBERON_0004765 skeletal element UBERON_0018160 anterior process of malleus +UBERON_0004765 skeletal element UBERON_0018242 palatine bone horizontal plate +UBERON_0004765 skeletal element UBERON_0018265 anterior root of zygomatic arch +UBERON_0004765 skeletal element UBERON_0018266 third phalanx +UBERON_0004765 skeletal element UBERON_0018267 atlantal spinal nerve foramen +UBERON_0004765 skeletal element UBERON_0018272 apex of paracone +UBERON_0004765 skeletal element UBERON_0018273 caniniform region +UBERON_0004765 skeletal element UBERON_0018274 postcingulum of deciduous premolar 5 +UBERON_0004765 skeletal element UBERON_0018275 posthypocrista of deciduous premolar 5 +UBERON_0004765 skeletal element UBERON_0018276 egg tooth +UBERON_0004765 skeletal element UBERON_0018277 calcareous egg tooth +UBERON_0004765 skeletal element UBERON_0018278 epidermal egg tooth +UBERON_0004765 skeletal element UBERON_0018279 hypoconid +UBERON_0004765 skeletal element UBERON_0018281 lower deciduous premolar 5 +UBERON_0004765 skeletal element UBERON_0018282 lower molar 3 +UBERON_0004765 skeletal element UBERON_0018283 lower pharyngobranchial toothplate +UBERON_0004765 skeletal element UBERON_0018284 lower premolar 1 +UBERON_0004765 skeletal element UBERON_0018285 lower premolar 2 +UBERON_0004765 skeletal element UBERON_0018286 molar 1 posteroloph +UBERON_0004765 skeletal element UBERON_0018287 premolar 1 hypoconoid +UBERON_0004765 skeletal element UBERON_0018288 paracone +UBERON_0004765 skeletal element UBERON_0018289 paracristid +UBERON_0004765 skeletal element UBERON_0018290 postcingulum +UBERON_0004765 skeletal element UBERON_0018291 posteroloph +UBERON_0004765 skeletal element UBERON_0018292 posthypocrista +UBERON_0004765 skeletal element UBERON_0018293 precingulum +UBERON_0004765 skeletal element UBERON_0018294 premolar 1 +UBERON_0004765 skeletal element UBERON_0018295 preprotocrista +UBERON_0004765 skeletal element UBERON_0018296 replacement tooth +UBERON_0004765 skeletal element UBERON_0018298 stylocone +UBERON_0004765 skeletal element UBERON_0018299 mandibular symphyseal tooth +UBERON_0004765 skeletal element UBERON_0018300 upper canine 1 +UBERON_0004765 skeletal element UBERON_0018301 upper deciduous premolar 5 +UBERON_0004765 skeletal element UBERON_0018302 upper molar 1 +UBERON_0004765 skeletal element UBERON_0018305 bicipital surface +UBERON_0004765 skeletal element UBERON_0018310 cephalic dermal scale +UBERON_0004765 skeletal element UBERON_0018314 choanal groove +UBERON_0004765 skeletal element UBERON_0018316 cuboid facet of calcaneum +UBERON_0004765 skeletal element UBERON_0018318 entocarotid fossa +UBERON_0004765 skeletal element UBERON_0018320 flexor sesamoid +UBERON_0004765 skeletal element UBERON_0018321 foramen for glossopharyngeal nerve +UBERON_0004765 skeletal element UBERON_0018322 fourth phalanx +UBERON_0004765 skeletal element UBERON_0018323 hyoid articular area +UBERON_0004765 skeletal element UBERON_0018324 hypochordal radial +UBERON_0004765 skeletal element UBERON_0018325 caudal fin radial element +UBERON_0004765 skeletal element UBERON_0018326 ilioischiadic foramen +UBERON_0004765 skeletal element UBERON_0018328 incisura fossa +UBERON_0004765 skeletal element UBERON_0018329 interpterygoid region +UBERON_0004765 skeletal element UBERON_0018330 interpterygoid vacuity +UBERON_0004765 skeletal element UBERON_0018332 jugal bar +UBERON_0004765 skeletal element UBERON_0018333 labial cartilage +UBERON_0004765 skeletal element UBERON_0018334 lateral condyle of quadrate +UBERON_0004765 skeletal element UBERON_0018336 maxillary shank +UBERON_0004765 skeletal element UBERON_0018337 medial condyle of quadrate +UBERON_0004765 skeletal element UBERON_0018338 medial cotyla +UBERON_0004765 skeletal element UBERON_0018339 metotic fissure +UBERON_0004765 skeletal element UBERON_0018341 nasal process of premaxilla +UBERON_0004765 skeletal element UBERON_0018344 parastyle +UBERON_0004765 skeletal element UBERON_0018345 stylar shelf +UBERON_0004765 skeletal element UBERON_0018346 parietal notch +UBERON_0004765 skeletal element UBERON_0018347 pars canalicularis of petrosal +UBERON_0004765 skeletal element UBERON_0018348 petrosal bone +UBERON_0004765 skeletal element UBERON_0018349 pharyngeal apophysis +UBERON_0004765 skeletal element UBERON_0018351 precerebral fontanelle +UBERON_0004765 skeletal element UBERON_0018352 prismatic cartilage +UBERON_0004765 skeletal element UBERON_0018353 quadrate condyle +UBERON_0004765 skeletal element UBERON_0018356 rostral entotympanic element +UBERON_0004765 skeletal element UBERON_0018358 spina externa +UBERON_0004765 skeletal element UBERON_0018359 subolfactory process +UBERON_0004765 skeletal element UBERON_0018360 suborbital foramen +UBERON_0004765 skeletal element UBERON_0018364 suprameatal foramen +UBERON_0004765 skeletal element UBERON_0018365 supratemporal process +UBERON_0004765 skeletal element UBERON_0018366 supratendinal bridge +UBERON_0004765 skeletal element UBERON_0018367 processus ventralis of thoracic vertebra +UBERON_0004765 skeletal element UBERON_0018368 processus ventrolateralis of thoracic vertebra +UBERON_0004765 skeletal element UBERON_0018371 ventral supracondylar tubercle +UBERON_0004765 skeletal element UBERON_0018372 dorsal supracondylar tubercle +UBERON_0004765 skeletal element UBERON_0018373 vidian canal +UBERON_0004765 skeletal element UBERON_0018375 deciduous premolar 5 +UBERON_0004765 skeletal element UBERON_0018376 molar tooth 1 +UBERON_0004765 skeletal element UBERON_0018377 molar tooth 3 +UBERON_0004765 skeletal element UBERON_0018407 infra-orbital foramen of maxilla +UBERON_0004765 skeletal element UBERON_0018409 infra-orbital groove of maxilla +UBERON_0004765 skeletal element UBERON_0018413 facial nerve canal +UBERON_0004765 skeletal element UBERON_0018415 ethmoid foramen +UBERON_0004765 skeletal element UBERON_0018424 petrosal foramen +UBERON_0004765 skeletal element UBERON_0018508 foramen of nasal bone +UBERON_0004765 skeletal element UBERON_0018542 mandibular symphyseal region +UBERON_0004765 skeletal element UBERON_0018550 secondary incisor tooth +UBERON_0004765 skeletal element UBERON_0018551 central incisor tooth +UBERON_0004765 skeletal element UBERON_0018552 lateral incisor tooth +UBERON_0004765 skeletal element UBERON_0018553 primary central incisor tooth +UBERON_0004765 skeletal element UBERON_0018554 primary lateral incisor tooth +UBERON_0004765 skeletal element UBERON_0018561 upper secondary canine tooth +UBERON_0004765 skeletal element UBERON_0018562 lower secondary canine tooth +UBERON_0004765 skeletal element UBERON_0018568 lower central secondary incisor tooth +UBERON_0004765 skeletal element UBERON_0018570 lower lateral secondary incisor tooth +UBERON_0004765 skeletal element UBERON_0018571 upper first secondary premolar tooth +UBERON_0004765 skeletal element UBERON_0018572 upper second secondary premolar tooth +UBERON_0004765 skeletal element UBERON_0018573 lower first secondary premolar tooth +UBERON_0004765 skeletal element UBERON_0018574 lower second secondary premolar tooth +UBERON_0004765 skeletal element UBERON_0018575 upper first secondary molar tooth +UBERON_0004765 skeletal element UBERON_0018576 upper second secondary molar tooth +UBERON_0004765 skeletal element UBERON_0018577 upper third secondary molar tooth +UBERON_0004765 skeletal element UBERON_0018578 lower first secondary molar tooth +UBERON_0004765 skeletal element UBERON_0018579 lower second secondary molar tooth +UBERON_0004765 skeletal element UBERON_0018580 lower third secondary molar tooth +UBERON_0004765 skeletal element UBERON_0018583 primary canine tooth +UBERON_0004765 skeletal element UBERON_0018584 secondary canine tooth +UBERON_0004765 skeletal element UBERON_0018588 upper first primary molar tooth +UBERON_0004765 skeletal element UBERON_0018589 lower first primary molar tooth +UBERON_0004765 skeletal element UBERON_0018591 upper primary incisor tooth +UBERON_0004765 skeletal element UBERON_0018593 upper central primary incisor tooth +UBERON_0004765 skeletal element UBERON_0018594 upper lateral primary incisor tooth +UBERON_0004765 skeletal element UBERON_0018595 lower central primary incisor tooth +UBERON_0004765 skeletal element UBERON_0018596 lower lateral primary incisor tooth +UBERON_0004765 skeletal element UBERON_0018597 upper primary canine tooth +UBERON_0004765 skeletal element UBERON_0018598 lower primary canine tooth +UBERON_0004765 skeletal element UBERON_0018599 upper second primary molar tooth +UBERON_0004765 skeletal element UBERON_0018600 lower second primary molar tooth +UBERON_0004765 skeletal element UBERON_0018601 lower central incisor tooth +UBERON_0004765 skeletal element UBERON_0018602 lower lateral incisor tooth +UBERON_0004765 skeletal element UBERON_0018603 upper central incisor tooth +UBERON_0004765 skeletal element UBERON_0018604 upper lateral incisor tooth +UBERON_0004765 skeletal element UBERON_0018606 molar tooth 2 +UBERON_0004765 skeletal element UBERON_0018607 permanent molar tooth 2 +UBERON_0004765 skeletal element UBERON_0018608 permanent molar tooth 1 +UBERON_0004765 skeletal element UBERON_0018613 secondary upper tooth +UBERON_0004765 skeletal element UBERON_0018614 permanent lower tooth +UBERON_0004765 skeletal element UBERON_0018616 primary upper tooth +UBERON_0004765 skeletal element UBERON_0018617 primary lower tooth +UBERON_0004765 skeletal element UBERON_0018621 upper canine tooth +UBERON_0004765 skeletal element UBERON_0018622 lower canine tooth +UBERON_0004765 skeletal element UBERON_0018623 lower secondary incisor tooth +UBERON_0004765 skeletal element UBERON_0018640 premolar 2 +UBERON_0004765 skeletal element UBERON_0018643 deciduous molar tooth 2 +UBERON_0004765 skeletal element UBERON_0018644 deciduous molar tooth 1 +UBERON_0004765 skeletal element UBERON_0018646 premolar tooth 5 +UBERON_0004765 skeletal element UBERON_0018647 premolar tooth 4 +UBERON_0004765 skeletal element UBERON_0018648 upper premolar 4 +UBERON_0004765 skeletal element UBERON_0018651 foramen lacerum +UBERON_0004765 skeletal element UBERON_0018653 anterior ethmoidal foramen +UBERON_0004765 skeletal element UBERON_0018654 posterior ethmoidal foramen +UBERON_0004765 skeletal element UBERON_0018655 pars endotympanica +UBERON_0004765 skeletal element UBERON_0018664 neck of bone element +UBERON_0004765 skeletal element UBERON_0018667 neck of scapula +UBERON_0004765 skeletal element UBERON_0018673 neck of fibula +UBERON_0004765 skeletal element UBERON_0019253 upper secondary incisor tooth +UBERON_0004765 skeletal element UBERON_0026584 tympanic canal +UBERON_0004765 skeletal element UBERON_0026586 vestibular canal +UBERON_0004765 skeletal element UBERON_0034680 laryngeal prominence +UBERON_0004765 skeletal element UBERON_0034712 yellow fibrocartilage +UBERON_0004765 skeletal element UBERON_0034898 alveolar ridge of premaxilla +UBERON_0004765 skeletal element UBERON_0034900 palatine process of premaxilla +UBERON_0004765 skeletal element UBERON_0034937 pharyngeal bar +UBERON_0004765 skeletal element UBERON_0034938 mucocartilage tissue +UBERON_0004765 skeletal element UBERON_0034939 future piston +UBERON_0004765 skeletal element UBERON_0035007 nasal concha cartilage +UBERON_0004765 skeletal element UBERON_0035083 transverse process-bearing vertebra +UBERON_0004765 skeletal element UBERON_0035084 non-transverse process-bearing vertebra +UBERON_0004765 skeletal element UBERON_0035102 transverse process of caudal vertebra +UBERON_0004765 skeletal element UBERON_0035128 manus cartilage element +UBERON_0004765 skeletal element UBERON_0035129 pes cartilage element +UBERON_0004765 skeletal element UBERON_0035130 auditory ossicle endochondral element +UBERON_0004765 skeletal element UBERON_0035131 auditory ossicle cartilage element +UBERON_0004765 skeletal element UBERON_0035132 auditory ossicle pre-cartilage element +UBERON_0004765 skeletal element UBERON_0035139 anterior nasal spine of maxilla +UBERON_0004765 skeletal element UBERON_0035298 tuberculum sellae +UBERON_0004765 skeletal element UBERON_0035561 styliform element +UBERON_0004765 skeletal element UBERON_0035606 cartilage of external acoustic meatus +UBERON_0004765 skeletal element UBERON_0035612 nasal turbinal +UBERON_0004765 skeletal element UBERON_0035848 infraorbital margin +UBERON_0004765 skeletal element UBERON_0035849 orbital margin +UBERON_0004765 skeletal element UBERON_0035850 infraorbital bridge +UBERON_0004765 skeletal element UBERON_0035878 subchondral region of epiphysis +UBERON_0004765 skeletal element UBERON_0035957 antotic pillar +UBERON_0004765 skeletal element UBERON_0035958 preoptic pillar +UBERON_0004765 skeletal element UBERON_0035959 orbital pillar +UBERON_0004765 skeletal element UBERON_0035964 promontory of tympanic cavity +UBERON_0004765 skeletal element UBERON_0036144 incisive duct +UBERON_0004765 skeletal element UBERON_0036266 pars interarticularis of vertebra +UBERON_0004765 skeletal element UBERON_1500000 scapular blade +UBERON_0004765 skeletal element UBERON_1500005 ischial cartilage +UBERON_0004765 skeletal element UBERON_1500006 paired fin radial bone +UBERON_0004765 skeletal element UBERON_1500007 mesopterygium cartilage +UBERON_0004765 skeletal element UBERON_1500008 pelvic fin distal radial bone +UBERON_0004765 skeletal element UBERON_1500009 pelvic fin basipterygial radial +UBERON_0004765 skeletal element UBERON_1500010 pelvic fin middle radial bone +UBERON_0004765 skeletal element UBERON_1600006 paired fin radial element +UBERON_0004765 skeletal element UBERON_1600008 pelvic fin distal radial element +UBERON_0004765 skeletal element UBERON_1600010 pelvic fin middle radial element +UBERON_0004765 skeletal element UBERON_1700006 paired fin radial cartilage +UBERON_0004765 skeletal element UBERON_2000052 dorsal actinotrichium +UBERON_0004765 skeletal element UBERON_2000078 ventral actinotrichium +UBERON_0004765 skeletal element UBERON_2000089 actinotrichium +UBERON_0004765 skeletal element UBERON_2000103 supramaxilla +UBERON_0004765 skeletal element UBERON_2000104 suprapreopercle +UBERON_0004765 skeletal element UBERON_2000127 antorbital +UBERON_0004765 skeletal element UBERON_2000171 interhyal bone +UBERON_0004765 skeletal element UBERON_2000196 dorsal hypohyal bone +UBERON_0004765 skeletal element UBERON_2000203 rhinosphenoid +UBERON_0004765 skeletal element UBERON_2000223 infraorbital 1 +UBERON_0004765 skeletal element UBERON_2000224 quadrate ventral process +UBERON_0004765 skeletal element UBERON_2000226 lateral ethmoid bone +UBERON_0004765 skeletal element UBERON_2000239 mesocoracoid bone +UBERON_0004765 skeletal element UBERON_2000240 metapterygoid +UBERON_0004765 skeletal element UBERON_2000250 opercle +UBERON_0004765 skeletal element UBERON_2000264 preopercle +UBERON_0004765 skeletal element UBERON_2000268 anal fin proximal radial bone +UBERON_0004765 skeletal element UBERON_2000271 radial bone +UBERON_0004765 skeletal element UBERON_2000284 subopercle +UBERON_0004765 skeletal element UBERON_2000289 preopercle horizontal limb +UBERON_0004765 skeletal element UBERON_2000300 ventral hypohyal bone +UBERON_0004765 skeletal element UBERON_2000336 preopercle vertical limb +UBERON_0004765 skeletal element UBERON_2000337 basioccipital posterodorsal region +UBERON_0004765 skeletal element UBERON_2000348 exoccipital posteroventral region +UBERON_0004765 skeletal element UBERON_2000350 epipleural +UBERON_0004765 skeletal element UBERON_2000356 gill raker +UBERON_0004765 skeletal element UBERON_2000363 hypobranchial bone +UBERON_0004765 skeletal element UBERON_2000364 hypural +UBERON_0004765 skeletal element UBERON_2000373 dorsal fin actinotrichium +UBERON_0004765 skeletal element UBERON_2000375 anal fin actinotrichium +UBERON_0004765 skeletal element UBERON_2000376 infraorbital +UBERON_0004765 skeletal element UBERON_2000410 postcleithrum +UBERON_0004765 skeletal element UBERON_2000419 pterosphenoid +UBERON_0004765 skeletal element UBERON_2000422 retroarticular +UBERON_0004765 skeletal element UBERON_2000429 scaphium +UBERON_0004765 skeletal element UBERON_2000437 caudal fin actinotrichium +UBERON_0004765 skeletal element UBERON_2000438 parhypural +UBERON_0004765 skeletal element UBERON_2000442 supraneural bone +UBERON_0004765 skeletal element UBERON_2000452 urohyal +UBERON_0004765 skeletal element UBERON_2000460 adipose fin actinotrichium +UBERON_0004765 skeletal element UBERON_2000461 Weberian ossicle +UBERON_0004765 skeletal element UBERON_2000474 intercalar +UBERON_0004765 skeletal element UBERON_2000476 branchiostegal ray +UBERON_0004765 skeletal element UBERON_2000488 ceratobranchial bone +UBERON_0004765 skeletal element UBERON_2000495 infraorbital 5 +UBERON_0004765 skeletal element UBERON_2000507 epineural +UBERON_0004765 skeletal element UBERON_2000508 pelvic fin radial bone +UBERON_0004765 skeletal element UBERON_2000525 intercalarium +UBERON_0004765 skeletal element UBERON_2000526 intermuscular bone +UBERON_0004765 skeletal element UBERON_2000527 pharyngobranchial bone +UBERON_0004765 skeletal element UBERON_2000544 pectoral fin actinotrichium +UBERON_0004765 skeletal element UBERON_2000549 posttemporal +UBERON_0004765 skeletal element UBERON_2000557 preural 1 vertebra +UBERON_0004765 skeletal element UBERON_2000576 pterotic +UBERON_0004765 skeletal element UBERON_2000585 kinethmoid cartilage +UBERON_0004765 skeletal element UBERON_2000586 preural 2 vertebra +UBERON_0004765 skeletal element UBERON_2000587 sphenotic +UBERON_0004765 skeletal element UBERON_2000594 supracleithrum +UBERON_0004765 skeletal element UBERON_2000596 pelvic fin actinotrichium +UBERON_0004765 skeletal element UBERON_2000602 uroneural +UBERON_0004765 skeletal element UBERON_2000620 autopalatine +UBERON_0004765 skeletal element UBERON_2000623 basipterygium bone +UBERON_0004765 skeletal element UBERON_2000627 posterior ceratohyal +UBERON_0004765 skeletal element UBERON_2000637 claustrum cartilage +UBERON_0004765 skeletal element UBERON_2000646 anal fin distal radial bone +UBERON_0004765 skeletal element UBERON_2000657 entopterygoid +UBERON_0004765 skeletal element UBERON_2000658 epibranchial bone +UBERON_0004765 skeletal element UBERON_2000660 epural +UBERON_0004765 skeletal element UBERON_2000663 extrascapula +UBERON_0004765 skeletal element UBERON_2000674 interopercle +UBERON_0004765 skeletal element UBERON_2000691 supraorbital bone +UBERON_0004765 skeletal element UBERON_2000692 symplectic +UBERON_0004765 skeletal element UBERON_2000694 ceratobranchial 5 tooth +UBERON_0004765 skeletal element UBERON_2000698 tripus +UBERON_0004765 skeletal element UBERON_2000699 entopterygoid vertical strut +UBERON_0004765 skeletal element UBERON_2000734 preural vertebra +UBERON_0004765 skeletal element UBERON_2000735 hemal postzygapophysis +UBERON_0004765 skeletal element UBERON_2000859 specialized hemal arch and spine +UBERON_0004765 skeletal element UBERON_2000911 transverse process of neural arch 3 +UBERON_0004765 skeletal element UBERON_2000936 dorsal fin distal radial bone +UBERON_0004765 skeletal element UBERON_2000947 dorsal fin proximal radial bone +UBERON_0004765 skeletal element UBERON_2001028 hypurapophysis +UBERON_0004765 skeletal element UBERON_2001060 basidorsal +UBERON_0004765 skeletal element UBERON_2001141 tooth 1V +UBERON_0004765 skeletal element UBERON_2001142 tooth 5V +UBERON_0004765 skeletal element UBERON_2001143 tooth 4V +UBERON_0004765 skeletal element UBERON_2001144 tooth 2V +UBERON_0004765 skeletal element UBERON_2001145 tooth 3V +UBERON_0004765 skeletal element UBERON_2001146 tooth 1MD +UBERON_0004765 skeletal element UBERON_2001147 tooth 2MD +UBERON_0004765 skeletal element UBERON_2001148 tooth 1D +UBERON_0004765 skeletal element UBERON_2001150 tooth 2D +UBERON_0004765 skeletal element UBERON_2001151 tooth 4MD +UBERON_0004765 skeletal element UBERON_2001152 tooth 3MD +UBERON_0004765 skeletal element UBERON_2001160 dorsal scute +UBERON_0004765 skeletal element UBERON_2001163 supraneural 7 bone +UBERON_0004765 skeletal element UBERON_2001164 supraneural 6 bone +UBERON_0004765 skeletal element UBERON_2001165 supraneural 5 bone +UBERON_0004765 skeletal element UBERON_2001166 supraneural 9 bone +UBERON_0004765 skeletal element UBERON_2001167 vertebral element 1 +UBERON_0004765 skeletal element UBERON_2001168 vertebral element 2 +UBERON_0004765 skeletal element UBERON_2001169 vertebral element 3 +UBERON_0004765 skeletal element UBERON_2001170 vertebral element 4 +UBERON_0004765 skeletal element UBERON_2001171 os suspensorium +UBERON_0004765 skeletal element UBERON_2001172 roofing cartilage +UBERON_0004765 skeletal element UBERON_2001190 Weberian vertebra +UBERON_0004765 skeletal element UBERON_2001191 supraneural 2 bone +UBERON_0004765 skeletal element UBERON_2001192 supraneural 3 bone +UBERON_0004765 skeletal element UBERON_2001193 supraneural 8 bone +UBERON_0004765 skeletal element UBERON_2001220 basibranchial copula +UBERON_0004765 skeletal element UBERON_2001221 anterior copula +UBERON_0004765 skeletal element UBERON_2001222 posterior copula +UBERON_0004765 skeletal element UBERON_2001223 basibranchial 1 bone +UBERON_0004765 skeletal element UBERON_2001224 basibranchial 2 bone +UBERON_0004765 skeletal element UBERON_2001225 basibranchial 3 bone +UBERON_0004765 skeletal element UBERON_2001226 basibranchial 4 bone +UBERON_0004765 skeletal element UBERON_2001233 hypobranchial 1 bone +UBERON_0004765 skeletal element UBERON_2001234 hypobranchial 4 bone +UBERON_0004765 skeletal element UBERON_2001235 hypobranchial 3 bone +UBERON_0004765 skeletal element UBERON_2001236 hypobranchial 2 bone +UBERON_0004765 skeletal element UBERON_2001237 ceratobranchial 1 bone +UBERON_0004765 skeletal element UBERON_2001239 ceratobranchial 5 bone +UBERON_0004765 skeletal element UBERON_2001240 ceratobranchial 4 bone +UBERON_0004765 skeletal element UBERON_2001241 ceratobranchial 3 bone +UBERON_0004765 skeletal element UBERON_2001242 ceratobranchial 2 bone +UBERON_0004765 skeletal element UBERON_2001243 epibranchial 1 bone +UBERON_0004765 skeletal element UBERON_2001244 epibranchial 5 cartilage +UBERON_0004765 skeletal element UBERON_2001245 epibranchial 4 bone +UBERON_0004765 skeletal element UBERON_2001246 epibranchial 2 bone +UBERON_0004765 skeletal element UBERON_2001247 epibranchial 3 bone +UBERON_0004765 skeletal element UBERON_2001250 pharyngobranchial 2 bone +UBERON_0004765 skeletal element UBERON_2001251 pharyngobranchial 4 cartilage +UBERON_0004765 skeletal element UBERON_2001252 pharyngobranchial 3 bone +UBERON_0004765 skeletal element UBERON_2001253 neural arch 2 +UBERON_0004765 skeletal element UBERON_2001274 coronomeckelian +UBERON_0004765 skeletal element UBERON_2001275 sublingual bone +UBERON_0004765 skeletal element UBERON_2001279 branchiostegal ray 1 +UBERON_0004765 skeletal element UBERON_2001280 branchiostegal ray 3 +UBERON_0004765 skeletal element UBERON_2001281 branchiostegal ray 2 +UBERON_0004765 skeletal element UBERON_2001333 sublingual dorsal and ventral fused +UBERON_0004765 skeletal element UBERON_2001335 supradorsal +UBERON_0004765 skeletal element UBERON_2001361 basiventral +UBERON_0004765 skeletal element UBERON_2001364 hemal spine +UBERON_0004765 skeletal element UBERON_2001382 epibranchial bone uncinate process +UBERON_0004765 skeletal element UBERON_2001392 parapophysis 1 +UBERON_0004765 skeletal element UBERON_2001393 parapophysis 2 +UBERON_0004765 skeletal element UBERON_2001394 neural arch 3 +UBERON_0004765 skeletal element UBERON_2001395 neural arch 4 +UBERON_0004765 skeletal element UBERON_2001396 parapophysis + rib of vertebra 4 +UBERON_0004765 skeletal element UBERON_2001397 post-Weberian supraneural +UBERON_0004765 skeletal element UBERON_2001403 supraethmoid +UBERON_0004765 skeletal element UBERON_2001404 preethmoid bone +UBERON_0004765 skeletal element UBERON_2001406 kinethmoid bone +UBERON_0004765 skeletal element UBERON_2001407 infraorbital 2 +UBERON_0004765 skeletal element UBERON_2001408 infraorbital 3 +UBERON_0004765 skeletal element UBERON_2001409 infraorbital 4 +UBERON_0004765 skeletal element UBERON_2001412 epiotic +UBERON_0004765 skeletal element UBERON_2001415 pelvic fin distal radial bone 2 +UBERON_0004765 skeletal element UBERON_2001416 pelvic fin distal radial bone 3 +UBERON_0004765 skeletal element UBERON_2001417 pelvic fin distal radial bone 1 +UBERON_0004765 skeletal element UBERON_2001425 basal plate cartilage +UBERON_0004765 skeletal element UBERON_2001432 anterior sclerotic bone +UBERON_0004765 skeletal element UBERON_2001433 posterior sclerotic bone +UBERON_0004765 skeletal element UBERON_2001456 pectoral fin endoskeletal disc +UBERON_0004765 skeletal element UBERON_2001457 postcranial axial cartilage +UBERON_0004765 skeletal element UBERON_2001475 sublingual dorsal ossification +UBERON_0004765 skeletal element UBERON_2001476 sublingual ventral ossification +UBERON_0004765 skeletal element UBERON_2001502 epiphyseal bar +UBERON_0004765 skeletal element UBERON_2001504 occipital arch cartilage +UBERON_0004765 skeletal element UBERON_2001505 taenia marginalis anterior +UBERON_0004765 skeletal element UBERON_2001508 trabecula communis +UBERON_0004765 skeletal element UBERON_2001511 interhyal cartilage +UBERON_0004765 skeletal element UBERON_2001515 taenia marginalis posterior +UBERON_0004765 skeletal element UBERON_2001516 ceratobranchial cartilage +UBERON_0004765 skeletal element UBERON_2001517 ceratobranchial 2 cartilage +UBERON_0004765 skeletal element UBERON_2001518 ceratobranchial 3 cartilage +UBERON_0004765 skeletal element UBERON_2001519 ceratobranchial 4 cartilage +UBERON_0004765 skeletal element UBERON_2001520 ceratobranchial 1 cartilage +UBERON_0004765 skeletal element UBERON_2001521 ceratobranchial 5 cartilage +UBERON_0004765 skeletal element UBERON_2001522 hypobranchial cartilage +UBERON_0004765 skeletal element UBERON_2001523 hypobranchial 4 cartilage +UBERON_0004765 skeletal element UBERON_2001524 hypobranchial 1 cartilage +UBERON_0004765 skeletal element UBERON_2001525 hypobranchial 2 cartilage +UBERON_0004765 skeletal element UBERON_2001526 hypobranchial 3 cartilage +UBERON_0004765 skeletal element UBERON_2001527 epibranchial cartilage +UBERON_0004765 skeletal element UBERON_2001528 epibranchial 1 cartilage +UBERON_0004765 skeletal element UBERON_2001529 epibranchial 3 cartilage +UBERON_0004765 skeletal element UBERON_2001530 epibranchial 2 cartilage +UBERON_0004765 skeletal element UBERON_2001531 epibranchial 4 cartilage +UBERON_0004765 skeletal element UBERON_2001532 sublingual dorsal cartilage +UBERON_0004765 skeletal element UBERON_2001533 pharyngobranchial cartilage +UBERON_0004765 skeletal element UBERON_2001534 pharyngobranchial 3 cartilage +UBERON_0004765 skeletal element UBERON_2001535 median fin cartilage +UBERON_0004765 skeletal element UBERON_2001536 pharyngobranchial 2 cartilage +UBERON_0004765 skeletal element UBERON_2001537 mesocoracoid cartilage +UBERON_0004765 skeletal element UBERON_2001538 pelvic radial cartilage +UBERON_0004765 skeletal element UBERON_2001539 basipterygium cartilage +UBERON_0004765 skeletal element UBERON_2001540 pelvic radial 3 cartilage +UBERON_0004765 skeletal element UBERON_2001541 pelvic radial 2 cartilage +UBERON_0004765 skeletal element UBERON_2001542 pelvic radial 1 cartilage +UBERON_0004765 skeletal element UBERON_2001544 sublingual cartilage +UBERON_0004765 skeletal element UBERON_2001545 sublingual ventral cartilage +UBERON_0004765 skeletal element UBERON_2001546 neural spine 4 +UBERON_0004765 skeletal element UBERON_2001547 abdominal scute +UBERON_0004765 skeletal element UBERON_2001548 intercalarium ascending process +UBERON_0004765 skeletal element UBERON_2001553 manubrium +UBERON_0004765 skeletal element UBERON_2001560 hypural 1 +UBERON_0004765 skeletal element UBERON_2001561 hypural 2 +UBERON_0004765 skeletal element UBERON_2001562 hypural 3 +UBERON_0004765 skeletal element UBERON_2001563 hypural 4 +UBERON_0004765 skeletal element UBERON_2001564 hypural 5 +UBERON_0004765 skeletal element UBERON_2001577 premaxilla ascending process +UBERON_0004765 skeletal element UBERON_2001578 anterior dorsomedial process of autopalatine +UBERON_0004765 skeletal element UBERON_2001579 ural vertebra 2 +UBERON_0004765 skeletal element UBERON_2001581 ural centrum 2 +UBERON_0004765 skeletal element UBERON_2001582 non-Weberian precaudal vertebra +UBERON_0004765 skeletal element UBERON_2001583 preural centrum 1+ ural centrum 1 +UBERON_0004765 skeletal element UBERON_2001584 caudal procurrent ray +UBERON_0004765 skeletal element UBERON_2001585 caudal principal ray +UBERON_0004765 skeletal element UBERON_2001586 pectoral fin radial bone +UBERON_0004765 skeletal element UBERON_2001587 pectoral fin proximal radial bone +UBERON_0004765 skeletal element UBERON_2001588 pectoral fin distal radial bone +UBERON_0004765 skeletal element UBERON_2001589 propterygium cartilage +UBERON_0004765 skeletal element UBERON_2001592 claustrum bone +UBERON_0004765 skeletal element UBERON_2001603 maxilla ascending process +UBERON_0004765 skeletal element UBERON_2001604 lateral ethmoid palatine process +UBERON_0004765 skeletal element UBERON_2001606 caudal scute +UBERON_0004765 skeletal element UBERON_2001607 basipterygoid process of parasphenoid +UBERON_0004765 skeletal element UBERON_2001609 pharyngobranchial 2 bone uncinate process +UBERON_0004765 skeletal element UBERON_2001610 quadrate dorsal process +UBERON_0004765 skeletal element UBERON_2001611 quadrate posterodorsal process +UBERON_0004765 skeletal element UBERON_2001613 dorsal fin middle radial bone +UBERON_0004765 skeletal element UBERON_2001614 anal fin middle radial bone +UBERON_0004765 skeletal element UBERON_2001615 sphenotic spine +UBERON_0004765 skeletal element UBERON_2001616 lateral ethmoid wing +UBERON_0004765 skeletal element UBERON_2001623 type 1 odontode +UBERON_0004765 skeletal element UBERON_2001626 premaxillary tooth +UBERON_0004765 skeletal element UBERON_2001632 ectopterygoid tooth +UBERON_0004765 skeletal element UBERON_2001633 entopterygoid tooth +UBERON_0004765 skeletal element UBERON_2001634 pharyngobranchial 1 cartilage +UBERON_0004765 skeletal element UBERON_2001635 pharyngobranchial 1 bone +UBERON_0004765 skeletal element UBERON_2001636 pharyngobranchial 4 bone +UBERON_0004765 skeletal element UBERON_2001640 notochordal ossification +UBERON_0004765 skeletal element UBERON_2001647 pharyngeal tooth plate +UBERON_0004765 skeletal element UBERON_2001648 basihyal tooth plate +UBERON_0004765 skeletal element UBERON_2001649 basihyal tooth +UBERON_0004765 skeletal element UBERON_2001650 pharyngobranchial 2 tooth plate +UBERON_0004765 skeletal element UBERON_2001651 pharyngobranchial 2 tooth +UBERON_0004765 skeletal element UBERON_2001652 pharyngobranchial 3 tooth plate +UBERON_0004765 skeletal element UBERON_2001653 pharyngobranchial 3 tooth +UBERON_0004765 skeletal element UBERON_2001654 upper pharyngeal 4 tooth plate +UBERON_0004765 skeletal element UBERON_2001655 upper pharyngeal 4 tooth +UBERON_0004765 skeletal element UBERON_2001656 upper pharyngeal 5 tooth plate +UBERON_0004765 skeletal element UBERON_2001657 upper pharyngeal 5 tooth +UBERON_0004765 skeletal element UBERON_2001658 upper pharyngeal tooth plate +UBERON_0004765 skeletal element UBERON_2001659 upper pharyngeal tooth +UBERON_0004765 skeletal element UBERON_2001660 basibranchial tooth +UBERON_0004765 skeletal element UBERON_2001661 basibranchial tooth plate +UBERON_0004765 skeletal element UBERON_2001662 basibranchial 4 tooth plate +UBERON_0004765 skeletal element UBERON_2001663 basibranchial 4 tooth +UBERON_0004765 skeletal element UBERON_2001664 basibranchial 2 tooth plate +UBERON_0004765 skeletal element UBERON_2001665 basibranchial 2 tooth +UBERON_0004765 skeletal element UBERON_2001666 rudimentary neural arch +UBERON_0004765 skeletal element UBERON_2001671 anal fin radial bone +UBERON_0004765 skeletal element UBERON_2001672 dorsal fin radial bone +UBERON_0004765 skeletal element UBERON_2001674 infraorbital 6 +UBERON_0004765 skeletal element UBERON_2001675 mesethmoid cornu +UBERON_0004765 skeletal element UBERON_2001681 cornu mesial process +UBERON_0004765 skeletal element UBERON_2001684 ossified transcapular ligament +UBERON_0004765 skeletal element UBERON_2001688 palatine cartilage +UBERON_0004765 skeletal element UBERON_2001689 pterygoquadrate cartilage +UBERON_0004765 skeletal element UBERON_2001690 anterior cartilage of palatine +UBERON_0004765 skeletal element UBERON_2001691 posterior cartilage of palatine +UBERON_0004765 skeletal element UBERON_2001692 median premaxilla +UBERON_0004765 skeletal element UBERON_2001695 mediopharyngobranchial +UBERON_0004765 skeletal element UBERON_2001696 gongyloid cartilage +UBERON_0004765 skeletal element UBERON_2001697 transverse radial +UBERON_0004765 skeletal element UBERON_2001698 anal-fin stay +UBERON_0004765 skeletal element UBERON_2001699 dorsal-fin stay +UBERON_0004765 skeletal element UBERON_2001700 caudal-fin stay +UBERON_0004765 skeletal element UBERON_2001701 basibranchial 5 bone +UBERON_0004765 skeletal element UBERON_2001702 infraorbital 7 +UBERON_0004765 skeletal element UBERON_2001703 infraorbital 8 +UBERON_0004765 skeletal element UBERON_2001704 infraorbital 9 +UBERON_0004765 skeletal element UBERON_2001705 infraorbital 10 +UBERON_0004765 skeletal element UBERON_2001706 infraorbital 11 +UBERON_0004765 skeletal element UBERON_2001707 infraorbital 12 +UBERON_0004765 skeletal element UBERON_2001708 dermosphenotic +UBERON_0004765 skeletal element UBERON_2001713 caudal principal ray 1 +UBERON_0004765 skeletal element UBERON_2001714 caudal principal ray 2 +UBERON_0004765 skeletal element UBERON_2001715 caudal principal ray 3 +UBERON_0004765 skeletal element UBERON_2001716 caudal principal ray 4 +UBERON_0004765 skeletal element UBERON_2001717 caudal principal ray 5 +UBERON_0004765 skeletal element UBERON_2001718 caudal principal ray 6 +UBERON_0004765 skeletal element UBERON_2001719 caudal principal ray 7 +UBERON_0004765 skeletal element UBERON_2001720 caudal principal ray 8 +UBERON_0004765 skeletal element UBERON_2001721 caudal principal ray 9 +UBERON_0004765 skeletal element UBERON_2001722 caudal principal ray 10 +UBERON_0004765 skeletal element UBERON_2001723 caudal principal ray 11 +UBERON_0004765 skeletal element UBERON_2001724 caudal principal ray 12 +UBERON_0004765 skeletal element UBERON_2001725 caudal principal ray 13 +UBERON_0004765 skeletal element UBERON_2001726 caudal principal ray 14 +UBERON_0004765 skeletal element UBERON_2001727 caudal principal ray 15 +UBERON_0004765 skeletal element UBERON_2001728 caudal principal ray 16 +UBERON_0004765 skeletal element UBERON_2001729 caudal principal ray 17 +UBERON_0004765 skeletal element UBERON_2001730 caudal principal ray 18 +UBERON_0004765 skeletal element UBERON_2001731 caudal principal ray 19 +UBERON_0004765 skeletal element UBERON_2001732 vertebral element 5 +UBERON_0004765 skeletal element UBERON_2001733 mesethmoid ventral diverging lamella +UBERON_0004765 skeletal element UBERON_2001734 posterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2001735 scapular foramen +UBERON_0004765 skeletal element UBERON_2001737 coracoid foramen +UBERON_0004765 skeletal element UBERON_2001741 trigeminofacial foramen +UBERON_0004765 skeletal element UBERON_2001742 auditory foramen +UBERON_0004765 skeletal element UBERON_2001747 lateral mesethmoid wing +UBERON_0004765 skeletal element UBERON_2001748 superficial ophthalmic nerve foramen +UBERON_0004765 skeletal element UBERON_2001750 rib of vertebra 6 +UBERON_0004765 skeletal element UBERON_2001751 rib of vertebra 5 +UBERON_0004765 skeletal element UBERON_2001752 pre-narial cartilage +UBERON_0004765 skeletal element UBERON_2001753 posttemporal fossa +UBERON_0004765 skeletal element UBERON_2001754 dorsal fin ray 1 +UBERON_0004765 skeletal element UBERON_2001755 dorsal fin ray 2 +UBERON_0004765 skeletal element UBERON_2001756 dorsal fin ray 3 +UBERON_0004765 skeletal element UBERON_2001757 dorsal fin ray 4 +UBERON_0004765 skeletal element UBERON_2001758 dorsal fin ray 5 +UBERON_0004765 skeletal element UBERON_2001759 dorsal fin ray 6 +UBERON_0004765 skeletal element UBERON_2001760 dorsal fin ray 7 +UBERON_0004765 skeletal element UBERON_2001761 pectoral fin ray 1 +UBERON_0004765 skeletal element UBERON_2001762 pectoral fin ray 2 +UBERON_0004765 skeletal element UBERON_2001763 pectoral fin ray 3 +UBERON_0004765 skeletal element UBERON_2001764 pectoral fin ray 4 +UBERON_0004765 skeletal element UBERON_2001765 pectoral fin ray 5 +UBERON_0004765 skeletal element UBERON_2001766 pectoral fin ray 6 +UBERON_0004765 skeletal element UBERON_2001767 pectoral fin ray 7 +UBERON_0004765 skeletal element UBERON_2001769 anal fin ray 1 +UBERON_0004765 skeletal element UBERON_2001770 anal fin ray 2 +UBERON_0004765 skeletal element UBERON_2001771 anal fin ray 3 +UBERON_0004765 skeletal element UBERON_2001772 anal fin ray 4 +UBERON_0004765 skeletal element UBERON_2001773 anal fin ray 5 +UBERON_0004765 skeletal element UBERON_2001774 anal fin ray 6 +UBERON_0004765 skeletal element UBERON_2001775 anal fin ray 7 +UBERON_0004765 skeletal element UBERON_2001776 pelvic fin ray 1 +UBERON_0004765 skeletal element UBERON_2001777 pelvic fin ray 2 +UBERON_0004765 skeletal element UBERON_2001778 pelvic fin ray 3 +UBERON_0004765 skeletal element UBERON_2001779 pelvic fin ray 4 +UBERON_0004765 skeletal element UBERON_2001780 pelvic fin ray 5 +UBERON_0004765 skeletal element UBERON_2001781 pelvic fin ray 6 +UBERON_0004765 skeletal element UBERON_2001782 pelvic fin ray 7 +UBERON_0004765 skeletal element UBERON_2001783 supraoccipital crest +UBERON_0004765 skeletal element UBERON_2001785 branched dorsal fin ray +UBERON_0004765 skeletal element UBERON_2001786 unbranched dorsal fin ray +UBERON_0004765 skeletal element UBERON_2001787 pectoral fin spine +UBERON_0004765 skeletal element UBERON_2001788 pelvic splint +UBERON_0004765 skeletal element UBERON_2001789 dorsal fin spine 1 +UBERON_0004765 skeletal element UBERON_2001790 dorsal fin spine 2 +UBERON_0004765 skeletal element UBERON_2001792 pharyngobranchial 3 bone uncinate process +UBERON_0004765 skeletal element UBERON_2001793 pharyngobranchial 4 bone uncinate process +UBERON_0004765 skeletal element UBERON_2001795 ceratohyal foramen +UBERON_0004765 skeletal element UBERON_2001796 epibranchial 2 bone uncinate process +UBERON_0004765 skeletal element UBERON_2001797 epibranchial 1 bone uncinate process +UBERON_0004765 skeletal element UBERON_2001798 epicentral bone +UBERON_0004765 skeletal element UBERON_2001800 cephalic rib +UBERON_0004765 skeletal element UBERON_2001804 olfactory nerve foramen +UBERON_0004765 skeletal element UBERON_2001805 articular bone +UBERON_0004765 skeletal element UBERON_2001807 preepiotic fossa +UBERON_0004765 skeletal element UBERON_2001808 facial foramen +UBERON_0004765 skeletal element UBERON_2001809 trigeminal foramen +UBERON_0004765 skeletal element UBERON_2001815 nuchal plate +UBERON_0004765 skeletal element UBERON_2001816 anterior nuchal plate +UBERON_0004765 skeletal element UBERON_2001817 middle nuchal plate +UBERON_0004765 skeletal element UBERON_2001818 dorsal fin proximal radial bone 1 +UBERON_0004765 skeletal element UBERON_2001819 dorsal fin proximal radial bone 2 +UBERON_0004765 skeletal element UBERON_2001820 posterior nuchal plate +UBERON_0004765 skeletal element UBERON_2001822 epibranchial 3 bone uncinate process +UBERON_0004765 skeletal element UBERON_2001823 epibranchial 4 bone uncinate process +UBERON_0004765 skeletal element UBERON_2001824 lateral line scale +UBERON_0004765 skeletal element UBERON_2001825 urohyal lateral process +UBERON_0004765 skeletal element UBERON_2001826 urohyal median process +UBERON_0004765 skeletal element UBERON_2001829 caudal fin dorsal procurrent ray +UBERON_0004765 skeletal element UBERON_2001830 caudal fin ventral procurrent ray +UBERON_0004765 skeletal element UBERON_2001852 postcleithrum 1 +UBERON_0004765 skeletal element UBERON_2001853 postcleithrum 2 +UBERON_0004765 skeletal element UBERON_2001854 postcleithrum 3 +UBERON_0004765 skeletal element UBERON_2001855 hyomandibular condyle for the opercle +UBERON_0004765 skeletal element UBERON_2001856 gill ray +UBERON_0004765 skeletal element UBERON_2001858 suprapharyngobranchial +UBERON_0004765 skeletal element UBERON_2001859 pharyngobranchial 1 tooth plate +UBERON_0004765 skeletal element UBERON_2001864 basibranchial 1 cartilage +UBERON_0004765 skeletal element UBERON_2001865 basibranchial 4 cartilage +UBERON_0004765 skeletal element UBERON_2001866 basibranchial 5 cartilage +UBERON_0004765 skeletal element UBERON_2001867 post-ceratobranchial cartilage +UBERON_0004765 skeletal element UBERON_2001869 supraneural 2 cartilage +UBERON_0004765 skeletal element UBERON_2001870 supraneural 3 cartilage +UBERON_0004765 skeletal element UBERON_2001874 basibranchial 2 cartilage +UBERON_0004765 skeletal element UBERON_2001876 basibranchial 3 cartilage +UBERON_0004765 skeletal element UBERON_2001877 neural arch 1 +UBERON_0004765 skeletal element UBERON_2001878 rib of vertebra 2 +UBERON_0004765 skeletal element UBERON_2001879 rib of vertebra 1 +UBERON_0004765 skeletal element UBERON_2001880 rib of vertebra 3 +UBERON_0004765 skeletal element UBERON_2001881 rib of vertebra 4 +UBERON_0004765 skeletal element UBERON_2001882 parapophysis + rib of vertebra 3 +UBERON_0004765 skeletal element UBERON_2001883 parapophysis + rib of vertebra 3 + rib of vertebra 4 +UBERON_0004765 skeletal element UBERON_2001884 accessory neural arch +UBERON_0004765 skeletal element UBERON_2001885 neural spine 1 +UBERON_0004765 skeletal element UBERON_2001886 neural spine 2 +UBERON_0004765 skeletal element UBERON_2001887 neural spine 3 +UBERON_0004765 skeletal element UBERON_2001888 supraneural 1 bone +UBERON_0004765 skeletal element UBERON_2001889 supraneural 1 cartilage +UBERON_0004765 skeletal element UBERON_2001892 interhyal element +UBERON_0004765 skeletal element UBERON_2001893 hypobranchial element +UBERON_0004765 skeletal element UBERON_2001894 hypobranchial 1 element +UBERON_0004765 skeletal element UBERON_2001895 hypobranchial 2 element +UBERON_0004765 skeletal element UBERON_2001896 hypobranchial 3 element +UBERON_0004765 skeletal element UBERON_2001897 hypobranchial 4 element +UBERON_0004765 skeletal element UBERON_2001898 ceratobranchial element +UBERON_0004765 skeletal element UBERON_2001899 ceratobranchial 1 element +UBERON_0004765 skeletal element UBERON_2001900 ceratobranchial 2 element +UBERON_0004765 skeletal element UBERON_2001901 ceratobranchial 3 element +UBERON_0004765 skeletal element UBERON_2001902 ceratobranchial 4 element +UBERON_0004765 skeletal element UBERON_2001903 ceratobranchial 5 element +UBERON_0004765 skeletal element UBERON_2001904 epibranchial element +UBERON_0004765 skeletal element UBERON_2001905 epibranchial 1 element +UBERON_0004765 skeletal element UBERON_2001906 epibranchial 2 element +UBERON_0004765 skeletal element UBERON_2001907 epibranchial 3 element +UBERON_0004765 skeletal element UBERON_2001908 epibranchial 4 element +UBERON_0004765 skeletal element UBERON_2001909 pharyngobranchial element +UBERON_0004765 skeletal element UBERON_2001910 pharyngobranchial 1 element +UBERON_0004765 skeletal element UBERON_2001911 pharyngobranchial 2 element +UBERON_0004765 skeletal element UBERON_2001912 pharyngobranchial 3 element +UBERON_0004765 skeletal element UBERON_2001913 pharyngobranchial 4 element +UBERON_0004765 skeletal element UBERON_2001915 basibranchial 1 element +UBERON_0004765 skeletal element UBERON_2001916 basibranchial 2 element +UBERON_0004765 skeletal element UBERON_2001917 basibranchial 3 element +UBERON_0004765 skeletal element UBERON_2001918 basibranchial 4 element +UBERON_0004765 skeletal element UBERON_2001919 basibranchial 5 element +UBERON_0004765 skeletal element UBERON_2001923 aortic canal +UBERON_0004765 skeletal element UBERON_2001924 occipital artery foramen +UBERON_0004765 skeletal element UBERON_2001925 spiracular canal +UBERON_0004765 skeletal element UBERON_2001926 posterior myodome +UBERON_0004765 skeletal element UBERON_2001927 anterior myodome +UBERON_0004765 skeletal element UBERON_2001928 articular fossa of opercle +UBERON_0004765 skeletal element UBERON_2001929 epioccipital posterior process +UBERON_0004765 skeletal element UBERON_2001930 accessory vomerine tooth plate +UBERON_0004765 skeletal element UBERON_2001931 infranuchal scute +UBERON_0004765 skeletal element UBERON_2001932 sensory canal tubular ossicle +UBERON_0004765 skeletal element UBERON_2001934 rostral plate +UBERON_0004765 skeletal element UBERON_2001948 anal fin hook +UBERON_0004765 skeletal element UBERON_2001949 caudal fin hook +UBERON_0004765 skeletal element UBERON_2001956 epibranchial 1 bone proximal cartilage +UBERON_0004765 skeletal element UBERON_2001957 epibranchial 2 bone proximal cartilage +UBERON_0004765 skeletal element UBERON_2001958 ceratobranchial 3 bone distal cartilage +UBERON_0004765 skeletal element UBERON_2001959 ceratobranchial 4 bone proximal cartilage +UBERON_0004765 skeletal element UBERON_2001960 ceratobranchial 4 bone distal cartilage +UBERON_0004765 skeletal element UBERON_2001961 ceratobranchial 5 bone distal cartilage +UBERON_0004765 skeletal element UBERON_2001962 hypobranchial 1 bone distal cartilage +UBERON_0004765 skeletal element UBERON_2001963 hypobranchial 2 bone distal cartilage +UBERON_0004765 skeletal element UBERON_2001964 epibranchial 3 bone uncinate process cartilage +UBERON_0004765 skeletal element UBERON_2001965 epibranchial 4 bone uncinate process cartilage +UBERON_0004765 skeletal element UBERON_2001966 epibranchial 5 element +UBERON_0004765 skeletal element UBERON_2001971 parapophysis 4 +UBERON_0004765 skeletal element UBERON_2001974 subtemporal fossa +UBERON_0004765 skeletal element UBERON_2001980 vertebral element 6 +UBERON_0004765 skeletal element UBERON_2001981 vertebral element 7 +UBERON_0004765 skeletal element UBERON_2001982 vertebral element 8 +UBERON_0004765 skeletal element UBERON_2001983 centrum 1 +UBERON_0004765 skeletal element UBERON_2001984 centrum 2 +UBERON_0004765 skeletal element UBERON_2001985 centrum 3 +UBERON_0004765 skeletal element UBERON_2001986 centrum 4 +UBERON_0004765 skeletal element UBERON_2001987 centrum 5 +UBERON_0004765 skeletal element UBERON_2001988 centrum 6 +UBERON_0004765 skeletal element UBERON_2001989 mandibular-hyoid median cartilage +UBERON_0004765 skeletal element UBERON_2001991 lateral bone +UBERON_0004765 skeletal element UBERON_2001992 branched anal fin ray +UBERON_0004765 skeletal element UBERON_2001993 branched pectoral fin ray +UBERON_0004765 skeletal element UBERON_2001997 parietal-supraoccipital +UBERON_0004765 skeletal element UBERON_2001998 posttemporal-supracleithrum +UBERON_0004765 skeletal element UBERON_2001999 posterior cleithral process +UBERON_0004765 skeletal element UBERON_2002000 posterior dentation of pectoral fin spine +UBERON_0004765 skeletal element UBERON_2002001 anterior dentation of pectoral fin spine +UBERON_0004765 skeletal element UBERON_2002002 anterior distal serration of pectoral fin spine +UBERON_0004765 skeletal element UBERON_2002003 posterior dentation of dorsal fin spine 2 +UBERON_0004765 skeletal element UBERON_2002005 canal plate +UBERON_0004765 skeletal element UBERON_2002007 supraneural 4 bone +UBERON_0004765 skeletal element UBERON_2002008 neural lamina +UBERON_0004765 skeletal element UBERON_2002009 medial cartilage of palatine +UBERON_0004765 skeletal element UBERON_2002012 dentary foramen +UBERON_0004765 skeletal element UBERON_2002013 ascending limb of ceratobranchial 5 bone +UBERON_0004765 skeletal element UBERON_2002014 ascending limb of ceratobranchial 5 cartilage +UBERON_0004765 skeletal element UBERON_2002015 pharyngobranchial tooth plate +UBERON_0004765 skeletal element UBERON_2002016 pharyngobranchial 4 tooth plate +UBERON_0004765 skeletal element UBERON_2002017 anterior limb of ceratobranchial 5 bone +UBERON_0004765 skeletal element UBERON_2002018 anterior limb of ceratobranchial 5 cartilage +UBERON_0004765 skeletal element UBERON_2002019 pterotic-posttemporal-supracleithrum +UBERON_0004765 skeletal element UBERON_2002020 hypomaxilla +UBERON_0004765 skeletal element UBERON_2002021 ascending process of the parasphenoid +UBERON_0004765 skeletal element UBERON_2002022 dermethmoid +UBERON_0004765 skeletal element UBERON_2002023 second preethmoid bone +UBERON_0004765 skeletal element UBERON_2002026 pectoral fin proximal radial bone 1 +UBERON_0004765 skeletal element UBERON_2002027 pectoral fin proximal radial bone 2 +UBERON_0004765 skeletal element UBERON_2002028 pectoral fin proximal radial bone 3 +UBERON_0004765 skeletal element UBERON_2002029 pectoral fin proximal radial bone 4 +UBERON_0004765 skeletal element UBERON_2002030 ventral keel of coracoid +UBERON_0004765 skeletal element UBERON_2002031 orbital foramen +UBERON_0004765 skeletal element UBERON_2002039 dilatator fossa +UBERON_0004765 skeletal element UBERON_2002041 parapophysis 6 +UBERON_0004765 skeletal element UBERON_2002042 parapophysis 5 +UBERON_0004765 skeletal element UBERON_2002043 posterior limb of parapophysis 4 +UBERON_0004765 skeletal element UBERON_2002044 anterior limb of parapophysis 4 +UBERON_0004765 skeletal element UBERON_2002051 scale circulus +UBERON_0004765 skeletal element UBERON_2002053 bony plate +UBERON_0004765 skeletal element UBERON_2002056 hypural 6 +UBERON_0004765 skeletal element UBERON_2002058 Weberian complex centrum +UBERON_0004765 skeletal element UBERON_2002061 predorsal vertebra +UBERON_0004765 skeletal element UBERON_2002062 branched caudal fin ray +UBERON_0004765 skeletal element UBERON_2002064 uroneural 1 +UBERON_0004765 skeletal element UBERON_2002065 ural centrum 1 +UBERON_0004765 skeletal element UBERON_2002066 auditory fenestra +UBERON_0004765 skeletal element UBERON_2002069 distal cartilage of posterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2002070 internal anterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2002071 distal cartilage of internal anterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2002072 middle anterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2002073 distal cartilage of middle anterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2002074 external anterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2002075 distal cartilage of external anterior process of basipterygium +UBERON_0004765 skeletal element UBERON_2002076 lateral process of basipterygium +UBERON_0004765 skeletal element UBERON_2002077 lateropterygium +UBERON_0004765 skeletal element UBERON_2002078 hypural plate +UBERON_0004765 skeletal element UBERON_2002080 spina occipitalis +UBERON_0004765 skeletal element UBERON_2002082 basal fulcrum +UBERON_0004765 skeletal element UBERON_2002083 fringing fulcrum +UBERON_0004765 skeletal element UBERON_2002084 pleurostyle +UBERON_0004765 skeletal element UBERON_2002085 ural centrum +UBERON_0004765 skeletal element UBERON_2002086 pelvic axillary process +UBERON_0004765 skeletal element UBERON_2002087 pectoral axillary process +UBERON_0004765 skeletal element UBERON_2002088 interhaemal bone +UBERON_0004765 skeletal element UBERON_2002089 gular plate +UBERON_0004765 skeletal element UBERON_2002090 pro-otic fossa +UBERON_0004765 skeletal element UBERON_2002091 median caudal cartilage +UBERON_0004765 skeletal element UBERON_2002092 rostral cartilage +UBERON_0004765 skeletal element UBERON_2002095 ventromedial opening of posttemporal fossa +UBERON_0004765 skeletal element UBERON_2002109 uroneural 2 +UBERON_0004765 skeletal element UBERON_2002110 metapterygoid-quadrate fenestra +UBERON_0004765 skeletal element UBERON_2002112 preural 3 vertebra +UBERON_0004765 skeletal element UBERON_2002115 uroneural 3 +UBERON_0004765 skeletal element UBERON_2002118 scale radius +UBERON_0004765 skeletal element UBERON_2002119 dermal scale focus +UBERON_0004765 skeletal element UBERON_2002120 orbitosphenoid septum +UBERON_0004765 skeletal element UBERON_2002122 pouch scale +UBERON_0004765 skeletal element UBERON_2002123 neural arch 5 +UBERON_0004765 skeletal element UBERON_2002127 myorhabdoid bone +UBERON_0004765 skeletal element UBERON_2002132 hypural 7 +UBERON_0004765 skeletal element UBERON_2002149 vertebral element 9 +UBERON_0004765 skeletal element UBERON_2002150 vertebral element 10 +UBERON_0004765 skeletal element UBERON_2002151 vertebral element 11 +UBERON_0004765 skeletal element UBERON_2002152 vertebral element 12 +UBERON_0004765 skeletal element UBERON_2002159 caudal basal fulcrum +UBERON_0004765 skeletal element UBERON_2002160 ural centrum 3 +UBERON_0004765 skeletal element UBERON_2002161 ural centrum 4 +UBERON_0004765 skeletal element UBERON_2002162 ural vertebra +UBERON_0004765 skeletal element UBERON_2002163 ural vertebra 1 +UBERON_0004765 skeletal element UBERON_2002166 pseudourostyle +UBERON_0004765 skeletal element UBERON_2002167 stegural +UBERON_0004765 skeletal element UBERON_2002168 preural centrum 1 + ural centrum 1 + ural centrum 2 +UBERON_0004765 skeletal element UBERON_2002214 os suspensorium medial flange +UBERON_0004765 skeletal element UBERON_2002249 ctenius +UBERON_0004765 skeletal element UBERON_2002250 epural 2 +UBERON_0004765 skeletal element UBERON_2002251 epural 3 +UBERON_0004765 skeletal element UBERON_2002252 epural 1 +UBERON_0004765 skeletal element UBERON_2002257 premaxilla dentigerous process +UBERON_0004765 skeletal element UBERON_2002258 trituration tooth +UBERON_0004765 skeletal element UBERON_2002261 dorsal fin spine +UBERON_0004765 skeletal element UBERON_2002262 anal fin spine +UBERON_0004765 skeletal element UBERON_2002263 epineural 1 +UBERON_0004765 skeletal element UBERON_2002264 epineural 2 +UBERON_0004765 skeletal element UBERON_2002265 epineural 3 +UBERON_0004765 skeletal element UBERON_2002266 epineural 4 +UBERON_0004765 skeletal element UBERON_2002267 epineural 5 +UBERON_0004765 skeletal element UBERON_2002268 epineural 6 +UBERON_0004765 skeletal element UBERON_2002269 interarcual cartilage +UBERON_0004765 skeletal element UBERON_2002270 pelvic fin spine +UBERON_0004765 skeletal element UBERON_2002271 ventral caudal procurrent ray 2 +UBERON_0004765 skeletal element UBERON_2002272 ventral caudal procurrent ray 1 +UBERON_0004765 skeletal element UBERON_2002273 ctenoid scale +UBERON_0004765 skeletal element UBERON_2002274 transforming ctenoid scale +UBERON_0004765 skeletal element UBERON_2002277 pectoral fin distal radial bone 1 +UBERON_0004765 skeletal element UBERON_2002279 pectoral fin distal radial bone 2 +UBERON_0004765 skeletal element UBERON_2002280 pectoral fin distal radial bone 3 +UBERON_0004765 skeletal element UBERON_2002285 cycloid scale +UBERON_0004765 skeletal element UBERON_2002291 fulcrum +UBERON_0004765 skeletal element UBERON_2002292 epaxial basal fulcrum +UBERON_0004765 skeletal element UBERON_2002293 hypaxial basal fulcrum +UBERON_0004765 skeletal element UBERON_2002294 fish scute +UBERON_0004765 skeletal element UBERON_2005225 median fin radial bone +UBERON_0004765 skeletal element UBERON_2005226 median fin proximal radial bone +UBERON_0004765 skeletal element UBERON_2005266 pterotic fossa +UBERON_0004765 skeletal element UBERON_2005269 hypophyseal fenestra +UBERON_0004765 skeletal element UBERON_2005275 hyomandibular foramen +UBERON_0004765 skeletal element UBERON_2005372 dorsal fin distal radial bone 1 +UBERON_0004765 skeletal element UBERON_2005373 dorsal fin distal radial bone 2 +UBERON_0004765 skeletal element UBERON_2005374 dorsal fin distal radial bone 3 +UBERON_0004765 skeletal element UBERON_2005375 dorsal fin distal radial bone 4 +UBERON_0004765 skeletal element UBERON_2005376 dorsal fin distal radial bone 5 +UBERON_0004765 skeletal element UBERON_2005377 dorsal fin distal radial bone 6 +UBERON_0004765 skeletal element UBERON_2005378 dorsal fin distal radial bone 7 +UBERON_0004765 skeletal element UBERON_2005379 dorsal fin distal radial bone 8 +UBERON_0004765 skeletal element UBERON_2005380 dorsal fin proximal radial bone 3 +UBERON_0004765 skeletal element UBERON_2005381 dorsal fin proximal radial bone 4 +UBERON_0004765 skeletal element UBERON_2005382 dorsal fin proximal radial bone 5 +UBERON_0004765 skeletal element UBERON_2005383 dorsal fin proximal radial bone 6 +UBERON_0004765 skeletal element UBERON_2005384 dorsal fin proximal radial bone 7 +UBERON_0004765 skeletal element UBERON_2005385 dorsal fin proximal radial bone 8 +UBERON_0004765 skeletal element UBERON_2005415 inner ear foramen +UBERON_0004765 skeletal element UBERON_2005416 sacculoagenar foramen +UBERON_0004765 skeletal element UBERON_2007005 hemal prezygapophysis +UBERON_0004765 skeletal element UBERON_2100268 anal fin proximal radial element +UBERON_0004765 skeletal element UBERON_2100271 radial element +UBERON_0004765 skeletal element UBERON_2100508 pelvic fin radial element +UBERON_0004765 skeletal element UBERON_2100623 basipterygium element +UBERON_0004765 skeletal element UBERON_2100646 anal fin distal radial element +UBERON_0004765 skeletal element UBERON_2100936 dorsal fin distal radial element +UBERON_0004765 skeletal element UBERON_2100947 dorsal fin proximal radial element +UBERON_0004765 skeletal element UBERON_2101415 pelvic fin distal radial element 2 +UBERON_0004765 skeletal element UBERON_2101416 pelvic fin distal radial element 3 +UBERON_0004765 skeletal element UBERON_2101417 pelvic fin distal radial element 1 +UBERON_0004765 skeletal element UBERON_2101586 pectoral fin radial element +UBERON_0004765 skeletal element UBERON_2101587 pectoral fin proximal radial element +UBERON_0004765 skeletal element UBERON_2101588 pectoral fin distal radial element +UBERON_0004765 skeletal element UBERON_2101613 dorsal fin middle radial element +UBERON_0004765 skeletal element UBERON_2101614 anal fin middle radial element +UBERON_0004765 skeletal element UBERON_2101671 anal fin radial element +UBERON_0004765 skeletal element UBERON_2101672 dorsal fin radial element +UBERON_0004765 skeletal element UBERON_2101818 dorsal fin proximal radial element 1 +UBERON_0004765 skeletal element UBERON_2101819 dorsal fin proximal radial element 2 +UBERON_0004765 skeletal element UBERON_2102026 pectoral fin proximal radial element 1 +UBERON_0004765 skeletal element UBERON_2102027 pectoral fin proximal radial element 2 +UBERON_0004765 skeletal element UBERON_2102028 pectoral fin proximal radial element 3 +UBERON_0004765 skeletal element UBERON_2102029 pectoral fin proximal radial element 4 +UBERON_0004765 skeletal element UBERON_2102277 pectoral fin distal radial element 1 +UBERON_0004765 skeletal element UBERON_2102279 pectoral fin distal radial element 2 +UBERON_0004765 skeletal element UBERON_2102280 pectoral fin distal radial element 3 +UBERON_0004765 skeletal element UBERON_2105225 median fin radial element +UBERON_0004765 skeletal element UBERON_2105226 median fin proximal radial element +UBERON_0004765 skeletal element UBERON_2105372 dorsal fin distal radial element 1 +UBERON_0004765 skeletal element UBERON_2105373 dorsal fin distal radial element 2 +UBERON_0004765 skeletal element UBERON_2105374 dorsal fin distal radial element 3 +UBERON_0004765 skeletal element UBERON_2105375 dorsal fin distal radial element 4 +UBERON_0004765 skeletal element UBERON_2105376 dorsal fin distal radial element 5 +UBERON_0004765 skeletal element UBERON_2105377 dorsal fin distal radial element 6 +UBERON_0004765 skeletal element UBERON_2105378 dorsal fin distal radial element 7 +UBERON_0004765 skeletal element UBERON_2105379 dorsal fin distal radial element 8 +UBERON_0004765 skeletal element UBERON_2105380 dorsal fin proximal radial element 3 +UBERON_0004765 skeletal element UBERON_2105381 dorsal fin proximal radial element 4 +UBERON_0004765 skeletal element UBERON_2105382 dorsal fin proximal radial element 5 +UBERON_0004765 skeletal element UBERON_2105383 dorsal fin proximal radial element 6 +UBERON_0004765 skeletal element UBERON_2105384 dorsal fin proximal radial element 7 +UBERON_0004765 skeletal element UBERON_2105385 dorsal fin proximal radial element 8 +UBERON_0004765 skeletal element UBERON_2200268 anal fin proximal radial cartilage +UBERON_0004765 skeletal element UBERON_2200271 radial cartilage +UBERON_0004765 skeletal element UBERON_2200646 anal fin distal radial cartilage +UBERON_0004765 skeletal element UBERON_2200936 dorsal fin distal radial cartilage +UBERON_0004765 skeletal element UBERON_2200947 dorsal fin proximal radial cartilage +UBERON_0004765 skeletal element UBERON_2201415 pelvic fin distal radial cartilage 2 +UBERON_0004765 skeletal element UBERON_2201416 pelvic fin distal radial cartilage 3 +UBERON_0004765 skeletal element UBERON_2201417 pelvic fin distal radial cartilage 1 +UBERON_0004765 skeletal element UBERON_2201586 pectoral fin radial cartilage +UBERON_0004765 skeletal element UBERON_2201587 pectoral fin proximal radial cartilage +UBERON_0004765 skeletal element UBERON_2201588 pectoral fin distal radial cartilage +UBERON_0004765 skeletal element UBERON_2201613 dorsal fin middle radial cartilage +UBERON_0004765 skeletal element UBERON_2201614 anal fin middle radial cartilage +UBERON_0004765 skeletal element UBERON_2201671 anal fin radial cartilage +UBERON_0004765 skeletal element UBERON_2201672 dorsal fin radial cartilage +UBERON_0004765 skeletal element UBERON_2201818 dorsal fin proximal radial cartilage 1 +UBERON_0004765 skeletal element UBERON_2201819 dorsal fin proximal radial cartilage 2 +UBERON_0004765 skeletal element UBERON_2202026 pectoral fin proximal radial cartilage 1 +UBERON_0004765 skeletal element UBERON_2202027 pectoral fin proximal radial cartilage 2 +UBERON_0004765 skeletal element UBERON_2202028 pectoral fin proximal radial cartilage 3 +UBERON_0004765 skeletal element UBERON_2202029 pectoral fin proximal radial cartilage 4 +UBERON_0004765 skeletal element UBERON_2202277 pectoral fin distal radial cartilage 1 +UBERON_0004765 skeletal element UBERON_2202279 pectoral fin distal radial cartilage 2 +UBERON_0004765 skeletal element UBERON_2202280 pectoral fin distal radial cartilage 3 +UBERON_0004765 skeletal element UBERON_2205225 median fin radial cartilage +UBERON_0004765 skeletal element UBERON_2205226 median fin proximal radial cartilage +UBERON_0004765 skeletal element UBERON_2205372 dorsal fin distal radial cartilage 1 +UBERON_0004765 skeletal element UBERON_2205373 dorsal fin distal radial cartilage 2 +UBERON_0004765 skeletal element UBERON_2205374 dorsal fin distal radial cartilage 3 +UBERON_0004765 skeletal element UBERON_2205375 dorsal fin distal radial cartilage 4 +UBERON_0004765 skeletal element UBERON_2205376 dorsal fin distal radial cartilage 5 +UBERON_0004765 skeletal element UBERON_2205377 dorsal fin distal radial cartilage 6 +UBERON_0004765 skeletal element UBERON_2205378 dorsal fin distal radial cartilage 7 +UBERON_0004765 skeletal element UBERON_2205379 dorsal fin distal radial cartilage 8 +UBERON_0004765 skeletal element UBERON_2205380 dorsal fin proximal radial cartilage 3 +UBERON_0004765 skeletal element UBERON_2205381 dorsal fin proximal radial cartilage 4 +UBERON_0004765 skeletal element UBERON_2205382 dorsal fin proximal radial cartilage 5 +UBERON_0004765 skeletal element UBERON_2205383 dorsal fin proximal radial cartilage 6 +UBERON_0004765 skeletal element UBERON_2205384 dorsal fin proximal radial cartilage 7 +UBERON_0004765 skeletal element UBERON_2205385 dorsal fin proximal radial cartilage 8 +UBERON_0004765 skeletal element UBERON_3000002 alary cartilage +UBERON_0004765 skeletal element UBERON_3000003 alary process of premaxilla +UBERON_0004765 skeletal element UBERON_3000006 alveolar foramen +UBERON_0004765 skeletal element UBERON_3000012 angulosplenial coronoid process +UBERON_0004765 skeletal element UBERON_3000015 anterior maxillary process +UBERON_0004765 skeletal element UBERON_3000016 anterior nasal wall +UBERON_0004765 skeletal element UBERON_3000017 anterior process of pars palatina of maxilla +UBERON_0004765 skeletal element UBERON_3000018 anterior ramus of pterygoid +UBERON_0004765 skeletal element UBERON_3000020 anterolateral process of frontoparietal +UBERON_0004765 skeletal element UBERON_3000022 antorbital process +UBERON_0004765 skeletal element UBERON_3000031 ascending process of palatoquadrate +UBERON_0004765 skeletal element UBERON_3000036 basal process of palatoquadrate +UBERON_0004765 skeletal element UBERON_3000037 basicranial fenestra +UBERON_0004765 skeletal element UBERON_3000051 braincase and otic capsule opening +UBERON_0004765 skeletal element UBERON_3000068 cartilago ectochoanalis +UBERON_0004765 skeletal element UBERON_3000069 cartilago infranarina +UBERON_0004765 skeletal element UBERON_3000074 cartilago orbitalis +UBERON_0004765 skeletal element UBERON_3000078 cartilago prootico-occipitalis +UBERON_0004765 skeletal element UBERON_3000079 cartilago retronarina +UBERON_0004765 skeletal element UBERON_3000110 crista contacta +UBERON_0004765 skeletal element UBERON_3000111 crista dentalis of maxilla +UBERON_0004765 skeletal element UBERON_3000112 crista dentalis of premaxilla +UBERON_0004765 skeletal element UBERON_3000115 crista lateralis of premaxilla +UBERON_0004765 skeletal element UBERON_3000131 dilatatio alaris +UBERON_0004765 skeletal element UBERON_3000155 extremitas anterior +UBERON_0004765 skeletal element UBERON_3000160 fenestra dorsalis nasi +UBERON_0004765 skeletal element UBERON_3000161 fenestra endochoanalis +UBERON_0004765 skeletal element UBERON_3000162 fenestra endonarina communis +UBERON_0004765 skeletal element UBERON_3000164 fenestra lateralis nasi +UBERON_0004765 skeletal element UBERON_3000166 fenestra nasobasalis +UBERON_0004765 skeletal element UBERON_3000167 fenestra nasolateralis +UBERON_0004765 skeletal element UBERON_3000170 fenestra precerebralis +UBERON_0004765 skeletal element UBERON_3000171 fenestra prechoanalis +UBERON_0004765 skeletal element UBERON_3000177 flange of quadratojugal +UBERON_0004765 skeletal element UBERON_3000178 footplate of pars media plectri +UBERON_0004765 skeletal element UBERON_3000179 foramen acusticum +UBERON_0004765 skeletal element UBERON_3000180 foramen acusticum anterius +UBERON_0004765 skeletal element UBERON_3000181 foramen acusticum maius +UBERON_0004765 skeletal element UBERON_3000182 foramen acusticum minus +UBERON_0004765 skeletal element UBERON_3000183 foramen acusticum posterius +UBERON_0004765 skeletal element UBERON_3000185 foramen endolymphaticum +UBERON_0004765 skeletal element UBERON_3000189 foramen orbitonasale laterale +UBERON_0004765 skeletal element UBERON_3000190 foramen orbitonasale mediale +UBERON_0004765 skeletal element UBERON_3000192 foramen perilymphaticum +UBERON_0004765 skeletal element UBERON_3000193 foramen perilymphaticum accessorium +UBERON_0004765 skeletal element UBERON_3000195 foramen perilymphaticus inferius +UBERON_0004765 skeletal element UBERON_3000209 frontoparietal fontanelle +UBERON_0004765 skeletal element UBERON_3000234 inferior prenasal cartilage +UBERON_0004765 skeletal element UBERON_3000237 infrarostral cartilage +UBERON_0004765 skeletal element UBERON_3000254 lamella alaris +UBERON_0004765 skeletal element UBERON_3000255 lamina anterior of pars facialis +UBERON_0004765 skeletal element UBERON_3000259 lamina inferior +UBERON_0004765 skeletal element UBERON_3000260 lamina nariochoanalis +UBERON_0004765 skeletal element UBERON_3000280 margo mandibularis of pterygoid +UBERON_0004765 skeletal element UBERON_3000281 margo orbitalis of maxilla +UBERON_0004765 skeletal element UBERON_3000282 margo orbitalis of pterygoid +UBERON_0004765 skeletal element UBERON_3000283 margo orbitalis of squamosal +UBERON_0004765 skeletal element UBERON_3000284 margo tympanicus of pterygoid +UBERON_0004765 skeletal element UBERON_3000288 maxillopalatine +UBERON_0004765 skeletal element UBERON_3000290 medial inferior prenasal cartilage +UBERON_0004765 skeletal element UBERON_3000291 medial orbitonasal foramen +UBERON_0004765 skeletal element UBERON_3000292 medial ramus of pterygoid +UBERON_0004765 skeletal element UBERON_3000316 nasal opening +UBERON_0004765 skeletal element UBERON_3000323 nasopremaxilla +UBERON_0004765 skeletal element UBERON_3000329 oblique cartilage +UBERON_0004765 skeletal element UBERON_3000332 oculomotor foramen +UBERON_0004765 skeletal element UBERON_3000333 olfactory foramen +UBERON_0004765 skeletal element UBERON_3000341 optic fenestra +UBERON_0004765 skeletal element UBERON_3000344 orbitonasal foramen +UBERON_0004765 skeletal element UBERON_3000348 os basale +UBERON_0004765 skeletal element UBERON_3000363 otic ligament +UBERON_0004765 skeletal element UBERON_3000364 otic plate of pterygoid +UBERON_0004765 skeletal element UBERON_3000365 otic process +UBERON_0004765 skeletal element UBERON_3000367 otic ramus of squamosal +UBERON_0004765 skeletal element UBERON_3000368 otoccipital +UBERON_0004765 skeletal element UBERON_3000375 palatine process of the pars facialis of the maxilla +UBERON_0004765 skeletal element UBERON_3000380 palatoquadrate articular process +UBERON_0004765 skeletal element UBERON_3000381 paranasal commissure +UBERON_0004765 skeletal element UBERON_3000384 parasagittal crest +UBERON_0004765 skeletal element UBERON_3000386 cultriform process +UBERON_0004765 skeletal element UBERON_3000387 subotic alae +UBERON_0004765 skeletal element UBERON_3000388 parasphenoid tooth +UBERON_0004765 skeletal element UBERON_3000389 paries nasi +UBERON_0004765 skeletal element UBERON_3000394 pars articularis of mandibular arch +UBERON_0004765 skeletal element UBERON_3000399 pars externa plectri +UBERON_0004765 skeletal element UBERON_3000400 pars facialis of maxilla +UBERON_0004765 skeletal element UBERON_3000401 pars facialis of maxillopalatine +UBERON_0004765 skeletal element UBERON_3000406 pars interna plectri +UBERON_0004765 skeletal element UBERON_3000408 pars media plectri +UBERON_0004765 skeletal element UBERON_3000431 pila antoptica +UBERON_0004765 skeletal element UBERON_3000432 pila metoptica +UBERON_0004765 skeletal element UBERON_3000433 pineal foramen +UBERON_0004765 skeletal element UBERON_3000434 planum antorbitale +UBERON_0004765 skeletal element UBERON_3000437 planum conchale +UBERON_0004765 skeletal element UBERON_3000438 planum internasale +UBERON_0004765 skeletal element UBERON_3000443 plectral apparatus +UBERON_0004765 skeletal element UBERON_3000446 posterior condyle +UBERON_0004765 skeletal element UBERON_3000451 posterior ramus of pterygoid +UBERON_0004765 skeletal element UBERON_3000453 posterolateral vomerine process +UBERON_0004765 skeletal element UBERON_3000454 postnasal wall +UBERON_0004765 skeletal element UBERON_3000459 prearticular coronoid process +UBERON_0004765 skeletal element UBERON_3000467 preorbital process of the pars facialis of the maxilla +UBERON_0004765 skeletal element UBERON_3000486 processus ascendens plectri +UBERON_0004765 skeletal element UBERON_3000492 processus infrafenestralis +UBERON_0004765 skeletal element UBERON_3000493 processus internus of pseudoangular +UBERON_0004765 skeletal element UBERON_3000494 processus lingualis of pterygoid +UBERON_0004765 skeletal element UBERON_3000500 processus posterior of maxilla +UBERON_0004765 skeletal element UBERON_3000505 processus pterygoideus of maxilla +UBERON_0004765 skeletal element UBERON_3000509 processus suprafenestralis +UBERON_0004765 skeletal element UBERON_3000512 processus zygomatico-maxillaris +UBERON_0004765 skeletal element UBERON_3000515 pseudoangular +UBERON_0004765 skeletal element UBERON_3000516 pseudobasal process +UBERON_0004765 skeletal element UBERON_3000518 pseudodentary +UBERON_0004765 skeletal element UBERON_3000519 pseudodentary tooth +UBERON_0004765 skeletal element UBERON_3000523 pterygoid process of palatoquadrate +UBERON_0004765 skeletal element UBERON_3000527 quadrate process of palatoquadrate +UBERON_0004765 skeletal element UBERON_3000539 recessus marsupiatus of premaxilla +UBERON_0004765 skeletal element UBERON_3000540 recessus vaginiformis +UBERON_0004765 skeletal element UBERON_3000543 retroarticular process +UBERON_0004765 skeletal element UBERON_3000547 rostral process +UBERON_0004765 skeletal element UBERON_3000563 seydels palatal process +UBERON_0004765 skeletal element UBERON_3000572 sphenethmoid +UBERON_0004765 skeletal element UBERON_3000580 stylus of pars media plectri +UBERON_0004765 skeletal element UBERON_3000581 sulcus dentalis of maxilla +UBERON_0004765 skeletal element UBERON_3000582 sulcus dentalis of premaxilla +UBERON_0004765 skeletal element UBERON_3000583 sulcus for Meckels cartilage +UBERON_0004765 skeletal element UBERON_3000586 superior prenasal cartilage +UBERON_0004765 skeletal element UBERON_3000590 supraorbital flange +UBERON_0004765 skeletal element UBERON_3000591 suprasphenoid +UBERON_0004765 skeletal element UBERON_3000599 taenia tecti marginalis +UBERON_0004765 skeletal element UBERON_3000601 tectum nasi +UBERON_0004765 skeletal element UBERON_3000605 tentacular foramen +UBERON_0004765 skeletal element UBERON_3000610 trochlear foramen +UBERON_0004765 skeletal element UBERON_3000628 ventral ramus of squamosal +UBERON_0004765 skeletal element UBERON_3000634 vomerine canal +UBERON_0004765 skeletal element UBERON_3000639 zygomatic ramus of squamosal +UBERON_0004765 skeletal element UBERON_3000640 arcus praeoccipitalis +UBERON_0004765 skeletal element UBERON_3000642 maxillopalatine tooth +UBERON_0004765 skeletal element UBERON_3000645 corpus +UBERON_0004765 skeletal element UBERON_3000646 margo libera +UBERON_0004765 skeletal element UBERON_3000647 crista interna +UBERON_0004765 skeletal element UBERON_3000648 crista praeopercularis +UBERON_0004765 skeletal element UBERON_3000649 anterior process of vomer +UBERON_0004765 skeletal element UBERON_3000650 processus frontalis of maxilla +UBERON_0004765 skeletal element UBERON_3000651 lamina anterior of maxilla +UBERON_0004765 skeletal element UBERON_3000652 fossa maxillaris +UBERON_0004765 skeletal element UBERON_3000653 pars glenoidalis of quadratojugal +UBERON_0004765 skeletal element UBERON_3000654 pars jugalis +UBERON_0004765 skeletal element UBERON_3000655 processus dorsalis of lamella alaris +UBERON_0004765 skeletal element UBERON_3000656 processus posterodorsalis of lamella alaris +UBERON_0004765 skeletal element UBERON_3000657 dentigerous process +UBERON_0004765 skeletal element UBERON_3000658 prechoanal process +UBERON_0004765 skeletal element UBERON_3000659 postchoanal process +UBERON_0004765 skeletal element UBERON_3000660 margo choanalis +UBERON_0004765 skeletal element UBERON_3000661 crista vomeri +UBERON_0004765 skeletal element UBERON_3000662 processus posterior of parasphenoid +UBERON_0004765 skeletal element UBERON_3000663 parahyoid +UBERON_0004765 skeletal element UBERON_3000670 anterior process of hyoid apparatus +UBERON_0004765 skeletal element UBERON_3000671 anterolateral process of hyoid plate +UBERON_0004765 skeletal element UBERON_3000676 bronchial process +UBERON_0004765 skeletal element UBERON_3000677 lateral process of cricoid cartilage +UBERON_0004765 skeletal element UBERON_3000678 esophageal process +UBERON_0004765 skeletal element UBERON_3000688 prominentia apicalis dorsalis +UBERON_0004765 skeletal element UBERON_3000689 prominentia apicalis ventralis +UBERON_0004765 skeletal element UBERON_3000692 pedicel +UBERON_0004765 skeletal element UBERON_3000694 atlantal cotyle +UBERON_0004765 skeletal element UBERON_3000696 posterior intervertebral notch +UBERON_0004765 skeletal element UBERON_3000704 anterior intervertebral notch +UBERON_0004765 skeletal element UBERON_3000707 pleurapophysis +UBERON_0004765 skeletal element UBERON_3000711 procoelous +UBERON_0004765 skeletal element UBERON_3000712 opisthocoelous +UBERON_0004765 skeletal element UBERON_3000713 epichordal +UBERON_0004765 skeletal element UBERON_3000714 perichordal +UBERON_0004765 skeletal element UBERON_3000715 heterocoelous +UBERON_0004765 skeletal element UBERON_3000716 acoelous +UBERON_0004765 skeletal element UBERON_3000717 amphicoelous +UBERON_0004765 skeletal element UBERON_3000718 ectochordal +UBERON_0004765 skeletal element UBERON_3000719 holochordal +UBERON_0004765 skeletal element UBERON_3000720 stegochordal +UBERON_0004765 skeletal element UBERON_3000727 haemal arch lamina +UBERON_0004765 skeletal element UBERON_3000728 nucal keel +UBERON_0004765 skeletal element UBERON_3000735 mid-dorsal keel +UBERON_0004765 skeletal element UBERON_3000743 sacral condyle +UBERON_0004765 skeletal element UBERON_3000744 urostyle cotyle +UBERON_0004765 skeletal element UBERON_3000746 urostyle ridge +UBERON_0004765 skeletal element UBERON_3000748 suprascapula +UBERON_0004765 skeletal element UBERON_3000752 pars acromialis +UBERON_0004765 skeletal element UBERON_3000753 pars glenoidalis of scapula +UBERON_0004765 skeletal element UBERON_3000756 crista dorsalis humeri +UBERON_0004765 skeletal element UBERON_3000759 omosternum +UBERON_0004765 skeletal element UBERON_3000762 epicoracoid +UBERON_0004765 skeletal element UBERON_3000763 epicoracoid bridge +UBERON_0004765 skeletal element UBERON_3000773 ilial ridge +UBERON_0004765 skeletal element UBERON_3000774 ilial shaft +UBERON_0004765 skeletal element UBERON_3000777 epicoracoid horn +UBERON_0004765 skeletal element UBERON_3000780 incisura coracoidea +UBERON_0004765 skeletal element UBERON_3000783 fovea capitis of humerus +UBERON_0004765 skeletal element UBERON_3000784 ulnar condyle +UBERON_0004765 skeletal element UBERON_3000785 trochlear groove of humerus +UBERON_0004765 skeletal element UBERON_3000786 fossa cubitalis ventralis +UBERON_0004765 skeletal element UBERON_3000787 collum antibrachii +UBERON_0004765 skeletal element UBERON_3000792 anterior ramus of cleithrum +UBERON_0004765 skeletal element UBERON_3000793 anomocoelous +UBERON_0004765 skeletal element UBERON_3000794 displasiocoelous +UBERON_0004765 skeletal element UBERON_3000796 imbricate neural arch +UBERON_0004765 skeletal element UBERON_3000797 non-imbricate neural arch +UBERON_0004765 skeletal element UBERON_3000799 cartilago paraglenoidalis +UBERON_0004765 skeletal element UBERON_3000800 intercotylar space +UBERON_0004765 skeletal element UBERON_3000801 caput glenoidale +UBERON_0004765 skeletal element UBERON_3000802 fossa glenoidalis +UBERON_0004765 skeletal element UBERON_3000803 sulcus articularis lateralis +UBERON_0004765 skeletal element UBERON_3000804 sulcus articularis medialis +UBERON_0004765 skeletal element UBERON_3000805 carina proximalis +UBERON_0004765 skeletal element UBERON_3000806 carina medialis +UBERON_0004765 skeletal element UBERON_3000807 carina distalis +UBERON_0004765 skeletal element UBERON_3000808 parasagittal processes +UBERON_0004765 skeletal element UBERON_3000809 accessory articulation +UBERON_0004765 skeletal element UBERON_3000810 fissura sagittalis +UBERON_0004765 skeletal element UBERON_3000811 glenoid end of clavicle +UBERON_0004765 skeletal element UBERON_3000813 sulcus pro cartilagine praecoracoidealis +UBERON_0004765 skeletal element UBERON_3000814 glenoid head of coracoid +UBERON_0004765 skeletal element UBERON_3000815 sternal head of coracoid +UBERON_0004765 skeletal element UBERON_3000816 margo fenestralis +UBERON_0004765 skeletal element UBERON_3000817 margo posterior +UBERON_0004765 skeletal element UBERON_3000818 margo anterior of scapula +UBERON_0004765 skeletal element UBERON_3000819 margo clavicularis +UBERON_0004765 skeletal element UBERON_3000820 margo posterior of scapula +UBERON_0004765 skeletal element UBERON_3000821 margo suprascapularis +UBERON_0004765 skeletal element UBERON_3000822 pars suprascapularis +UBERON_0004765 skeletal element UBERON_3000823 sinus interglenoidalis +UBERON_0004765 skeletal element UBERON_3000824 tenuitas cristaeformis +UBERON_0004765 skeletal element UBERON_3000825 crista longitudinalis scapula +UBERON_0004765 skeletal element UBERON_3000827 margo anterior of cleithrum +UBERON_0004765 skeletal element UBERON_3000828 margo posterior of cleithrum +UBERON_0004765 skeletal element UBERON_3000829 margo scapularis +UBERON_0004765 skeletal element UBERON_3000830 margo vertebralis +UBERON_0004765 skeletal element UBERON_3000831 spina acromioidea +UBERON_0004765 skeletal element UBERON_3000832 anterior lamina recurvata +UBERON_0004765 skeletal element UBERON_3000833 sinus dorsalis +UBERON_0004765 skeletal element UBERON_3000834 posterior lamina recurvata +UBERON_0004765 skeletal element UBERON_3000836 crista lateralis humeri +UBERON_0004765 skeletal element UBERON_3000837 crista medialis humeri +UBERON_0004765 skeletal element UBERON_3000839 crista radii +UBERON_0004765 skeletal element UBERON_3000840 capitulum of radius +UBERON_0004765 skeletal element UBERON_3000842 capitulum ulnae +UBERON_0004765 skeletal element UBERON_3000844 sulcus longitudinalis +UBERON_0004765 skeletal element UBERON_3000856 intercalary element of fore digit +UBERON_0004765 skeletal element UBERON_3000859 foramen perforans carpi +UBERON_0004765 skeletal element UBERON_3000862 pubo-ischium +UBERON_0004765 skeletal element UBERON_3000865 epileon +UBERON_0004765 skeletal element UBERON_3000866 agger limitans anterior of ilium +UBERON_0004765 skeletal element UBERON_3000867 agger limitans anterior of ischium +UBERON_0004765 skeletal element UBERON_3000869 ilial protuberance +UBERON_0004765 skeletal element UBERON_3000870 preacetabular expansion +UBERON_0004765 skeletal element UBERON_3000871 fossula tuberis superioris +UBERON_0004765 skeletal element UBERON_3000872 collum ilei +UBERON_0004765 skeletal element UBERON_3000873 pars cylindriformis ilei +UBERON_0004765 skeletal element UBERON_3000874 crista ischii +UBERON_0004765 skeletal element UBERON_3000875 spina pelvis posterior +UBERON_0004765 skeletal element UBERON_3000876 spina pelvis anterior +UBERON_0004765 skeletal element UBERON_3000877 intumescentia bilateralis inferior +UBERON_0004765 skeletal element UBERON_3000878 intumescentia bilateralis superior +UBERON_0004765 skeletal element UBERON_3000879 incisura terminalis +UBERON_0004765 skeletal element UBERON_3000880 crista hypertrophica ischium +UBERON_0004765 skeletal element UBERON_3000882 interilial region +UBERON_0004765 skeletal element UBERON_3000883 recessus coccygealis +UBERON_0004765 skeletal element UBERON_3000886 ypsiloid cartilage +UBERON_0004765 skeletal element UBERON_3000894 femoral ridge +UBERON_0004765 skeletal element UBERON_3000896 foveal depression +UBERON_0004765 skeletal element UBERON_3000898 trochanteric crest +UBERON_0004765 skeletal element UBERON_3000903 tibial crest +UBERON_0004765 skeletal element UBERON_3000904 apophysis distalis of tibiofibula +UBERON_0004765 skeletal element UBERON_3000905 caput ossis cruris +UBERON_0004765 skeletal element UBERON_3000906 sulcus pro musculo extensori cruris brevis +UBERON_0004765 skeletal element UBERON_3000907 eminentia arcuata +UBERON_0004765 skeletal element UBERON_3000908 sulcus distalis ossis cruris +UBERON_0004765 skeletal element UBERON_3000909 sulcus proximalis ossis cruris +UBERON_0004765 skeletal element UBERON_3000911 foramen nutritium exterius +UBERON_0004765 skeletal element UBERON_3000921 element Y of hind mesopodium +UBERON_0004765 skeletal element UBERON_3000931 intercalary element of hind digit +UBERON_0004765 skeletal element UBERON_3000936 zonal element +UBERON_0004765 skeletal element UBERON_3000948 articular process +UBERON_0004765 skeletal element UBERON_3000949 posterior ramus of cleithrum +UBERON_0004765 skeletal element UBERON_3000950 os triangulare +UBERON_0004765 skeletal element UBERON_3000951 anterior radial +UBERON_0004765 skeletal element UBERON_3000952 posterior radial +UBERON_0004765 skeletal element UBERON_3000954 hypobranchial I +UBERON_0004765 skeletal element UBERON_3000955 ceratobranchial I +UBERON_0004765 skeletal element UBERON_3000956 hypobranchial II +UBERON_0004765 skeletal element UBERON_3000965 basale commune (carpal) +UBERON_0004765 skeletal element UBERON_3000966 angulosplenial +UBERON_0004765 skeletal element UBERON_3000998 suprarostral cartilage +UBERON_0004765 skeletal element UBERON_3001002 basale commune (tarsal) +UBERON_0004765 skeletal element UBERON_3010045 centrale 1 +UBERON_0004765 skeletal element UBERON_3010060 centrale (fore) +UBERON_0004765 skeletal element UBERON_3010061 anterior quadratocranial commissure +UBERON_0004765 skeletal element UBERON_3010073 centrale 2 +UBERON_0004765 skeletal element UBERON_3010092 basitrabecular process +UBERON_0004765 skeletal element UBERON_3010094 quadratoethmoid process +UBERON_0004765 skeletal element UBERON_3010118 quadrato-orbital commissure +UBERON_0004765 skeletal element UBERON_3010128 taeniae tecti marginalis +UBERON_0004765 skeletal element UBERON_3010130 taenia tecti transversalis +UBERON_0004765 skeletal element UBERON_3010131 orbital cartilages +UBERON_0004765 skeletal element UBERON_3010132 taenia tecti medialis +UBERON_0004765 skeletal element UBERON_3010142 occipital arch +UBERON_0004765 skeletal element UBERON_3010205 postminimus +UBERON_0004765 skeletal element UBERON_3010240 Nobelian rod +UBERON_0004765 skeletal element UBERON_3010262 capitulum of radio-ulna +UBERON_0004765 skeletal element UBERON_3010458 suprarostral ala +UBERON_0004765 skeletal element UBERON_3010525 frontoparietal fenestra +UBERON_0004765 skeletal element UBERON_3010528 articular process of palatoquadrate +UBERON_0004765 skeletal element UBERON_3010559 retroarticular process of the palatoquadrate +UBERON_0004765 skeletal element UBERON_3010560 anterior process of the palatoquadrate +UBERON_0004765 skeletal element UBERON_3010562 suboccular foramen +UBERON_0004765 skeletal element UBERON_3010563 craniopalatine foramen +UBERON_0004765 skeletal element UBERON_3010564 carotid foramen +UBERON_0004765 skeletal element UBERON_3010565 pila preoptica +UBERON_0004765 skeletal element UBERON_3010566 prootic foramen +UBERON_0004765 skeletal element UBERON_3010576 prenasal (amphibians) +UBERON_0004765 skeletal element UBERON_3010583 basibranchial I +UBERON_0004765 skeletal element UBERON_3010585 basibranchial II +UBERON_0004765 skeletal element UBERON_3010614 cartilago lateralis of aryngo-tracheal chamber +UBERON_0004765 skeletal element UBERON_3010624 subarticular sesamoid +UBERON_0004765 skeletal element UBERON_3010675 bony nodule of terminal phalanx of hind digit +UBERON_0004765 skeletal element UBERON_3010682 proximal-most prepollical element +UBERON_0004765 skeletal element UBERON_3010683 distal-most prepollical element +UBERON_0004765 skeletal element UBERON_3010684 proximal-most prehallical element +UBERON_0004765 skeletal element UBERON_3010685 distal-most prehallical element +UBERON_0004765 skeletal element UBERON_3010690 fetal tooth +UBERON_0004765 skeletal element UBERON_3010719 dilated medial process of metacarpal IV +UBERON_0004765 skeletal element UBERON_3010728 otic opercular element +UBERON_0004765 skeletal element UBERON_3010746 T-shaped terminal phalanx +UBERON_0004765 skeletal element UBERON_3010820 suboccular arch +UBERON_0004765 skeletal element UBERON_3010821 hyoquadrate process +UBERON_0004765 skeletal element UBERON_3010824 processus triangularis of palatoquadrate cartilage +UBERON_0004765 skeletal element UBERON_3010827 anterior prenasal cartilage +UBERON_0004765 skeletal element UBERON_3010828 commissura terminales of hyoid apparatus +UBERON_0004765 skeletal element UBERON_3010831 occipito-petrosal +UBERON_0004765 skeletal element UBERON_3010832 occipital segment +UBERON_0004765 skeletal element UBERON_4000003 permanent cartilage +UBERON_0004765 skeletal element UBERON_4000013 mineralized skeletal tissue +UBERON_0004765 skeletal element UBERON_4000051 lepidosteoid scale +UBERON_0004765 skeletal element UBERON_4000052 ganoid scale +UBERON_0004765 skeletal element UBERON_4000055 polypteroid scale +UBERON_0004765 skeletal element UBERON_4000070 elasmoid scale +UBERON_0004765 skeletal element UBERON_4000074 palaeoniscoid scale +UBERON_0004765 skeletal element UBERON_4000077 non-mineralized chondroid tissue +UBERON_0004765 skeletal element UBERON_4000078 chondroid tissue +UBERON_0004765 skeletal element UBERON_4000080 keratin-based scale +UBERON_0004765 skeletal element UBERON_4000081 cosmoid scale +UBERON_0004765 skeletal element UBERON_4000086 secondary cartilage tissue +UBERON_0004765 skeletal element UBERON_4000087 cosmine +UBERON_0004765 skeletal element UBERON_4000088 mineralized cartilage tissue +UBERON_0004765 skeletal element UBERON_4000097 orthodentine +UBERON_0004765 skeletal element UBERON_4000102 osteodentine +UBERON_0004765 skeletal element UBERON_4000104 ganoine +UBERON_0004765 skeletal element UBERON_4000105 limiting layer of elasmoid scale +UBERON_0004765 skeletal element UBERON_4000106 vasodentine +UBERON_0004765 skeletal element UBERON_4000107 elasmodine +UBERON_0004765 skeletal element UBERON_4000108 non-mineralized hyaline cartilage tissue +UBERON_0004765 skeletal element UBERON_4000109 mineralized hyaline cartilage tissue +UBERON_0004765 skeletal element UBERON_4000115 mineralized bone tissue +UBERON_0004765 skeletal element UBERON_4000118 cellular bone tissue +UBERON_0004765 skeletal element UBERON_4000119 non-mineralized avascular GAG-rich matrix +UBERON_0004765 skeletal element UBERON_4000120 mineralized avascular GAG-rich matrix +UBERON_0004765 skeletal element UBERON_4000122 acellular bone tissue +UBERON_0004765 skeletal element UBERON_4000123 odontode tissue +UBERON_0004765 skeletal element UBERON_4000134 ossified tendon +UBERON_0004765 skeletal element UBERON_4000138 ligamentous replacement element +UBERON_0004765 skeletal element UBERON_4000146 transient cartilaginous element +UBERON_0004765 skeletal element UBERON_4000159 ossified ligament +UBERON_0004765 skeletal element UBERON_4000160 anocleithrum +UBERON_0004765 skeletal element UBERON_4000172 lepidotrichium +UBERON_0004765 skeletal element UBERON_4000173 pelvic fin lepidotrichium +UBERON_0004765 skeletal element UBERON_4000174 caudal fin lepidotrichium +UBERON_0004765 skeletal element UBERON_4000175 pectoral fin lepidotrichium +UBERON_0004765 skeletal element UBERON_4000176 anal fin lepidotrichium +UBERON_0004765 skeletal element UBERON_4000177 dorsal fin lepidotrichium +UBERON_0004765 skeletal element UBERON_4100000 skeletal element projection +UBERON_0004765 skeletal element UBERON_4100003 articular surface +UBERON_0004765 skeletal element UBERON_4100004 ischial peduncle +UBERON_0004765 skeletal element UBERON_4100005 second phalanx +UBERON_0004765 skeletal element UBERON_4100006 parasternal process +UBERON_0004765 skeletal element UBERON_4100007 pectoral articular facet +UBERON_0004765 skeletal element UBERON_4100009 pedal digit 7 phalanx +UBERON_0004765 skeletal element UBERON_4100010 post-glenoid process +UBERON_0004765 skeletal element UBERON_4100011 postacetabular buttress +UBERON_0004765 skeletal element UBERON_4100012 postacetabular zone +UBERON_0004765 skeletal element UBERON_4100013 postcoracoid +UBERON_0004765 skeletal element UBERON_4100016 posterior process of ilium +UBERON_0004765 skeletal element UBERON_4100100 parasphenoid flange +UBERON_0004765 skeletal element UBERON_4100112 radial facet +UBERON_0004765 skeletal element UBERON_4100114 anterior distal condyle of femur +UBERON_0004765 skeletal element UBERON_4100115 spiracular notch +UBERON_0004765 skeletal element UBERON_4100116 posterior distal condyle of femur +UBERON_0004765 skeletal element UBERON_4100117 presacral rib +UBERON_0004765 skeletal element UBERON_4100118 trunk rib +UBERON_0004765 skeletal element UBERON_4100119 extratemporal bone +UBERON_0004765 skeletal element UBERON_4200000 medial blade of ilium +UBERON_0004765 skeletal element UBERON_4200001 postpubis +UBERON_0004765 skeletal element UBERON_4200002 coracoid plate +UBERON_0004765 skeletal element UBERON_4200004 intertrochanteric fossa +UBERON_0004765 skeletal element UBERON_4200006 infraglenoid buttress +UBERON_0004765 skeletal element UBERON_4200007 transverse pelvic ridge +UBERON_0004765 skeletal element UBERON_4200008 inter-clavicle joint +UBERON_0004765 skeletal element UBERON_4200009 hypochordal lepidotrichium +UBERON_0004765 skeletal element UBERON_4200010 ventral humeral ridge +UBERON_0004765 skeletal element UBERON_4200011 pedal centrale +UBERON_0004765 skeletal element UBERON_4200012 ectepicondylar flange +UBERON_0004765 skeletal element UBERON_4200013 flexor surface +UBERON_0004765 skeletal element UBERON_4200014 lateral tuber of ulna +UBERON_0004765 skeletal element UBERON_4200016 postbranchial lamina +UBERON_0004765 skeletal element UBERON_4200018 calcaneal tuber +UBERON_0004765 skeletal element UBERON_4200019 preacetabular process +UBERON_0004765 skeletal element UBERON_4200020 suprascapular fossa +UBERON_0004765 skeletal element UBERON_4200022 extracleithrum +UBERON_0004765 skeletal element UBERON_4200025 ascending process of the astragalus +UBERON_0004765 skeletal element UBERON_4200026 supraglenoid foramen +UBERON_0004765 skeletal element UBERON_4200027 supraglenoid buttress +UBERON_0004765 skeletal element UBERON_4200028 adductor blade +UBERON_0004765 skeletal element UBERON_4200029 adductor crest +UBERON_0004765 skeletal element UBERON_4200030 antitrochanter +UBERON_0004765 skeletal element UBERON_4200032 clavicle blade +UBERON_0004765 skeletal element UBERON_4200033 cleithrum head +UBERON_0004765 skeletal element UBERON_4200034 cnemial crest +UBERON_0004765 skeletal element UBERON_4200036 internal trochanter +UBERON_0004765 skeletal element UBERON_4200037 supinator process +UBERON_0004765 skeletal element UBERON_4200038 subscapular fossa +UBERON_0004765 skeletal element UBERON_4200039 supraacetabular buttress +UBERON_0004765 skeletal element UBERON_4200040 acrocoracoid process +UBERON_0004765 skeletal element UBERON_4200042 brevis shelf +UBERON_0004765 skeletal element UBERON_4200043 brevis fossa +UBERON_0004765 skeletal element UBERON_4200044 articular surface for the calcaneum on the astragalus +UBERON_0004765 skeletal element UBERON_4200045 articular surface for the astragalus on the calcaneum +UBERON_0004765 skeletal element UBERON_4200046 astragalo-calcaneal canal +UBERON_0004765 skeletal element UBERON_4200047 attachment site +UBERON_0004765 skeletal element UBERON_4200048 bicipital crest +UBERON_0004765 skeletal element UBERON_4200049 cartilago sesamoides +UBERON_0004765 skeletal element UBERON_4200050 cotyla +UBERON_0004765 skeletal element UBERON_4200051 cotyloid notch +UBERON_0004765 skeletal element UBERON_4200052 crista tibiofibularis +UBERON_0004765 skeletal element UBERON_4200060 ectepicondylar foramen +UBERON_0004765 skeletal element UBERON_4200062 epichordal lepidotrichium +UBERON_0004765 skeletal element UBERON_4200063 ectocondylar tubercle +UBERON_0004765 skeletal element UBERON_4200068 prepubic element +UBERON_0004765 skeletal element UBERON_4200069 sternal keel +UBERON_0004765 skeletal element UBERON_4200070 median fin spine +UBERON_0004765 skeletal element UBERON_4200075 fin spine +UBERON_0004765 skeletal element UBERON_4200078 clavicular facet +UBERON_0004765 skeletal element UBERON_4200079 dorsal iliac process +UBERON_0004765 skeletal element UBERON_4200080 fibular crest +UBERON_0004765 skeletal element UBERON_4200081 hypocleideum +UBERON_0004765 skeletal element UBERON_4200083 postaxial centrale +UBERON_0004765 skeletal element UBERON_4200084 preaxial centrale +UBERON_0004765 skeletal element UBERON_4200086 iliac neck +UBERON_0004765 skeletal element UBERON_4200087 iliac peduncle +UBERON_0004765 skeletal element UBERON_4200088 iliac peduncle of the pubis +UBERON_0004765 skeletal element UBERON_4200089 fibular facet of the calcaneum +UBERON_0004765 skeletal element UBERON_4200090 fibular facet of the astragalus +UBERON_0004765 skeletal element UBERON_4200091 ethomosphenoid region +UBERON_0004765 skeletal element UBERON_4200095 infraspinous process +UBERON_0004765 skeletal element UBERON_4200096 intercondylar fossa +UBERON_0004765 skeletal element UBERON_4200098 ischial foot +UBERON_0004765 skeletal element UBERON_4200099 lateral extrascapular +UBERON_0004765 skeletal element UBERON_4200100 latissimus dorsi process +UBERON_0004765 skeletal element UBERON_4200102 median dorsal plate +UBERON_0004765 skeletal element UBERON_4200103 median extrascapular +UBERON_0004765 skeletal element UBERON_4200104 metacarpal extensor pit +UBERON_0004765 skeletal element UBERON_4200106 muscle scar +UBERON_0004765 skeletal element UBERON_4200107 obturator process of ischium +UBERON_0004765 skeletal element UBERON_4200112 prepectoral space +UBERON_0004765 skeletal element UBERON_4200113 predorsal scute +UBERON_0004765 skeletal element UBERON_4200114 prepubic process +UBERON_0004765 skeletal element UBERON_4200115 presupracleithrum +UBERON_0004765 skeletal element UBERON_4200116 pteroid +UBERON_0004765 skeletal element UBERON_4200117 pubic boot +UBERON_0004765 skeletal element UBERON_4200118 pubic peduncle +UBERON_0004765 skeletal element UBERON_4200119 pubis-ischium contact +UBERON_0004765 skeletal element UBERON_4200120 puboischiadic plate +UBERON_0004765 skeletal element UBERON_4200123 scapular process +UBERON_0004765 skeletal element UBERON_4200124 sternal trabecula +UBERON_0004765 skeletal element UBERON_4200125 supraacetabular crest +UBERON_0004765 skeletal element UBERON_4200126 supraacetabular rim +UBERON_0004765 skeletal element UBERON_4200127 suprascapula foramen +UBERON_0004765 skeletal element UBERON_4200130 tibial facet of astragalus +UBERON_0004765 skeletal element UBERON_4200131 trochanteric shelf +UBERON_0004765 skeletal element UBERON_4200135 puboischiadic bar +UBERON_0004765 skeletal element UBERON_4200139 palatoquadrate element +UBERON_0004765 skeletal element UBERON_4200140 prepollical element +UBERON_0004765 skeletal element UBERON_4200141 prehallical element +UBERON_0004765 skeletal element UBERON_4200150 accessory foramen +UBERON_0004765 skeletal element UBERON_4200152 intertarsale sesamoid +UBERON_0004765 skeletal element UBERON_4200153 metatarsal bone of digit 6 +UBERON_0004765 skeletal element UBERON_4200154 metapodium bone 6 +UBERON_0004765 skeletal element UBERON_4200155 metapodium bone 7 +UBERON_0004765 skeletal element UBERON_4200156 metapodium bone 8 +UBERON_0004765 skeletal element UBERON_4200157 metatarsal bone of digit 7 +UBERON_0004765 skeletal element UBERON_4200158 metatarsal bone of digit 8 +UBERON_0004765 skeletal element UBERON_4200159 ventral ridge system +UBERON_0004765 skeletal element UBERON_4200169 process 2 of entepicondyle +UBERON_0004765 skeletal element UBERON_4200170 process 3 of entepicondyle +UBERON_0004765 skeletal element UBERON_4200171 process 4 of entepicondyle +UBERON_0004765 skeletal element UBERON_4200172 neck of humerus +UBERON_0004765 skeletal element UBERON_4200173 dorsal ridge +UBERON_0004765 skeletal element UBERON_4200174 distal condyle of humerus +UBERON_0004765 skeletal element UBERON_4200175 supraglenoid region +UBERON_0004765 skeletal element UBERON_4200176 ascending process of clavicle +UBERON_0004765 skeletal element UBERON_4200177 supracondyle tubercle +UBERON_0004765 skeletal element UBERON_4200180 semilunate carpal +UBERON_0004765 skeletal element UBERON_4200181 astragalus head +UBERON_0004765 skeletal element UBERON_4200182 lateral tubercle of astragalus +UBERON_0004765 skeletal element UBERON_4200183 bicipital tuberosity +UBERON_0004765 skeletal element UBERON_4200184 ulnar tuberosity +UBERON_0004765 skeletal element UBERON_4200185 entepicondyle fossa +UBERON_0004765 skeletal element UBERON_4200186 distal keel of metacarpal III +UBERON_0004765 skeletal element UBERON_4200190 zygosphene +UBERON_0004765 skeletal element UBERON_4200192 ulnar facet of the humerus +UBERON_0004765 skeletal element UBERON_4200193 posterodorsal process of ilium +UBERON_0004765 skeletal element UBERON_4200194 intercentrum +UBERON_0004765 skeletal element UBERON_4200195 pleurocentrum +UBERON_0004765 skeletal element UBERON_4200196 atlas intercentrum +UBERON_0004765 skeletal element UBERON_4200197 anterior humeral ridge +UBERON_0004765 skeletal element UBERON_4200198 incisor process +UBERON_0004765 skeletal element UBERON_4200203 humeral facet on the ulna +UBERON_0004765 skeletal element UBERON_4200204 humeral facet on radius +UBERON_0004765 skeletal element UBERON_4200206 internal rim of coracoid foramen +UBERON_0004765 skeletal element UBERON_4200207 external rim of the coracoid foramen +UBERON_0004765 skeletal element UBERON_4200208 pectoral fin intermediate radial bone +UBERON_0004765 skeletal element UBERON_4200209 postaxial process of the ulnare +UBERON_0004765 skeletal element UBERON_4200210 postaxial process of the femur +UBERON_0004765 skeletal element UBERON_4200211 postaxial process of the fibula +UBERON_0004765 skeletal element UBERON_4200212 pectoral process of humerus +UBERON_0004765 skeletal element UBERON_4200213 deltoid process +UBERON_0004765 skeletal element UBERON_4200214 epipodial facet +UBERON_0004765 skeletal element UBERON_4200216 fibula facet of femur +UBERON_0004765 skeletal element UBERON_4200217 tibial facet of femur +UBERON_0004765 skeletal element UBERON_4200219 middle phalanx of manual digit 1 +UBERON_0004765 skeletal element UBERON_4200220 iliac ramus +UBERON_0004765 skeletal element UBERON_4200222 distal groove of humerus +UBERON_0004765 skeletal element UBERON_4200223 foramen C +UBERON_0004765 skeletal element UBERON_4200224 columnar area +UBERON_0004765 skeletal element UBERON_4200226 anteroventral process of cleithrum +UBERON_0004765 skeletal element UBERON_4200228 excurrent foramen of ectepicondylar foramen +UBERON_0004765 skeletal element UBERON_4200229 incurrent foramen of ectepicondylar foramen +UBERON_0004765 skeletal element UBERON_4200230 surface of bone +UBERON_0004765 skeletal element UBERON_4200231 unfinished bone surface +UBERON_0004765 skeletal element UBERON_4200232 finished bone surface +UBERON_0004765 skeletal element UBERON_4200233 dorsal clavicular process +UBERON_0004765 skeletal element UBERON_4200234 precoronoid bone +UBERON_0004765 skeletal element UBERON_4200235 postcoronoid bone +UBERON_0004765 skeletal element UBERON_4200236 anterior coronoid bone +UBERON_0004765 skeletal element UBERON_4200237 posterior coronoid bone +UBERON_0004765 skeletal element UBERON_4200238 coronoid fang +UBERON_0004765 skeletal element UBERON_4200243 surangular pit line +UBERON_0004765 skeletal element UBERON_4200244 anterior supraorbital bone +UBERON_0004765 skeletal element UBERON_4200245 parasymphysial plate +UBERON_0004765 skeletal element UBERON_4200246 mesial parasymphysial foramen +UBERON_0004765 skeletal element UBERON_4200247 lateral parasymphysial foramen +UBERON_0004765 skeletal element UBERON_4200251 meckelian foramen +UBERON_0004765 skeletal element UBERON_4300002 palatine prong +UBERON_0004765 skeletal element UBERON_4300003 urodermal bone +UBERON_0004765 skeletal element UBERON_4300007 medial pelvic process +UBERON_0004765 skeletal element UBERON_4300014 dorsal cleithrum +UBERON_0004765 skeletal element UBERON_4300015 ventral cleithrum +UBERON_0004765 skeletal element UBERON_4300016 pelvic cartilage +UBERON_0004765 skeletal element UBERON_4300017 rostrodermethmoid +UBERON_0004765 skeletal element UBERON_4300018 ventral marginal cartilage +UBERON_0004765 skeletal element UBERON_4300019 dorsal fin basal cartilage (elasmobranchs) +UBERON_0004765 skeletal element UBERON_4300020 anal fin basal cartilage +UBERON_0004765 skeletal element UBERON_4300021 anterolateral plate +UBERON_0004765 skeletal element UBERON_4300022 anteroventral plate +UBERON_0004765 skeletal element UBERON_4300023 interolateral plate +UBERON_0004765 skeletal element UBERON_4300024 spinal plate +UBERON_0004765 skeletal element UBERON_4300025 posterior dorsolateral plate +UBERON_0004765 skeletal element UBERON_4300026 anterior ventrolateral plate +UBERON_0004765 skeletal element UBERON_4300028 posterior ventrolateral plate +UBERON_0004765 skeletal element UBERON_4300032 posterior dorsal fin basal cartilage (elasmobranchs) +UBERON_0004765 skeletal element UBERON_4300033 anterior dorsal fin basal cartilage (elasmobranchs) +UBERON_0004765 skeletal element UBERON_4300034 antorbital cartilage +UBERON_0004765 skeletal element UBERON_4300035 supraneural element +UBERON_0004765 skeletal element UBERON_4300036 supraneural cartilage +UBERON_0004765 skeletal element UBERON_4300037 bony fin ray +UBERON_0004765 skeletal element UBERON_4300038 facet +UBERON_0004765 skeletal element UBERON_4300081 mesopterygium element +UBERON_0004765 skeletal element UBERON_4300082 metapterygium element +UBERON_0004765 skeletal element UBERON_4300083 propterygium element +UBERON_0004765 skeletal element UBERON_4300087 mesopterygium bone +UBERON_0004765 skeletal element UBERON_4300088 metapterygium bone +UBERON_0004765 skeletal element UBERON_4300089 propterygium bone +UBERON_0004765 skeletal element UBERON_4300090 X bone +UBERON_0004765 skeletal element UBERON_4300091 Y bone +UBERON_0004765 skeletal element UBERON_4300092 mesocoracoid element +UBERON_0004765 skeletal element UBERON_4300097 anal fin spine 1 +UBERON_0004765 skeletal element UBERON_4300098 anal fin spine 2 +UBERON_0004765 skeletal element UBERON_4300101 dorsal fin ceratotrichial spine (elasmobranchs) +UBERON_0004765 skeletal element UBERON_4300102 postcleithral scale +UBERON_0004765 skeletal element UBERON_4300103 rudimentary pectoral fin ray +UBERON_0004765 skeletal element UBERON_4300104 ectocoracoid bone +UBERON_0004765 skeletal element UBERON_4300105 caudal vertebra 1 +UBERON_0004765 skeletal element UBERON_4300106 ventral limb of posttemporal +UBERON_0004765 skeletal element UBERON_4300108 lepidotrichial segment +UBERON_0004765 skeletal element UBERON_4300109 proximal segment of caudal ray +UBERON_0004765 skeletal element UBERON_4300110 lateral ethmoid cartilage +UBERON_0004765 skeletal element UBERON_4300111 lateral ethmoid element +UBERON_0004765 skeletal element UBERON_4300112 distal segment of caudal ray +UBERON_0004765 skeletal element UBERON_4300116 dorsal fin ray +UBERON_0004765 skeletal element UBERON_4300117 pelvic fin ray +UBERON_0004765 skeletal element UBERON_4300119 glenoid region +UBERON_0004765 skeletal element UBERON_4300121 zygantrum +UBERON_0004765 skeletal element UBERON_4300124 axis intercentrum +UBERON_0004765 skeletal element UBERON_4300125 dorsal iliac ridge +UBERON_0004765 skeletal element UBERON_4300127 nuchal crest +UBERON_0004765 skeletal element UBERON_4300128 sacral rib +UBERON_0004765 skeletal element UBERON_4300132 glossopharyngeal nerve foramen +UBERON_0004765 skeletal element UBERON_4300135 upper jaw symphyseal tooth +UBERON_0004765 skeletal element UBERON_4300142 internal carotid foramen +UBERON_0004765 skeletal element UBERON_4300144 profundus foramen +UBERON_0004765 skeletal element UBERON_4300151 pelvic intercleithral cartilage +UBERON_0004765 skeletal element UBERON_4300154 procurrent spur +UBERON_0004765 skeletal element UBERON_4300155 pectoral splint +UBERON_0004765 skeletal element UBERON_4300156 anterodorsal crest +UBERON_0004765 skeletal element UBERON_4300157 midshaft +UBERON_0004765 skeletal element UBERON_4300158 ectepicondylar depression +UBERON_0004765 skeletal element UBERON_4300175 procumbent dorsal fin spine +UBERON_0004765 skeletal element UBERON_4300181 posterior sclerotic cartilage +UBERON_0004765 skeletal element UBERON_4300182 anterior sclerotic cartilage +UBERON_0004765 skeletal element UBERON_4300184 neural spine 5 +UBERON_0004765 skeletal element UBERON_4300185 neural spine 6 +UBERON_0004765 skeletal element UBERON_4300186 neural spine 7 +UBERON_0004765 skeletal element UBERON_4300188 terminal scale +UBERON_0004765 skeletal element UBERON_4300189 parapophysis 3 +UBERON_0004765 skeletal element UBERON_4300190 claustrum element +UBERON_0004765 skeletal element UBERON_4300192 branched pelvic fin ray +UBERON_0004765 skeletal element UBERON_4300193 unbranched anal fin ray +UBERON_0004765 skeletal element UBERON_4300196 processus descendens of sphenoid +UBERON_0004765 skeletal element UBERON_4300197 Westoll line +UBERON_0004765 skeletal element UBERON_4300198 epichordal radial +UBERON_0004765 skeletal element UBERON_4300199 postsplenial +UBERON_0004765 skeletal element UBERON_4300201 subepiotic fossa +UBERON_0004765 skeletal element UBERON_4300203 tectum orbitale +UBERON_0004765 skeletal element UBERON_4300207 submandibular bone +UBERON_0004765 skeletal element UBERON_4300211 lateral plate +UBERON_0004765 skeletal element UBERON_4300212 acrodin +UBERON_0004765 skeletal element UBERON_4300213 supraneural 1 element +UBERON_0004765 skeletal element UBERON_4300214 supraneural 2 element +UBERON_0004765 skeletal element UBERON_4300215 supraneural 3 element +UBERON_0004765 skeletal element UBERON_4300216 supraneural 4 element +UBERON_0004765 skeletal element UBERON_4300217 supraneural 5 element +UBERON_0004765 skeletal element UBERON_4300218 supraneural 6 element +UBERON_0004765 skeletal element UBERON_4300219 supraneural 7 element +UBERON_0004765 skeletal element UBERON_4300220 supraneural 8 element +UBERON_0004765 skeletal element UBERON_4300221 supraneural 9 element +UBERON_0004765 skeletal element UBERON_4300222 axilar scale +UBERON_0004765 skeletal element UBERON_4300223 precaudal vertebra +UBERON_0004765 skeletal element UBERON_4300224 precaudal vertebra endochondral element +UBERON_0004765 skeletal element UBERON_4300225 precaudal vertebra cartilage element +UBERON_0004765 skeletal element UBERON_4300233 mammiliform tooth +UBERON_0004765 skeletal element UBERON_4300235 spinoid scale +UBERON_0004765 skeletal element UBERON_4300236 rib of vertebra 7 +UBERON_0004765 skeletal element UBERON_4300237 rib of vertebra 8 +UBERON_0004765 skeletal element UBERON_4300238 pored lateral line scale +UBERON_0004765 skeletal element UBERON_4300240 rostral ossicle +UBERON_0004765 skeletal element UBERON_4300242 lateral line scale 6 +UBERON_0004765 skeletal element UBERON_4300243 premaxillary tooth 2 +UBERON_0004765 skeletal element UBERON_4300244 premaxillary tooth 3 +UBERON_0004765 skeletal element UBERON_4300246 dentary tooth 2 +UBERON_0004765 skeletal element UBERON_4300247 dentary tooth 3 +UBERON_0004765 skeletal element UBERON_4300248 fused hypural 1 and 2 +UBERON_0004765 skeletal element UBERON_4300249 lateral occipital foramen +UBERON_0004765 skeletal element UBERON_4300250 ventral caudal procurrent ray 3 +UBERON_0004765 skeletal element UBERON_4300251 ventral caudal procurrent ray 4 +UBERON_0004765 skeletal element UBERON_4300252 ethmo-palatine cartilage +UBERON_0004765 skeletal element UBERON_4300261 pectoral fin hook +UBERON_0004765 skeletal element UBERON_4300262 pelvic fin hook +UBERON_0004765 skeletal element UBERON_4300263 supraneural 4 cartilage +UBERON_0004765 skeletal element UBERON_4300264 supraneural 5 cartilage +UBERON_0004765 skeletal element UBERON_4300265 supraneural 6 cartilage +UBERON_0004765 skeletal element UBERON_4300266 supraneural 7 cartilage +UBERON_0004765 skeletal element UBERON_4300267 supraneural 8 cartilage +UBERON_0004765 skeletal element UBERON_4300268 supraneural 9 cartilage +UBERON_0004765 skeletal element UBERON_4300269 epioccipital bridge +UBERON_0004765 skeletal element UBERON_4300271 interneural spine cartilage +UBERON_0004765 skeletal element UBERON_4300272 interhaemal spine cartilage +UBERON_0004765 skeletal element UBERON_4300274 adipose fin ray +UBERON_0004765 skeletal element UBERON_4300275 suborbital stay +UBERON_0004765 skeletal element UBERON_4300280 metapterygoid tooth +UBERON_0004765 skeletal element UBERON_4300281 dorsal fin hook +UBERON_0004765 skeletal element UBERON_4300282 dorsal myorhabdoid bone +UBERON_0004765 skeletal element UBERON_4300283 ventral myorhabdoid bone +UBERON_0004765 skeletal element UBERON_4300284 fin hook +UBERON_0004765 skeletal element UBERON_4300285 second preethmoid cartilage +UBERON_0004765 skeletal element UBERON_4300286 second preethmoid element +UBERON_0004765 skeletal element UBERON_4400000 metapterygium cartilage +UBERON_0004765 skeletal element UBERON_4400001 ceratotrichium +UBERON_0004765 skeletal element UBERON_4400005 fin ray +UBERON_0004765 skeletal element UBERON_4400006 elastoidin fin ray +UBERON_0004765 skeletal element UBERON_4400007 camptotrichium +UBERON_0004765 skeletal element UBERON_4440011 paired fin lepidotrichium +UBERON_0004765 skeletal element UBERON_4500002 upper uroneural +UBERON_0004765 skeletal element UBERON_4500003 predorsal scale +UBERON_0004765 skeletal element UBERON_4500005 prenasal ossicle +UBERON_0004765 skeletal element UBERON_4500006 anal fin ray +UBERON_0004765 skeletal element UBERON_4500007 pectoral fin ray +UBERON_0004765 skeletal element UBERON_4500008 median fin lepidotrichium +UBERON_0004765 skeletal element UBERON_4500009 paired fin spine +UBERON_0004765 skeletal element UBERON_4500010 unbranched pectoral fin ray +UBERON_0004765 skeletal element UBERON_4500011 unbranched pelvic fin ray +UBERON_0004765 skeletal element UBERON_4500016 premaxilla articular process +UBERON_0004765 skeletal element UBERON_4500017 interarcual bone +UBERON_0004765 skeletal element UBERON_4500018 premaxilla maxillary process +UBERON_0004765 skeletal element UBERON_4500020 pelvic fin distal radial cartilage +UBERON_0004765 skeletal element UBERON_7500033 distal-most point of medial condyle of femur +UBERON_0004765 skeletal element UBERON_7500034 distal-most point of trochlea of humerus +UBERON_0004765 skeletal element UBERON_7500046 proximal-most point of head of femur +UBERON_0004765 skeletal element UBERON_7500047 proximal-most point of head of humerus +UBERON_0004765 skeletal element UBERON_7500048 proximal-most point of ventral tubercle of humerus +UBERON_0004765 skeletal element UBERON_7500049 proximal-most point of greater trochanter of femur +UBERON_0004765 skeletal element UBERON_7500052 lower fourth secondary molar tooth +UBERON_0004765 skeletal element UBERON_7500053 lower fourth secondary premolar tooth +UBERON_0004765 skeletal element UBERON_7500054 lower third secondary premolar tooth +UBERON_0004765 skeletal element UBERON_7500055 molar tooth 4 +UBERON_0004765 skeletal element UBERON_7500056 premolar 3 +UBERON_0004765 skeletal element UBERON_7500057 upper fourth secondary molar tooth +UBERON_0004765 skeletal element UBERON_7500058 upper fourth secondary premolar tooth +UBERON_0004765 skeletal element UBERON_7500059 upper third secondary premolar tooth +UBERON_0004765 skeletal element UBERON_7500061 trochlear ridge of humerus +UBERON_0004765 skeletal element UBERON_7500062 tibial tuberosity +UBERON_0004765 skeletal element UBERON_7500063 trochlea of talus +UBERON_0004765 skeletal element UBERON_7500064 trochlear groove of talus +UBERON_0004765 skeletal element UBERON_7500065 condyle of talus +UBERON_0004765 skeletal element UBERON_7500066 medial condyle of talus +UBERON_0004765 skeletal element UBERON_7500067 lateral condyle of talus +UBERON_0004765 skeletal element UBERON_7500068 ridge of medial condyle of talus +UBERON_0004765 skeletal element UBERON_7500069 ridge of lateral condyle of talus +UBERON_0004765 skeletal element UBERON_7500070 sulcus tali +UBERON_0004765 skeletal element UBERON_7500073 left nasal bone +UBERON_0004765 skeletal element UBERON_7500074 right nasal bone +UBERON_0004765 skeletal element UBERON_7500075 left zygomatic arch +UBERON_0004765 skeletal element UBERON_7500076 right zygomatic arch +UBERON_0004765 skeletal element UBERON_7500077 trochlea of femur +UBERON_0004765 skeletal element UBERON_7500078 styloid process of radius +UBERON_0004765 skeletal element UBERON_7500079 ulnar notch of radius +UBERON_0004765 skeletal element UBERON_7500080 articular surface for carpals +UBERON_0004765 skeletal element UBERON_7500081 articular surface for the tibia on the talus +UBERON_0004765 skeletal element UBERON_7500083 greater palatine foramen +UBERON_0004765 skeletal element UBERON_7500084 lesser palatine foramen +UBERON_0004765 skeletal element UBERON_7500085 endodontium +UBERON_0004765 skeletal element UBERON_7500089 posterior articular facet for talus of calcaneus +UBERON_0004765 skeletal element UBERON_7500091 middle articular facet for talus of calcaneus +UBERON_0004765 skeletal element UBERON_7500092 anterior articular facet for talus of calcaneus +UBERON_0004765 skeletal element UBERON_7500093 calcaneal body +UBERON_0004765 skeletal element UBERON_7500094 tubercle of calcaneus +UBERON_0004765 skeletal element UBERON_7500095 lateral tubercle of calcaneus +UBERON_0004765 skeletal element UBERON_7500096 medial tubercle of calcaneus +UBERON_0004765 skeletal element UBERON_7500101 antorbital notch +UBERON_0004765 skeletal element UBERON_7500103 preorbital fossa +UBERON_0004765 skeletal element UBERON_7500105 coracoid process of calcaneus +UBERON_0004765 skeletal element UBERON_8000008 cementocyte lacuna +UBERON_0004765 skeletal element UBERON_8410079 red bone marrow of iliac crest +UBERON_0004765 skeletal element UBERON_8410080 red bone marrow of sternum +UBERON_0005057 immune organ CL_0000084 CD4-positive T cell +UBERON_0005057 immune organ CL_0000084 CD8-positive T cell +UBERON_0005057 immune organ CL_0000236 B cell +UBERON_0005057 immune organ CL_0000542 EBV-transformed lymphocyte +UBERON_0005057 immune organ CL_0000576 monocyte +UBERON_0005057 immune organ CL_0000623 natural killer cell +UBERON_0005057 immune organ CL_0000738 leukocyte +UBERON_0005057 immune organ UBERON_0000029 lymph node +UBERON_0005057 immune organ UBERON_0000040 Leydig's organ +UBERON_0005057 immune organ UBERON_0001097 axillary lymph node +UBERON_0005057 immune organ UBERON_0001248 hilum of spleen +UBERON_0005057 immune organ UBERON_0001249 spleen lymphoid follicle +UBERON_0005057 immune organ UBERON_0001250 red pulp of spleen +UBERON_0005057 immune organ UBERON_0001251 marginal zone of spleen +UBERON_0005057 immune organ UBERON_0001265 trabecula of spleen +UBERON_0005057 immune organ UBERON_0001266 splenic cord +UBERON_0005057 immune organ UBERON_0001542 inguinal lymph node +UBERON_0005057 immune organ UBERON_0001543 popliteal lymph node +UBERON_0005057 immune organ UBERON_0001959 white pulp of spleen +UBERON_0005057 immune organ UBERON_0001960 periarterial lymphatic sheath +UBERON_0005057 immune organ UBERON_0002006 cortex of lymph node +UBERON_0005057 immune organ UBERON_0002007 medulla of lymph node +UBERON_0005057 immune organ UBERON_0002106 spleen +UBERON_0005057 immune organ UBERON_0002122 capsule of thymus +UBERON_0005057 immune organ UBERON_0002123 cortex of thymus +UBERON_0005057 immune organ UBERON_0002124 medulla of thymus +UBERON_0005057 immune organ UBERON_0002125 thymus lobule +UBERON_0005057 immune organ UBERON_0002194 capsule of lymph node +UBERON_0005057 immune organ UBERON_0002195 trabecula of lymph node +UBERON_0005057 immune organ UBERON_0002370 thymus +UBERON_0005057 immune organ UBERON_0002429 cervical lymph node +UBERON_0005057 immune organ UBERON_0002507 abdominal lymph node +UBERON_0005057 immune organ UBERON_0002508 celiac lymph node +UBERON_0005057 immune organ UBERON_0002509 mesenteric lymph node +UBERON_0005057 immune organ UBERON_0002520 submandibular lymph node +UBERON_0005057 immune organ UBERON_0002524 mediastinal lymph node +UBERON_0005057 immune organ UBERON_0002525 brachial lymph node +UBERON_0005057 immune organ UBERON_0002526 lumbar lymph node +UBERON_0005057 immune organ UBERON_0002527 pancreatic lymph node +UBERON_0005057 immune organ UBERON_0002528 sacral lymph node +UBERON_0005057 immune organ UBERON_0003425 renal lymph node +UBERON_0005057 immune organ UBERON_0003483 thymus lymphoid tissue +UBERON_0005057 immune organ UBERON_0003846 thymus epithelium +UBERON_0005057 immune organ UBERON_0003910 splenic sinusoid +UBERON_0005057 immune organ UBERON_0003968 peripheral lymph node +UBERON_0005057 immune organ UBERON_0003987 Hassall's corpuscle +UBERON_0005057 immune organ UBERON_0003988 thymus corticomedullary boundary +UBERON_0005057 immune organ UBERON_0004041 spleen primary B follicle +UBERON_0005057 immune organ UBERON_0004042 spleen secondary B follicle +UBERON_0005057 immune organ UBERON_0004238 spleen smooth muscle +UBERON_0005057 immune organ UBERON_0004641 spleen capsule +UBERON_0005057 immune organ UBERON_0004722 deep cervical lymph node +UBERON_0005057 immune organ UBERON_0004791 thymus trabecula +UBERON_0005057 immune organ UBERON_0004850 lymph node endothelium +UBERON_0005057 immune organ UBERON_0004870 superficial cervical lymph node +UBERON_0005057 immune organ UBERON_0005057 immune organ +UBERON_0005057 immune organ UBERON_0005196 spleen germinal center +UBERON_0005057 immune organ UBERON_0005353 spleen perifollicular zone +UBERON_0005057 immune organ UBERON_0005457 left thymus lobe +UBERON_0005057 immune organ UBERON_0005463 subcapsular sinus of lymph node +UBERON_0005057 immune organ UBERON_0005469 right thymus lobe +UBERON_0005057 immune organ UBERON_0005483 thymus lobe +UBERON_0005057 immune organ UBERON_0006936 thymus subcapsular epithelium +UBERON_0005057 immune organ UBERON_0007643 node of ligamentum arteriosum +UBERON_0005057 immune organ UBERON_0007644 thoracic lymph node +UBERON_0005057 immune organ UBERON_0009006 deep inguinal lymph node +UBERON_0005057 immune organ UBERON_0009007 superficial inguinal lymph node +UBERON_0005057 immune organ UBERON_0009039 lymph node germinal center +UBERON_0005057 immune organ UBERON_0009102 supraneural body +UBERON_0005057 immune organ UBERON_0009114 cervical thymus +UBERON_0005057 immune organ UBERON_0009115 thoracic thymus +UBERON_0005057 immune organ UBERON_0009116 thymoid +UBERON_0005057 immune organ UBERON_0009744 lymph node medullary sinus +UBERON_0005057 immune organ UBERON_0009745 lymph node medullary cord +UBERON_0005057 immune organ UBERON_0009967 spleen venous sinus +UBERON_0005057 immune organ UBERON_0010014 epigonal organ +UBERON_0005057 immune organ UBERON_0010015 ventral patch of Leydig's organ +UBERON_0005057 immune organ UBERON_0010051 dorsal patch of Leydig's organ +UBERON_0005057 immune organ UBERON_0010174 Schweigger-Seidel sheath +UBERON_0005057 immune organ UBERON_0010266 arthropod hepatopancreas +UBERON_0005057 immune organ UBERON_0010387 Peyer's patch T cell area +UBERON_0005057 immune organ UBERON_0010392 B cell domain +UBERON_0005057 immune organ UBERON_0010393 T cell domain +UBERON_0005057 immune organ UBERON_0010394 lymphocyte domain +UBERON_0005057 immune organ UBERON_0010395 lymph node primary follicle +UBERON_0005057 immune organ UBERON_0010396 afferent lymphatic vessel +UBERON_0005057 immune organ UBERON_0010398 spleen marginal sinus +UBERON_0005057 immune organ UBERON_0010399 spleen trabecular artery +UBERON_0005057 immune organ UBERON_0010400 spleen trabecular vein +UBERON_0005057 immune organ UBERON_0010401 spleen central arteriole +UBERON_0005057 immune organ UBERON_0010416 lymph node B cell domain +UBERON_0005057 immune organ UBERON_0010417 lymph node T cell domain +UBERON_0005057 immune organ UBERON_0010420 lymph node germinal center mantle zone +UBERON_0005057 immune organ UBERON_0010421 spleen B cell corona +UBERON_0005057 immune organ UBERON_0010748 lymph node follicle +UBERON_0005057 immune organ UBERON_0010753 lymph node secondary follicle +UBERON_0005057 immune organ UBERON_0010756 spleen follicular dendritic cell network +UBERON_0005057 immune organ UBERON_0012236 intercostal lymph node +UBERON_0005057 immune organ UBERON_0012306 lateral cervical lymph node +UBERON_0005057 immune organ UBERON_0012307 anterior cervical lymph node +UBERON_0005057 immune organ UBERON_0012308 superficial lateral cervical lymph node +UBERON_0005057 immune organ UBERON_0012309 superficial anterior cervical lymph node +UBERON_0005057 immune organ UBERON_0012310 deep lateral cervical lymph node +UBERON_0005057 immune organ UBERON_0012311 deep anterior cervical lymph node +UBERON_0005057 immune organ UBERON_0013119 haemal node +UBERON_0005057 immune organ UBERON_0013132 penicillar arteriole +UBERON_0005057 immune organ UBERON_0015453 subcutaneous lymph node +UBERON_0005057 immune organ UBERON_0015469 splenic lymph node +UBERON_0005057 immune organ UBERON_0015472 tracheobronchial lymph node +UBERON_0005057 immune organ UBERON_0015857 parotid lymph node +UBERON_0005057 immune organ UBERON_0015859 hepatic lymph node +UBERON_0005057 immune organ UBERON_0015860 visceral abdominal lymph node +UBERON_0005057 immune organ UBERON_0015863 gastric lymph node +UBERON_0005057 immune organ UBERON_0015865 pancreaticosplenic lymph node +UBERON_0005057 immune organ UBERON_0015866 pyloric lymph node +UBERON_0005057 immune organ UBERON_0015867 cystic lymph node +UBERON_0005057 immune organ UBERON_0015868 lymph node of epiploic foramen +UBERON_0005057 immune organ UBERON_0015869 retropharyngeal lymph node +UBERON_0005057 immune organ UBERON_0015870 lymph node of head +UBERON_0005057 immune organ UBERON_0015871 facial lymph node +UBERON_0005057 immune organ UBERON_0015872 mandibular lymph node +UBERON_0005057 immune organ UBERON_0015876 pelvic lymph node +UBERON_0005057 immune organ UBERON_0015877 parietal pelvic lymph node +UBERON_0005057 immune organ UBERON_0015878 common iliac lymph node +UBERON_0005057 immune organ UBERON_0015880 external iliac lymph node +UBERON_0005057 immune organ UBERON_0015881 internal iliac lymph node +UBERON_0005057 immune organ UBERON_0015883 gluteal lymph node +UBERON_0005057 immune organ UBERON_0015884 presymphysial lymph node +UBERON_0005057 immune organ UBERON_0015895 proximal deep inguinal lymph node +UBERON_0005057 immune organ UBERON_0015917 superficial lymph node +UBERON_0005057 immune organ UBERON_0015918 deep lymph node +UBERON_0005057 immune organ UBERON_0015922 accessory mandibular lymph node +UBERON_0005057 immune organ UBERON_0015923 superficial parotid lymph node +UBERON_0005057 immune organ UBERON_0015925 superficial intraparotid lymph node +UBERON_0005057 immune organ UBERON_0015926 cranial deep lymph node +UBERON_0005057 immune organ UBERON_0016374 sciatic lymph node +UBERON_0005057 immune organ UBERON_0016378 ileocolic lymph node +UBERON_0005057 immune organ UBERON_0016382 prescapular lymph node +UBERON_0005057 immune organ UBERON_0016386 paraaortic lymph node +UBERON_0005057 immune organ UBERON_0016390 auricular lymph node +UBERON_0005057 immune organ UBERON_0016391 thymic lymph node +UBERON_0005057 immune organ UBERON_0016392 mastoid lymph node +UBERON_0005057 immune organ UBERON_0016393 deep parotid lymph node +UBERON_0005057 immune organ UBERON_0016394 anterior auricular lymph node +UBERON_0005057 immune organ UBERON_0016395 infra-auricular lymph node +UBERON_0005057 immune organ UBERON_0016396 intraglandular lymph node +UBERON_0005057 immune organ UBERON_0016397 submental lymph node +UBERON_0005057 immune organ UBERON_0016398 lymph node of lower limb +UBERON_0005057 immune organ UBERON_0016399 lymph node of upper limb +UBERON_0005057 immune organ UBERON_0016401 pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0016402 mesocolic lymph node +UBERON_0005057 immune organ UBERON_0016481 bronchial lymph node +UBERON_0005057 immune organ UBERON_0018244 superficial cervical thymus +UBERON_0005057 immune organ UBERON_0018245 deep cervical thymus +UBERON_0005057 immune organ UBERON_0022292 splenic arteriole +UBERON_0005057 immune organ UBERON_0035079 deep intraparotid lymph node +UBERON_0005057 immune organ UBERON_0035080 intraparotid lymph node +UBERON_0005057 immune organ UBERON_0035162 infraclavicular lymph node +UBERON_0005057 immune organ UBERON_0035171 obturator lymph node +UBERON_0005057 immune organ UBERON_0035204 occipital lymph node +UBERON_0005057 immune organ UBERON_0035219 parasternal lymph node +UBERON_0005057 immune organ UBERON_0035279 supraclavicular lymph node +UBERON_0005057 immune organ UBERON_0035371 retroperitoneal lymph node +UBERON_0005057 immune organ UBERON_0035495 hilum of lymph node +UBERON_0005057 immune organ UBERON_0035520 anterior mediastinal lymph node +UBERON_0005057 immune organ UBERON_0035764 pulmonary lymph node +UBERON_0005057 immune organ UBERON_0035765 subsegmental lymph node +UBERON_0005057 immune organ UBERON_0036301 vasculature of spleen +UBERON_0005057 immune organ UBERON_0037480 supramammary lymph node +UBERON_0005057 immune organ UBERON_0037494 paracardial gastric lymph node +UBERON_0005057 immune organ UBERON_0037500 subscapular axillary lymph node +UBERON_0005057 immune organ UBERON_0037501 pectoral axillary lymph node +UBERON_0005057 immune organ UBERON_0037502 central axillary lymph node +UBERON_0005057 immune organ UBERON_0037503 apical axillary lymph node +UBERON_0005057 immune organ UBERON_0037514 intermediate mesenteric lymph node +UBERON_0005057 immune organ UBERON_0037515 juxta-arterial mesenteric lymph node +UBERON_0005057 immune organ UBERON_0037518 epicolic lymph node +UBERON_0005057 immune organ UBERON_0037521 preterminal colic lymph node +UBERON_0005057 immune organ UBERON_0037522 ileal lymph node +UBERON_0005057 immune organ UBERON_0037527 superior pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0037528 inferior pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0037530 inferior pancreatic lymph node +UBERON_0005057 immune organ UBERON_0037531 intestinal lymph node +UBERON_0005057 immune organ UBERON_0037532 medial common iliac lymph node +UBERON_0005057 immune organ UBERON_0037533 intermediate common iliac lymph node +UBERON_0005057 immune organ UBERON_0037534 lateral common iliac lymph node +UBERON_0005057 immune organ UBERON_0037535 subaortic common iliac lymph node +UBERON_0005057 immune organ UBERON_0037536 promontory lymph node +UBERON_0005057 immune organ UBERON_0037538 medial external iliac lymph node +UBERON_0005057 immune organ UBERON_0037539 intermediate external iliac lymph node +UBERON_0005057 immune organ UBERON_0037540 lateral external iliac lymph node +UBERON_0005057 immune organ UBERON_0037541 interiliac lymph node +UBERON_0005057 immune organ UBERON_0037548 superior gluteal lymph node +UBERON_0005057 immune organ UBERON_0037549 inferior gluteal lymph node +UBERON_0005057 immune organ UBERON_0037559 anorectal lymph node +UBERON_0005057 immune organ UBERON_0037560 superficial axillary lymph node +UBERON_0005057 immune organ UBERON_0037566 diaphragmatic lymph node +UBERON_0005057 immune organ UBERON_0037580 left gastric lymph node +UBERON_0005057 immune organ UBERON_0037590 lateral axillary lymph node +UBERON_0005057 immune organ UBERON_0037601 left parietal lumbar lymph node +UBERON_0005057 immune organ UBERON_0037614 appendicular lymph node +UBERON_0005057 immune organ UBERON_0037615 pararectal lymph node +UBERON_0005057 immune organ UBERON_0037722 right retropharyngeal lymph node +UBERON_0005057 immune organ UBERON_0037723 left retropharyngeal lymph node +UBERON_0005057 immune organ UBERON_0037763 lateral superior deep cervical lymph node +UBERON_0005057 immune organ UBERON_0037764 anterior superior deep cervical lymph node +UBERON_0005057 immune organ UBERON_0037765 lateral inferior deep cervical lymph node +UBERON_0005057 immune organ UBERON_0037766 anterior inferior deep cervical lymph node +UBERON_0005057 immune organ UBERON_0037787 right occipital lymph node +UBERON_0005057 immune organ UBERON_0037788 left occipital lymph node +UBERON_0005057 immune organ UBERON_0037789 right apical axillary lymph node +UBERON_0005057 immune organ UBERON_0037790 left apical axillary lymph node +UBERON_0005057 immune organ UBERON_0037793 right subscapular axillary lymph node +UBERON_0005057 immune organ UBERON_0037794 left subscapular axillary lymph node +UBERON_0005057 immune organ UBERON_0037795 right pectoral axillary lymph node +UBERON_0005057 immune organ UBERON_0037796 left pectoral axillary lymph node +UBERON_0005057 immune organ UBERON_0037797 right central axillary lymph node +UBERON_0005057 immune organ UBERON_0037798 left central axillary lymph node +UBERON_0005057 immune organ UBERON_0037865 jugular lymph node +UBERON_0005057 immune organ UBERON_0037995 supramandibular lymph node +UBERON_0005057 immune organ UBERON_0037998 external jugular lymph node +UBERON_0005057 immune organ UBERON_0038001 sternal lymph node +UBERON_0005057 immune organ UBERON_0038002 upper intercostal lymph node +UBERON_0005057 immune organ UBERON_0038003 lower intercostal lymph node +UBERON_0005057 immune organ UBERON_0038037 subclavian lymph node +UBERON_0005057 immune organ UBERON_0038048 antebrachial lymph node +UBERON_0005057 immune organ UBERON_0038053 cardiophrenic angle lymph node +UBERON_0005057 immune organ UBERON_0038054 retrocrural lymph node +UBERON_0005057 immune organ UBERON_0038093 jejunal lymph node +UBERON_0005057 immune organ UBERON_0038094 inferior rectal lymph node +UBERON_0005057 immune organ UBERON_0038124 medial diaphragmatic lymph node +UBERON_0005057 immune organ UBERON_0038137 parietal pre-aortic lymph node +UBERON_0005057 immune organ UBERON_0038139 retro-aortic lymph node +UBERON_0005057 immune organ UBERON_0038587 paracardiac lymph node +UBERON_0005057 immune organ UBERON_0038632 pericardial lymph node +UBERON_0005057 immune organ UBERON_0038633 aortopulmonary lymph node +UBERON_0005057 immune organ UBERON_0038634 para-aortic thoracic lymph node +UBERON_0005057 immune organ UBERON_0038635 interlobar lymph node +UBERON_0005057 immune organ UBERON_0038638 lobar lymph node +UBERON_0005057 immune organ UBERON_0038641 segmental lymph node +UBERON_0005057 immune organ UBERON_0038647 lymph node of inferior pulmonary ligament +UBERON_0005057 immune organ UBERON_0038651 superior mediastinal lymph node +UBERON_0005057 immune organ UBERON_0038684 superior left gastric lymph node +UBERON_0005057 immune organ UBERON_0038685 inferior left gastric lymph node +UBERON_0005057 immune organ UBERON_0038687 visceral lymph node of abdomen +UBERON_0005057 immune organ UBERON_0038691 common hepatic lymph node +UBERON_0005057 immune organ UBERON_0038694 hepatoportal lymph node +UBERON_0005057 immune organ UBERON_0038695 proximal superior pancreatic lymph node +UBERON_0005057 immune organ UBERON_0038696 distal superior pancreatic lymph node +UBERON_0005057 immune organ UBERON_0038697 anterior superior pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0038698 posterior superior pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0038699 anterior inferior pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0038700 posterior inferior pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0038707 anterior pancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0038727 juxta-intestinal mesenteric lymph node +UBERON_0005057 immune organ UBERON_0038734 visceral pre-aortic lymph node +UBERON_0005057 immune organ UBERON_0038735 juxta-arterial jejunal lymph node +UBERON_0005057 immune organ UBERON_0038736 juxta-arterial ileal lymph node +UBERON_0005057 immune organ UBERON_0038737 intermediate jejunal lymph node +UBERON_0005057 immune organ UBERON_0038738 intermediate ileal lymph node +UBERON_0005057 immune organ UBERON_0038746 gastro-epiploic lymph node +UBERON_0005057 immune organ UBERON_0038784 pararectal lymph node of pelvis +UBERON_0005057 immune organ UBERON_0038787 superior ileocolic lymph node +UBERON_0005057 immune organ UBERON_0038796 lymph node along bile duct +UBERON_0005057 immune organ UBERON_0038818 posterior ancreaticoduodenal lymph node +UBERON_0005057 immune organ UBERON_0038849 craniocervical lymph node +UBERON_0005057 immune organ UBERON_0038853 superficial popliteal lymph node +UBERON_0005057 immune organ UBERON_0038854 deep popliteal lymph node +UBERON_0005057 immune organ UBERON_0038855 superior medial inguinal lymph node +UBERON_0005057 immune organ UBERON_0038856 superior lateral inguinal lymph node +UBERON_0005057 immune organ UBERON_0038857 inferior inguinal lymph node +UBERON_0005057 immune organ UBERON_0038859 intermediate deep inguinal lymph node +UBERON_0005057 immune organ UBERON_0038860 distal deep inguinal lymph node +UBERON_0005057 immune organ UBERON_0038861 tibial lymph node +UBERON_0005057 immune organ UBERON_0038864 fibular lymph node +UBERON_0005057 immune organ UBERON_0038867 interpectoral lymph node +UBERON_0005057 immune organ UBERON_0038868 paramammary lymph node +UBERON_0005057 immune organ UBERON_0038870 cubital lymph node +UBERON_0005057 immune organ UBERON_0038871 supratrochlear lymph node +UBERON_0005057 immune organ UBERON_0038878 lateral diaphragmatic lymph node +UBERON_0005057 immune organ UBERON_0038879 anterior diaphragmatic lymph node +UBERON_0005057 immune organ UBERON_0038882 posterior diaphragmatic lymph node +UBERON_0005057 immune organ UBERON_0038885 brachiocephalic lymph node +UBERON_0005057 immune organ UBERON_0038888 posterior mediastinal lymph node +UBERON_0005057 immune organ UBERON_0038894 paratracheal lymph node +UBERON_0005057 immune organ UBERON_0038897 superior tracheobronchial lymph node +UBERON_0005057 immune organ UBERON_0038900 inferior tracheobronchial lymph node +UBERON_0005057 immune organ UBERON_0038920 buccinator lymph node +UBERON_0005057 immune organ UBERON_0038922 nasolabial lymph node +UBERON_0005057 immune organ UBERON_0038923 malar lymph node +UBERON_0005057 immune organ UBERON_0038925 lingual lymph node +UBERON_0005057 immune organ UBERON_0038929 infrahyoid lymph node +UBERON_0005057 immune organ UBERON_0038930 prelaryngeal lymph node +UBERON_0005057 immune organ UBERON_0038931 thyroid lymph node +UBERON_0005057 immune organ UBERON_0038932 pretracheal lymph node +UBERON_0005057 immune organ UBERON_0038934 superior deep lateral cervical lymph node +UBERON_0005057 immune organ UBERON_0038935 inferior deep lateral cervical lymph node +UBERON_0005057 immune organ UBERON_0038936 jugulodigastric lymph node +UBERON_0005057 immune organ UBERON_0038938 accessory cervical lymph node +UBERON_0005057 immune organ UBERON_0038943 superior diaphragmatic lymph node +UBERON_0005057 immune organ UBERON_0038951 suprapyloric lymph node +UBERON_0005057 immune organ UBERON_0038952 subpyloric lymph node +UBERON_0005057 immune organ UBERON_0038953 retropyloric lymph node +UBERON_0005057 immune organ UBERON_0039162 inferior ileocolic lymph node +UBERON_0005057 immune organ UBERON_0039163 lateral sacral lymph node +UBERON_0005057 immune organ UBERON_0039164 medial sacral lymph node +UBERON_0005057 immune organ UBERON_0039167 bronchopulmonary lymph node +UBERON_0005057 immune organ UBERON_0039168 colic lymph node +UBERON_0005057 immune organ UBERON_1000023 spleen pulp +UBERON_0005057 immune organ UBERON_1000024 parenchyma of spleen +UBERON_0005057 immune organ UBERON_8410013 afferent lymphatic vessel valve +UBERON_0005057 immune organ UBERON_8410032 trabecular sinus of lymph node +UBERON_0005057 immune organ UBERON_8410035 medullary arteriole of lymph node +UBERON_0005057 immune organ UBERON_8410036 medullary venule of lymph node +UBERON_0005057 immune organ UBERON_8410038 high endothelial venule of lymph node +UBERON_0005057 immune organ UBERON_8410041 venule of lymph node +UBERON_0005057 immune organ UBERON_8410042 arteriole of lymph node +UBERON_0005057 immune organ UBERON_8410052 lymph node germinal center light zone +UBERON_0005057 immune organ UBERON_8410053 lymph node germinal center dark zone +UBERON_0005057 immune organ UBERON_8410065 lymph node follicle marginal zone +UBERON_0005057 immune organ UBERON_8410066 lymph node paracortex +UBERON_0005057 immune organ UBERON_8410067 lymph node interfollicular cortex +UBERON_0005057 immune organ UBERON_8410071 subcapsular sinus ceiling +UBERON_0005057 immune organ UBERON_8410072 subcapsular sinus floor +UBERON_0005057 immune organ UBERON_8410074 lymph node paracortical sinus +UBERON_0005057 immune organ UBERON_8410075 lymph node paracortical cord +UBERON_0005057 immune organ UBERON_8470001 sublumbar lymph node +UBERON_0005156 reproductive structure UBERON_0000002 uterine cervix +UBERON_0005156 reproductive structure UBERON_0000035 primary ovarian follicle +UBERON_0005156 reproductive structure UBERON_0000036 secondary ovarian follicle +UBERON_0005156 reproductive structure UBERON_0000037 tertiary ovarian follicle +UBERON_0005156 reproductive structure UBERON_0000038 follicular fluid +UBERON_0005156 reproductive structure UBERON_0000039 follicular antrum +UBERON_0005156 reproductive structure UBERON_0000051 fornix of vagina +UBERON_0005156 reproductive structure UBERON_0000086 zona pellucida +UBERON_0005156 reproductive structure UBERON_0000155 theca cell layer +UBERON_0005156 reproductive structure UBERON_0000156 theca externa +UBERON_0005156 reproductive structure UBERON_0000157 theca interna +UBERON_0005156 reproductive structure UBERON_0000359 preputial gland +UBERON_0005156 reproductive structure UBERON_0000428 prostate epithelium +UBERON_0005156 reproductive structure UBERON_0000450 corpus albicans +UBERON_0005156 reproductive structure UBERON_0000453 decidua basalis +UBERON_0005156 reproductive structure UBERON_0000458 endocervix +UBERON_0005156 reproductive structure UBERON_0000459 uterine wall +UBERON_0005156 reproductive structure UBERON_0000460 major vestibular gland +UBERON_0005156 reproductive structure UBERON_0000461 minor vestibular gland +UBERON_0005156 reproductive structure UBERON_0000473 testis +UBERON_0005156 reproductive structure UBERON_0000989 penis +UBERON_0005156 reproductive structure UBERON_0000991 gonad +UBERON_0005156 reproductive structure UBERON_0000992 ovary +UBERON_0005156 reproductive structure UBERON_0000993 oviduct +UBERON_0005156 reproductive structure UBERON_0000994 spermathecum +UBERON_0005156 reproductive structure UBERON_0000995 uterus +UBERON_0005156 reproductive structure UBERON_0000996 vagina +UBERON_0005156 reproductive structure UBERON_0000997 mammalian vulva +UBERON_0005156 reproductive structure UBERON_0000998 seminal vesicle +UBERON_0005156 reproductive structure UBERON_0000998 vesicular gland +UBERON_0005156 reproductive structure UBERON_0000999 ejaculatory duct +UBERON_0005156 reproductive structure UBERON_0001000 vas deferens +UBERON_0005156 reproductive structure UBERON_0001295 endometrium +UBERON_0005156 reproductive structure UBERON_0001296 myometrium +UBERON_0005156 reproductive structure UBERON_0001297 serosa of uterus +UBERON_0005156 reproductive structure UBERON_0001299 glans penis +UBERON_0005156 reproductive structure UBERON_0001300 scrotum +UBERON_0005156 reproductive structure UBERON_0001301 epididymis +UBERON_0005156 reproductive structure UBERON_0001302 right uterine tube +UBERON_0005156 reproductive structure UBERON_0001303 left uterine tube +UBERON_0005156 reproductive structure UBERON_0001304 germinal epithelium of ovary +UBERON_0005156 reproductive structure UBERON_0001305 ovarian follicle +UBERON_0005156 reproductive structure UBERON_0001306 cumulus oophorus +UBERON_0005156 reproductive structure UBERON_0001307 capsule of ovary +UBERON_0005156 reproductive structure UBERON_0001319 vaginal vein +UBERON_0005156 reproductive structure UBERON_0001328 lobe of prostate +UBERON_0005156 reproductive structure UBERON_0001329 prostate gland anterior lobe +UBERON_0005156 reproductive structure UBERON_0001331 skin of penis +UBERON_0005156 reproductive structure UBERON_0001332 prepuce of penis +UBERON_0005156 reproductive structure UBERON_0001337 spongiose part of urethra +UBERON_0005156 reproductive structure UBERON_0001340 dorsal artery of penis +UBERON_0005156 reproductive structure UBERON_0001342 mesovarium +UBERON_0005156 reproductive structure UBERON_0001343 seminiferous tubule of testis +UBERON_0005156 reproductive structure UBERON_0001344 epithelium of vagina +UBERON_0005156 reproductive structure UBERON_0001346 vaginal hymen +UBERON_0005156 reproductive structure UBERON_0001471 skin of prepuce of penis +UBERON_0005156 reproductive structure UBERON_0001472 vaginal venous plexus +UBERON_0005156 reproductive structure UBERON_0001987 placenta +UBERON_0005156 reproductive structure UBERON_0002118 right ovary +UBERON_0005156 reproductive structure UBERON_0002119 left ovary +UBERON_0005156 reproductive structure UBERON_0002247 uterine horn +UBERON_0005156 reproductive structure UBERON_0002337 endometrial stroma +UBERON_0005156 reproductive structure UBERON_0002366 bulbo-urethral gland +UBERON_0005156 reproductive structure UBERON_0002367 prostate gland +UBERON_0005156 reproductive structure UBERON_0002411 clitoris +UBERON_0005156 reproductive structure UBERON_0002450 decidua +UBERON_0005156 reproductive structure UBERON_0002451 endometrial gland +UBERON_0005156 reproductive structure UBERON_0002485 prostate duct +UBERON_0005156 reproductive structure UBERON_0002493 uterine artery +UBERON_0005156 reproductive structure UBERON_0002512 corpus luteum +UBERON_0005156 reproductive structure UBERON_0002537 hermaphrodite gonad +UBERON_0005156 reproductive structure UBERON_0003133 reproductive organ +UBERON_0005156 reproductive structure UBERON_0003134 female reproductive organ +UBERON_0005156 reproductive structure UBERON_0003135 male reproductive organ +UBERON_0005156 reproductive structure UBERON_0003199 egg chamber +UBERON_0005156 reproductive structure UBERON_0003218 ovary septum +UBERON_0005156 reproductive structure UBERON_0003312 mesenchyme of testis +UBERON_0005156 reproductive structure UBERON_0003315 mesenchyme of ovary +UBERON_0005156 reproductive structure UBERON_0003366 epithelium of uterine horn +UBERON_0005156 reproductive structure UBERON_0003428 gonadal fat pad +UBERON_0005156 reproductive structure UBERON_0003480 vein of clitoris +UBERON_0005156 reproductive structure UBERON_0003485 vagina sebaceous gland +UBERON_0005156 reproductive structure UBERON_0003855 gonad mesenchyme +UBERON_0005156 reproductive structure UBERON_0003885 mesometrium +UBERON_0005156 reproductive structure UBERON_0003889 fallopian tube +UBERON_0005156 reproductive structure UBERON_0003937 reproductive gland +UBERON_0005156 reproductive structure UBERON_0003946 placenta labyrinth +UBERON_0005156 reproductive structure UBERON_0003959 rete testis +UBERON_0005156 reproductive structure UBERON_0003970 placental labyrinth vasculature +UBERON_0005156 reproductive structure UBERON_0003972 placenta junctional zone +UBERON_0005156 reproductive structure UBERON_0003974 upper part of vagina +UBERON_0005156 reproductive structure UBERON_0003975 internal female genitalia +UBERON_0005156 reproductive structure UBERON_0003981 primordial ovarian follicle +UBERON_0005156 reproductive structure UBERON_0003982 mature ovarian follicle +UBERON_0005156 reproductive structure UBERON_0003984 uterine tube infundibulum +UBERON_0005156 reproductive structure UBERON_0004014 labium minora +UBERON_0005156 reproductive structure UBERON_0004021 spongiotrophoblast layer +UBERON_0005156 reproductive structure UBERON_0004053 external male genitalia +UBERON_0005156 reproductive structure UBERON_0004054 internal male genitalia +UBERON_0005156 reproductive structure UBERON_0004084 genital labium +UBERON_0005156 reproductive structure UBERON_0004085 labium majora +UBERON_0005156 reproductive structure UBERON_0004175 internal genitalia +UBERON_0005156 reproductive structure UBERON_0004176 external genitalia +UBERON_0005156 reproductive structure UBERON_0004179 prostate glandular acinus +UBERON_0005156 reproductive structure UBERON_0004183 placental labyrinth blood vessel +UBERON_0005156 reproductive structure UBERON_0004184 prostate gland stroma +UBERON_0005156 reproductive structure UBERON_0004223 vagina smooth muscle +UBERON_0005156 reproductive structure UBERON_0004224 muscular coat of vas deferens +UBERON_0005156 reproductive structure UBERON_0004243 prostate gland smooth muscle +UBERON_0005156 reproductive structure UBERON_0004245 oviduct smooth muscle +UBERON_0005156 reproductive structure UBERON_0004346 gubernaculum (male or female) +UBERON_0005156 reproductive structure UBERON_0004353 female inguinal canal +UBERON_0005156 reproductive structure UBERON_0004354 male inguinal canal +UBERON_0005156 reproductive structure UBERON_0004358 caput epididymis +UBERON_0005156 reproductive structure UBERON_0004359 corpus epididymis +UBERON_0005156 reproductive structure UBERON_0004360 cauda epididymis +UBERON_0005156 reproductive structure UBERON_0004520 striated muscle tissue of prostate +UBERON_0005156 reproductive structure UBERON_0004533 left testis +UBERON_0005156 reproductive structure UBERON_0004534 right testis +UBERON_0005156 reproductive structure UBERON_0004544 epididymis epithelium +UBERON_0005156 reproductive structure UBERON_0004547 decidua capsularis +UBERON_0005156 reproductive structure UBERON_0004665 muscular coat of seminal vesicle +UBERON_0005156 reproductive structure UBERON_0004713 corpus cavernosum penis +UBERON_0005156 reproductive structure UBERON_0004801 cervix epithelium +UBERON_0005156 reproductive structure UBERON_0004803 penis epithelium +UBERON_0005156 reproductive structure UBERON_0004804 oviduct epithelium +UBERON_0005156 reproductive structure UBERON_0004805 seminal vesicle epithelium +UBERON_0005156 reproductive structure UBERON_0004806 vas deferens epithelium +UBERON_0005156 reproductive structure UBERON_0004811 endometrium epithelium +UBERON_0005156 reproductive structure UBERON_0004812 male prepuce epithelium +UBERON_0005156 reproductive structure UBERON_0004813 seminiferous tubule epithelium +UBERON_0005156 reproductive structure UBERON_0004835 epididymis smooth muscle +UBERON_0005156 reproductive structure UBERON_0004876 urogenital fold +UBERON_0005156 reproductive structure UBERON_0004909 epithelium of gonad +UBERON_0005156 reproductive structure UBERON_0004910 epithelium of male gonad +UBERON_0005156 reproductive structure UBERON_0004911 epithelium of female gonad +UBERON_0005156 reproductive structure UBERON_0004983 mucosa of vagina +UBERON_0005156 reproductive structure UBERON_0004984 mucosa of seminal vesicle +UBERON_0005156 reproductive structure UBERON_0004985 mucosa of ejaculatory duct +UBERON_0005156 reproductive structure UBERON_0004986 mucosa of deferent duct +UBERON_0005156 reproductive structure UBERON_0005011 mucosa of right uterine tube +UBERON_0005156 reproductive structure UBERON_0005012 mucosa of left uterine tube +UBERON_0005156 reproductive structure UBERON_0005048 mucosa of uterine tube +UBERON_0005156 reproductive structure UBERON_0005049 mucosa of infundibulum of uterine tube +UBERON_0005156 reproductive structure UBERON_0005051 mediastinum testis +UBERON_0005156 reproductive structure UBERON_0005056 external female genitalia +UBERON_0005156 reproductive structure UBERON_0005156 reproductive structure +UBERON_0005156 reproductive structure UBERON_0005170 granulosa cell layer +UBERON_0005156 reproductive structure UBERON_0005192 deferent duct artery +UBERON_0005156 reproductive structure UBERON_0005195 deferent duct vein +UBERON_0005156 reproductive structure UBERON_0005205 lamina propria of vagina +UBERON_0005156 reproductive structure UBERON_0005212 Leydig cell region of testis +UBERON_0005156 reproductive structure UBERON_0005296 ovary sex cord +UBERON_0005156 reproductive structure UBERON_0005297 testis sex cord +UBERON_0005156 reproductive structure UBERON_0005298 skin of clitoris +UBERON_0005156 reproductive structure UBERON_0005299 prepuce of clitoris +UBERON_0005156 reproductive structure UBERON_0005301 male preputial gland +UBERON_0005156 reproductive structure UBERON_0005302 female preputial gland +UBERON_0005156 reproductive structure UBERON_0005352 spermatic cord +UBERON_0005156 reproductive structure UBERON_0005398 female reproductive gland +UBERON_0005156 reproductive structure UBERON_0005399 male reproductive gland +UBERON_0005156 reproductive structure UBERON_0005796 duplex uterus +UBERON_0005156 reproductive structure UBERON_0005797 bipartite uterus +UBERON_0005156 reproductive structure UBERON_0005798 bicornuate uterus +UBERON_0005156 reproductive structure UBERON_0005799 simplex uterus +UBERON_0005156 reproductive structure UBERON_0005876 undifferentiated genital tubercle +UBERON_0005156 reproductive structure UBERON_0005890 gonad germinal epithelium +UBERON_0005156 reproductive structure UBERON_0005903 duct of seminal vesicle +UBERON_0005156 reproductive structure UBERON_0005904 duct of male reproductive system +UBERON_0005156 reproductive structure UBERON_0006233 female genital tubercle +UBERON_0005156 reproductive structure UBERON_0006261 male genital tubercle +UBERON_0005156 reproductive structure UBERON_0006435 os penis +UBERON_0005156 reproductive structure UBERON_0006440 os clitoris +UBERON_0005156 reproductive structure UBERON_0006594 gubernacular cord +UBERON_0005156 reproductive structure UBERON_0006608 corpus cavernosum clitoridis +UBERON_0005156 reproductive structure UBERON_0006610 tunica albuginea +UBERON_0005156 reproductive structure UBERON_0006639 crus of penis +UBERON_0005156 reproductive structure UBERON_0006640 crus of clitoris +UBERON_0005156 reproductive structure UBERON_0006641 appendix epididymis +UBERON_0005156 reproductive structure UBERON_0006642 muscle layer of oviduct +UBERON_0005156 reproductive structure UBERON_0006643 tunica albuginea of testis +UBERON_0005156 reproductive structure UBERON_0006644 tunica albuginea of ovary +UBERON_0005156 reproductive structure UBERON_0006645 adventitia of epididymis +UBERON_0005156 reproductive structure UBERON_0006646 muscle layer of epididymis +UBERON_0005156 reproductive structure UBERON_0006647 adventitia of ductus deferens +UBERON_0005156 reproductive structure UBERON_0006648 adventitia of seminal vesicle +UBERON_0005156 reproductive structure UBERON_0006650 tunica vaginalis testis +UBERON_0005156 reproductive structure UBERON_0006652 muscular layer of vagina +UBERON_0005156 reproductive structure UBERON_0006653 glans clitoris +UBERON_0005156 reproductive structure UBERON_0006655 septum of scrotum +UBERON_0005156 reproductive structure UBERON_0006656 deep dorsal vein of penis +UBERON_0005156 reproductive structure UBERON_0006690 deep dorsal vein of clitoris +UBERON_0005156 reproductive structure UBERON_0006834 uterus or analog +UBERON_0005156 reproductive structure UBERON_0006868 seminal fluid secreting gland +UBERON_0005156 reproductive structure UBERON_0006878 decidua parietalis +UBERON_0005156 reproductive structure UBERON_0006922 cervix squamous epithelium +UBERON_0005156 reproductive structure UBERON_0006923 vagina squamous epithelium +UBERON_0005156 reproductive structure UBERON_0006946 efferent duct +UBERON_0005156 reproductive structure UBERON_0006947 male genital duct +UBERON_0005156 reproductive structure UBERON_0006948 efferent duct epithelium +UBERON_0005156 reproductive structure UBERON_0006953 ejaculatory duct epithelium +UBERON_0005156 reproductive structure UBERON_0006955 uterine epithelium +UBERON_0005156 reproductive structure UBERON_0006960 ovary stroma +UBERON_0005156 reproductive structure UBERON_0007180 atretic follicle of ovary +UBERON_0005156 reproductive structure UBERON_0007181 serosa of infundibulum of uterine tube +UBERON_0005156 reproductive structure UBERON_0007182 muscle layer of infundibulum of uterine tube +UBERON_0005156 reproductive structure UBERON_0007194 vesicular gland +UBERON_0005156 reproductive structure UBERON_0007589 ciliated columnar oviduct epithelium +UBERON_0005156 reproductive structure UBERON_0007590 cuboidal oviduct epithelium +UBERON_0005156 reproductive structure UBERON_0007615 prostate gland ventral lobe +UBERON_0005156 reproductive structure UBERON_0007719 bone of reproductive organ +UBERON_0005156 reproductive structure UBERON_0007773 scrotal sweat gland +UBERON_0005156 reproductive structure UBERON_0008311 penile bulb artery +UBERON_0005156 reproductive structure UBERON_0008320 common penile artery +UBERON_0005156 reproductive structure UBERON_0008321 deep artery of penis +UBERON_0005156 reproductive structure UBERON_0008322 deep artery of clitoris +UBERON_0005156 reproductive structure UBERON_0008323 dorsal artery of clitoris +UBERON_0005156 reproductive structure UBERON_0008330 vestibule of vagina +UBERON_0005156 reproductive structure UBERON_0008331 clitoral smooth muscle +UBERON_0005156 reproductive structure UBERON_0008488 cremaster muscle +UBERON_0005156 reproductive structure UBERON_0008715 muscle tissue of prostate +UBERON_0005156 reproductive structure UBERON_0008798 rugal fold of vagina +UBERON_0005156 reproductive structure UBERON_0008807 coagulating gland +UBERON_0005156 reproductive structure UBERON_0008808 prostate gland dorsolateral lobe +UBERON_0005156 reproductive structure UBERON_0008811 intromittent organ +UBERON_0005156 reproductive structure UBERON_0008812 hemipenis +UBERON_0005156 reproductive structure UBERON_0008824 duct of epididymis +UBERON_0005156 reproductive structure UBERON_0008842 suspensory ligament of testis +UBERON_0005156 reproductive structure UBERON_0008843 gubernaculum testis +UBERON_0005156 reproductive structure UBERON_0008844 gubernaculum (female) +UBERON_0005156 reproductive structure UBERON_0008847 ovarian ligament +UBERON_0005156 reproductive structure UBERON_0008848 cranial suspensory ligament +UBERON_0005156 reproductive structure UBERON_0008855 placenta metrial gland +UBERON_0005156 reproductive structure UBERON_0008935 gastropod albumen gland +UBERON_0005156 reproductive structure UBERON_0008936 gastropod genital pore +UBERON_0005156 reproductive structure UBERON_0008975 oviduct shell gland +UBERON_0005156 reproductive structure UBERON_0009002 placental membrane +UBERON_0005156 reproductive structure UBERON_0009020 left uterine horn +UBERON_0005156 reproductive structure UBERON_0009022 right uterine horn +UBERON_0005156 reproductive structure UBERON_0009042 prostatic venous plexus +UBERON_0005156 reproductive structure UBERON_0009098 gravid uterus +UBERON_0005156 reproductive structure UBERON_0009117 indifferent gonad +UBERON_0005156 reproductive structure UBERON_0009196 indifferent external genitalia +UBERON_0005156 reproductive structure UBERON_0009645 ampullary gland +UBERON_0005156 reproductive structure UBERON_0009853 body of uterus +UBERON_0005156 reproductive structure UBERON_0010005 placental labyrinth villous +UBERON_0005156 reproductive structure UBERON_0010006 placenta intervillous maternal lacunae +UBERON_0005156 reproductive structure UBERON_0010007 placenta fetal blood space +UBERON_0005156 reproductive structure UBERON_0010008 placental cotyledon +UBERON_0005156 reproductive structure UBERON_0010041 median ovary +UBERON_0005156 reproductive structure UBERON_0010141 primitive sex cord of indifferent gonad +UBERON_0005156 reproductive structure UBERON_0010145 paraurethral gland +UBERON_0005156 reproductive structure UBERON_0010146 paraurethral duct +UBERON_0005156 reproductive structure UBERON_0010147 male accessory sex gland +UBERON_0005156 reproductive structure UBERON_0010150 duct of major vestibular gland +UBERON_0005156 reproductive structure UBERON_0010151 duct of bulbourethral gland +UBERON_0005156 reproductive structure UBERON_0010185 rete ovarii +UBERON_0005156 reproductive structure UBERON_0010391 parametrium +UBERON_0005156 reproductive structure UBERON_0010412 epididymal fat pad +UBERON_0005156 reproductive structure UBERON_0010413 parametrial fat pad +UBERON_0005156 reproductive structure UBERON_0010516 clasper +UBERON_0005156 reproductive structure UBERON_0010517 cephalic clasper +UBERON_0005156 reproductive structure UBERON_0010518 pelvic fin clasper +UBERON_0005156 reproductive structure UBERON_0011183 corpus spongiosum of penis +UBERON_0005156 reproductive structure UBERON_0011298 submucosa of uterine tube +UBERON_0005156 reproductive structure UBERON_0011374 prepuce +UBERON_0005156 reproductive structure UBERON_0011375 skin of prepuce of clitoris +UBERON_0005156 reproductive structure UBERON_0011379 male external urethral sphincter +UBERON_0005156 reproductive structure UBERON_0011380 female external urethral sphincter +UBERON_0005156 reproductive structure UBERON_0011388 male bulbospongiosus muscle +UBERON_0005156 reproductive structure UBERON_0011754 genital swelling +UBERON_0005156 reproductive structure UBERON_0011755 female labial swelling +UBERON_0005156 reproductive structure UBERON_0011756 male genital swelling +UBERON_0005156 reproductive structure UBERON_0011757 differentiated genital tubercle +UBERON_0005156 reproductive structure UBERON_0011826 vestibular gland +UBERON_0005156 reproductive structure UBERON_0011830 duct of lesser vestibular gland +UBERON_0005156 reproductive structure UBERON_0011831 duct of vestibular gland +UBERON_0005156 reproductive structure UBERON_0011879 mesorchium +UBERON_0005156 reproductive structure UBERON_0011894 lumen of vagina +UBERON_0005156 reproductive structure UBERON_0011949 endometrium luminal epithelium +UBERON_0005156 reproductive structure UBERON_0011951 prostate luminal epithelium +UBERON_0005156 reproductive structure UBERON_0012186 ovary growing follicle +UBERON_0005156 reproductive structure UBERON_0012241 male urethral meatus +UBERON_0005156 reproductive structure UBERON_0012247 cervical gland +UBERON_0005156 reproductive structure UBERON_0012248 cervical mucosa +UBERON_0005156 reproductive structure UBERON_0012249 ectocervix +UBERON_0005156 reproductive structure UBERON_0012250 cervix glandular epithelium +UBERON_0005156 reproductive structure UBERON_0012251 ectocervical epithelium +UBERON_0005156 reproductive structure UBERON_0012252 endocervical epithelium +UBERON_0005156 reproductive structure UBERON_0012253 cervical squamo-columnar junction +UBERON_0005156 reproductive structure UBERON_0012276 endometrium glandular epithelium +UBERON_0005156 reproductive structure UBERON_0012294 navicular fossa of spongiose part of urethra +UBERON_0005156 reproductive structure UBERON_0012295 GuΓ©rin's valve +UBERON_0005156 reproductive structure UBERON_0012317 vagina orifice +UBERON_0005156 reproductive structure UBERON_0012326 gubernacular bulb +UBERON_0005156 reproductive structure UBERON_0012327 pearly penile papule +UBERON_0005156 reproductive structure UBERON_0012328 penile spine +UBERON_0005156 reproductive structure UBERON_0012487 vaginal sphincter +UBERON_0005156 reproductive structure UBERON_0012499 serosa of uterine tube +UBERON_0005156 reproductive structure UBERON_0012648 ampulla of uterine tube +UBERON_0005156 reproductive structure UBERON_0013128 bulb of penis +UBERON_0005156 reproductive structure UBERON_0013129 bulb of vestibule +UBERON_0005156 reproductive structure UBERON_0013191 ovarian cortex +UBERON_0005156 reproductive structure UBERON_0013192 ovarian medulla +UBERON_0005156 reproductive structure UBERON_0013237 genital papilla of vulva +UBERON_0005156 reproductive structure UBERON_0013238 future glans +UBERON_0005156 reproductive structure UBERON_0013239 future glans penis +UBERON_0005156 reproductive structure UBERON_0013240 future glans clitoris +UBERON_0005156 reproductive structure UBERON_0013247 male paramesonephric duct +UBERON_0005156 reproductive structure UBERON_0013248 paradidymis +UBERON_0005156 reproductive structure UBERON_0013249 paroophoron +UBERON_0005156 reproductive structure UBERON_0013277 remnant of processus vaginalis +UBERON_0005156 reproductive structure UBERON_0013515 subdivision of oviduct +UBERON_0005156 reproductive structure UBERON_0013516 uterine tube magnum +UBERON_0005156 reproductive structure UBERON_0013519 avian uterine tube isthmus +UBERON_0005156 reproductive structure UBERON_0013523 lateral vaginal canal +UBERON_0005156 reproductive structure UBERON_0013524 median vaginal canal +UBERON_0005156 reproductive structure UBERON_0013637 prostate gland lateral lobe +UBERON_0005156 reproductive structure UBERON_0013672 priapium +UBERON_0005156 reproductive structure UBERON_0013673 os priapium +UBERON_0005156 reproductive structure UBERON_0013674 ctenactinium +UBERON_0005156 reproductive structure UBERON_0013675 toxactinium +UBERON_0005156 reproductive structure UBERON_0013676 aproctal bone of priapium +UBERON_0005156 reproductive structure UBERON_0013677 serrated projection of ctenactinium +UBERON_0005156 reproductive structure UBERON_0013719 dartos muscle of scrotum +UBERON_0005156 reproductive structure UBERON_0013720 dartos muscle of labia majora +UBERON_0005156 reproductive structure UBERON_0013758 cervical os +UBERON_0005156 reproductive structure UBERON_0013759 internal cervical os +UBERON_0005156 reproductive structure UBERON_0013760 external cervical os +UBERON_0005156 reproductive structure UBERON_0013761 cervical cavity +UBERON_0005156 reproductive structure UBERON_0013769 uterine lumen +UBERON_0005156 reproductive structure UBERON_0014394 uterine fat pad +UBERON_0005156 reproductive structure UBERON_0014458 female bulbospongiosus muscle +UBERON_0005156 reproductive structure UBERON_0014849 hemotrichorial placental membrane +UBERON_0005156 reproductive structure UBERON_0014850 hemomonochorial placental membrane +UBERON_0005156 reproductive structure UBERON_0014914 haemolymphatic fluid-testis barrier +UBERON_0005156 reproductive structure UBERON_0015130 connective tissue of prostate gland +UBERON_0005156 reproductive structure UBERON_0015131 subepithelial connective tissue of prostatic gland +UBERON_0005156 reproductive structure UBERON_0015171 uterine spiral artery +UBERON_0005156 reproductive structure UBERON_0015172 endometrial blood vessel +UBERON_0005156 reproductive structure UBERON_0015173 helicine branch of uterine artery +UBERON_0005156 reproductive structure UBERON_0015174 helicine artery of penis +UBERON_0005156 reproductive structure UBERON_0015177 helicine artery +UBERON_0005156 reproductive structure UBERON_0015243 lower part of vagina +UBERON_0005156 reproductive structure UBERON_0015479 scrotum skin +UBERON_0005156 reproductive structure UBERON_0015717 smooth muscle tissue layer of ejaculatory duct +UBERON_0005156 reproductive structure UBERON_0015792 prostate gland dorsal lobe +UBERON_0005156 reproductive structure UBERON_0016408 corona of glans penis +UBERON_0005156 reproductive structure UBERON_0016409 base of glans penis +UBERON_0005156 reproductive structure UBERON_0016486 posterior fornix of vagina +UBERON_0005156 reproductive structure UBERON_0016487 anterior fornix of vagina +UBERON_0005156 reproductive structure UBERON_0016524 muscle layer of spongiose part of urethra +UBERON_0005156 reproductive structure UBERON_0016632 isthmus of fallopian tube +UBERON_0005156 reproductive structure UBERON_0017160 lumen of hemipenial sheath +UBERON_0005156 reproductive structure UBERON_0017161 hemipenial mucuous gland +UBERON_0005156 reproductive structure UBERON_0017162 hemipenial holocrine gland +UBERON_0005156 reproductive structure UBERON_0017180 hemipenis keratinized epithelium +UBERON_0005156 reproductive structure UBERON_0017258 placentome of cotyledonary placenta +UBERON_0005156 reproductive structure UBERON_0017259 placental caruncle +UBERON_0005156 reproductive structure UBERON_0017294 horn of hemipenis +UBERON_0005156 reproductive structure UBERON_0017623 prepelvic clasper +UBERON_0005156 reproductive structure UBERON_0017624 pseudoclasper +UBERON_0005156 reproductive structure UBERON_0017659 ventral surface of penis +UBERON_0005156 reproductive structure UBERON_0017732 raphe of scrotum +UBERON_0005156 reproductive structure UBERON_0018131 periovarian fat pad +UBERON_0005156 reproductive structure UBERON_0018134 rugal fold of scrotum +UBERON_0005156 reproductive structure UBERON_0018315 clasper plate +UBERON_0005156 reproductive structure UBERON_0018319 extramural oviduct +UBERON_0005156 reproductive structure UBERON_0018343 oviduct mucosal fold +UBERON_0005156 reproductive structure UBERON_0018529 female inguinal ring +UBERON_0005156 reproductive structure UBERON_0018530 male inguinal ring +UBERON_0005156 reproductive structure UBERON_0018531 female superficial inguinal ring +UBERON_0005156 reproductive structure UBERON_0018532 female deep inguinal ring +UBERON_0005156 reproductive structure UBERON_0019042 reproductive system mucosa +UBERON_0005156 reproductive structure UBERON_0019197 dorsal nerve of penis +UBERON_0005156 reproductive structure UBERON_0019198 dorsal nerve of clitoris +UBERON_0005156 reproductive structure UBERON_0022355 basal layer of endometrium +UBERON_0005156 reproductive structure UBERON_0022356 outer layer of endometrium +UBERON_0005156 reproductive structure UBERON_0022358 placenta blood vessel +UBERON_0005156 reproductive structure UBERON_0034691 internal spermatic fascia +UBERON_0005156 reproductive structure UBERON_0034694 gubernacular bulb, intra-abdominal part +UBERON_0005156 reproductive structure UBERON_0034695 gubernacular bulb, extra-abdominal part +UBERON_0005156 reproductive structure UBERON_0034735 oviduct albumen gland +UBERON_0005156 reproductive structure UBERON_0034770 bulbourethral gland epithelium +UBERON_0005156 reproductive structure UBERON_0034928 dorsal surface of penis +UBERON_0005156 reproductive structure UBERON_0034963 lateral fornix of vagina +UBERON_0005156 reproductive structure UBERON_0035004 preputial swelling +UBERON_0005156 reproductive structure UBERON_0035005 preputial swelling of male +UBERON_0005156 reproductive structure UBERON_0035006 preputial swelling of female +UBERON_0005156 reproductive structure UBERON_0035098 hemipenis transversus muscle +UBERON_0005156 reproductive structure UBERON_0035104 raphe of penis +UBERON_0005156 reproductive structure UBERON_0035105 sac of scrotum +UBERON_0005156 reproductive structure UBERON_0035142 preputial space of male +UBERON_0005156 reproductive structure UBERON_0035143 preputial space of female +UBERON_0005156 reproductive structure UBERON_0035144 preputial space +UBERON_0005156 reproductive structure UBERON_0035165 posterior surface of prostate +UBERON_0005156 reproductive structure UBERON_0035258 mons pubis +UBERON_0005156 reproductive structure UBERON_0035310 inferolateral surface of prostate +UBERON_0005156 reproductive structure UBERON_0035316 prostatic capsule +UBERON_0005156 reproductive structure UBERON_0035331 base of prostate +UBERON_0005156 reproductive structure UBERON_0035341 posterior lobe of prostate +UBERON_0005156 reproductive structure UBERON_0035441 apex of prostate +UBERON_0005156 reproductive structure UBERON_0035465 endometrial cavity +UBERON_0005156 reproductive structure UBERON_0035480 surface of prostate +UBERON_0005156 reproductive structure UBERON_0035523 anterior surface of prostate +UBERON_0005156 reproductive structure UBERON_0035651 glans +UBERON_0005156 reproductive structure UBERON_0035766 median lobe of prostate +UBERON_0005156 reproductive structure UBERON_0035956 epididymal lumen +UBERON_0005156 reproductive structure UBERON_0035962 supravaginal part of cervix +UBERON_0005156 reproductive structure UBERON_0036151 diffuse placenta +UBERON_0005156 reproductive structure UBERON_0036152 cotyledonary placenta +UBERON_0005156 reproductive structure UBERON_0036153 zonary placenta +UBERON_0005156 reproductive structure UBERON_0036154 discoid placenta +UBERON_0005156 reproductive structure UBERON_0036161 epitheliochorial placenta +UBERON_0005156 reproductive structure UBERON_0036162 endotheliochorial placenta +UBERON_0005156 reproductive structure UBERON_0036163 hemochorial placenta +UBERON_0005156 reproductive structure UBERON_0036185 Sertoli cell barrier +UBERON_0005156 reproductive structure UBERON_0036262 uterine ligament +UBERON_0005156 reproductive structure UBERON_0036292 adnexa of uterus +UBERON_0005156 reproductive structure UBERON_0036441 wall of uterine tube +UBERON_0005156 reproductive structure UBERON_0036523 wall of vagina +UBERON_0005156 reproductive structure UBERON_0039288 rima vulvae +UBERON_0005156 reproductive structure UBERON_0039421 superficial dorsal vein of penis +UBERON_0005156 reproductive structure UBERON_0039422 dorsal vein of penis +UBERON_0005156 reproductive structure UBERON_2001263 ovarian follicle stage I +UBERON_0005156 reproductive structure UBERON_2001265 ovarian follicle stage II +UBERON_0005156 reproductive structure UBERON_2001266 ovarian follicle stage III +UBERON_0005156 reproductive structure UBERON_2001571 postovulatory follicle +UBERON_0005156 reproductive structure UBERON_2002114 cotylephore +UBERON_0005156 reproductive structure UBERON_2002117 ovipositor +UBERON_0005156 reproductive structure UBERON_2005272 immature gonad +UBERON_0005156 reproductive structure UBERON_3000041 Bidder's organ +UBERON_0005156 reproductive structure UBERON_3010240 Nobelian rod +UBERON_0005156 reproductive structure UBERON_3010259 phallodeum +UBERON_0005156 reproductive structure UBERON_3010260 intromittent organ (Ascaphus type) +UBERON_0005156 reproductive structure UBERON_3010529 ovisac +UBERON_0005156 reproductive structure UBERON_3010586 vasa efferentia +UBERON_0005156 reproductive structure UBERON_3010780 pars recta +UBERON_0005156 reproductive structure UBERON_3010781 pars convoluta of oviduct +UBERON_0005156 reproductive structure UBERON_4100111 hemipenal sheath +UBERON_0005156 reproductive structure UBERON_4300018 ventral marginal cartilage +UBERON_0005156 reproductive structure UBERON_8410010 fimbria of uterine tube +UBERON_0005156 reproductive structure UBERON_8410025 transition zone of prostate +UBERON_0005156 reproductive structure UBERON_8410026 peripheral zone of prostate +UBERON_0005156 reproductive structure UBERON_8410027 central zone of prostate +UBERON_0005156 reproductive structure UBERON_8450001 egg follicle +UBERON_0005156 reproductive structure UBERON_8480005 placental artery endothelium +UBERON_0005156 reproductive structure UBERON_8480007 placental artery +UBERON_0005156 reproductive structure UBERON_8480008 placental vein +UBERON_0006562 pharynx UBERON_0000355 pharyngeal mucosa +UBERON_0006562 pharynx UBERON_0000388 epiglottis +UBERON_0006562 pharynx UBERON_0001042 chordate pharynx +UBERON_0006562 pharynx UBERON_0001051 hypopharynx +UBERON_0006562 pharynx UBERON_0001728 nasopharynx +UBERON_0006562 pharynx UBERON_0001729 oropharynx +UBERON_0006562 pharynx UBERON_0001731 cavity of pharynx +UBERON_0006562 pharynx UBERON_0001732 pharyngeal tonsil +UBERON_0006562 pharynx UBERON_0001735 tonsillar ring +UBERON_0006562 pharynx UBERON_0001742 epiglottic cartilage +UBERON_0006562 pharynx UBERON_0001761 future foramen cecum +UBERON_0006562 pharynx UBERON_0001951 epithelium of nasopharynx +UBERON_0006562 pharynx UBERON_0001952 epithelium of oropharynx +UBERON_0006562 pharynx UBERON_0002372 tonsil +UBERON_0006562 pharynx UBERON_0002373 palatine tonsil +UBERON_0006562 pharynx UBERON_0003091 thyroid primordium +UBERON_0006562 pharynx UBERON_0003118 pharyngeal arch artery 1 +UBERON_0006562 pharynx UBERON_0003119 pharyngeal arch artery 2 +UBERON_0006562 pharynx UBERON_0003120 pharyngeal arch artery 3 +UBERON_0006562 pharynx UBERON_0003121 pharyngeal arch artery 4 +UBERON_0006562 pharynx UBERON_0003122 pharyngeal arch artery 5 +UBERON_0006562 pharynx UBERON_0003123 pharyngeal arch artery 6 +UBERON_0006562 pharynx UBERON_0003261 thyroid primordium endoderm +UBERON_0006562 pharynx UBERON_0003295 pharyngeal gland +UBERON_0006562 pharynx UBERON_0003351 pharyngeal epithelium +UBERON_0006562 pharynx UBERON_0003384 skeletal muscle tissue of pharynx +UBERON_0006562 pharynx UBERON_0003410 oropharyngeal gland +UBERON_0006562 pharynx UBERON_0003582 nasopharynx connective tissue +UBERON_0006562 pharynx UBERON_0003949 tubal tonsil +UBERON_0006562 pharynx UBERON_0004363 pharyngeal arch artery +UBERON_0006562 pharynx UBERON_0004924 submucosa of pharynx +UBERON_0006562 pharynx UBERON_0004925 submucosa of laryngopharynx +UBERON_0006562 pharynx UBERON_0004982 mucosa of epiglottis +UBERON_0006562 pharynx UBERON_0004987 mucosa of laryngopharynx +UBERON_0006562 pharynx UBERON_0005022 mucosa of nasopharynx +UBERON_0006562 pharynx UBERON_0005023 mucosa of oropharynx +UBERON_0006562 pharynx UBERON_0005207 tonsil capsule +UBERON_0006562 pharynx UBERON_0005562 thymus primordium +UBERON_0006562 pharynx UBERON_0005872 1st arch pharyngeal cleft +UBERON_0006562 pharynx UBERON_0005873 2nd arch pharyngeal cleft +UBERON_0006562 pharynx UBERON_0005874 3rd arch pharyngeal cleft +UBERON_0006562 pharynx UBERON_0005875 4th arch pharyngeal cleft +UBERON_0006562 pharynx UBERON_0005879 pharyngeal cleft +UBERON_0006562 pharynx UBERON_0006562 pharynx +UBERON_0006562 pharynx UBERON_0006685 pharyngeal tubercle +UBERON_0006562 pharynx UBERON_0006870 endostyle +UBERON_0006562 pharynx UBERON_0007250 lingual tonsil +UBERON_0006562 pharynx UBERON_0007303 pharyngeal vasculature +UBERON_0006562 pharynx UBERON_0007689 thyroid diverticulum +UBERON_0006562 pharynx UBERON_0008310 nasopharyngeal gland +UBERON_0006562 pharynx UBERON_0008804 stylopharyngeus muscle +UBERON_0006562 pharynx UBERON_0008815 pharyngeal slit +UBERON_0006562 pharynx UBERON_0008817 thymus primordium endoderm +UBERON_0006562 pharynx UBERON_0009116 thymoid +UBERON_0006562 pharynx UBERON_0009119 branchial basket +UBERON_0006562 pharynx UBERON_0009695 epithelium of laryngopharynx +UBERON_0006562 pharynx UBERON_0009867 Hatschek's diverticulum +UBERON_0006562 pharynx UBERON_0009868 Hatschek's left diverticulum +UBERON_0006562 pharynx UBERON_0009869 Hatschek's right diverticulum +UBERON_0006562 pharynx UBERON_0009959 lumen of oropharynx +UBERON_0006562 pharynx UBERON_0010060 pharyngeal opening of pharyngotympanic tube +UBERON_0006562 pharynx UBERON_0010061 lumen of nasopharynx +UBERON_0006562 pharynx UBERON_0010234 palatopharyngeus muscle +UBERON_0006562 pharynx UBERON_0010384 lumen of laryngopharynx +UBERON_0006562 pharynx UBERON_0010423 primary lymphoid nodule of tonsil +UBERON_0006562 pharynx UBERON_0010937 salpingopharyngeus muscle +UBERON_0006562 pharynx UBERON_0011289 pharyngobasilar fascia +UBERON_0006562 pharynx UBERON_0011345 pharyngeal raphe +UBERON_0006562 pharynx UBERON_0012181 tonsil crypt +UBERON_0006562 pharynx UBERON_0012330 nasal-associated lymphoid tissue +UBERON_0006562 pharynx UBERON_0013157 1st arch maxillary-mandibular cleft +UBERON_0006562 pharynx UBERON_0013688 tonsil germinal center +UBERON_0006562 pharynx UBERON_0013696 tonsil epithelium +UBERON_0006562 pharynx UBERON_0014475 endostylar duct +UBERON_0006562 pharynx UBERON_0016545 pharyngeal ectoderm +UBERON_0006562 pharynx UBERON_0017616 afferent spiracular artery +UBERON_0006562 pharynx UBERON_0017617 efferent spiracular artery +UBERON_0006562 pharynx UBERON_0018103 posterior fascicle of palatopharyngeus +UBERON_0006562 pharynx UBERON_0034721 pharyngeal taste bud +UBERON_0006562 pharynx UBERON_0034937 pharyngeal bar +UBERON_0006562 pharynx UBERON_0035120 fauces +UBERON_0006562 pharynx UBERON_0035228 tonsillar fossa +UBERON_0006562 pharynx UBERON_0035240 posterior wall of oropharynx +UBERON_0006562 pharynx UBERON_0035270 roof of nasopharynx +UBERON_0006562 pharynx UBERON_0035286 lateral wall of oropharynx +UBERON_0006562 pharynx UBERON_0035313 posterior wall of laryngopharynx +UBERON_0006562 pharynx UBERON_0035383 lateral wall of nasopharynx +UBERON_0006562 pharynx UBERON_0035401 posterior wall of nasopharynx +UBERON_0006562 pharynx UBERON_0036274 tonsillar pillar +UBERON_0006562 pharynx UBERON_2000202 efferent portion of pharyngeal arch artery +UBERON_0006562 pharynx UBERON_2000666 filamental artery +UBERON_0006562 pharynx UBERON_2000716 afferent portion of pharyngeal arch artery +UBERON_0006562 pharynx UBERON_2001467 pharyngeal mesoderm +UBERON_0006562 pharynx UBERON_2001990 epibranchial arborescent organ +UBERON_0006562 pharynx UBERON_2002057 gill opening +UBERON_0006562 pharynx UBERON_2002116 epibranchial organ +UBERON_0006562 pharynx UBERON_2005012 afferent filamental artery +UBERON_0006562 pharynx UBERON_2005013 concurrent branch afferent branchial artery +UBERON_0006562 pharynx UBERON_2005014 recurrent branch afferent branchial artery +UBERON_0006562 pharynx UBERON_2005015 afferent lamellar arteriole +UBERON_0006562 pharynx UBERON_2005018 efferent filamental artery +UBERON_0006562 pharynx UBERON_2005019 efferent lamellar arteriole +UBERON_0007196 tracheobronchial tree UBERON_0000410 bronchial mucosa +UBERON_0007196 tracheobronchial tree UBERON_0001102 cartilage of main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0001901 epithelium of trachea +UBERON_0007196 tracheobronchial tree UBERON_0001955 epithelium of respiratory bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0001956 cartilage of bronchus +UBERON_0007196 tracheobronchial tree UBERON_0001957 submucosa of bronchus +UBERON_0007196 tracheobronchial tree UBERON_0001958 terminal bronchiole epithelium +UBERON_0007196 tracheobronchial tree UBERON_0001963 bronchial-associated lymphoid tissue +UBERON_0007196 tracheobronchial tree UBERON_0002031 epithelium of bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002041 terminal bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002051 epithelium of bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0002177 right main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002178 left main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002182 main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002183 lobar bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002184 segmental bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002185 bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002186 bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0002187 terminal bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0002188 respiratory bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0002202 submucosa of trachea +UBERON_0007196 tracheobronchial tree UBERON_0002338 lamina propria of bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002339 epithelium of lobar bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002340 epithelium of main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0002341 epithelium of segmental bronchus +UBERON_0007196 tracheobronchial tree UBERON_0003126 trachea +UBERON_0007196 tracheobronchial tree UBERON_0003279 endothelium of trachea +UBERON_0007196 tracheobronchial tree UBERON_0003280 endothelium of main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0003387 smooth muscle of trachea +UBERON_0007196 tracheobronchial tree UBERON_0003404 lobar bronchus of right lung +UBERON_0007196 tracheobronchial tree UBERON_0003405 lobar bronchus of left lung +UBERON_0007196 tracheobronchial tree UBERON_0003492 bronchus reticular lamina +UBERON_0007196 tracheobronchial tree UBERON_0003493 trachea reticular lamina +UBERON_0007196 tracheobronchial tree UBERON_0003505 trachea blood vessel +UBERON_0007196 tracheobronchial tree UBERON_0003518 main bronchus blood vessel +UBERON_0007196 tracheobronchial tree UBERON_0003538 right lung bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0003539 left lung bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0003540 right lung terminal bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0003541 left lung terminal bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0003542 right lung respiratory bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0003543 left lung respiratory bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0003571 trachea connective tissue +UBERON_0007196 tracheobronchial tree UBERON_0003590 main bronchus connective tissue +UBERON_0007196 tracheobronchial tree UBERON_0003591 lobar bronchus connective tissue +UBERON_0007196 tracheobronchial tree UBERON_0003592 bronchus connective tissue +UBERON_0007196 tracheobronchial tree UBERON_0003604 trachea cartilage +UBERON_0007196 tracheobronchial tree UBERON_0003616 bronchus elastic tissue +UBERON_0007196 tracheobronchial tree UBERON_0003617 trachea elastic tissue +UBERON_0007196 tracheobronchial tree UBERON_0004241 main bronchus smooth muscle +UBERON_0007196 tracheobronchial tree UBERON_0004242 bronchus smooth muscle +UBERON_0007196 tracheobronchial tree UBERON_0004515 smooth muscle tissue of bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0004516 smooth muscle tissue of terminal bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0004517 smooth muscle tissue of respiratory bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0004800 bronchus basal lamina +UBERON_0007196 tracheobronchial tree UBERON_0004818 terminal bronchus epithelium +UBERON_0007196 tracheobronchial tree UBERON_0004884 lobar bronchus mesenchyme +UBERON_0007196 tracheobronchial tree UBERON_0004889 lobar bronchus vasculature +UBERON_0007196 tracheobronchial tree UBERON_0004892 lobar bronchus alveolar system +UBERON_0007196 tracheobronchial tree UBERON_0004896 right lung accessory lobe lobar bronchus +UBERON_0007196 tracheobronchial tree UBERON_0004897 right lung accessory lobe lobar bronchus mesenchyme +UBERON_0007196 tracheobronchial tree UBERON_0004899 right lung cranial lobe lobar bronchus mesenchyme +UBERON_0007196 tracheobronchial tree UBERON_0004900 right lung middle lobe lobar bronchus mesenchyme +UBERON_0007196 tracheobronchial tree UBERON_0004901 right lung lobar bronchus mesenchyme +UBERON_0007196 tracheobronchial tree UBERON_0004947 submucosa of right main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0004948 submucosa of left main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0004949 submucosa of main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0004950 submucosa of lobar bronchus +UBERON_0007196 tracheobronchial tree UBERON_0004951 submucosa of segmental bronchus +UBERON_0007196 tracheobronchial tree UBERON_0004952 submucosa of bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0005034 mucosa of right main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005035 mucosa of left main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005036 mucosa of main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005037 mucosa of lobar bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005038 mucosa of segmental bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005039 mucosa of bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0005040 mucosa of terminal bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0005041 mucosa of respiratory bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0005203 trachea gland +UBERON_0007196 tracheobronchial tree UBERON_0005244 lobar bronchus of right lung cranial lobe +UBERON_0007196 tracheobronchial tree UBERON_0005245 lobar bronchus of right lung caudal lobe +UBERON_0007196 tracheobronchial tree UBERON_0005678 right lung cranial lobe segmental bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005679 right lung caudal lobe segmental bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005680 right lung accessory lobe segmental bronchus +UBERON_0007196 tracheobronchial tree UBERON_0005681 right lung upper lobe bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0005682 right lung accessory lobe bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0006679 carina of trachea +UBERON_0007196 tracheobronchial tree UBERON_0006680 trachealis +UBERON_0007196 tracheobronchial tree UBERON_0006833 lumen of trachea +UBERON_0007196 tracheobronchial tree UBERON_0007196 tracheobronchial tree +UBERON_0007196 tracheobronchial tree UBERON_0007267 trachea pre-cartilage rings +UBERON_0007196 tracheobronchial tree UBERON_0008397 tracheobronchial epithelium +UBERON_0007196 tracheobronchial tree UBERON_0008961 parabronchus +UBERON_0007196 tracheobronchial tree UBERON_0009071 mesobronchus +UBERON_0007196 tracheobronchial tree UBERON_0009072 ventrobronchus +UBERON_0007196 tracheobronchial tree UBERON_0009073 dorsobronchus +UBERON_0007196 tracheobronchial tree UBERON_0009074 syrinx organ +UBERON_0007196 tracheobronchial tree UBERON_0009075 membrana tympaniformis +UBERON_0007196 tracheobronchial tree UBERON_0009076 membrana tympaniformis lateralis +UBERON_0007196 tracheobronchial tree UBERON_0009077 membrana tympaniformis medialis +UBERON_0007196 tracheobronchial tree UBERON_0009078 pessulus +UBERON_0007196 tracheobronchial tree UBERON_0009504 mesenchyme of main bronchus +UBERON_0007196 tracheobronchial tree UBERON_0009505 mesenchyme of trachea +UBERON_0007196 tracheobronchial tree UBERON_0009644 trachea non-cartilage connective tissue +UBERON_0007196 tracheobronchial tree UBERON_0009652 bronchus basement membrane +UBERON_0007196 tracheobronchial tree UBERON_0009653 trachea basement membrane +UBERON_0007196 tracheobronchial tree UBERON_0012055 left lung lower lobe bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0012056 left lung upper lobe bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0012059 right lung lower lobe bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0012063 lobar bronchus of right lung middle lobe +UBERON_0007196 tracheobronchial tree UBERON_0012065 lobar bronchus of left lung upper lobe +UBERON_0007196 tracheobronchial tree UBERON_0012066 lobar bronchus of left lung lower lobe +UBERON_0007196 tracheobronchial tree UBERON_0012067 primary bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0012068 right lung middle lobe bronchiole +UBERON_0007196 tracheobronchial tree UBERON_0012082 bronchial lumen +UBERON_0007196 tracheobronchial tree UBERON_0012083 lumen of primary bronchus +UBERON_0007196 tracheobronchial tree UBERON_0012084 lumen of secondary bronchus +UBERON_0007196 tracheobronchial tree UBERON_0012085 lumen of tertiary bronchus +UBERON_0007196 tracheobronchial tree UBERON_0012086 lumen of parabronchus +UBERON_0007196 tracheobronchial tree UBERON_0012088 lateroobronchus +UBERON_0007196 tracheobronchial tree UBERON_0015247 bifurcation of trachea +UBERON_0007196 tracheobronchial tree UBERON_0015472 tracheobronchial lymph node +UBERON_0007196 tracheobronchial tree UBERON_0015794 left lung lobar bronchus epithelium +UBERON_0007196 tracheobronchial tree UBERON_0015795 right lung lobar bronchus epitheium +UBERON_0007196 tracheobronchial tree UBERON_0016481 bronchial lymph node +UBERON_0007196 tracheobronchial tree UBERON_0035767 intrapulmonary bronchus +UBERON_0007196 tracheobronchial tree UBERON_0038897 superior tracheobronchial lymph node +UBERON_0007196 tracheobronchial tree UBERON_0038900 inferior tracheobronchial lymph node +UBERON_0007196 tracheobronchial tree UBERON_8410043 bronchus submucosal gland +UBERON_0007650 esophagogastric junction UBERON_0007650 esophagogastric junction +UBERON_0007650 esophagogastric junction UBERON_0035838 esophagogastric junction mucosa +UBERON_0007650 esophagogastric junction UBERON_0035839 esophagogastric junction submucosa +UBERON_0007650 esophagogastric junction UBERON_0035840 esophagogastric junction muscularis mucosa +UBERON_0007650 esophagogastric junction UBERON_0035841 esophagogastric junction muscularis propria +UBERON_0010047 oral gland UBERON_0001044 saliva-secreting gland +UBERON_0010047 oral gland UBERON_0001065 parotid main excretory duct +UBERON_0010047 oral gland UBERON_0001736 submandibular gland +UBERON_0010047 oral gland UBERON_0001829 major salivary gland +UBERON_0010047 oral gland UBERON_0001830 minor salivary gland +UBERON_0010047 oral gland UBERON_0001831 parotid gland +UBERON_0010047 oral gland UBERON_0001832 sublingual gland +UBERON_0010047 oral gland UBERON_0001837 duct of salivary gland +UBERON_0010047 oral gland UBERON_0001838 sublingual duct +UBERON_0010047 oral gland UBERON_0002334 submandibular duct +UBERON_0010047 oral gland UBERON_0002447 palatine gland +UBERON_0010047 oral gland UBERON_0003359 epithelium of submandibular gland +UBERON_0010047 oral gland UBERON_0003360 epithelium of parotid gland +UBERON_0010047 oral gland UBERON_0003361 epithelium of sublingual gland +UBERON_0010047 oral gland UBERON_0003409 gland of tongue +UBERON_0010047 oral gland UBERON_0003418 mesenchyme of submandibular gland +UBERON_0010047 oral gland UBERON_0003419 mesenchyme of parotid +UBERON_0010047 oral gland UBERON_0003420 mesenchyme of sublingual gland +UBERON_0010047 oral gland UBERON_0003985 major sublingual duct +UBERON_0010047 oral gland UBERON_0003986 minor sublingual duct +UBERON_0010047 oral gland UBERON_0004809 salivary gland epithelium +UBERON_0010047 oral gland UBERON_0006330 anterior lingual gland +UBERON_0010047 oral gland UBERON_0010047 oral gland +UBERON_0010047 oral gland UBERON_0010048 Duvernoy's gland +UBERON_0010047 oral gland UBERON_0010049 supralabial gland +UBERON_0010047 oral gland UBERON_0010050 infralabial gland +UBERON_0010047 oral gland UBERON_0010240 zygomatic gland +UBERON_0010047 oral gland UBERON_0010241 molar gland +UBERON_0010047 oral gland UBERON_0010242 anterior buccal gland +UBERON_0010047 oral gland UBERON_0011847 acinus of parotid gland +UBERON_0010047 oral gland UBERON_0011850 acinus of salivary gland +UBERON_0010047 oral gland UBERON_0012102 buccal salivary gland +UBERON_0010047 oral gland UBERON_0013475 gustatory gland +UBERON_0010047 oral gland UBERON_0014727 intercalated duct of salivary gland +UBERON_0010047 oral gland UBERON_0014729 striated duct of salivary gland +UBERON_0010047 oral gland UBERON_0015445 anterior lingual gland duct +UBERON_0010047 oral gland UBERON_0015766 epithelium of duct of salivary gland +UBERON_0010047 oral gland UBERON_0017653 intermaxillary salivary gland +UBERON_0010047 oral gland UBERON_0034934 Weber's gland +UBERON_0010047 oral gland UBERON_0035045 parotid gland intralobular duct +UBERON_0010047 oral gland UBERON_0035046 parotid gland intercalated duct +UBERON_0010047 oral gland UBERON_0035047 parotid gland striated duct +UBERON_0010047 oral gland UBERON_0035048 parotid gland excretory duct +UBERON_0010047 oral gland UBERON_0035049 excretory duct of salivary gland +UBERON_0010047 oral gland UBERON_0035053 interlobular duct of salivary gland +UBERON_0010047 oral gland UBERON_0035076 parotid gland myoepithelium +UBERON_0010047 oral gland UBERON_0035078 parotid gland interlobular duct +UBERON_0018707 bladder organ UBERON_0000381 urinary bladder detrusor smooth muscle +UBERON_0018707 bladder organ UBERON_0001255 urinary bladder +UBERON_0018707 bladder organ UBERON_0001256 wall of urinary bladder +UBERON_0018707 bladder organ UBERON_0001257 trigone of urinary bladder +UBERON_0018707 bladder organ UBERON_0001258 neck of urinary bladder +UBERON_0018707 bladder organ UBERON_0001259 mucosa of urinary bladder +UBERON_0018707 bladder organ UBERON_0001260 serosa of urinary bladder +UBERON_0018707 bladder organ UBERON_0001261 lamina propria of urinary bladder +UBERON_0018707 bladder organ UBERON_0002029 epithelium of gall bladder +UBERON_0018707 bladder organ UBERON_0002068 urachus +UBERON_0018707 bladder organ UBERON_0002110 gall bladder +UBERON_0018707 bladder organ UBERON_0004228 urinary bladder smooth muscle +UBERON_0018707 bladder organ UBERON_0004229 urinary bladder trigone smooth muscle +UBERON_0018707 bladder organ UBERON_0004230 urinary bladder neck smooth muscle +UBERON_0018707 bladder organ UBERON_0004240 gall bladder smooth muscle +UBERON_0018707 bladder organ UBERON_0004645 urinary bladder urothelium +UBERON_0018707 bladder organ UBERON_0004781 gall bladder lamina propria +UBERON_0018707 bladder organ UBERON_0004783 gall bladder serosa +UBERON_0018707 bladder organ UBERON_0004943 submucosa of urinary bladder +UBERON_0018707 bladder organ UBERON_0004944 submucosa of trigone of urinary bladder +UBERON_0018707 bladder organ UBERON_0004945 submucosa of neck of urinary bladder +UBERON_0018707 bladder organ UBERON_0005009 mucosa of trigone of urinary bladder +UBERON_0018707 bladder organ UBERON_0005010 mucosa of neck of urinary bladder +UBERON_0018707 bladder organ UBERON_0005033 mucosa of gallbladder +UBERON_0018707 bladder organ UBERON_0005737 swim bladder tunica externa +UBERON_0018707 bladder organ UBERON_0005738 swim bladder tunica interna +UBERON_0018707 bladder organ UBERON_0006081 fundus of gallbladder +UBERON_0018707 bladder organ UBERON_0006082 fundus of urinary bladder +UBERON_0018707 bladder organ UBERON_0006860 swim bladder +UBERON_0018707 bladder organ UBERON_0006912 urinary bladder muscularis mucosa +UBERON_0018707 bladder organ UBERON_0009958 bladder lumen +UBERON_0018707 bladder organ UBERON_0011202 urachus epithelium +UBERON_0018707 bladder organ UBERON_0011203 urachus mesenchyme +UBERON_0018707 bladder organ UBERON_0012239 urinary bladder vasculature +UBERON_0018707 bladder organ UBERON_0012303 ureteral orifice +UBERON_0018707 bladder organ UBERON_0012351 urachal lumen +UBERON_0018707 bladder organ UBERON_0012378 muscle layer of urinary bladder +UBERON_0018707 bladder organ UBERON_0015139 infundibulum of gallbladder +UBERON_0018707 bladder organ UBERON_0016500 muscularis mucosa of fundus of urinary bladder +UBERON_0018707 bladder organ UBERON_0017628 swim bladder gas gland +UBERON_0018707 bladder organ UBERON_0018707 bladder organ +UBERON_0018707 bladder organ UBERON_0035267 neck of gallbladder +UBERON_0018707 bladder organ UBERON_0035536 body of gallbladder +UBERON_0018707 bladder organ UBERON_0036343 wall of gallbladder +UBERON_0018707 bladder organ UBERON_2001277 anterior chamber swim bladder +UBERON_0018707 bladder organ UBERON_2001278 posterior chamber swim bladder +UBERON_0018707 bladder organ UBERON_2001437 ductus communicans +UBERON_0018707 bladder organ UBERON_2001806 intracranial diverticulum of swimbladder diff --git a/docker/prepare-dev-environment/volumes/docker-compose.yml b/docker/prepare-dev-environment/volumes/docker-compose.yml index 45f96493..c04b4f87 100644 --- a/docker/prepare-dev-environment/volumes/docker-compose.yml +++ b/docker/prepare-dev-environment/volumes/docker-compose.yml @@ -6,12 +6,13 @@ services: volumes: - atlas-data-bioentity-properties:/atlas-data/bioentity_properties - atlas-data-exp:/atlas-data/exp + - atlas-data-ontology:/atlas-data/ontology command: - | lftp -e \ "mirror -vvv /pub/databases/microarray/data/atlas/bioentity_properties /atlas-data/bioentity_properties; exit" \ ftp.ebi.ac.uk - + # Create a directory for MAGETAB files mkdir -p /atlas-data/exp/magetab for EXP_ID in ${EXP_IDS} @@ -26,3 +27,5 @@ volumes: name: ${PROJECT_NAME}_${ATLAS_DATA_BIOENTITY_PROPERTIES_VOL_NAME} atlas-data-exp: name: ${PROJECT_NAME}_${ATLAS_DATA_EXP_VOL_NAME} + atlas-data-ontology: + name: ${PROJECT_NAME}_${ATLAS_DATA_ONTOLOGY_VOL_NAME} diff --git a/docker/prepare-dev-environment/volumes/run.sh b/docker/prepare-dev-environment/volumes/run.sh index 23807a31..1da13ef9 100755 --- a/docker/prepare-dev-environment/volumes/run.sh +++ b/docker/prepare-dev-environment/volumes/run.sh @@ -77,4 +77,5 @@ printf '%b\n' "πŸ™‚ All done! You can inspect the volume contents attaching them printf '%b\n' " docker run \\" printf '%b\n' " -v ${PROJECT_NAME}_${ATLAS_DATA_BIOENTITY_PROPERTIES_VOL_NAME}:/${ATLAS_DATA_BIOENTITY_PROPERTIES_VOL_NAME} \\" printf '%b\n' " -v ${PROJECT_NAME}_${ATLAS_DATA_EXP_VOL_NAME}:/${ATLAS_DATA_EXP_VOL_NAME} \\" +printf '%b\n' " -v ${PROJECT_NAME}_${ATLAS_DATA_ONTOLOGY_VOL_NAME}:/${ATLAS_DATA_ONTOLOGY_VOL_NAME} \\" printf '%b\n' " --rm -it ubuntu:jammy bash" diff --git a/execute-all-tests.sh b/execute-all-tests.sh index 09753e20..449caab9 100755 --- a/execute-all-tests.sh +++ b/execute-all-tests.sh @@ -10,7 +10,7 @@ docker-compose \ --env-file ${SCRIPT_DIR}/docker/dev.env \ -f docker/docker-compose-postgres-test.yml \ -f docker/docker-compose-solrcloud.yml \ --f docker/docker-compose-gradle.yml \ +-f docker/docker-compose-gradle-test.yml \ run --rm --service-ports \ gxa-gradle bash -c " set -e @@ -19,7 +19,7 @@ gradle clean gradle \ -PdataFilesLocation=/atlas-data \ --PexperimentFilesLocation=/atlas-data/gxa \ +-PexperimentFilesLocation=/atlas-data/exp \ -PexperimentDesignLocation=/atlas-data/expdesign \ -PjdbcUrl=jdbc:postgresql://${POSTGRES_HOST}:5432/${POSTGRES_DB} \ -PjdbcUsername=${POSTGRES_USER} \ @@ -34,13 +34,13 @@ gradle :atlas-web-core:jacocoTestReport gradle \ -PdataFilesLocation=/atlas-data \ --PexperimentFilesLocation=/atlas-data/gxa \ +-PexperimentFilesLocation=/atlas-data/exp \ -PexperimentDesignLocation=/atlas-data/expdesign \ -PjdbcUrl=jdbc:postgresql://${POSTGRES_HOST}:5432/${POSTGRES_DB} \ -PjdbcUsername=${POSTGRES_USER} \ -PjdbcPassword=${POSTGRES_PASSWORD} \ --PzkHosts=${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 \ --PsolrHosts=http://${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr,http://${SOLR_CLOUD_CONTAINER_2_NAME}:8983/solr \ +-PzkHosts=${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 \ +-PsolrHosts=http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr,http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_2_NAME}:8983/solr \ app:testClasses gradle -PtestResultsPath=ut :app:test --tests *Test diff --git a/execute-single-test.sh b/execute-single-test.sh index 8bcfee9e..0201aae9 100755 --- a/execute-single-test.sh +++ b/execute-single-test.sh @@ -53,7 +53,7 @@ docker-compose \ --env-file ${SCRIPT_DIR}/docker/dev.env \ -f docker/docker-compose-postgres-test.yml \ -f docker/docker-compose-solrcloud.yml \ --f docker/docker-compose-gradle.yml \ +-f docker/docker-compose-gradle-test.yml \ run --rm --service-ports \ gxa-gradle bash -c " set -e @@ -66,8 +66,8 @@ gradle \ -PjdbcUrl=jdbc:postgresql://${POSTGRES_HOST}:5432/${POSTGRES_DB} \ -PjdbcUsername=${POSTGRES_USER} \ -PjdbcPassword=${POSTGRES_PASSWORD} \ --PzkHosts=${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 \ --PsolrHosts=http://${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr,http://${SOLR_CLOUD_CONTAINER_2_NAME}:8983/solr \ +-PzkHosts=${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_1_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_2_NAME}:2181,${PROJECT_NAME}-${SOLR_CLOUD_ZK_CONTAINER_3_NAME}:2181 \ +-PsolrHosts=http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_1_NAME}:8983/solr,http://${PROJECT_NAME}-${SOLR_CLOUD_CONTAINER_2_NAME}:8983/solr \ ${PROJECT_NAME}:testClasses gradle --continuous :${PROJECT_NAME}:test --tests $TEST_CASE_NAME