{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "a398796e",
   "metadata": {},
   "source": [
    "# HRA API Use Case Documentation\n",
    "\n",
    "[Click here](hra-api-client-usage.ipynb) to view the installation and general documentation for hra-api python module.\n",
    "\n",
    "In this notebook we will demonstrate one particular use case for which the HRA API module can be utilized. "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "8e2b358f",
   "metadata": {},
   "source": [
    "# Comments"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "2b54fa5c",
   "metadata": {},
   "source": [
    " - An error log is [here](README.md)."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "f517d0dd",
   "metadata": {},
   "source": [
    "# INDEX"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "5b2193e3",
   "metadata": {},
   "source": [
    "1. [Import HRA API module](#import_client)\n",
    "2. [Imports](#import_packages)\n",
    "3. [Configuration](#configuration)\n",
    "4. [Check database status](#status)\n",
    "5. [Using kidney](#kidney) \n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a25dd6d2",
   "metadata": {},
   "source": [
    "<a id='import_client'></a>\n",
    "# We first import all the necessary packages from the hra_api_client. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "id": "fbfaeb21",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Requirement already satisfied: requests in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (2.32.3)\n",
      "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from requests) (3.3.2)\n",
      "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from requests) (3.7)\n",
      "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from requests) (2.0.7)\n",
      "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from requests) (2024.7.4)\n",
      "Requirement already satisfied: hra_api_client in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (0.10.0)\n",
      "Requirement already satisfied: pydantic>=2 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from hra_api_client) (2.8.2)\n",
      "Requirement already satisfied: python-dateutil in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from hra_api_client) (2.9.0.post0)\n",
      "Requirement already satisfied: typing-extensions>=4.7.1 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from hra_api_client) (4.12.2)\n",
      "Requirement already satisfied: urllib3<2.1.0,>=1.25.3 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from hra_api_client) (2.0.7)\n",
      "Requirement already satisfied: annotated-types>=0.4.0 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from pydantic>=2->hra_api_client) (0.7.0)\n",
      "Requirement already satisfied: pydantic-core==2.20.1 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from pydantic>=2->hra_api_client) (2.20.1)\n",
      "Requirement already satisfied: six>=1.5 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from python-dateutil->hra_api_client) (1.16.0)\n",
      "Note: you may need to restart the kernel to use updated packages.\n",
      "Requirement already satisfied: pandas in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (2.2.2)\n",
      "Requirement already satisfied: numpy>=1.26.0 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from pandas) (2.0.0)\n",
      "Requirement already satisfied: python-dateutil>=2.8.2 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from pandas) (2.9.0.post0)\n",
      "Requirement already satisfied: pytz>=2020.1 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from pandas) (2024.1)\n",
      "Requirement already satisfied: tzdata>=2022.7 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from pandas) (2024.1)\n",
      "Requirement already satisfied: six>=1.5 in c:\\users\\abueckle\\documents\\github\\hra-api\\.venv\\lib\\site-packages (from python-dateutil>=2.8.2->pandas) (1.16.0)\n",
      "Note: you may need to restart the kernel to use updated packages.\n"
     ]
    }
   ],
   "source": [
    "!pip install requests \n",
    "!pip install hra_api_client \n",
    "!pip install pandas"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "3ca29d53",
   "metadata": {},
   "outputs": [],
   "source": [
    "import hra_api_client\n",
    "import requests\n",
    "from hra_api_client.api import v1_api as default_api"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "3c8bcc20",
   "metadata": {},
   "source": [
    "<a id='import_packages'></a>\n",
    "# Import all other packages required to produce output as expected.\n",
    "The pandas module is used for a dataframe, which is used for displaying and aggregating. <br>\n",
    "The csv module is used for writing all the data into a csv file."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "e2a6846a",
   "metadata": {},
   "outputs": [],
   "source": [
    "import pandas as pd\n",
    "import time\n",
    "from pprint import pprint"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d626c0ef",
   "metadata": {},
   "source": [
    "<a id='configuration'></a>\n",
    "# Configuration\n",
    "You'll need to point the host in the configuration to the instance you'd like to work with. \n",
    "More Info [here](https://github.com/hubmapconsortium/ccf-ui/blob/main/ccf-api-usage.ipynb)."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "914a1924",
   "metadata": {},
   "outputs": [],
   "source": [
    "\n",
    "configuration = hra_api_client.Configuration(\n",
    "    host = \"https://apps.humanatlas.io/api\"\n",
    ")\n",
    "api_client = hra_api_client.ApiClient(configuration)\n",
    "\n",
    "api_instance = default_api.V1Api(api_client)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "71827e1b",
   "metadata": {},
   "source": [
    "<a id='status'></a>\n",
    "# Check Database Status\n",
    "This is a optional step which can be used to reduce wait times for other methods."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "73bb3465",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "DatabaseStatus(status='Ready', checkback=3600000, load_time=22594, message='Database successfully loaded')\n",
      "Database ready!\n",
      " status='Ready' checkback=3600000 load_time=22594 message='Database successfully loaded'\n"
     ]
    }
   ],
   "source": [
    "# replace dict notation with dot notation\n",
    "db_ready = False\n",
    "result = None\n",
    "while not db_ready:\n",
    "    result = api_instance.db_status()\n",
    "    pprint(result)\n",
    "    if result.status == 'Ready':\n",
    "        db_ready = True\n",
    "    else:\n",
    "        print('Database not ready yet! Retrying...', result)\n",
    "        time.sleep(2)\n",
    "print('Database ready!\\n', result)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "1bda78fb",
   "metadata": {},
   "source": [
    "<a id='kidney'></a>\n",
    "# Our use case is using Kidney as the reference organ. \n",
    "We are using the ontology link for kidney directly: http://purl.obolibrary.org/obo/UBERON_0002113"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ee3ebe89",
   "metadata": {},
   "source": [
    "The `scene` method gives us a list of all the organs and tissue blocks that make up a 3D scene. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "09e964f9",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002097', reference_organ='https://purl.humanatlas.io/ref-organ/skin-female/v1.4#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/skin-female/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'skin', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/skin-female/v1.4/assets/3d-vh-f-skin.glb', 'scenegraphNode': 'VH_F_skin', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.5, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': False}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002097', reference_organ='https://purl.humanatlas.io/ref-organ/skin-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/skin-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'skin', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/skin-male/v1.3/assets/3d-vh-m-skin.glb', 'scenegraphNode': 'VH_M_skin', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.5, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': False}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004537', reference_organ='https://purl.humanatlas.io/ref-organ/blood-vasculature-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'blood vasculature', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/blood-vasculature-female/v1.3/assets/3d-vh-f-blood-vasculature.glb', 'scenegraphNode': 'VH_F_blood_vasculature', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004537', reference_organ='https://purl.humanatlas.io/ref-organ/blood-vasculature-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'blood vasculature', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/blood-vasculature-male/v1.3/assets/3d-vh-m-blood-vasculature.glb', 'scenegraphNode': 'VH_M_blood_vasculature', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4000000000000001, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000955', reference_organ='https://purl.humanatlas.io/ref-organ/brain-female/v1.4#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/brain-female/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'brain', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/brain-female/v1.4/assets/3d-allen-f-brain.glb', 'scenegraphNode': 'Allen_brain', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000955', reference_organ='https://purl.humanatlas.io/ref-organ/brain-male/v1.4#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/brain-male/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'brain', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/brain-male/v1.4/assets/3d-allen-m-brain.glb', 'scenegraphNode': 'Allen_brain', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004548', reference_organ='https://purl.humanatlas.io/ref-organ/eye-female-left/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-female-left/v1.3/assets/3d-vh-f-eye-l.glb', 'scenegraphNode': 'VH_F_eye_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004549', reference_organ='https://purl.humanatlas.io/ref-organ/eye-female-right/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-female-right/v1.3/assets/3d-vh-f-eye-r.glb', 'scenegraphNode': 'VH_F_eye_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004548', reference_organ='https://purl.humanatlas.io/ref-organ/eye-male-left/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-male-left/v1.3/assets/3d-vh-m-eye-l.glb', 'scenegraphNode': 'VH_M_eye_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004549', reference_organ='https://purl.humanatlas.io/ref-organ/eye-male-right/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-male-right/v1.3/assets/3d-vh-m-eye-r.glb', 'scenegraphNode': 'VH_M_eye_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001303', reference_organ='https://purl.humanatlas.io/ref-organ/fallopian-tube-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left fallopian tube', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/fallopian-tube-female-left/v1.2/assets/3d-vh-f-fallopian-tube-l.glb', 'scenegraphNode': 'VH_F_fallopian_tube_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001302', reference_organ='https://purl.humanatlas.io/ref-organ/fallopian-tube-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right fallopian tube', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/fallopian-tube-female-right/v1.2/assets/3d-vh-f-fallopian-tube-r.glb', 'scenegraphNode': 'VH_F_fallopian_tube_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000948', reference_organ='https://purl.humanatlas.io/ref-organ/heart-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/heart-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'heart', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/heart-female/v1.3/assets/3d-vh-f-heart.glb', 'scenegraphNode': 'VH_F_heart', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000948', reference_organ='https://purl.humanatlas.io/ref-organ/heart-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/heart-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'heart', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/heart-male/v1.3/assets/3d-vh-m-heart.glb', 'scenegraphNode': 'VH_M_heart', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004538', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-female-left/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-left/v1.3/assets/3d-vh-f-kidney-l.glb', 'scenegraphNode': 'VH_F_left_kidney', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004539', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-right/v1.3/assets/3d-vh-f-kidney-r.glb', 'scenegraphNode': 'VH_F_right_kidney', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004538', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-male-left/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-male-left/v1.3/assets/3d-vh-m-kidney-l.glb', 'scenegraphNode': 'VH_M_left_kidney', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004539', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-male-right/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-male-right/v1.3/assets/3d-vh-m-kidney-r.glb', 'scenegraphNode': 'VH_M_right_kidney', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24978', reference_organ='https://purl.humanatlas.io/ref-organ/knee-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-female-left/v1.2/assets/3d-vh-f-knee-l.glb', 'scenegraphNode': 'VH_F_knee_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24977', reference_organ='https://purl.humanatlas.io/ref-organ/knee-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-female-right/v1.2/assets/3d-vh-f-knee-r.glb', 'scenegraphNode': 'VH_F_knee_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24978', reference_organ='https://purl.humanatlas.io/ref-organ/knee-male-left/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-male-left/v1.2/assets/3d-vh-m-knee-l.glb', 'scenegraphNode': 'VH_M_knee_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24977', reference_organ='https://purl.humanatlas.io/ref-organ/knee-male-right/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-male-right/v1.2/assets/3d-vh-m-knee-r.glb', 'scenegraphNode': 'VH_M_knee_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000059', reference_organ='https://purl.humanatlas.io/ref-organ/large-intestine-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'large intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/large-intestine-female/v1.3/assets/3d-sbu-f-large-intestine.glb', 'scenegraphNode': 'VH_F_colon', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000059', reference_organ='https://purl.humanatlas.io/ref-organ/large-intestine-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'large intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/large-intestine-male/v1.3/assets/3d-sbu-m-large-intestine.glb', 'scenegraphNode': 'VH_M_colon', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001737', reference_organ='https://purl.humanatlas.io/ref-organ/larynx-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/larynx-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'larynx', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/larynx-female/v1.1/assets/3d-vh-f-larynx.glb', 'scenegraphNode': 'VH_F_larynx', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001737', reference_organ='https://purl.humanatlas.io/ref-organ/larynx-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/larynx-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'larynx', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/larynx-male/v1.1/assets/3d-vh-m-larynx.glb', 'scenegraphNode': 'VH_M_larynx', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002107', reference_organ='https://purl.humanatlas.io/ref-organ/liver-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/liver-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'liver', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/liver-female/v1.2/assets/3d-vh-f-liver.glb', 'scenegraphNode': 'VH_F_liver', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002107', reference_organ='https://purl.humanatlas.io/ref-organ/liver-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/liver-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'liver', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/liver-male/v1.2/assets/3d-vh-m-liver.glb', 'scenegraphNode': 'VH_M_liver', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001004', reference_organ='https://purl.humanatlas.io/ref-organ/lung-female/v1.4#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lung-female/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lung', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lung-female/v1.4/assets/3d-vh-f-lung.glb', 'scenegraphNode': 'VH_F_respiratory_system', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001004', reference_organ='https://purl.humanatlas.io/ref-organ/lung-male/v1.4#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lung-male/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lung', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lung-male/v1.4/assets/3d-vh-m-lung.glb', 'scenegraphNode': 'VH_M_respiratory_system', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002509', reference_organ='https://purl.humanatlas.io/ref-organ/lymph-node-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lymph node', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lymph-node-female/v1.3/assets/3d-nih-f-lymph-node.glb', 'scenegraphNode': 'Yao_lymph_node', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002509', reference_organ='https://purl.humanatlas.io/ref-organ/lymph-node-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lymph node', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lymph-node-male/v1.3/assets/3d-nih-m-lymph-node.glb', 'scenegraphNode': 'Yao_lymph_node', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002182', reference_organ='https://purl.humanatlas.io/ref-organ/main-bronchus-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'main bronchus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/main-bronchus-female/v1.1/assets/3d-vh-f-main-bronchus.glb', 'scenegraphNode': 'VH_F_main_bronchi', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002182', reference_organ='https://purl.humanatlas.io/ref-organ/main-bronchus-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'main bronchus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/main-bronchus-male/v1.1/assets/3d-vh-m-main-bronchus.glb', 'scenegraphNode': 'VH_M_main_bronchi', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma57991', reference_organ='https://purl.humanatlas.io/ref-organ/mammary-gland-female-left/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-left/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left mammary gland', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/mammary-gland-female-left/v1.1/assets/3d-vh-f-mammary-gland-l.glb', 'scenegraphNode': 'VH_F_mammary_gland_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma57987', reference_organ='https://purl.humanatlas.io/ref-organ/mammary-gland-female-right/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-right/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right mammary gland', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/mammary-gland-female-right/v1.1/assets/3d-vh-f-mammary-gland-r.glb', 'scenegraphNode': 'VH_F_mammary_gland_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma7214', reference_organ='https://purl.humanatlas.io/ref-organ/ovary-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left ovary', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ovary-female-left/v1.2/assets/3d-vh-f-ovary-l.glb', 'scenegraphNode': 'VH_F_left_ovary', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma7213', reference_organ='https://purl.humanatlas.io/ref-organ/ovary-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right ovary', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ovary-female-right/v1.2/assets/3d-vh-f-ovary-r.glb', 'scenegraphNode': 'VH_F_right_ovary', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54974', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-left/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-left/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-female-left/v1.1/assets/3d-vh-f-palatine-tonsil-l.glb', 'scenegraphNode': 'VH_F_palatine_tonsil_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54973', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-right/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-right/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-female-right/v1.1/assets/3d-vh-f-palatine-tonsil-r.glb', 'scenegraphNode': 'VH_F_palatine_tonsil_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54974', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-left/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-left/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-male-left/v1.1/assets/3d-vh-m-palatine-tonsil-l.glb', 'scenegraphNode': 'VH_M_palatine_tonsil_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54973', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-right/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-right/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-male-right/v1.1/assets/3d-vh-m-palatine-tonsil-r.glb', 'scenegraphNode': 'VH_M_palatine_tonsil_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001264', reference_organ='https://purl.humanatlas.io/ref-organ/pancreas-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pancreas', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pancreas-female/v1.3/assets/3d-vh-f-pancreas.glb', 'scenegraphNode': 'VH_F_pancreas', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001264', reference_organ='https://purl.humanatlas.io/ref-organ/pancreas-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pancreas', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pancreas-male/v1.3/assets/3d-vh-m-pancreas.glb', 'scenegraphNode': 'VH_M_pancreas', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001270', reference_organ='https://purl.humanatlas.io/ref-organ/pelvis-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pelvis', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pelvis-female/v1.3/assets/3d-vh-f-pelvis.glb', 'scenegraphNode': 'VH_F_pelvis', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001270', reference_organ='https://purl.humanatlas.io/ref-organ/pelvis-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pelvis', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pelvis-male/v1.3/assets/3d-vh-m-pelvis.glb', 'scenegraphNode': 'VH_M_pelvis', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001987', reference_organ='https://purl.humanatlas.io/ref-organ/placenta-full-term-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/placenta-full-term-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'placenta full term', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/placenta-full-term-female/v1.1/assets/3d-vh-f-placenta-full-term.glb', 'scenegraphNode': 'VH_F_placenta', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000079', reference_organ='https://purl.humanatlas.io/ref-organ/prostate-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/prostate-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'prostate', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/prostate-male/v1.2/assets/3d-vh-m-prostate.glb', 'scenegraphNode': 'VH_M_male_reproductive_system', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002108', reference_organ='https://purl.humanatlas.io/ref-organ/small-intestine-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'small intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/small-intestine-female/v1.2/assets/3d-vh-f-small-intestine.glb', 'scenegraphNode': 'VH_F_small_intestine', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002108', reference_organ='https://purl.humanatlas.io/ref-organ/small-intestine-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'small intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/small-intestine-male/v1.2/assets/3d-vh-m-small-intestine.glb', 'scenegraphNode': 'VH_M_small_intestine', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002240', reference_organ='https://purl.humanatlas.io/ref-organ/spinal-cord-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spinal cord', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spinal-cord-female/v1.1/assets/3d-vh-f-spinal-cord.glb', 'scenegraphNode': 'VH_F_spinal_cord', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002240', reference_organ='https://purl.humanatlas.io/ref-organ/spinal-cord-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spinal cord', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spinal-cord-male/v1.1/assets/3d-vh-m-spinal-cord.glb', 'scenegraphNode': 'VH_M_spinal_cord', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002106', reference_organ='https://purl.humanatlas.io/ref-organ/spleen-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spleen-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spleen', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spleen-female/v1.3/assets/3d-vh-f-spleen.glb', 'scenegraphNode': 'VH_F_spleen', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002106', reference_organ='https://purl.humanatlas.io/ref-organ/spleen-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spleen-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spleen', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spleen-male/v1.3/assets/3d-vh-m-spleen.glb', 'scenegraphNode': 'VH_M_spleen', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002370', reference_organ='https://purl.humanatlas.io/ref-organ/thymus-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/thymus-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'thymus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/thymus-female/v1.3/assets/3d-vh-f-thymus.glb', 'scenegraphNode': 'VH_F_thymus', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002370', reference_organ='https://purl.humanatlas.io/ref-organ/thymus-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/thymus-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'thymus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/thymus-male/v1.3/assets/3d-vh-m-thymus.glb', 'scenegraphNode': 'VH_M_thymus', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0003126', reference_organ='https://purl.humanatlas.io/ref-organ/trachea-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/trachea-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'trachea', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/trachea-female/v1.1/assets/3d-vh-f-trachea.glb', 'scenegraphNode': 'VH_F_trachea', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0003126', reference_organ='https://purl.humanatlas.io/ref-organ/trachea-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/trachea-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'trachea', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/trachea-male/v1.1/assets/3d-vh-m-trachea.glb', 'scenegraphNode': 'VH_M_trachea', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001223', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-female-left/v1.2/assets/3d-vh-f-ureter-l.glb', 'scenegraphNode': 'VH_F_left_ureter', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001222', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-female-right/v1.2/assets/3d-vh-f-ureter-r.glb', 'scenegraphNode': 'VH_F_right_ureter', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001223', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-male-left/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-male-left/v1.2/assets/3d-vh-m-ureter-l.glb', 'scenegraphNode': 'VH_M_ureter_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001222', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-male-right/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-male-right/v1.2/assets/3d-vh-m-ureter-r.glb', 'scenegraphNode': 'VH_M_ureter_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001255', reference_organ='https://purl.humanatlas.io/ref-organ/urinary-bladder-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'urinary bladder', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/urinary-bladder-female/v1.2/assets/3d-vh-f-urinary-bladder.glb', 'scenegraphNode': 'VH_F_urinary_bladder', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001255', reference_organ='https://purl.humanatlas.io/ref-organ/urinary-bladder-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'urinary bladder', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/urinary-bladder-male/v1.2/assets/3d-vh-m-urinary-bladder.glb', 'scenegraphNode': 'VH_M_urinary_bladder', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000995', reference_organ='https://purl.humanatlas.io/ref-organ/uterus-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/uterus-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'uterus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/uterus-female/v1.2/assets/3d-vh-f-uterus.glb', 'scenegraphNode': 'VH_F_uterus', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.4, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='http://dx.doi.org/10.1681/ASN.2016091027#Donor1_TissueBlock1', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/bd7a9bea-a726-427a-8360-8a017ef8178d', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001686688518226997, 0.0002924076656068257, 0.0002016242593925283, 0, -0.00046712293245977437, 0.0036193150369903983, -0.0013412303415093838, 0, -6.180785650641291e-06, 1.1943977846348251e-05, 3.438350886612315e-05, 0, -0.4790078148774472, 0.2969300461283646, -0.03325780762021534, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='http://dx.doi.org/10.1681/ASN.2016091027#Donor2_TissueBlock1', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/c7362760-04fd-4679-a694-b25592ef0291', '@type': 'SpatialSceneNode', 'transformMatrix': [5.049432705021694e-05, -0.0005602395101896718, 0.00020894979871534334, 0, 0.002632451361926837, 0.0004219249479265721, 0.0004951197215135958, 0, -8.644671185903287e-06, 1.2416687181167041e-05, 3.538086968310214e-05, 0, -0.4829509483644233, 0.2958873827812154, -0.0338615885808289, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='http://dx.doi.org/10.1681/ASN.2016091027#Donor3_TissueBlock1', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/59411967-28d2-4955-833e-7f8a8ab75d85', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.00010561326365448126, -0.0005094524725767569, 0.00015073565976794596, 0, 0.001990913390084507, -0.000365325474235154, 0.0001602201806330131, 0, -1.361806430646518e-06, 1.6256510013240914e-05, 5.398917822522259e-05, 0, -0.48055624002676606, 0.29084630055186617, -0.03913916964931989, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/015f9976f3fed4c35dbbaad622a413d9', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/85ad9566-c363-4b61-a522-6576b253d9af', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.0002891585443528624, 0.0003449132882642251, 0.001430881602302054, 0, 0.0022673066569590624, -0.0008234618538643087, 0.0006566818853444013, 0, 0.00037460659341591204, 0.0009157686827436738, -0.00014504351028309456, 0, 0.3083305, 0.2527078, -0.0931681, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/039ce6e8d5fa342811a4b317846b7281', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/43a81423-74d2-4803-a805-d745093c2376', '@type': 'SpatialSceneNode', 'transformMatrix': [0.011644307455080249, -0.011212376614690397, 0.006703932766809834, 0, 0.006762068403847633, 0.0066422819223575374, -0.0006360202556584081, 0, -0.00033742658151579753, 0.0004758357956256439, 0.0013819274936435245, 0, -0.32430427324619304, 0.33137940380906505, -0.050913596412685475, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/07c995983aac113b442c0dc0c0b42ae5', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/ddca4946-3dda-445a-9b7d-367780669123', '@type': 'SpatialSceneNode', 'transformMatrix': [0.009157245678264965, 0.003919053142476175, 0.0008864953775092486, 0, -0.0013317389475632831, 0.00345434044629472, -0.001514596796720314, 0, -0.00044990210868773, 0.0006344477275008585, 0.0018425699915246994, 0, -0.34127429419374433, 0.3374145977070389, -0.056646818657140566, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/088adc477043f3970311122b0365bba8', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/004c977d-dc98-472b-b02e-4209f8b41387', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0047446501004239465, 0.009288315333936644, -0.0015819955726858149, 0, -0.005875761373592351, 0.0035144583535013604, -0.002471625245982139, 0, -0.0004229079821664662, 0.0006959891570684417, 0.0017320157920332174, 0, 0.4804268685690399, 0.2644127089811475, -0.12135334051026841, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/df0b33f7-371a-47a4-a636-a27db19bdbc9', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0017193398003386513, 0.0009961668378761551, 0.00022698520235308128, 0, -0.001041987555688496, 0.0021983991663548316, -0.001755364075957092, 0, -0.00037460659341591204, 0.0004635919272833937, 0.0008029647720336144, 0, -0.44029049000000003, 0.3179056, -0.020696980000000007, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001224', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/4e2e6f98-ec16-4627-a06a-d3cdc282ee1c', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0009396926207859085, -0.00010569003670618688, -0.0003252804860140796, 0, 0, 0.0014265847744427303, -0.0004635254915624211, 0, 0.0003420201433256687, 0.00029038098931157864, 0.0008937007903129089, 0, 0.3405725, 0.23894179999999998, -0.0891681, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/6537f5fc-c6fa-43b0-93e1-85040fdb89be', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001, 0, 0, 0, 0, 0.001, 0, 0, 0, 0, 0.001, 0, -0.33512527000000003, 0.3020177, -0.011435170000000008, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000056', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001223', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/5c7d77e3-e7e4-4f6c-bf86-01e78c3de7ad', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00047741790473898344, -0.0015271354188264943, 0.0011999706483078105, 0, 0.0033299081934699878, 0.0019160975054162855, 0.0011136793851009954, 0, -0.0004999999999999999, 0.0004330127018922193, 0.0007500000000000001, 0, -0.43717949, 0.32622059999999997, -0.022696980000000005, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/16755fbe7dcb20e2cdcaeef386464643', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/812d2c8e-557a-48b9-8780-a5c1f53008cb', '@type': 'SpatialSceneNode', 'transformMatrix': [0.009196148280402093, 0.013488006683263248, -0.002398860670631716, 0, -0.009191130384942355, 0.0055288147098946526, -0.0041479308276105515, 0, -0.00044990210868773, 0.0006344477275008585, 0.0018425699915246994, 0, -0.32933629188564123, 0.33399360611353923, -0.05298813890647825, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/ae63de43-3ab8-42c0-a6cd-81ca5de26e81', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0023672075137025697, -0.00905806010231914, 0.003513954434799099, 0, 0.0029142062375999847, -0.00029515710786165086, -0.002724019876287999, 0, 0.0009641814145298089, 0.000625826559418416, 0.0009636883922730442, 0, 0.47624157, 0.2010231, -0.07059740000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/70ad7ae6-c9af-4975-98e2-98c249e36ddd', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0007745234741153961, 1.0786704875127062e-05, -0.0006324531880243426, 0, -0.00026668981927897416, 0.0009122122171305472, -0.0003110392438434735, 0, 0.000573576436351046, 0.00040957602214449586, 0.0007094064799162225, 0, 0.47459457, 0.2418651, -0.07859640000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/fd380a0c-2915-4d73-b3f4-d161badbaccb', '@type': 'SpatialSceneNode', 'transformMatrix': [0.000979468302347186, -0.0008222488029299609, -0.0007296041451752633, 0, 0, 0.004734694565829003, -0.003917873209388744, 0, 0.0006761794123183321, 0.0005293576260586781, 0.00046971368869897504, 0, 0.47821933, 0.19420131200000001, -0.07567132000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001226', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/52c4948d-bdc2-4201-a991-61a2c0a565c0', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.00013723415117359298, -0.0003188272478254971, 0.0013764555699084349, 0, -0.0014902432918757044, -0.0012681860759580805, -0.0003642632791929107, 0, 0.0005657061217629254, -0.0008695728144615148, -9.148943411572863e-05, 0, 0.49016861, 0.22546361800000003, -0.09024132000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/24b13fd3342a93b5c85bd2318434b2a4', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/a92ad611-c3c6-43d9-bfd6-00ff906fa541', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008118976965346539, -0.003197191275709853, -0.002204581815832002, 0, 0.002072146034598722, 0.004357014256173763, 0.001312492888664691, 0, 0.00012020230194247777, -0.0003383181110638777, 0.0009333232357194903, 0, -0.29529061348436353, 0.2817425301731845, -0.03409724238316252, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000056', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001223', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/cb68d9a5-9884-4eef-afe8-e087cac7bf54', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.0010531840838912724, -5.887887728331193e-05, -0.001066459827301506, 0, -0.0032913503472395854, -0.003640738163941545, 0.0034513821163912597, 0, -0.00045399049973954676, 0.0007938926261462366, 0.0004045084971874738, 0, -0.45028949, 0.3309256, -0.016696980000000007, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/0af69e70-3ec3-4d0b-a008-89a4186f4452', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.0014100646811497255, 0.00667160032450211, -0.0031227338511434903, 0, -0.003393276322924572, 0.0006340314608302561, 0.0028868113729436764, 0, 0.0028319417597242685, 0.0019555852797345993, 0.002899274406332585, 0, 0.48244157, 0.19754410000000003, -0.06981840000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/aae4b64f-ffda-4c18-9db1-e5aa350b0d3b', '@type': 'SpatialSceneNode', 'transformMatrix': [0.004201569737042681, -0.0005037876747579208, 0.0026632704938719808, 0, 0.0030555798541930202, 0.007774439927574045, -0.003349853066507882, 0, -0.004226182617406995, 0.004936105985582457, 0.007600936664873876, 0, -0.47079549000000004, 0.3296326, -0.027032980000000005, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/2990ecc8-1854-4794-8f11-1b31c5c94e5f', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0007716342848848006, 0.0005244541935447203, 0.00035990044354471075, 0, -0.0005897509587768602, 0.0012570792322893428, -0.0005674025117750279, 0, -0.0004999999999999999, 0.0001503837331804353, 0.0008528685319524433, 0, -0.36117327, 0.3327177, -0.02743517000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2a3b7a201db7e590f8578b2d7c558f9b', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/7f350668-6a99-433b-81e7-56f17c4cdb70', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008501707107204692, 0.006161888923368352, -4.583840502960808e-05, 0, -0.0029812078720312584, 0.0040973343707439314, -0.002138749793234188, 0, -0.00089980421737546, 0.001268895455001717, 0.003685139983049399, 0, -0.4483757890043615, 0.31140900884073336, -0.03281534450147386, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/db35f27d-313f-4dd6-819b-375cf106aac1', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001300088038065005, 0.0002743110900302623, 0.0006960779548058508, 0, 0.00016847434316355036, 0.0007683505802707258, -0.0006174575139175565, 0, -0.0004694715627858908, 0.0006133469360560764, 0.0006351393451566332, 0, -0.44088049, 0.3380496, -0.029696980000000008, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/69ac0df4-f442-4d62-90dc-86fcbc38eb23', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0014862896509547886, 0.0008239158725928939, 0.0010545642267563334, 0, 0, 0.001970026884016805, -0.0015391536883141458, 0, -0.0006691306063588583, 0.00045752563963404145, 0.0005856061139633773, 0, -0.44771349000000005, 0.3183146, -0.01919698000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2ce02a8007277336b4522db806cedafd', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/a92f535f-e679-47ed-ad8d-329b12554af7', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008219630473998478, 0.003953441808520912, 0.0008405389935060042, 0, -0.001502283169330035, 0.00476740620831783, -0.0017734289168705082, 0, -0.0013744509420410152, 0.002261964760472436, 0.005629051324107957, 0, 0.3459201495846588, 0.2763089840053648, -0.11588057405311358, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/ba018414-bb8f-4ddb-9586-9d955939f17e', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008304555331523215, 0.010846329805826166, -0.004862251586345188, 0, -0.0051191294747794085, 0.0015645305524288062, -0.005253261612651849, 0, -0.0031779334981768275, 0.004410257287345353, 0.004410257287345354, 0, 0.3408275, 0.2855038, -0.1097021, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2eb0aa95b1c1476852ca2971e55765db', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/6264c640-fadc-4852-b395-8a0bdc3d99bf', '@type': 'SpatialSceneNode', 'transformMatrix': [0.002294363865758241, -0.008223669860343027, 0.002986596656406402, 0, 0.007877070331052442, 0.0034420825250286234, 0.0009077714238474648, 0, -0.00031718098662484966, 0.0005219918678013313, 0.001299011844024913, 0, 0.34757988341162427, 0.27888944616985506, -0.11206359146407191, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002113'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/8f99a469-7d51-46dc-919d-2e002eeae868', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0012802158572572042, 0.00027960435073079237, -0.000729978606453377, 0, -0.0008620679684365801, 0.0022554319387742394, -0.0006479703599337735, 0, 0.00039073112848927376, 0.00038902216108994763, 0.0008342607166889769, 0, 0.47563057, 0.26895410000000003, -0.09709640000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/20dd6d0c-0b29-40c6-9d0a-b5af3cc58da1', '@type': 'SpatialSceneNode', 'transformMatrix': [0.004896527498907459, 0.010267836154519028, -0.00382041347976825, 0, -0.004004156795771099, 0.0008400853219914647, -0.0028741929313556226, 0, -0.0035069691743126194, 0.003916146576429039, 0.0060303369062055055, 0, -0.46643549, 0.3222796, -0.025196980000000008, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/3622b5c2175f28d7f6323208b7b1d93c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/3022bdb2-5548-4d64-8c20-139999148d67', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00635452972148363, -0.003573960587975303, 0.0026060826111737184, 0, 0.002736085261490109, 0.005637215097387451, -0.0009951779821622514, 0, -0.0005286349777080827, 0.0008699864463355523, 0.002165019740041522, 0, 0.4597126405738493, 0.24740610045396028, -0.11633262427354207, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/3a4b8bfca8e842cae400f49e19987c7c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/004c977d-dc98-472b-b02e-4209f8b41387', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0047446501004239465, 0.009288315333936644, -0.0015819955726858149, 0, -0.005875761373592351, 0.0035144583535013604, -0.002471625245982139, 0, -0.0004229079821664662, 0.0006959891570684417, 0.0017320157920332174, 0, 0.4804268685690399, 0.2644127089811475, -0.12135334051026841, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/7a3454d4-89f6-40f5-af48-1ad1f46b49fc', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0039705968194355375, -0.009330758375311025, 0.0042627818427702245, 0, 0.003093054509047333, 0.0031666332765177304, 0.004050363872062921, 0, -0.005828594710927282, -0.0003292437850118299, 0.004708405486550792, 0, -0.35259527, 0.3435357, -0.024935170000000006, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/26edd761-8b50-453c-9b03-2337806c9e3a', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00032999767961926533, -0.00020920846017238732, -0.000282603709549508, 0, -0.0008407110802006233, 0.0014841332112521617, -0.0017884109413362468, 0, 0.0005787217868061188, 0.0008221387100547753, 0.00022889819173780527, 0, 0.47833401, 0.195768925, -0.09212508000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/d9722c2f-1591-4e93-a214-377a5646e6d8', '@type': 'SpatialSceneNode', 'transformMatrix': [0.013363170533070437, -0.0019577529030520248, -0.008578629078976972, 0, -0.0008676930961891124, 0.003815513253241244, -0.00222237874926084, 0, 0.0051503807491005416, 0.005158561589172205, 0.006845642443920928, 0, -0.31465327, 0.2749377, -0.02693517000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/bf36d893-81ff-4f38-a6ba-97c9d870c841', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.001222056056996429, 0.0057820536145684965, -0.002706369337657692, 0, -0.004524368430566095, 0.000845375281107008, 0.003849081830591568, 0, 0.0034612621507741055, 0.002390159786342288, 0.0035435576077398256, 0, 0.49144157, 0.19554410000000003, -0.07581840000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/731ade72-cdb7-4262-8be1-859396820dfd', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0006691306063588583, -0.00043680956873307607, -0.0006012167930930164, 0, 0, 0.0012135254915624212, -0.0008816778784387098, 0, 0.0007431448254773943, 0.000393305102275257, 0.0005413380320007296, 0, 0.48530857, 0.23869510000000002, -0.07859640000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/4238035279fa6b84092f5a48e230a300', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/89386c4b-280e-4656-86c8-9dfd6b7de99a', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.005454244068820555, -0.007073390753580732, 0.0011037956717139476, 0, 0.004577839398806777, -0.0031844088157986124, 0.0022142553901021663, 0, -0.001124755271719325, 0.0015861193187521464, 0.004606424978811748, 0, -0.4622744590893685, 0.31051928805757295, -0.036803557109254176, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0000362'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/0e8b0f2f-d130-4edc-a00b-15db0110ffa9', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008571673007021123, -0.0031708910104801084, -0.0040585554154602705, 0, 0, 0.007092096782460498, -0.005540953277930925, 0, 0.003090228449460325, 0.003166349309707048, 0.004052742303559867, 0, -0.32597327, 0.2882087, 0.0006938299999999786, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/57bab703-98bd-4106-9160-af951a74e4df', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0010342207384567642, -0.0010751098196023435, -0.0001566088756761947, 0, 0.0007139779505485652, 0.0006482989674597201, 0.00026446915684278077, 0, -0.00012186934340514748, -0.0002568898471879887, 0.0009587259616541788, 0, -0.46487949000000006, 0.3069886, -0.021696980000000008, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/2a9e525a-4ad9-4085-bca9-31a2d0512008', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00040926871700379066, 0.001179089662732233, -0.0008320136324123903, 0, 0.0003626867281915135, 0.0013408530081025346, 0.0020785984575805204, 0, 0.0009510565162951536, -0.0003073241669467798, 3.230107154560237e-05, 0, 0.3502155, 0.2472188, -0.09966810000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/4fd5a971eb171344a8d1e2b629e95541', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/ad6486c5-ee24-4c25-8c74-677ffb35a189', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0063508995825299775, -0.002241817531009449, 0.0023829463653051225, 0, 0.0020934589652365815, 0.006590885218351331, -0.0010266403116957715, 0, -0.0012532254144321786, 0.0014654540150566, 0.004352308458074164, 0, 0.49041271590117946, 0.19567236752445097, -0.10095968304884118, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/512108a2c671e73858834cb5a7b8db80', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/ad6486c5-ee24-4c25-8c74-677ffb35a189', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0063508995825299775, -0.002241817531009449, 0.0023829463653051225, 0, 0.0020934589652365815, 0.006590885218351331, -0.0010266403116957715, 0, -0.0012532254144321786, 0.0014654540150566, 0.004352308458074164, 0, 0.49041271590117946, 0.19567236752445097, -0.10095968304884118, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/5193f0b7dc1c38be66651d545b314b12', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/d49fc7d2-4dfa-4a4c-9d91-737cdaf2c4d7', '@type': 'SpatialSceneNode', 'transformMatrix': [0.012126369445734114, 0.0020155079414884837, 0.002266912394284994, 0, -0.0006826431101006261, 0.007009071933975256, -0.0025800986431903164, 0, -0.00044990210868773, 0.0006344477275008585, 0.0018425699915246994, 0, -0.45775958595794686, 0.3178471733994699, -0.037703337747238844, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/80b28f07-c971-40f2-afc1-f7654359e5d9', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0062983477922732845, -0.00014489885261868458, -0.006427271536980218, 0, -0.0021810484166875873, 0.006249232339303948, -0.0022781841394984453, 0, 0.0012855752193730785, 0.0009005392525318712, 0.001239485945859492, 0, 0.46938457, 0.27318210000000004, -0.11457140000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/cf4ba102-edf7-4fe4-bb1d-860cdf57609d', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001134976249348867, -0.0019093541431162864, -0.001147255712375689, 0, 0, 0.0025751903745502708, -0.004285836503510562, 0, 0.0008910065241883678, 0.00038914581120615046, 0.00023382239301330965, 0, -0.32165727, 0.3133137, -0.016095170000000013, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/54e7365b6264290f4e452da9d8584a86', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/5d8e6e56-ce20-4550-9639-8d149c3d5838', '@type': 'SpatialSceneNode', 'transformMatrix': [0.011985408419692131, 0.006212670351126829, 0.0010934511788355272, 0, -0.0027671249659479563, 0.007998061491036849, -0.0030354658345561137, 0, -0.0002114539910832331, 0.00034799457853422087, 0.0008660078960166087, 0, 0.3169509839612518, 0.21516502311898517, -0.10714807156083402, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/bd004aeb-6e60-4d5b-8d40-cfdd55b8b6fe', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0006566282475261473, 0.0001188837552550297, -0.0007447858734476662, 0, -0.0025645233593170292, 0.005822377293942177, -0.0013315940021282272, 0, 0.0006427876096865392, 0.00042836661633533277, 0.0006350796255926362, 0, 0.45365757, 0.2864631, -0.11109640000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/5e878eb0192414dee7be45d7d5610a84', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/5d8e6e56-ce20-4550-9639-8d149c3d5838', '@type': 'SpatialSceneNode', 'transformMatrix': [0.011985408419692131, 0.006212670351126829, 0.0010934511788355272, 0, -0.0027671249659479563, 0.007998061491036849, -0.0030354658345561137, 0, -0.0002114539910832331, 0.00034799457853422087, 0.0008660078960166087, 0, 0.3169509839612518, 0.21516502311898517, -0.10714807156083402, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/5f8bd79354b14fc35466221b875bb030', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/a92ad611-c3c6-43d9-bfd6-00ff906fa541', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008118976965346539, -0.003197191275709853, -0.002204581815832002, 0, 0.002072146034598722, 0.004357014256173763, 0.001312492888664691, 0, 0.00012020230194247777, -0.0003383181110638777, 0.0009333232357194903, 0, -0.29529061348436353, 0.2817425301731845, -0.03409724238316252, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/647db48ac7407caf7c3fb8ef0c6da12e', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/b8a1b2bf-5cc2-49d3-810f-c2b7e06d2f8b', '@type': 'SpatialSceneNode', 'transformMatrix': [0.004462236831784142, 0.0123430042906514, -0.0031604884967406798, 0, -0.0045829655658823345, 0.0012592728226212527, -0.00155262956951886, 0, -0.00033742658151579753, 0.0004758357956256439, 0.0013819274936435245, 0, -0.3148727799645657, 0.2711086738869314, -0.03160259206766736, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/6585f87d93fe9621d151f0f225a8edc2', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/28769c20-7852-48e9-8579-d06ce74bb2cd', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008688474088097056, 0.00023096901370340338, 0.0020533261680410445, 0, 0.00034560069988666734, 0.007280396008524187, -0.0020636826164274658, 0, -0.0007400889687913158, 0.001217981024869773, 0.00303102763605813, 0, 0.46440940932518066, 0.26432184053063734, -0.12423762041698266, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/d8490f13-1bb3-41bb-acea-82678406ad96', '@type': 'SpatialSceneNode', 'transformMatrix': [0.011096605001575173, 0.0012097168830043565, 0.005626005910234287, 0, 0.0010545177436061602, 0.006554603616499164, -0.0034892927304821884, 0, -0.0017534845871563097, 0.0019051531188481589, 0.0030488823192029568, 0, -0.46380249, 0.2554296, 0.015628019999999986, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/682ab44e00e97bd81b17b0004601c8da', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/24ce75c0-6272-4a15-82ff-ab5e023bb771', '@type': 'SpatialSceneNode', 'transformMatrix': [0.007158002630858213, 0.0019663658585520796, 0.0010707024082104411, 0, -0.000981287337869318, 0.004556944039368367, -0.0018086835496024332, 0, -0.0006748531630315951, 0.0009516715912512878, 0.002763854987287049, 0, -0.341087664900654, 0.3350324556305043, -0.05600895340588468, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/6890cd54f99e6396694e64ee2bb53b3c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/3022bdb2-5548-4d64-8c20-139999148d67', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00635452972148363, -0.003573960587975303, 0.0026060826111737184, 0, 0.002736085261490109, 0.005637215097387451, -0.0009951779821622514, 0, -0.0005286349777080827, 0.0008699864463355523, 0.002165019740041522, 0, 0.4597126405738493, 0.24740610045396028, -0.11633262427354207, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/6af94c048315d5b7b8997229dbb48f1a', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/43a81423-74d2-4803-a805-d745093c2376', '@type': 'SpatialSceneNode', 'transformMatrix': [0.011644307455080249, -0.011212376614690397, 0.006703932766809834, 0, 0.006762068403847633, 0.0066422819223575374, -0.0006360202556584081, 0, -0.00033742658151579753, 0.0004758357956256439, 0.0013819274936435245, 0, -0.32430427324619304, 0.33137940380906505, -0.050913596412685475, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/a2d58db6-2ca6-45ee-a0da-3c11e2f436cf', '@type': 'SpatialSceneNode', 'transformMatrix': [0.009028590122851735, 0.001700876517289974, 0.00394861741201596, 0, 0.0005924244625287422, 0.006278713600151321, -0.004059161093560143, 0, -0.0014791639160924481, 0.0018194287675398957, 0.002598413567771364, 0, -0.45229549, 0.3301326, -0.026032980000000004, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001224', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001226', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/72ea5aad-4be7-4478-afc0-7736bc0d90e3', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001, 0, 0, 0, 0, 0.0009840885434857609, -0.001132064370334158, 0, 0, 0.0007547095802227721, 0.0006560590289905073, 0, -0.32252227, 0.2856147, -0.014435170000000004, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0001224', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0001226', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/29e439fb-cfec-4c2d-a14e-3bc60eb8e255', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0008828131156638819, -0.000418045223935357, -0.00021419428927183575, 0, -2.311434038009268e-05, 0.0006449694673208295, -0.0013540606018538014, 0, 0.0004694715627858908, 0.0008002222789533111, 0.00037314977690217457, 0, -0.32236727000000004, 0.2853667, -0.015935170000000005, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/7697e16bf3f778036b56ca8aec068ae9', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/24ce75c0-6272-4a15-82ff-ab5e023bb771', '@type': 'SpatialSceneNode', 'transformMatrix': [0.007158002630858213, 0.0019663658585520796, 0.0010707024082104411, 0, -0.000981287337869318, 0.004556944039368367, -0.0018086835496024332, 0, -0.0006748531630315951, 0.0009516715912512878, 0.002763854987287049, 0, -0.341087664900654, 0.3350324556305043, -0.05600895340588468, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/76a721f5c92163e02bf2811ed276ed0b', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/89386c4b-280e-4656-86c8-9dfd6b7de99a', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.005454244068820555, -0.007073390753580732, 0.0011037956717139476, 0, 0.004577839398806777, -0.0031844088157986124, 0.0022142553901021663, 0, -0.001124755271719325, 0.0015861193187521464, 0.004606424978811748, 0, -0.4622744590893685, 0.31051928805757295, -0.036803557109254176, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/19a9f5af-c334-4e5d-a5f8-4ac2128d0eb5', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0016218671141695446, -0.0069937467602818534, 0.003529455101998387, 0, 0.004367644502169851, 0.0032379224953205726, 0.004409029305523209, 0, -0.00377354790111386, 0.0007379058514161345, 0.0031962213929020954, 0, 0.47314957, 0.18866310000000003, -0.08087140000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/82f8ca025a918872d7b3bec389e3b9e7', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/ddbe72b3-09e3-48dc-9a75-e5ed70e12a01', '@type': 'SpatialSceneNode', 'transformMatrix': [0.006616188312800422, 0.007752961237184392, -0.0006720166892047164, 0, -0.0031668112185233065, 0.0034685180331733637, -0.0017966236370703104, 0, -0.0007400889687913158, 0.001217981024869773, 0.00303102763605813, 0, 0.47314064608006606, 0.2668825655909177, -0.12319794697462388, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/21f2dbfa-f964-4526-bb4b-6b13302b4963', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001, 0, 0, 0, 0, 0.001, 0, 0, 0, 0, 0.001, 0, 0.3398085, 0.23980379999999998, -0.0901681, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/a619c5f7-b1b1-427d-b76d-846caab056d0', '@type': 'SpatialSceneNode', 'transformMatrix': [0.007161197073973442, 0.00040094699477685383, 0.003543514918141819, 0, 0.0009924444167881167, 0.006370357022828745, -0.002726463915272415, 0, -0.0029583278321848963, 0.00288018587608228, 0.0056526830582066395, 0, -0.47452449, 0.2465566, 0.020175019999999995, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/f3f2fabb-6802-4fd4-920e-1914293db252', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0007547095802227721, 0.0004128713246760826, 0.0005098536248573546, 0, 0, 0.0038857298072848545, -0.003146601955249187, 0, -0.0006560590289905073, 0.0004749541281548535, 0.0005865195023430131, 0, -0.35083127000000003, 0.3437587, -0.03543517000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/973161d3138555f8705d9fcbbcedd144', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/b8a1b2bf-5cc2-49d3-810f-c2b7e06d2f8b', '@type': 'SpatialSceneNode', 'transformMatrix': [0.004462236831784142, 0.0123430042906514, -0.0031604884967406798, 0, -0.0045829655658823345, 0.0012592728226212527, -0.00155262956951886, 0, -0.00033742658151579753, 0.0004758357956256439, 0.0013819274936435245, 0, -0.3148727799645657, 0.2711086738869314, -0.03160259206766736, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/c07ec91d-9dbe-4132-a93c-b960895b009d', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0008571673007021123, -0.0003378953793186303, -0.0003887041693141116, 0, 0, 0.00377354790111386, -0.0032802951449525364, 0, 0.0005150380749100542, 0.000562352346981042, 0.0006469123736935778, 0, -0.35591427000000003, 0.33639769999999997, -0.02743517000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/9cab477791e415a4b4ceed2c7211a152', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/6264c640-fadc-4852-b395-8a0bdc3d99bf', '@type': 'SpatialSceneNode', 'transformMatrix': [0.002294363865758241, -0.008223669860343027, 0.002986596656406402, 0, 0.007877070331052442, 0.0034420825250286234, 0.0009077714238474648, 0, -0.00031718098662484966, 0.0005219918678013313, 0.001299011844024913, 0, 0.34757988341162427, 0.27888944616985506, -0.11206359146407191, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/9d1412bb63341df32e4851693cbfe409', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/812d2c8e-557a-48b9-8780-a5c1f53008cb', '@type': 'SpatialSceneNode', 'transformMatrix': [0.009196148280402093, 0.013488006683263248, -0.002398860670631716, 0, -0.009191130384942355, 0.0055288147098946526, -0.0041479308276105515, 0, -0.00044990210868773, 0.0006344477275008585, 0.0018425699915246994, 0, -0.32933629188564123, 0.33399360611353923, -0.05298813890647825, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/e88dfa31-cb6b-4eaa-b16c-e5c97de2701e', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0010004403732319408, -0.0007359292718597118, -0.0008411463406729948, 0, 0.0008084082963400334, 0.0025814876127329533, -0.001297072754981356, 0, 0.0006946583704589973, 0.00013725650463698236, 0.0007061235021482352, 0, 0.44388657, 0.27769510000000003, -0.10859640000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/8ae7c9f9-b138-4b44-8aaf-944b7544ff8a', '@type': 'SpatialSceneNode', 'transformMatrix': [0.007714505706319012, -0.002853801909432098, -0.0036526998739142436, 0, 0, 0.007486102159263858, -0.005848784015593754, 0, 0.003347747486915352, 0.0034302117521826355, 0.004390470828856523, 0, -0.32432227, 0.2725027, 0.013399829999999988, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a216f4fd6f96b64de6f3242eceebf4c6', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/6264c640-fadc-4852-b395-8a0bdc3d99bf', '@type': 'SpatialSceneNode', 'transformMatrix': [0.002294363865758241, -0.008223669860343027, 0.002986596656406402, 0, 0.007877070331052442, 0.0034420825250286234, 0.0009077714238474648, 0, -0.00031718098662484966, 0.0005219918678013313, 0.001299011844024913, 0, 0.34757988341162427, 0.27888944616985506, -0.11206359146407191, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a2cc35adf80400c16f940b3707ff3c40', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/c62cd431-dd48-4c1b-9c7b-ca4a683fe084', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.004749720712684629, -0.010205283692790218, 0.00235421704631597, 0, 0.007942530186160658, -0.0030101187286447253, 0.0029758023256575695, 0, -0.0005623776358596625, 0.0007930596593760732, 0.002303212489405874, 0, -0.4618397714951047, 0.31336946023822476, -0.03249040723124736, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a481a72a4f0877f177b5c47f033bea88', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/5d8e6e56-ce20-4550-9639-8d149c3d5838', '@type': 'SpatialSceneNode', 'transformMatrix': [0.011985408419692131, 0.006212670351126829, 0.0010934511788355272, 0, -0.0027671249659479563, 0.007998061491036849, -0.0030354658345561137, 0, -0.0002114539910832331, 0.00034799457853422087, 0.0008660078960166087, 0, 0.3169509839612518, 0.21516502311898517, -0.10714807156083402, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/6f74a57b-41ce-4581-a206-2e84b58c1c98', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0013738617913471817, 0.00020698914515915215, -0.00026295495521207847, 0, 0, 0.005911452411103725, 0.0034166686402062637, 0, 0.0002114539910832331, -0.0005977123256637124, 0.000759322029683059, 0, 0.31794442, 0.221002025, -0.09449844000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a6255c16876d9c9d6229414c59fff534', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/43a81423-74d2-4803-a805-d745093c2376', '@type': 'SpatialSceneNode', 'transformMatrix': [0.011644307455080249, -0.011212376614690397, 0.006703932766809834, 0, 0.006762068403847633, 0.0066422819223575374, -0.0006360202556584081, 0, -0.00033742658151579753, 0.0004758357956256439, 0.0013819274936435245, 0, -0.32430427324619304, 0.33137940380906505, -0.050913596412685475, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/1d965182-bf13-4738-af05-72b817121959', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.0004967543876416087, -0.0024767908719141975, 0.0008783502523477294, 0, 0.00018080381084268016, 0.001003332598182886, 0.0021796009875908154, 0, -0.0009159078608981211, 0.0002466209802027675, -7.379637864539987e-06, 0, 0.34381886, 0.28006999, -0.10483844, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/18a43fde-687e-4074-afe7-5af1accd9909', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0035772784702950496, 0.00737698935646304, -0.004799281902596941, 0, -0.008075261511723771, 7.89352957933448e-05, -0.005897789478809053, 0, -0.002496947748567507, 0.0034652021543427774, 0.003465202154342778, 0, 0.3418325, 0.26407179999999997, -0.0896681, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a90f1880982cff8bd1628a6e0bac564c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/2ee6c4a3-c11a-4395-a42b-bca1c6bfbb6b', '@type': 'SpatialSceneNode', 'transformMatrix': [0.005183585870303294, -0.004608976068732778, 0.0028526789379529883, 0, 0.003434078888458777, 0.003611515347568806, -0.0004050420745017748, 0, -0.001124755271719325, 0.0015861193187521464, 0.004606424978811748, 0, -0.4709903064926411, 0.3076261258820209, -0.03676324208030958, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/5f2d29d1-9989-435c-9311-59799db1e8d7', '@type': 'SpatialSceneNode', 'transformMatrix': [0.004706945355651381, 0.009706564942714527, -0.006314844608680186, 0, -0.006863972284965205, 6.709500142434309e-05, -0.005013121056987695, 0, -0.00045399049973954676, 0.0006300367553350504, 0.0006300367553350505, 0, 0.3547245, 0.27780879999999997, -0.10458010000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001226', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/64c5c92d-dc07-40c4-a702-cbef17753fa6', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00094, 0, 0, 0, 0, 0.0016455, 0, 0, 0, 0, 0.00094, 0, 0.29688654, 0.220660858, -0.09966844, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/f66f91f9-c6c5-414d-b784-2faec33e0505', '@type': 'SpatialSceneNode', 'transformMatrix': [-3.478112812334305e-05, -0.00192305550411873, 0.0016750935977699164, 0, 0.004782262789586053, 0.00242882711180407, 0.0021466460273588017, 0, -0.0004981241083792126, 0.0006692081187389102, 0.0005537574860340652, 0, 0.34129872, 0.280230152, -0.11517844, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/c207b7e4-7788-4125-a961-9f5f20f6bfbf', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0044757481712334015, 0.0002505918717355336, 0.0022146968238386366, 0, 0.000708888869134369, 0.004550255016306247, -0.001947474225194582, 0, -0.00042261826174069947, 0.0004114551251546114, 0.0008075261511723771, 0, -0.45838149000000006, 0.2474516, 0.01843601999999999, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/b6283c0391ae1f184e1b818af81ea52d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/d49fc7d2-4dfa-4a4c-9d91-737cdaf2c4d7', '@type': 'SpatialSceneNode', 'transformMatrix': [0.012126369445734114, 0.0020155079414884837, 0.002266912394284994, 0, -0.0006826431101006261, 0.007009071933975256, -0.0025800986431903164, 0, -0.00044990210868773, 0.0006344477275008585, 0.0018425699915246994, 0, -0.45775958595794686, 0.3178471733994699, -0.037703337747238844, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/8d126897-60f6-433e-a56b-cbe730475742', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.000660879910944601, -0.0006743987796154942, 0.00033599394291051386, 0, -0.0008259272032836937, -4.335900840441376e-05, -0.0016884501375531245, 0, 0.0005256413292625021, -0.0008649423594382915, -0.00024081549696116958, 0, 0.45567907, 0.296143328, -0.11515132000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/38ed99d5-8763-449a-b188-d20f8a7db31a', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0010661278062209466, -0.008792314081250403, 0.0046431222897365555, 0, 0.0072065988369476005, -0.0021846182428916687, -0.005791578052321353, 0, 0.004820907072649044, 0.00312913279709208, 0.004818441961365221, 0, 0.48722157, 0.2179811, -0.08401140000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/1c7f8f09-2f17-48ca-8922-c03adf82b66f', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0018348740302855447, 0.0076741761425392, -0.004329001943435215, 0, -0.007947712594532374, -0.00046729768342233346, -0.004197082008941403, 0, -0.0021130913087034973, 0.0025991839536284225, 0.0037120193825305203, 0, -0.47184749000000004, 0.3198856, -0.028386980000000006, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/37283102-d963-4639-8834-4813fbb3c247', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0006691306063588583, -0.00045752563963404145, -0.0005856061139633773, 0, 0, 0.000788010753606722, -0.0006156614753256583, 0, 0.0007431448254773943, 0.00041195793629644696, 0.0005272821133781667, 0, -0.32132727, 0.26335169999999997, -0.004935170000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/ba54628b-f2ab-4ce0-a767-32123813092f', '@type': 'SpatialSceneNode', 'transformMatrix': [0.005846973388015301, -0.0004548647459402365, 0.004675040134880299, 0, 0.0024871127176651253, 0.004776371093049262, -0.002645855156865508, 0, -0.002112622032536509, 0.0027097596465791352, 0.0029058614566790063, 0, 0.3380765, 0.2841388, -0.1137981, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/7f7fe1b0-d9f6-48c2-a304-2ea5874c7392', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0011474108942355612, -0.00022780576032547077, -0.0009389104192371519, 0, -0.000658475424457819, 0.0020327046470079648, -0.001297891341144289, 0, 0.0005877852522924731, 0.0005619904269861368, 0.0005819581232042504, 0, -0.35678527, 0.33354269999999997, -0.02693517000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/be1ae8d9b3205f25b79e10082fa71de0', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/a0c0a248-61eb-4b39-9340-358e725d235a', '@type': 'SpatialSceneNode', 'transformMatrix': [0.010794521408178695, 0.007776063148861079, 0.0003413947913979282, 0, -0.002233474644752074, 0.004331649179544948, -0.0018233952920961877, 0, -0.00031718098662484966, 0.0005219918678013313, 0.001299011844024913, 0, 0.30901505275874325, 0.2183208754048878, -0.10348691478934331, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/be517ee3aa5ba9af89713915ffec203e', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/2ee6c4a3-c11a-4395-a42b-bca1c6bfbb6b', '@type': 'SpatialSceneNode', 'transformMatrix': [0.005183585870303294, -0.004608976068732778, 0.0028526789379529883, 0, 0.003434078888458777, 0.003611515347568806, -0.0004050420745017748, 0, -0.001124755271719325, 0.0015861193187521464, 0.004606424978811748, 0, -0.4709903064926411, 0.3076261258820209, -0.03676324208030958, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/2c92be72-25c2-438c-bd40-b85cc7190211', '@type': 'SpatialSceneNode', 'transformMatrix': [0.012419400497979871, -0.0015349854173707241, -0.008270568967080593, 0, -0.0011092561113041298, 0.004216143183239536, -0.002448200877778871, 0, 0.006437975936375677, 0.006596561061889683, 0.00844321313241639, 0, -0.30065527000000003, 0.3078797, -0.025173170000000016, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/f85d8a3d-8e92-487d-bc76-5ee350f26739', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001, 0, 0, 0, 0, 0.001, 0, 0, 0, 0, 0.001, 0, -0.33306427, 0.30110169999999997, -0.012435170000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/416ed966-ee69-40c1-ac36-e44c34164f7d', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008382185444469467, 0.0011420095986006463, 0.004322589646407372, 0, 0.0011160372685225025, 0.00785949282025762, -0.004240617104100271, 0, -0.002950938248307054, 0.003069049891211754, 0.00491150651225585, 0, -0.44390249000000004, 0.3262036, -0.015306980000000005, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/c5bd4ae9a43b580f821c5d499953bdec', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/1a6f4e15-83cc-4505-a059-55038690c33d', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00919678686679587, -0.00600869927255572, 0.004018444751795972, 0, 0.0050151762401905164, 0.009119118972762899, -0.001466019847446718, 0, -0.0007400889687913158, 0.001217981024869773, 0.00303102763605813, 0, 0.4938036481005508, 0.19840858651558912, -0.10085740728426884, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/f31c1726-c693-4734-8c1c-4f1d64bbe034', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.001179823427311002, 0.0008615080113931342, 0.002028748537072441, 0, 0.0013672106880103733, -0.0020777407787001415, 0.0016774171190007368, 0, 0.0007547095802227722, 0.0006337043596720594, 0.00016980057141421012, 0, -0.31626527, 0.3157317, -0.008095170000000013, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/7751603d-80fa-4bc7-b8b0-9e7176bed3e6', '@type': 'SpatialSceneNode', 'transformMatrix': [0.003530876361912954, -0.012878649519788387, 0.005650070677729503, 0, 0.00599554209702662, -0.0006617092244467897, -0.005255056219020273, 0, 0.004309630327279608, 0.0031638907990203203, 0.004518504338170587, 0, 0.46732457, 0.2133681, -0.09337240000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/e4853294-071d-4bef-bff3-2fd52a5c6af0', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0005639005848462274, 0.0003526811428769013, 0.0018861686408879579, 0, 0.0005697442703000242, 0.0033597200226154035, -0.000798544197961168, 0, -0.0009455185755993168, 0.00021784761660305173, 0.0002419442893250611, 0, 0.3603775, 0.2769888, -0.10266810000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/cebd83c466eec4ec7929a84956b10133', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/47f89696-e96a-41cc-8a88-cf4c4b3b8967', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0077851427079809995, 0.0007213600334504726, 0.001688069841585347, 0, -3.1971114187435036e-05, 0.008294987612886396, -0.0024552281954624035, 0, -0.0004229079821664662, 0.0006959891570684417, 0.0017320157920332174, 0, 0.4643713155176838, 0.25885473043130286, -0.12223593748501438, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/3bcbcc3c-ad26-411d-b4c1-5d5a37971000', '@type': 'SpatialSceneNode', 'transformMatrix': [0.007161197073973442, 0.00040094699477685383, 0.003543514918141819, 0, 0.0009924444167881167, 0.006370357022828745, -0.002726463915272415, 0, -0.00042261826174069947, 0.0004114551251546114, 0.0008075261511723771, 0, -0.47085749000000005, 0.2434556, 0.013566019999999991, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001224', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517', 'http://purl.obolibrary.org/obo/UBERON_0000362'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/4ae53bc8-b6da-4ba9-9030-a93ae44389b9', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0015, 0, 0, 0, 0, 0.0015, 0, 0, 0, 0, 0.001, 0, 0.3371325, 0.24044179999999998, -0.0916681, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/d79ce93ac1dd690ebf8e486f43b4fa0f', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/a0c0a248-61eb-4b39-9340-358e725d235a', '@type': 'SpatialSceneNode', 'transformMatrix': [0.010794521408178695, 0.007776063148861079, 0.0003413947913979282, 0, -0.002233474644752074, 0.004331649179544948, -0.0018233952920961877, 0, -0.00031718098662484966, 0.0005219918678013313, 0.001299011844024913, 0, 0.30901505275874325, 0.2183208754048878, -0.10348691478934331, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/6130c1eb-9a5a-44b2-8a3e-ebae47cc419d', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001, 0, 0, 0, 0, 0.001, 0, 0, 0, 0, 0.001, 0, 0.3402075, 0.2432808, -0.0906681, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/dc0f7635a17dfaa243fe384020ced902', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/ad6486c5-ee24-4c25-8c74-677ffb35a189', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0063508995825299775, -0.002241817531009449, 0.0023829463653051225, 0, 0.0020934589652365815, 0.006590885218351331, -0.0010266403116957715, 0, -0.0012532254144321786, 0.0014654540150566, 0.004352308458074164, 0, 0.49041271590117946, 0.19567236752445097, -0.10095968304884118, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0008716'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/b5ba9c77-bf58-49bd-b686-7868f9a5c05a', '@type': 'SpatialSceneNode', 'transformMatrix': [0.014940812898034866, -0.0021953063550224695, -0.013113075152438994, 0, -0.0009639470605493657, 0.004022649078383547, -0.0017717506756421014, 0, 0.004719902932873781, 0.003259308799557665, 0.004832124010554308, 0, 0.48784757, 0.21530910000000003, -0.08094840000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/e6c247f7-694a-4477-8ba7-84d04bc9c3bd', '@type': 'SpatialSceneNode', 'transformMatrix': [0.01198389615789778, -0.004918623050542041, -0.005309743888682325, 0, 0.00011215167585607007, 0.0019532976944458868, -0.001556293712149174, 0, 0.0051503807491005416, 0.005158561589172205, 0.006845642443920928, 0, -0.30353127, 0.2790937, -0.007318170000000006, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/e5f2cb399e7e8885134c1b1a2b6acc9a', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/47f89696-e96a-41cc-8a88-cf4c4b3b8967', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0077851427079809995, 0.0007213600334504726, 0.001688069841585347, 0, -3.1971114187435036e-05, 0.008294987612886396, -0.0024552281954624035, 0, -0.0004229079821664662, 0.0006959891570684417, 0.0017320157920332174, 0, 0.4643713155176838, 0.25885473043130286, -0.12223593748501438, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/87be07c9-cf37-4001-a589-e2c048b5d3f3', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0008660254037844387, -0.00023473578139294538, -0.00044147379642946346, 0, 0, 0.000882947592858927, -0.0004694715627858908, 0, 0.0004999999999999999, 0.0004065742997269626, 0.0007646550456261504, 0, -0.32315127, 0.26032669999999997, -0.015935170000000005, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/769ca7e9-ead0-4882-966c-d6f5c273c2ee', '@type': 'SpatialSceneNode', 'transformMatrix': [-0.0013148683854418797, 0.0018462855708752555, -0.0019652864218081038, 0, -0.006182269427369359, -0.004243481638491667, 0.00014969405866038205, 0, -0.00035836794954530025, 0.0005487448065239724, 0.0007552824306520477, 0, -0.46783749, 0.2488146, -0.006196980000000005, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/61d9f366-c050-4c28-995f-32ab920a7ca8', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0004413032690187374, 0.0006354545172413251, -0.0006263868667353516, 0, -0.0016599414745747825, 0.0006757543204182088, -0.0006661116098241367, 0, 0, 0.0008279164095043809, 0.0006166954872510768, 0, 0.46510163, 0.26874685000000004, -0.11092132000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/edab3ca46dcfa25aab40d2afdd5d19ec', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/24ce75c0-6272-4a15-82ff-ab5e023bb771', '@type': 'SpatialSceneNode', 'transformMatrix': [0.007158002630858213, 0.0019663658585520796, 0.0010707024082104411, 0, -0.000981287337869318, 0.004556944039368367, -0.0018086835496024332, 0, -0.0006748531630315951, 0.0009516715912512878, 0.002763854987287049, 0, -0.341087664900654, 0.3350324556305043, -0.05600895340588468, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/47f52d3a-21fd-464c-bfe7-dce1df5662be', '@type': 'SpatialSceneNode', 'transformMatrix': [0.009592847471056353, 0.0009677962478776382, 0.0052953420871216334, 0, 0.0013812343434744581, 0.008994568488117624, -0.004146073974372396, 0, -0.0030515651581082904, 0.0027823996667438, 0.00501958187305711, 0, -0.48391549, 0.2517196, 0.012729019999999987, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/007eb4d9-1694-4380-99e1-4aba832d9227', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0019151111077974452, 0, -0.001606969024216348, 0, 0, 0.0025, 0, 0, 0.0006427876096865392, 0, 0.000766044443118978, 0, 0.46559357, 0.2508741, -0.13289840000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/6a6392a9-8ac1-4666-a684-83d310ca055f', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0014741548731937015, 0.001856686361215616, -0.0007934627690794179, 0, -0.004069970864335026, 0.001452639469393807, -0.004162352187816797, 0, -0.00043837114678907743, 0.0006243548075804279, 0.0006465383298104113, 0, -0.45524949000000003, 0.3231686, -0.013196980000000004, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/f3406a8958fa8cbac26307725316362d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/0.5/422a9dca-943a-40f3-967b-c3971d0ec823', '@type': 'SpatialSceneNode', 'transformMatrix': [0.00900151109692604, -0.001417273304870255, 0.002685914062515682, 0, 0.0017034857899613052, 0.007024070773441711, -0.0020026397412120514, 0, -0.0006748531630315951, 0.0009516715912512878, 0.002763854987287049, 0, -0.34311015413142193, 0.3235920785988416, -0.05225962651980018, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/67aecf90-24ce-4dfa-91db-8d7a081aa684', '@type': 'SpatialSceneNode', 'transformMatrix': [0.004330389727199271, 0.008930039747297364, -0.00580965703998577, 0, -0.007267735360551394, 7.104176621401033e-05, -0.005308010530928148, 0, -0.00045399049973954676, 0.0006300367553350504, 0.0006300367553350505, 0, 0.3287605, 0.2754118, -0.1212431, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/decfd5b4-07de-4894-bc83-6698cfb1ef8c', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0018337945163071437, 0.0016805298047248033, 0.00025103236323921046, 0, -0.0006098933393361012, 0.0008285695780487969, -0.0010915596955574616, 0, -0.0005446390350150271, 0.0004929581913700728, 0.0006784987421499371, 0, -0.43475349, 0.3233336, -0.017196980000000008, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/5166a7a1-bd21-4aa3-ba20-23453cb4c431', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0007001745268670213, 0.0008970052618370809, 0.0009773112053809332, 0, -0.0008706579837950529, 0.003166997055613206, -0.002282998976125749, 0, -0.0008571673007021123, 0.00012459898738824396, 0.0004997392429546421, 0, -0.36012127, 0.3400777, -0.02743517000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/bb73f748-b158-4351-bf79-8253e9b63bc0', '@type': 'SpatialSceneNode', 'transformMatrix': [0.008382185444469467, 0.0011420095986006463, 0.004322589646407372, 0, 0.0011160372685225025, 0.00785949282025762, -0.004240617104100271, 0, -0.0027239429984372804, 0.002832969130349311, 0.004533698319005399, 0, -0.47726349, 0.3205896, -0.03321698000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/02ae63f0-4a35-4ff5-858e-689242c26828', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0044757481712334015, 0.0002505918717355336, 0.0022146968238386366, 0, 0.000708888869134369, 0.004550255016306247, -0.001947474225194582, 0, -0.0021130913087034973, 0.002057275625773057, 0.004037630755861886, 0, -0.48566049000000006, 0.2447856, 0.012236019999999993, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001228', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0008716', 'http://purl.obolibrary.org/obo/UBERON_0001227', 'http://purl.obolibrary.org/obo/UBERON_0006517'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/37000e7b-f8a6-42c5-b086-1778ce47e2c7', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0048952231698774365, 0.010094827540423108, -0.006567438393027394, 0, -0.004845156907034263, 4.7361177476006875e-05, -0.0035386736872854317, 0, -0.00045399049973954676, 0.0006300367553350504, 0.0006300367553350505, 0, 0.3434635, 0.2800008, -0.11558410000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943', '@type': 'SpatialSceneNode', 'transformMatrix': [0.001301060543820193, 0.006860506082812022, -0.007218639162044991, 0, -0.004628763400243466, 0.0009256097883426784, -0.0001883622015179396, 0, 0.0001965135109431885, 0.0016714944494864007, 0.001201820741580834, 0, 0.45909033, 0.288362307, -0.10105132000000003, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0001284', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004200', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0017151028044722018, 0.0024533755422623087, -0.00954145538263009, 0, -0.00486341567688927, 0.0009797692888899835, -0.0006222861836291236, 0, 0.00031286893008046176, 0.0018988539386779722, 0.0005444876051458469, 0, -0.34021427000000004, 0.3498467, -0.041946170000000005, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://www.atlas-d2k.org/id/14-4KPP', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/d86790bc-d93b-4cb3-bfe5-ae48fd9daaaa', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0014410141819283628, 0.0004164356827437325, 7.710357909561217e-06, 0, -0.00041320416748096136, 0.0014258519594033368, 0.00021496163807068318, 0, 5.234924505375146e-05, -0.00020863248070093787, 0.0014844972362853613, 0, -0.29552527, 0.31068569999999995, -0.03743517000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://www.atlas-d2k.org/id/W-RA1W', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0013702', 'http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0004538'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/d86790bc-d93b-4cb3-bfe5-ae48fd9daaaa', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0014410141819283628, 0.0004164356827437325, 7.710357909561217e-06, 0, -0.00041320416748096136, 0.0014258519594033368, 0.00021496163807068318, 0, 5.234924505375146e-05, -0.00020863248070093787, 0.0014844972362853613, 0, -0.29552527, 0.31068569999999995, -0.03743517000000001, 1], 'color': [255, 255, 255, 229.5]})]\n"
     ]
    }
   ],
   "source": [
    "sex = \"both\"\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0002113\"]\n",
    "sceneResult = None\n",
    "try:\n",
    "    sceneResult = api_instance.scene(sex=sex, ontology_terms=ontology_terms)\n",
    "    pprint(sceneResult)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->scene: %s\\n\" % e)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "8c548879",
   "metadata": {},
   "source": [
    "We convert the `sceneResult` into a dictionary where the keys are the `entity_id`s of the tissue blocks and the values are the anatomical structures in the kidney the tissue blocks collide with."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "f47ce87c",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'http://dx.doi.org/10.1681/ASN.2016091027#Donor1_TissueBlock1': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                  'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                  'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'http://dx.doi.org/10.1681/ASN.2016091027#Donor2_TissueBlock1': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                  'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                  'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'http://dx.doi.org/10.1681/ASN.2016091027#Donor3_TissueBlock1': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                  'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                  'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/015f9976f3fed4c35dbbaad622a413d9': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/039ce6e8d5fa342811a4b317846b7281': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/07c995983aac113b442c0dc0c0b42ae5': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/088adc477043f3970311122b0365bba8': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001224',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000056',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001223',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/16755fbe7dcb20e2cdcaeef386464643': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001226',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/24b13fd3342a93b5c85bd2318434b2a4': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000056',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001223',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744': ['http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2a3b7a201db7e590f8578b2d7c558f9b': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2ce02a8007277336b4522db806cedafd': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2eb0aa95b1c1476852ca2971e55765db': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd': ['http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3622b5c2175f28d7f6323208b7b1d93c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3a4b8bfca8e842cae400f49e19987c7c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d': ['http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/4238035279fa6b84092f5a48e230a300': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/4fd5a971eb171344a8d1e2b629e95541': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/512108a2c671e73858834cb5a7b8db80': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/5193f0b7dc1c38be66651d545b314b12': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/54e7365b6264290f4e452da9d8584a86': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/5e878eb0192414dee7be45d7d5610a84': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/5f8bd79354b14fc35466221b875bb030': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/647db48ac7407caf7c3fb8ef0c6da12e': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/6585f87d93fe9621d151f0f225a8edc2': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/682ab44e00e97bd81b17b0004601c8da': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/6890cd54f99e6396694e64ee2bb53b3c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/6af94c048315d5b7b8997229dbb48f1a': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001224',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001226',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315': ['http://purl.obolibrary.org/obo/UBERON_0001224',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001226',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/7697e16bf3f778036b56ca8aec068ae9': ['http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/76a721f5c92163e02bf2811ed276ed0b': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5': ['http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/82f8ca025a918872d7b3bec389e3b9e7': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/973161d3138555f8705d9fcbbcedd144': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/9cab477791e415a4b4ceed2c7211a152': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/9d1412bb63341df32e4851693cbfe409': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a216f4fd6f96b64de6f3242eceebf4c6': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a2cc35adf80400c16f940b3707ff3c40': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a481a72a4f0877f177b5c47f033bea88': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a6255c16876d9c9d6229414c59fff534': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a90f1880982cff8bd1628a6e0bac564c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001226',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b6283c0391ae1f184e1b818af81ea52d': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/be1ae8d9b3205f25b79e10082fa71de0': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/be517ee3aa5ba9af89713915ffec203e': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314': ['http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15': ['http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/c5bd4ae9a43b580f821c5d499953bdec': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a': ['http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/cebd83c466eec4ec7929a84956b10133': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001224',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/d79ce93ac1dd690ebf8e486f43b4fa0f': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/dc0f7635a17dfaa243fe384020ced902': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e5f2cb399e7e8885134c1b1a2b6acc9a': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d': ['http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/edab3ca46dcfa25aab40d2afdd5d19ec': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3': ['http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f3406a8958fa8cbac26307725316362d': ['http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d': ['http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004538',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539'],\n",
      " 'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001228',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0004539',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0008716',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0001227',\n",
      "                                                                                       'http://purl.obolibrary.org/obo/UBERON_0006517'],\n",
      " 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0004200',\n",
      "                                                                           'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://www.atlas-d2k.org/id/14-4KPP': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                          'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                          'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                          'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                          'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                          'http://purl.obolibrary.org/obo/UBERON_0004538'],\n",
      " 'https://www.atlas-d2k.org/id/W-RA1W': ['http://purl.obolibrary.org/obo/UBERON_0013702',\n",
      "                                         'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                         'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                         'http://purl.obolibrary.org/obo/UBERON_0002113',\n",
      "                                         'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                         'http://purl.obolibrary.org/obo/UBERON_0004538']}\n"
     ]
    }
   ],
   "source": [
    "sceneEntityASDict = {}\n",
    "for scene in sceneResult:\n",
    "    if scene.entity_id == None:\n",
    "        continue\n",
    "    if scene.entity_id not in sceneEntityASDict:\n",
    "        sceneEntityASDict[scene.entity_id] = []\n",
    "    sceneEntityASDict[scene.entity_id].extend(scene.ccf_annotations)\n",
    "\n",
    "pprint(sceneEntityASDict)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6a911543",
   "metadata": {},
   "source": [
    "We then use a SPARQL query to get the AS label, CT Label and the CT iri using the AS IRIs we obtained in the last step. We then make a dictionary to hold CTs by AS for use as a look-up when compiling the final table later."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "60fd5d36",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'head': {'vars': ['as_label', 'cell_label', 'as_iri', 'cell_iri']},\n",
      " 'results': {'bindings': [{'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000362'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'renal medulla'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000718'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney inner medulla '\n",
      "                                                   'collecting duct principal '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000362'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'renal medulla'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001108'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle '\n",
      "                                                   'medullary thick ascending '\n",
      "                                                   'limb epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000362'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'renal medulla'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001285'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'vasa recta descending limb '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000362'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'renal medulla'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030013'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle long '\n",
      "                                                   'descending thin limb outer '\n",
      "                                                   'medulla epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001225'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'cortex of kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000653'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'podocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001225'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'cortex of kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000714'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney cortex collecting '\n",
      "                                                   'duct principal cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001225'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'cortex of kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001005'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'glomerular capillary '\n",
      "                                                   'endothelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001225'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'cortex of kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000452'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'parietal epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001225'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'cortex of kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000742'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'glomerular mesangial '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001284'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'renal column'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000653'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'podocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002189'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'outer cortex of kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000653'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'podocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000084'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'T cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000115'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'endothelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000236'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'B cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000499'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'stromal cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000576'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'monocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000786'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'plasma cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0019018'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'blood vessel smooth muscle '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000597'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'papillary tips cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001106'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle thick '\n",
      "                                                   'ascending limb epithelial '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001109'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle '\n",
      "                                                   'cortical thick ascending '\n",
      "                                                   'limb epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000653'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'podocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0002138'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'endothelial cell of '\n",
      "                                                   'lymphatic vessel'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0002306'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'epithelial cell of '\n",
      "                                                   'proximal tubule'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000714'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney cortex collecting '\n",
      "                                                   'duct principal cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000718'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney inner medulla '\n",
      "                                                   'collecting duct principal '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000768'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney connecting tubule '\n",
      "                                                   'epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001005'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'glomerular capillary '\n",
      "                                                   'endothelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001033'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'peritubular capillary '\n",
      "                                                   'endothelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001096'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney afferent arteriole '\n",
      "                                                   'endothelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001099'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney efferent arteriole '\n",
      "                                                   'endothelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001107'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle thin '\n",
      "                                                   'ascending limb epithelial '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001108'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle '\n",
      "                                                   'medullary thick ascending '\n",
      "                                                   'limb epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001111'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle thin '\n",
      "                                                   'descending limb epithelial '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001431'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney collecting duct '\n",
      "                                                   'principal cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030012'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle short '\n",
      "                                                   'descending thin limb '\n",
      "                                                   'epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030018'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney connecting tubule '\n",
      "                                                   'principal cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000648'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney granular cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000738'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'leukocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000775'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'neutrophil'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000990'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'conventional dendritic '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000452'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'parietal epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000454'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney collecting duct '\n",
      "                                                   'epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000692'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney interstitial '\n",
      "                                                   'fibroblast'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000716'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney outer medulla '\n",
      "                                                   'collecting duct principal '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000849'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney distal convoluted '\n",
      "                                                   'tubule epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000850'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'macula densa epithelial '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001131'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'vasa recta ascending limb '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001285'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'vasa recta descending limb '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001318'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'renal interstitial '\n",
      "                                                   'pericyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030016'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'epithelial cell of early '\n",
      "                                                   'distal convoluted tubule'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030022'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'renal medullary '\n",
      "                                                   'fibroblast'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030017'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'epithelial cell of late '\n",
      "                                                   'distal convoluted tubule'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000113'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'mononuclear phagocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000623'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'natural killer cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000097'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'mast cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000815'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'regulatory T cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0001056'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'dendritic cell, human'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000691'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney interstitial '\n",
      "                                                   'myofibroblast'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000695'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney interstitial '\n",
      "                                                   'alternatively activated '\n",
      "                                                   'macrophage'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000698'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney resident '\n",
      "                                                   'macrophage'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000814'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'mature NK T cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000875'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'non-classical monocyte'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000910'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'cytotoxic T cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0001058'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'plasmacytoid dendritic '\n",
      "                                                   'cell, human'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0002201'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'renal beta-intercalated '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000715'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney cortex collecting '\n",
      "                                                   'duct intercalated cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000717'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney outer medulla '\n",
      "                                                   'collecting duct '\n",
      "                                                   'intercalated cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000742'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'glomerular mesangial '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001432'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney collecting duct '\n",
      "                                                   'intercalated cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030009'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'epithelial cell of '\n",
      "                                                   'proximal tubule segment '\n",
      "                                                   '1'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030010'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'epithelial cell of '\n",
      "                                                   'proximal tubule segment '\n",
      "                                                   '2'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030011'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'epithelial cell of '\n",
      "                                                   'proximal tubule segment '\n",
      "                                                   '3'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030013'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle long '\n",
      "                                                   'descending thin limb outer '\n",
      "                                                   'medulla epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030014'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney loop of Henle long '\n",
      "                                                   'descending thin limb inner '\n",
      "                                                   'medulla epithelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030015'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney collecting duct '\n",
      "                                                   'alpha-intercalated cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030019'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney connecting tubule '\n",
      "                                                   'intercalated cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030020'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney connecting tubule '\n",
      "                                                   'alpha-intercalated cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_4030021'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney connecting tubule '\n",
      "                                                   'beta-intercalated cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'capsule mesenchymal '\n",
      "                                                   'stromal cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_monocyte-derived-cell'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'monocyte derived cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002113'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'kidney'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_transitional-principal-intercalated-cell'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'transitional '\n",
      "                                                   'principal-intercalated '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0004200'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'kidney pyramid'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001285'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'vasa recta descending limb '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000308'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'fibrocyte of adventitia of '\n",
      "                                                   'ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000708'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'ureter adventitial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1001428'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'bladder urothelial cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-ureter-urothelium'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'basal cell of ureter '\n",
      "                                                   'urothelium'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'detrusor smooth muscle '\n",
      "                                                   'cell of ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'dpt+ fibroblast cell of '\n",
      "                                                   'ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'endothelial cell of '\n",
      "                                                   'ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-ureter-urothelium'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'intermediate cell of '\n",
      "                                                   'ureter urothelium'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'lipofibroblast cell of '\n",
      "                                                   'ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'myofibroblast cell of '\n",
      "                                                   'ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'pericyte cell of ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'pi16+ fibroblast cell of '\n",
      "                                                   'ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-ureter-urothelium'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'superficial cell of ureter '\n",
      "                                                   'urothelium'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0000056'},\n",
      "                           'as_label': {'type': 'literal', 'value': 'ureter'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-ureter'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'vascular smooth muscle '\n",
      "                                                   'cell of ureter'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001228'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'renal papilla'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000597'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'papillary tips cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0001228'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'renal papilla'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_1000718'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'kidney inner medulla '\n",
      "                                                   'collecting duct principal '\n",
      "                                                   'cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002015'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'kidney capsule'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'http://purl.obolibrary.org/obo/CL_0000499'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'stromal cell'}},\n",
      "                          {'as_iri': {'type': 'uri',\n",
      "                                      'value': 'http://purl.obolibrary.org/obo/UBERON_0002015'},\n",
      "                           'as_label': {'type': 'literal',\n",
      "                                        'value': 'kidney capsule'},\n",
      "                           'cell_iri': {'type': 'uri',\n",
      "                                        'value': 'https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell'},\n",
      "                           'cell_label': {'type': 'literal',\n",
      "                                          'value': 'capsule mesenchymal '\n",
      "                                                   'stromal cell'}}]}}\n"
     ]
    }
   ],
   "source": [
    "request = {\"query\": '''\n",
    "           PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n",
    "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n",
    "PREFIX ccf: <http://purl.org/ccf/>\n",
    "\n",
    "SELECT DISTINCT (STR(?asLabel) as ?as_label) (STR(?qlabel) as ?cell_label) ?as_iri ?cell_iri WHERE {\n",
    "  ?cell_iri ccf:ccf_located_in ?as_iri .\n",
    "  ?cell_iri rdfs:label ?qlabel .\n",
    "  ?as_iri rdfs:label ?asLabel .\n",
    "\n",
    "  FILTER (?as_iri in (<http://purl.obolibrary.org/obo/UBERON_0001227>, <http://purl.obolibrary.org/obo/UBERON_0006517>, <http://purl.obolibrary.org/obo/UBERON_0002015>, <http://purl.obolibrary.org/obo/UBERON_0001228>, <http://purl.obolibrary.org/obo/UBERON_0004538>, <http://purl.obolibrary.org/obo/UBERON_0008716>, <http://purl.obolibrary.org/obo/UBERON_0001224>, <http://purl.obolibrary.org/obo/UBERON_0004200>, <http://purl.obolibrary.org/obo/UBERON_0001284>, <http://purl.obolibrary.org/obo/UBERON_0001223>, <http://purl.obolibrary.org/obo/UBERON_0001225>, <http://purl.obolibrary.org/obo/UBERON_0004539>, <http://purl.obolibrary.org/obo/UBERON_0000362>, <http://purl.obolibrary.org/obo/UBERON_0013702>, <http://purl.obolibrary.org/obo/UBERON_0002113>, <http://purl.obolibrary.org/obo/UBERON_0002189>, <http://purl.obolibrary.org/obo/UBERON_0001226>, <http://purl.obolibrary.org/obo/UBERON_0000056>))\n",
    "\n",
    "}'''\n",
    "           }\n",
    "\n",
    "\n",
    "# use only application/json in format, any other formats will result in errors.\n",
    "try:\n",
    "    # help(api_instance.sparql_post)\n",
    "    api_response = api_instance.sparql_post(\n",
    "        sparql_query_request=request, format='application/json')\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->sparql_post: %s\\n\" % e)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "9b303ce2",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'http://purl.obolibrary.org/obo/UBERON_0000056': {'http://purl.obolibrary.org/obo/CL_1000308',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000708',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001428',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-ureter-urothelium',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-ureter',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-ureter',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-ureter',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-ureter-urothelium',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-ureter',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-ureter',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-ureter',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-ureter',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-ureter-urothelium',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-ureter'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0000362': {'http://purl.obolibrary.org/obo/CL_1000718',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001108',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001285',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030013'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001225': {'http://purl.obolibrary.org/obo/CL_0000653',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000452',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000714',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000742',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001005'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001228': {'http://purl.obolibrary.org/obo/CL_1000597',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000718'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001284': {'http://purl.obolibrary.org/obo/CL_0000653'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002015': {'http://purl.obolibrary.org/obo/CL_0000499',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002113': {'http://purl.obolibrary.org/obo/CL_0000084',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000097',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000113',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000115',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000236',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000499',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000576',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000623',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000648',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000653',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000738',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000775',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000786',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000814',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000815',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000875',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000910',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0000990',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0001056',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0001058',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0002138',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0002201',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0002306',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_0019018',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000452',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000454',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000597',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000691',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000692',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000695',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000698',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000714',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000715',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000716',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000717',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000718',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000742',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000768',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000849',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1000850',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001005',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001033',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001096',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001099',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001106',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001107',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001108',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001109',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001111',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001131',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001285',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001318',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001431',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_1001432',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030009',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030010',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030011',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030012',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030013',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030014',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030015',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030016',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030017',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030018',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030019',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030020',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030021',\n",
      "                                                   'http://purl.obolibrary.org/obo/CL_4030022',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_monocyte-derived-cell',\n",
      "                                                   'https://purl.org/ccf/ASCTB-TEMP_transitional-principal-intercalated-cell'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002189': {'http://purl.obolibrary.org/obo/CL_0000653'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0004200': {'http://purl.obolibrary.org/obo/CL_1001285'}}\n"
     ]
    }
   ],
   "source": [
    "# Defining a SPARQL query with a string of IRIs, to be added by variable\n",
    "query = '''PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n",
    "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n",
    "PREFIX ccf: <http://purl.org/ccf/>\n",
    "\n",
    "SELECT DISTINCT (STR(?asLabel) as ?as_label) (STR(?qlabel) as ?cell_label) ?as_iri ?cell_iri WHERE {\n",
    "  ?cell_iri ccf:ccf_located_in ?as_iri .\n",
    "  ?cell_iri rdfs:label ?qlabel .\n",
    "  ?as_iri rdfs:label ?asLabel .\n",
    "\n",
    "  FILTER (?as_iri in (%s))\n",
    "\n",
    "}'''\n",
    "\n",
    "# Collect IRIs\n",
    "purlIris = set()\n",
    "\n",
    "# Collecting all unique AS IRIs\n",
    "for key in sceneEntityASDict.keys():\n",
    "    for value in sceneEntityASDict[key]:\n",
    "        purlIris.add(value)\n",
    "\n",
    "# construct the purlString for the query\n",
    "purlString = \", \".join(\"<\" + purl + \">\" for purl in purlIris)\n",
    "queryResponse = None\n",
    "\n",
    "# Finalize the query\n",
    "query = query % purlString\n",
    "\n",
    "# Declare and initialize a variable to hold results from the query\n",
    "bindings = []\n",
    "\n",
    "try:\n",
    "    api_response = api_instance.sparql(\n",
    "        query=query, format='application/json')\n",
    "    bindings = api_response['results']['bindings']\n",
    "   \n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)\n",
    "\n",
    "# Declare and initialize a variable to hold a dictionary with processed results\n",
    "anatomical_structure_cell_type_combinations = {}\n",
    "\n",
    "for dict in bindings:\n",
    "    for key in dict:\n",
    "        as_label = dict['as_iri']['value']\n",
    "        # Check if as_label is already in dict, then add if not, otherwise grab cell\n",
    "        if as_label not in anatomical_structure_cell_type_combinations:\n",
    "            anatomical_structure_cell_type_combinations[as_label] = set()\n",
    "        else:\n",
    "            anatomical_structure_cell_type_combinations[as_label].add(dict['cell_iri']['value'])\n",
    "   \n",
    "pprint(anatomical_structure_cell_type_combinations)     "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "3cc244f9",
   "metadata": {},
   "source": [
    "We now reverse the sceneEntityASDict to now have AS: entity_id relationship."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "ea33611b",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'http://purl.obolibrary.org/obo/UBERON_0000056': {'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0000362': {'https://entity.api.hubmapconsortium.org/entities/015f9976f3fed4c35dbbaad622a413d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001223': {'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001224': {'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001225': {'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                                                   'https://www.atlas-d2k.org/id/14-4KPP',\n",
      "                                                   'https://www.atlas-d2k.org/id/W-RA1W'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001226': {'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001227': {'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001228': {'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0001284': {'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002015': {'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                                                   'https://www.atlas-d2k.org/id/14-4KPP',\n",
      "                                                   'https://www.atlas-d2k.org/id/W-RA1W'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002113': {'http://dx.doi.org/10.1681/ASN.2016091027#Donor1_TissueBlock1',\n",
      "                                                   'http://dx.doi.org/10.1681/ASN.2016091027#Donor2_TissueBlock1',\n",
      "                                                   'http://dx.doi.org/10.1681/ASN.2016091027#Donor3_TissueBlock1',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/015f9976f3fed4c35dbbaad622a413d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/039ce6e8d5fa342811a4b317846b7281',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/07c995983aac113b442c0dc0c0b42ae5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/088adc477043f3970311122b0365bba8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16755fbe7dcb20e2cdcaeef386464643',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/24b13fd3342a93b5c85bd2318434b2a4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2a3b7a201db7e590f8578b2d7c558f9b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2ce02a8007277336b4522db806cedafd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2eb0aa95b1c1476852ca2971e55765db',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3622b5c2175f28d7f6323208b7b1d93c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a4b8bfca8e842cae400f49e19987c7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4238035279fa6b84092f5a48e230a300',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4fd5a971eb171344a8d1e2b629e95541',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/512108a2c671e73858834cb5a7b8db80',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5193f0b7dc1c38be66651d545b314b12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/54e7365b6264290f4e452da9d8584a86',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5e878eb0192414dee7be45d7d5610a84',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5f8bd79354b14fc35466221b875bb030',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/647db48ac7407caf7c3fb8ef0c6da12e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6585f87d93fe9621d151f0f225a8edc2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/682ab44e00e97bd81b17b0004601c8da',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6890cd54f99e6396694e64ee2bb53b3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6af94c048315d5b7b8997229dbb48f1a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7697e16bf3f778036b56ca8aec068ae9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/76a721f5c92163e02bf2811ed276ed0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/82f8ca025a918872d7b3bec389e3b9e7',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/973161d3138555f8705d9fcbbcedd144',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9cab477791e415a4b4ceed2c7211a152',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d1412bb63341df32e4851693cbfe409',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a216f4fd6f96b64de6f3242eceebf4c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a2cc35adf80400c16f940b3707ff3c40',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a481a72a4f0877f177b5c47f033bea88',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a6255c16876d9c9d6229414c59fff534',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a90f1880982cff8bd1628a6e0bac564c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6283c0391ae1f184e1b818af81ea52d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/be1ae8d9b3205f25b79e10082fa71de0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/be517ee3aa5ba9af89713915ffec203e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c5bd4ae9a43b580f821c5d499953bdec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cebd83c466eec4ec7929a84956b10133',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d79ce93ac1dd690ebf8e486f43b4fa0f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/dc0f7635a17dfaa243fe384020ced902',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5f2cb399e7e8885134c1b1a2b6acc9a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/edab3ca46dcfa25aab40d2afdd5d19ec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f3406a8958fa8cbac26307725316362d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                                                   'https://www.atlas-d2k.org/id/14-4KPP',\n",
      "                                                   'https://www.atlas-d2k.org/id/W-RA1W'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002189': {'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                                                   'https://www.atlas-d2k.org/id/14-4KPP',\n",
      "                                                   'https://www.atlas-d2k.org/id/W-RA1W'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0004200': {'https://entity.api.hubmapconsortium.org/entities/015f9976f3fed4c35dbbaad622a413d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0004538': {'https://entity.api.hubmapconsortium.org/entities/039ce6e8d5fa342811a4b317846b7281',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/07c995983aac113b442c0dc0c0b42ae5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/088adc477043f3970311122b0365bba8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16755fbe7dcb20e2cdcaeef386464643',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/24b13fd3342a93b5c85bd2318434b2a4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3622b5c2175f28d7f6323208b7b1d93c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a4b8bfca8e842cae400f49e19987c7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4fd5a971eb171344a8d1e2b629e95541',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/512108a2c671e73858834cb5a7b8db80',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5f8bd79354b14fc35466221b875bb030',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/647db48ac7407caf7c3fb8ef0c6da12e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6585f87d93fe9621d151f0f225a8edc2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/682ab44e00e97bd81b17b0004601c8da',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6890cd54f99e6396694e64ee2bb53b3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6af94c048315d5b7b8997229dbb48f1a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7697e16bf3f778036b56ca8aec068ae9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/82f8ca025a918872d7b3bec389e3b9e7',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/973161d3138555f8705d9fcbbcedd144',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d1412bb63341df32e4851693cbfe409',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a6255c16876d9c9d6229414c59fff534',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c5bd4ae9a43b580f821c5d499953bdec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cebd83c466eec4ec7929a84956b10133',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/dc0f7635a17dfaa243fe384020ced902',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5f2cb399e7e8885134c1b1a2b6acc9a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/edab3ca46dcfa25aab40d2afdd5d19ec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f3406a8958fa8cbac26307725316362d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                                                   'https://www.atlas-d2k.org/id/14-4KPP',\n",
      "                                                   'https://www.atlas-d2k.org/id/W-RA1W'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0004539': {'http://dx.doi.org/10.1681/ASN.2016091027#Donor1_TissueBlock1',\n",
      "                                                   'http://dx.doi.org/10.1681/ASN.2016091027#Donor2_TissueBlock1',\n",
      "                                                   'http://dx.doi.org/10.1681/ASN.2016091027#Donor3_TissueBlock1',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/015f9976f3fed4c35dbbaad622a413d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2a3b7a201db7e590f8578b2d7c558f9b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2ce02a8007277336b4522db806cedafd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2eb0aa95b1c1476852ca2971e55765db',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4238035279fa6b84092f5a48e230a300',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5193f0b7dc1c38be66651d545b314b12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/54e7365b6264290f4e452da9d8584a86',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5e878eb0192414dee7be45d7d5610a84',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/76a721f5c92163e02bf2811ed276ed0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9cab477791e415a4b4ceed2c7211a152',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a216f4fd6f96b64de6f3242eceebf4c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a2cc35adf80400c16f940b3707ff3c40',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a481a72a4f0877f177b5c47f033bea88',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a90f1880982cff8bd1628a6e0bac564c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6283c0391ae1f184e1b818af81ea52d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/be1ae8d9b3205f25b79e10082fa71de0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/be517ee3aa5ba9af89713915ffec203e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d79ce93ac1dd690ebf8e486f43b4fa0f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0006517': {'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0008716': {'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a'},\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0013702': {'http://dx.doi.org/10.1681/ASN.2016091027#Donor1_TissueBlock1',\n",
      "                                                   'http://dx.doi.org/10.1681/ASN.2016091027#Donor2_TissueBlock1',\n",
      "                                                   'http://dx.doi.org/10.1681/ASN.2016091027#Donor3_TissueBlock1',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/015f9976f3fed4c35dbbaad622a413d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/039ce6e8d5fa342811a4b317846b7281',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/07c995983aac113b442c0dc0c0b42ae5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/088adc477043f3970311122b0365bba8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0a558711c6b9d5b9029717d722a2c31c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0be6dee31365fd1e590a45263df043c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/11d794402e067e54888bb8a4af4184e0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16755fbe7dcb20e2cdcaeef386464643',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/24b13fd3342a93b5c85bd2318434b2a4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/263854e0346766efa516bd69bfc1e035',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/27485b21a2285dbcae38f2d56d429dec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2a3b7a201db7e590f8578b2d7c558f9b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c43806e840ffc9861abadf827c292fc',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2c523a98b87af1d9c7c7499b3817822f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2ce02a8007277336b4522db806cedafd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2d3a82aa3180b216081bbb0ae7bbe521',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2eb0aa95b1c1476852ca2971e55765db',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/30ef35ede661deb43376c4f74ae581e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3622b5c2175f28d7f6323208b7b1d93c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a4b8bfca8e842cae400f49e19987c7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4238035279fa6b84092f5a48e230a300',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/454f281ae77ccd7a1e2ab86f90c07263',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4eb373e9332ec51776a2ca2f79001022',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/4fd5a971eb171344a8d1e2b629e95541',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/512108a2c671e73858834cb5a7b8db80',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5193f0b7dc1c38be66651d545b314b12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/54e7365b6264290f4e452da9d8584a86',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5e878eb0192414dee7be45d7d5610a84',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/5f8bd79354b14fc35466221b875bb030',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/647db48ac7407caf7c3fb8ef0c6da12e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6585f87d93fe9621d151f0f225a8edc2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/675ad59881d88d54d7ac65f65a6acc12',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/682ab44e00e97bd81b17b0004601c8da',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6890cd54f99e6396694e64ee2bb53b3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6af94c048315d5b7b8997229dbb48f1a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/6e6aa82966b84161eaa6ef6e98494433',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7697e16bf3f778036b56ca8aec068ae9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/76a721f5c92163e02bf2811ed276ed0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/82f8ca025a918872d7b3bec389e3b9e7',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/8d7ce3aab7013e416263d23b0c048900',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f409ea5b96ff8d98a87d185cc28e2',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/973161d3138555f8705d9fcbbcedd144',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9cab477791e415a4b4ceed2c7211a152',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d1412bb63341df32e4851693cbfe409',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a216f4fd6f96b64de6f3242eceebf4c6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a2cc35adf80400c16f940b3707ff3c40',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a481a72a4f0877f177b5c47f033bea88',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a5a5a3bff1df2a6c378d85316161bd5b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a6255c16876d9c9d6229414c59fff534',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a7c3ea8269b3a97ac9f39cb4a970666c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a84a10c41fa408714f1510569a138b08',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a90f1880982cff8bd1628a6e0bac564c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/a96d7a2687372052a139c4f3cf6b6864',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/aadeb3ec91f8886051108dbb45ddec76',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b2362226c142a855ddaa0fba0db29b95',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b40570529f88ddc2742b183843091cd5',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6283c0391ae1f184e1b818af81ea52d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/b9d2f84102c7e3640c50fc9608018a67',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bbddf229fe06be8c7fd22c46af7e835b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/be1ae8d9b3205f25b79e10082fa71de0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/be517ee3aa5ba9af89713915ffec203e',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c4691a285587be3ce7e5d33eb3862e15',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/c5bd4ae9a43b580f821c5d499953bdec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cdd62f7264902447922147c3098ecd6a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/cebd83c466eec4ec7929a84956b10133',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1a6c08673e5d707d2f06ef75b8e6594',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d1b746040b9016e82acb4a5afe20062d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d79ce93ac1dd690ebf8e486f43b4fa0f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/d9e64e77d26d9fb8133d7754d1c3f6d0',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/dc0f7635a17dfaa243fe384020ced902',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e5f2cb399e7e8885134c1b1a2b6acc9a',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e76e073b21e99c230e0ee376722c041d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/edab3ca46dcfa25aab40d2afdd5d19ec',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f09ce9d45b7d311019769044ddeee0a3',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f2d94e194470a4d748fb388db47f9598',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f3406a8958fa8cbac26307725316362d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f44e0ee8c75dfe89f8ec0f02c1780c21',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f547dd2314220d545cd16c5dc41197f6',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fb19dde80f5beae5e919e406bd684c22',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fbc2a3c2689708eb045b3892e9fe5005',\n",
      "                                                   'https://entity.api.hubmapconsortium.org/entities/fc0711fa8f09cc48d596020fe816338a',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                                                   'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                                                   'https://www.atlas-d2k.org/id/14-4KPP',\n",
      "                                                   'https://www.atlas-d2k.org/id/W-RA1W'}}\n"
     ]
    }
   ],
   "source": [
    "def reverseObject(input_object):\n",
    "    reversed_object = {}\n",
    "\n",
    "    for key, values in input_object.items():\n",
    "        for value in values:\n",
    "            if value not in reversed_object:\n",
    "                reversed_object[value] = set()\n",
    "            reversed_object[value].add(key)\n",
    "    return reversed_object\n",
    "\n",
    "ASEntityDict = reverseObject(sceneEntityASDict)\n",
    "pprint(ASEntityDict)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6f6e9b7d",
   "metadata": {},
   "source": [
    "Using the method `tissue_blocks`, we get donor label information for each `entity_id`."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "e0e8542e",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[{'@id': 'https://entity.api.hubmapconsortium.org/entities/039ce6e8d5fa342811a4b317846b7281',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '35 x 19 x 3 millimeter, 3 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/2510644405f4e7fd86d31af0001b840f',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 56, BMI 32.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/2510644405f4e7fd86d31af0001b840f',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/039ce6e8d5fa342811a4b317846b7281',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 3,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/03dd86ef9ffd739b4cad8b99eb1e3fbf',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0ca61e7926956da9b8bdde2b1f3c43af',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0ca61e7926956da9b8bdde2b1f3c43af',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffbd784dd8c9aa4d4a26be8899c979/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/22ee51c5d4b96b54fce03a702db6c070',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/22ee51c5d4b96b54fce03a702db6c070',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/42e172492211ee700dadb8e138851a41',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/42e172492211ee700dadb8e138851a41',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8030bee708b211203104616629480b52',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 8/8/2024, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8030bee708b211203104616629480b52',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9ba91ddddfb2be8f06fd11230da0bbb3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9ba91ddddfb2be8f06fd11230da0bbb3',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a1e1e169777c00084b3d46325561f374',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a1e1e169777c00084b3d46325561f374',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d8d17995448d651e003abfbb0e0f7c62',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d8d17995448d651e003abfbb0e0f7c62',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffc216f32cf2e8a2561e658611481e/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f1fc56fe8e39a9c05328d905d1c4498e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f1fc56fe8e39a9c05328d905d1c4498e',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '35 x 19 x 3 millimeter, 3 millimeter, block',\n",
      "                'label': 'Registered 12/31/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/03dd86ef9ffd739b4cad8b99eb1e3fbf',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/43a81423-74d2-4803-a805-d745093c2376'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/07c995983aac113b442c0dc0c0b42ae5',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '20 x 8 x 4 millimeter, 0.6 millimeter, 7 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/6b955ebeafe9c351831bc36aa086575f',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 53, BMI 26.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/6b955ebeafe9c351831bc36aa086575f',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/07c995983aac113b442c0dc0c0b42ae5',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 7,\n",
      "  'sectionSize': 0.6,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/b8996f2d06e3434ae3d476fd25841c51',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/1789590e753b67b472fd1cf786717d7f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1789590e753b67b472fd1cf786717d7f',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/187ec1fd772164bc8b6a8ea6dbf770ae',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/187ec1fd772164bc8b6a8ea6dbf770ae',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff0b48202ac845e263f0cfb6ac5fc8/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/54ef9a03bc7abbedc60a261bf49e1119',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/54ef9a03bc7abbedc60a261bf49e1119',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6aa9b45e2fe555a72335e21837334c52',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6aa9b45e2fe555a72335e21837334c52',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7810dadcb43b35ef9de6378f3d53b532',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 8/8/2024, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7810dadcb43b35ef9de6378f3d53b532',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8226b84e9574cdde0498abebb55e5661',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8226b84e9574cdde0498abebb55e5661',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/91890e05edbd0a767092e10502b3ea99',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/91890e05edbd0a767092e10502b3ea99',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9e8ae39dfdcd3d41495d860d6fa7629e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/31/2022, Jeannie '\n",
      "                                       'Camarillo, Northwestern RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9e8ae39dfdcd3d41495d860d6fa7629e',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c62f303b801b4eaae818feba3ec2c327',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c62f303b801b4eaae818feba3ec2c327',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f31451771e1e2ceb31f8ac625a6fcca2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f31451771e1e2ceb31f8ac625a6fcca2',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff176bc1b73acebb7c2656c58bb20b/thumbnail.jpg'}],\n",
      "                'description': '20 x 8 x 0.6 millimeter, 0.6 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b8996f2d06e3434ae3d476fd25841c51',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/0b8e948f6b06bc93a70668160fe5b263',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 8 x 0.6 millimeter, 0.6 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/0b8e948f6b06bc93a70668160fe5b263',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/1fea627922043eb8ad9867942b8ed127',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 8 x 0.6 millimeter, 0.6 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/1fea627922043eb8ad9867942b8ed127',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/656d66d5f2a3cda07096f861575e5264',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 8 x 0.6 millimeter, 0.6 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/656d66d5f2a3cda07096f861575e5264',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/6c84417088840d5fbc0c582b6c86503b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 8 x 0.6 millimeter, 0.6 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6c84417088840d5fbc0c582b6c86503b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ba437e44232bbaf756003d8cd365910c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 8 x 0.6 millimeter, 0.6 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ba437e44232bbaf756003d8cd365910c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e56e6d73b2562fda2f7109ebb842d918',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 8 x 0.6 millimeter, 0.6 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e56e6d73b2562fda2f7109ebb842d918',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/ddca4946-3dda-445a-9b7d-367780669123'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/088adc477043f3970311122b0365bba8',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '20 x 15 x 4 millimeter, 1.3 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/96a667104f92a38f5d4f97c38d94e738',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 66, BMI 32.2',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/96a667104f92a38f5d4f97c38d94e738',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Elizabeth Neumann, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/088adc477043f3970311122b0365bba8',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 1.3,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/699857c48b1a8a0dfe96922fb5137ec2',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0eeec0fb784350446438bf0a22e04880',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0eeec0fb784350446438bf0a22e04880',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/18e070c6e64dd701705e09b54b4eed4d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/18e070c6e64dd701705e09b54b4eed4d',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/242928390eea3978f3c4592165de7290',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/242928390eea3978f3c4592165de7290',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2fdbf2be6b297eb1951b11db5b79cadb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2fdbf2be6b297eb1951b11db5b79cadb',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4176c40f5512a6e8fbc9c6975ddec2b5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4176c40f5512a6e8fbc9c6975ddec2b5',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7531c7b642469f7fdf1e2e8af4048b00',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7531c7b642469f7fdf1e2e8af4048b00',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a549c703ceccc91c29e9db3853d41a4b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a549c703ceccc91c29e9db3853d41a4b',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a7446cfb37adfac308eb69ec307dd69a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a7446cfb37adfac308eb69ec307dd69a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b6f97ee66dcb52eada045146b6583171',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b6f97ee66dcb52eada045146b6583171',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d7c35eb4231b8dea0a2a559c55d3afd3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d7c35eb4231b8dea0a2a559c55d3afd3',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dfc13ca92426f99f5aca8d570487b547',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dfc13ca92426f99f5aca8d570487b547',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f09547f56267014168d5577b26965886',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f09547f56267014168d5577b26965886',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '20 x 15 x 1.3 millimeter, 1.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/699857c48b1a8a0dfe96922fb5137ec2',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/3b65005eac9d19d02c0f688327328781',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 15 x 1.3 millimeter, 1.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3b65005eac9d19d02c0f688327328781',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/93b51537a638fb29c7df9584beeecd4b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 15 x 1.3 millimeter, 1.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/93b51537a638fb29c7df9584beeecd4b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/004c977d-dc98-472b-b02e-4209f8b41387'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 2 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/d876de578e9d8c2ce2dcd7c1bbb00681',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 11/30/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Male, Age 65',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/d876de578e9d8c2ce2dcd7c1bbb00681',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 5/29/2024, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/0ec930e0f4a8fcf12ea136a28e1acad4',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/296966bee1c3a1170d3e34ea104bca33',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/62efbe0a6abd0bcf53ab9ab29e7cd73f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/62efbe0a6abd0bcf53ab9ab29e7cd73f',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/85c24a9f09f198de788e4ec2afe37f29',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/85c24a9f09f198de788e4ec2afe37f29',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 2 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/296966bee1c3a1170d3e34ea104bca33',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/6537f5fc-c6fa-43b0-93e1-85040fdb89be'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/16755fbe7dcb20e2cdcaeef386464643',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '33 x 23 x 4 millimeter, 0.5 millimeter, 8 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/14fe19053a863e17b397bf4acb465c03',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 56, BMI 27.7',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/14fe19053a863e17b397bf4acb465c03',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/16755fbe7dcb20e2cdcaeef386464643',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 8,\n",
      "  'sectionSize': 0.5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/fc69db1861837ee0bf587558345ddd2b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fc69db1861837ee0bf587558345ddd2b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/0f9970e14b28e661b4ecf7af850980db',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/8da53b8ece9625d5a5c00f8555f67d31',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8da53b8ece9625d5a5c00f8555f67d31',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff7905a79cdfdffe1db3b54111f669/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a5f9355c8e03bbd02f8748cfdc6ab7f0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a5f9355c8e03bbd02f8748cfdc6ab7f0',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cc795c343b816390cd739993360a81b3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cc795c343b816390cd739993360a81b3',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fad77594f6ee5c43f0da2d864ac26e02',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fad77594f6ee5c43f0da2d864ac26e02',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fc19f57b63fc8fb08a9d1a0f0522bf27',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fc19f57b63fc8fb08a9d1a0f0522bf27',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fd4d9aabcfe127160f0018d299a96f6d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fd4d9aabcfe127160f0018d299a96f6d',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/01581ae58c54ef3c1161978d6a1bc2d3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/01581ae58c54ef3c1161978d6a1bc2d3',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/21b8a7d96484530225d87b7487d198a5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/21b8a7d96484530225d87b7487d198a5',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3d05dcc2e94476e00c73442770f12c19',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3d05dcc2e94476e00c73442770f12c19',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3f42c9ebe348f7aca2419ce95f40ab79',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3f42c9ebe348f7aca2419ce95f40ab79',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff4eb02a38d87da1d8bed001228019/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/53dc270e357bdee13c453fba428a882c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/53dc270e357bdee13c453fba428a882c',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/53fb094fd0f39f6d0b0fee3fc5db786f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/53fb094fd0f39f6d0b0fee3fc5db786f',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/82cbdc9a6eef422d2fcfe8504fd90136',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/82cbdc9a6eef422d2fcfe8504fd90136',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/83c705c27f7ba100c91205e9f4011c6b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/83c705c27f7ba100c91205e9f4011c6b',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/87d07e2b92db82a57064eebf12590efa',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/87d07e2b92db82a57064eebf12590efa',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/0f9970e14b28e661b4ecf7af850980db',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/2d63a30cbfffc6d43dfeeb3b7c20b059',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/2d63a30cbfffc6d43dfeeb3b7c20b059',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/63c0f8467be4c2cbc61eeede8d32845a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/63c0f8467be4c2cbc61eeede8d32845a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9059c4f0987edc50e511a6e9cfd1d85b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9059c4f0987edc50e511a6e9cfd1d85b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9915d10daae7d758947900a0fbe4e929',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9915d10daae7d758947900a0fbe4e929',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e8756cc5a20a476f08e6a54214c3d10b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e8756cc5a20a476f08e6a54214c3d10b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/f7caba2146220e3d5974845adb039fe3',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '33 x 23 x 0.5 millimeter, 0.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/f7caba2146220e3d5974845adb039fe3',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/812d2c8e-557a-48b9-8780-a5c1f53008cb'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '20 x 8 x 3 millimeter, 1.5 millimeter, 2 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/fbe55a20368647cd1b05cf7abd4dce70',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 7/22/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 78',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/fbe55a20368647cd1b05cf7abd4dce70',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/10/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/16f984ebb41e334dc6bad00ff32a3083',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 2,\n",
      "  'sectionSize': 1.5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/515731ddad041205da53a09cf18819da',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0d59cba813cdae8a1ee493e954732911',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0d59cba813cdae8a1ee493e954732911',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/29a10b1a8e2a79a4bb03959caaa397c6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/29a10b1a8e2a79a4bb03959caaa397c6',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3f83f076a6b0b136ce0a514d33dd1a96',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3f83f076a6b0b136ce0a514d33dd1a96',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4b1b34e27bccb2c3543d379d80c9f936',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4b1b34e27bccb2c3543d379d80c9f936',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/647d7cf8d574dd9afc15b63d2a60e462',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/647d7cf8d574dd9afc15b63d2a60e462',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a67a17f57e8d18268512bc39b03f035f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a67a17f57e8d18268512bc39b03f035f',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a7c82ef6eba9011f67e750099e4ba0dd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a7c82ef6eba9011f67e750099e4ba0dd',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bbc2fcbd0afc61d63045dd73326fce91',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bbc2fcbd0afc61d63045dd73326fce91',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c6a16d433d6a77c7e876514f7106c11e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c6a16d433d6a77c7e876514f7106c11e',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e39df3fb280229a9d96c9ba64ea2d6ba',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e39df3fb280229a9d96c9ba64ea2d6ba',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '20 x 8 x 1.5 millimeter, 1.5 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/515731ddad041205da53a09cf18819da',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/8eeac4438e424ed3a916686f058e1b46',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 8 x 1.5 millimeter, 1.5 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8eeac4438e424ed3a916686f058e1b46',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/ae63de43-3ab8-42c0-a6cd-81ca5de26e81'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 2 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/2a88141ee11dfe080c01db3620a35a39',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 6/12/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Female, Age 25, BMI 33.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/2a88141ee11dfe080c01db3620a35a39',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/8/2022, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/221340e997dc0f2bf94e735098b148fe',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0cb4f761fe3f4b50b5e075f2a6386263',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/4b5dc6d04aa30a6eb0b224a7ab7d03b3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4b5dc6d04aa30a6eb0b224a7ab7d03b3',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/07975e1e99bcd25fef9e6c72c46a8922',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/07975e1e99bcd25fef9e6c72c46a8922',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/12ec5b881a24bd3da166fd64e52fcb93',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/12ec5b881a24bd3da166fd64e52fcb93',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/16782d78da92510a67880e719af368f7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/16782d78da92510a67880e719af368f7',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/16cf9755338257986a867a86d63c2b9b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/16cf9755338257986a867a86d63c2b9b',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1e002a7b641312095138750498a541de',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1e002a7b641312095138750498a541de',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/227f4450f80d5c058f2f223adc806fb0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/227f4450f80d5c058f2f223adc806fb0',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/42221548e4c709628522b64d48ba0a75',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/42221548e4c709628522b64d48ba0a75',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/42f8aaeab5888c1789d630ca085d6688',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/42f8aaeab5888c1789d630ca085d6688',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/434243c3ccff2face69c37fe86d53b4f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/434243c3ccff2face69c37fe86d53b4f',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/46f707a38043ac6d2cd6a3700979c8f8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/46f707a38043ac6d2cd6a3700979c8f8',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4a682d67bea887e5bb1ade2bd137489e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Lab '\n",
      "                                             'Processed]',\n",
      "                              'label': 'Registered 3/6/2023, Charles Borromeo, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4a682d67bea887e5bb1ade2bd137489e',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/50c0c77c036397f98ad4c058fc9cd35a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/50c0c77c036397f98ad4c058fc9cd35a',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/53f81503913a841f57f07835ce94a5b9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/53f81503913a841f57f07835ce94a5b9',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/64b61aac0df17ddb916b88d2faa2ce7d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/64b61aac0df17ddb916b88d2faa2ce7d',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/65b92f0191dc73e9470f46ceb217054d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq [Lab '\n",
      "                                             'Processed]',\n",
      "                              'label': 'Registered 3/6/2023, Charles Borromeo, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/65b92f0191dc73e9470f46ceb217054d',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/74c08831f6c89b35d6df46bf88c3fbf0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/74c08831f6c89b35d6df46bf88c3fbf0',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/812eb84d7f482e1c855f6cc37f554874',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/812eb84d7f482e1c855f6cc37f554874',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/973b5f2ce28a818e31d6148147feb6fc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/973b5f2ce28a818e31d6148147feb6fc',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9d607bbd57fd250c7444158f4f55598f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9d607bbd57fd250c7444158f4f55598f',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e81e134b69e297f7442c6e4050ffb464',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e81e134b69e297f7442c6e4050ffb464',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 2 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 1/9/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/0cb4f761fe3f4b50b5e075f2a6386263',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/70ad7ae6-c9af-4975-98e2-98c249e36ddd'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '3 x 12 x 2 millimeter, 0.7 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/0739c6eb8d0d51bfd244e3d5afb00aab',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/8/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Female, Age 45, BMI 22.6',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/0739c6eb8d0d51bfd244e3d5afb00aab',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 10/3/2021, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/2256c64aacd92af7028ffb33e478cf46',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 0.7,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/292763e46cc5b2773f5813ec0799baa5',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/434fbc55d458dc4e06da9ba4961f3840',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/434fbc55d458dc4e06da9ba4961f3840',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9b99c75de2347b9567e33065108488e8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/7/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9b99c75de2347b9567e33065108488e8',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/aa93e53df10842c13348a334c8fe423f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/aa93e53df10842c13348a334c8fe423f',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ac1d4544ab4886b851f74b2c21952378',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ac1d4544ab4886b851f74b2c21952378',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e7bdf34c4da9f1d880f2615226e9713d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e7bdf34c4da9f1d880f2615226e9713d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fbfdd102ecd60d7cf9d3da8c3d83a5c4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fbfdd102ecd60d7cf9d3da8c3d83a5c4',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/00ca76f45eb3e75156f62e1546f979bc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/00ca76f45eb3e75156f62e1546f979bc',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/02ce2a860dcced0ccc13dd39cd8406c2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq [SnapATAC]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/02ce2a860dcced0ccc13dd39cd8406c2',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/060ab67b1b2465f4416f843c29a68a06',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/060ab67b1b2465f4416f843c29a68a06',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/19be408fb97c09f603c906921d7b0945',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/19be408fb97c09f603c906921d7b0945',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1b358830d3d9a1c99131de862b35b153',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1b358830d3d9a1c99131de862b35b153',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/233734120eed95231140c5dfd22622d7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/233734120eed95231140c5dfd22622d7',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2746ce8d450265ace2c6aee762c8dfda',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2746ce8d450265ace2c6aee762c8dfda',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/27dd55b5e1721c64dc359e704de8f852',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/27dd55b5e1721c64dc359e704de8f852',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/469e619ef4dd5fd8d6857029acd45a5d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/469e619ef4dd5fd8d6857029acd45a5d',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4dccc53d79f9516f7067b2fcd09b37fa',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4dccc53d79f9516f7067b2fcd09b37fa',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4ea7a4cf1a6ff0df0cc33c1236633112',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4ea7a4cf1a6ff0df0cc33c1236633112',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/545f3d609c49c4b4ebe884bc16cca9e5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/545f3d609c49c4b4ebe884bc16cca9e5',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/57cdbde608f49f28799accb37a4bec6f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/57cdbde608f49f28799accb37a4bec6f',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/614073f249f8881b2fe4a29db6bea266',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/614073f249f8881b2fe4a29db6bea266',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/670135e38ac4107e0d07dae1bdcf4936',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/670135e38ac4107e0d07dae1bdcf4936',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6f87add44880de684e6a9a5625344bbb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6f87add44880de684e6a9a5625344bbb',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/869ff5b556a0e0f24a48aa673d0bc343',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/869ff5b556a0e0f24a48aa673d0bc343',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9b64312cac3c359e0fef53555057c996',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9b64312cac3c359e0fef53555057c996',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ade674f0277942c9a1297494fcf3511d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ade674f0277942c9a1297494fcf3511d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/baa0353f17bd98dc714761613af90b88',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/baa0353f17bd98dc714761613af90b88',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c5e4adcf2ef956864a087d1691e8e8cd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c5e4adcf2ef956864a087d1691e8e8cd',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d34706323794467348995af37072b5ee',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d34706323794467348995af37072b5ee',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d7bd2925c466eedc009c1cd272011529',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d7bd2925c466eedc009c1cd272011529',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/de80a443ed15e1f783c68d5e0b2d7216',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/de80a443ed15e1f783c68d5e0b2d7216',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/df71091620312eacc28a6accccfb2aa4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/df71091620312eacc28a6accccfb2aa4',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f3e8db3b31a3b32bd4b1688f74ee2939',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f3e8db3b31a3b32bd4b1688f74ee2939',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f873b94dc8554ce2d013ecd570f1d8b9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f873b94dc8554ce2d013ecd570f1d8b9',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f925e640576b80238a816ec7ab747e11',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq [SnapATAC]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f925e640576b80238a816ec7ab747e11',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ffe88de77cfb92e1912aaaadefb43516',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ffe88de77cfb92e1912aaaadefb43516',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '3 x 12 x 0.7 millimeter, 0.7 millimeter, block',\n",
      "                'label': 'Registered 7/13/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/292763e46cc5b2773f5813ec0799baa5',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9952c7284ac5b7fd14f4ceaf6bb1f990',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 12 x 0.7 millimeter, 0.7 millimeter, block',\n",
      "                'label': 'Registered 7/14/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9952c7284ac5b7fd14f4ceaf6bb1f990',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/c5a5c627e19e33a809a32de4159dfb26',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 12 x 0.7 millimeter, 0.7 millimeter, block',\n",
      "                'label': 'Registered 1/6/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/c5a5c627e19e33a809a32de4159dfb26',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/fd380a0c-2915-4d73-b3f4-d161badbaccb'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '3 x 4 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/5c4208e2f2715c56ee8dc82b5f1b90c0',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 4/1/2021, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Female, Age 63, BMI 36.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/5c4208e2f2715c56ee8dc82b5f1b90c0',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 10/3/2021, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/243c742cc28978c406d650984d6eeffd',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/49486fc84b89dc3ac65d5582d863018c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/dc4f4778dd04263c0660addcc93b3807',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dc4f4778dd04263c0660addcc93b3807',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e65175561b4b17da5352e3837aa0e497',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e65175561b4b17da5352e3837aa0e497',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'Washington University Kidney TMC',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9049f48b97dc5edc737b67783a47e918',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9049f48b97dc5edc737b67783a47e918',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '3 x 4 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 10/15/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/49486fc84b89dc3ac65d5582d863018c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/52c4948d-bdc2-4201-a991-61a2c0a565c0'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/24b13fd3342a93b5c85bd2318434b2a4',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '18 x 10 x 2 millimeter, 0.3 millimeter, 7 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/dd258063b8389612a9596af734143906',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/23/2019, Elizabeth Neumann, '\n",
      "                           'TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 58, BMI 22.0',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/dd258063b8389612a9596af734143906',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Elizabeth Neumann, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/24b13fd3342a93b5c85bd2318434b2a4',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 7,\n",
      "  'sectionSize': 0.3,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/11ee922a974eb5fed7167e3c6da9b219',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/3ade70d66d10ed1d30fe005f672b2abf',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3ade70d66d10ed1d30fe005f672b2abf',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/64fb1a207109beb61404b7e0b4c60810',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 8/8/2024, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/64fb1a207109beb61404b7e0b4c60810',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9e9ccb2dd633440df0b8ec966f28edb6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9e9ccb2dd633440df0b8ec966f28edb6',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9ed95f2cf5c1b1a6af6250085d1aaf4a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9ed95f2cf5c1b1a6af6250085d1aaf4a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/be503a021ed910c0918842e318e6efa2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/be503a021ed910c0918842e318e6efa2',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bf6ec5a47c32f43b6d01ea58fa4723ca',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bf6ec5a47c32f43b6d01ea58fa4723ca',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ca886a630b2038997a4cfbbf4abfd283',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ca886a630b2038997a4cfbbf4abfd283',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f4188a148e4c759092d19369d310883b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f4188a148e4c759092d19369d310883b',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff192eacf33962a9cfc6f84ad83132/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2130d5f91ce61d7157a42c0497b06de8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2130d5f91ce61d7157a42c0497b06de8',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff2b98d0cef77639c305558ddcc9a0/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/27fd8c958f4478ab60df2555174c6e92',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/22/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/27fd8c958f4478ab60df2555174c6e92',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2ebf9abc84636f9ca7af785cad574336',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'HBM-TestingGroup',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2ebf9abc84636f9ca7af785cad574336',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2ece1b8974483e14046fad953b35fedd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2ece1b8974483e14046fad953b35fedd',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/11ee922a974eb5fed7167e3c6da9b219',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/34322d81cafea4eb92f316719f21e8a5',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/34322d81cafea4eb92f316719f21e8a5',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/81e13b6ca7bae3a426668c7f0bf6ac7a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/81e13b6ca7bae3a426668c7f0bf6ac7a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/adb796d8717f5a403ebd8b9690fbe26b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/adb796d8717f5a403ebd8b9690fbe26b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d1451775c63a3abdc3327a5ea28fe30b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d1451775c63a3abdc3327a5ea28fe30b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d7a8869e1687993cfc115fc2326e7b93',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d7a8869e1687993cfc115fc2326e7b93',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/dd224173f491932735bcfea6a9ffca98',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/dd224173f491932735bcfea6a9ffca98',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/a92ad611-c3c6-43d9-bfd6-00ff906fa541'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '15 x 9 x 9 millimeter, 0.8 millimeter, 12 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/171fc88db789ff330b0d7a420b642a23',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 9/30/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 77, BMI 28.2',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/171fc88db789ff330b0d7a420b642a23',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/20/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/2656c76dce594e00489964705b5d1744',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 12,\n",
      "  'sectionSize': 0.8,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/02ddb79097ad566854b25c1ff2602481',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/15039c1e4e77bd81b297ff9fd98711ca',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/15039c1e4e77bd81b297ff9fd98711ca',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1526dffefe8a8390ae7d569b4f4ec03e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1526dffefe8a8390ae7d569b4f4ec03e',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1ee73dc7326490f40486c3b7b62446bf',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1ee73dc7326490f40486c3b7b62446bf',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2202447d484a62ab7b982a1c4e3a26e4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2202447d484a62ab7b982a1c4e3a26e4',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2d8ff1210e02e4171ac04980c361cc37',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2d8ff1210e02e4171ac04980c361cc37',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/38f164a737b56180d6ef43c3d4478a3d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/38f164a737b56180d6ef43c3d4478a3d',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3cf1c86138af2bbd1ea05da37dd00eec',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3cf1c86138af2bbd1ea05da37dd00eec',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4dc42dfba2236917b70d7e45c511eb9f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4dc42dfba2236917b70d7e45c511eb9f',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5893a19a1f14a2e57c3f0a37931b2888',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5893a19a1f14a2e57c3f0a37931b2888',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/64417df1cf051dcfa0a93f9df7bcb27f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/64417df1cf051dcfa0a93f9df7bcb27f',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/64d3913d4d68b8a7d7ae5616e0e33f58',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/64d3913d4d68b8a7d7ae5616e0e33f58',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6a037ddcb811f77f726b9f78e5d369a2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6a037ddcb811f77f726b9f78e5d369a2',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff99a480b8f1b2a28a0c78310583c5/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6b6c7d77d632c68420398d5230e8ff68',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6b6c7d77d632c68420398d5230e8ff68',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7718ad35fe468b3f5453a41c3517e715',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7718ad35fe468b3f5453a41c3517e715',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a51b41527c886fc5522a3e36890ea5d6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a51b41527c886fc5522a3e36890ea5d6',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bbea4e31e70c89383bc70c1c74bf2277',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bbea4e31e70c89383bc70c1c74bf2277',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c1216834ff5b1e981998cf8aec809a44',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c1216834ff5b1e981998cf8aec809a44',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffe25217a67d11daec3912ec8abd42/thumbnail.jpg'}],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/02ddb79097ad566854b25c1ff2602481',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 12},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/07f248ac24ae3f1a69f88673c221cf79',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/07f248ac24ae3f1a69f88673c221cf79',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/0cef8bcb0f7f5f1f3dc663d2efbdc7e5',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/0cef8bcb0f7f5f1f3dc663d2efbdc7e5',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/3da71021eec8745e6fe143172342c35a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3da71021eec8745e6fe143172342c35a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4a23f5e31e6423e4b150a442aefcf019',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4a23f5e31e6423e4b150a442aefcf019',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 11},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/834a1573d8604e50a4da2c333dea5287',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/834a1573d8604e50a4da2c333dea5287',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/8a83b57c27c4f8ecdad6b6cfc3753bfa',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8a83b57c27c4f8ecdad6b6cfc3753bfa',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/a8f98d0e69242b6ae35c235634b9a0d8',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/a8f98d0e69242b6ae35c235634b9a0d8',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/b54e637583d7d42f1850465ac622ad0b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b54e637583d7d42f1850465ac622ad0b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 9},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/b85f60ad2e5ca602b404056c892689ad',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b85f60ad2e5ca602b404056c892689ad',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 10},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/badc1eeb7abf9543616f1e3b2af84eb9',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/badc1eeb7abf9543616f1e3b2af84eb9',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/f12b76434f22a49e1e7087df014f0331',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 9 x 0.8 millimeter, 0.8 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/f12b76434f22a49e1e7087df014f0331',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/0af69e70-3ec3-4d0b-a008-89a4186f4452'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 3 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/4c99122862f4f34f80ee6d9cac36d61a',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 4/1/2021, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 54, BMI 38.6',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/4c99122862f4f34f80ee6d9cac36d61a',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 9/23/2022, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/2957761e1ed24c63f53714bd0d9bf25f',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/6374d71efe78a3b31a12dc5a7f83f336',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/35f5b75a7e3d0711f16b0a10219586fb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/35f5b75a7e3d0711f16b0a10219586fb',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/37988db44acc8d0780e4e31cd057e789',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/37988db44acc8d0780e4e31cd057e789',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2d27debfce3d25040af54fb77b25427b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2d27debfce3d25040af54fb77b25427b',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 3 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 10/16/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6374d71efe78a3b31a12dc5a7f83f336',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/2990ecc8-1854-4794-8f11-1b31c5c94e5f'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '3 x 5 x 2 millimeter, 0.2 millimeter, 11 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/e3d3717ad581030c03bed6641d76e088',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 11/29/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Female, Age 55',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/e3d3717ad581030c03bed6641d76e088',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/9/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/2f8bb4ef2d9b8d23eebc24d1d5db36cd',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 11,\n",
      "  'sectionSize': 0.2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/092d88565b32c5ccd1948bf20a36961a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/1b5c7d45cb0e475b73f9280d092d34a5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1b5c7d45cb0e475b73f9280d092d34a5',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1dc16eb0270ff73291dd45b6a96aa3c0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1dc16eb0270ff73291dd45b6a96aa3c0',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/206d669d243f6dab04cc126a52cdab8d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/206d669d243f6dab04cc126a52cdab8d',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/29596bee3f70b2bfc89d184fe38a3daa',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/29596bee3f70b2bfc89d184fe38a3daa',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/32b783576b6c88fec03f5e5988e3effa',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/32b783576b6c88fec03f5e5988e3effa',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/41dab04d801d21bfc99328c9e249cc68',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/41dab04d801d21bfc99328c9e249cc68',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/51bfd85763954248725ebf69f0dde5eb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/51bfd85763954248725ebf69f0dde5eb',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/55452bd302046918eaeeffa62c5b5f03',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/55452bd302046918eaeeffa62c5b5f03',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6cd657565c709c832300336899a1e1ec',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6cd657565c709c832300336899a1e1ec',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6fdfde6f88e34294b3cd58e070ebcba2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6fdfde6f88e34294b3cd58e070ebcba2',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/79f8c7ec1b200dfe5b46d0bcfec02bd7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/79f8c7ec1b200dfe5b46d0bcfec02bd7',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7ed80889944d7b0276e84f179090d622',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7ed80889944d7b0276e84f179090d622',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/81c50251d7f1aa85eeb6c03be44443a6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/81c50251d7f1aa85eeb6c03be44443a6',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8cdb42ed1194255c74c8462b99bbd7ef',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8cdb42ed1194255c74c8462b99bbd7ef',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/97c65df1d8fdc8d67c34a55e386fd430',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/97c65df1d8fdc8d67c34a55e386fd430',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a19973065eec1489f4d6a308e73da275',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a19973065eec1489f4d6a308e73da275',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a6bfa5ab516fcc24137cdd3ce3971e2c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a6bfa5ab516fcc24137cdd3ce3971e2c',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b921c30d5077581c016d87d4f4c9ff19',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b921c30d5077581c016d87d4f4c9ff19',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c6c0cca1d093fcdb8d72bd18053a7940',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c6c0cca1d093fcdb8d72bd18053a7940',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ccf899abde825d51b03ad91028483ac1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ccf899abde825d51b03ad91028483ac1',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fd0b0c1d050010de3520492147aacef4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fd0b0c1d050010de3520492147aacef4',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fee4cf0e7da557d3ef5c535b5417ed7a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fee4cf0e7da557d3ef5c535b5417ed7a',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2e3fc1d75031ab74e6293d3ea9cfabfb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 2/15/2023, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2e3fc1d75031ab74e6293d3ea9cfabfb',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/335b1b3960f1c82a357fa265fc427c64',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/335b1b3960f1c82a357fa265fc427c64',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/357c2f00be8e423df10bb2f8c33acfc6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/357c2f00be8e423df10bb2f8c33acfc6',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/490f1116f9f13ad4c26f07cad8011553',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/490f1116f9f13ad4c26f07cad8011553',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4e5fa1b5fb6554e9e91d56750716d731',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4e5fa1b5fb6554e9e91d56750716d731',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/77c4620cac87b7b943402744899270b8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/77c4620cac87b7b943402744899270b8',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8e549f307987dbb78a5c974adf4c778d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8e549f307987dbb78a5c974adf4c778d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9607480b01f011eba4617b6a4832e23a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 2/16/2023, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9607480b01f011eba4617b6a4832e23a',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d3e8350bdcc7a5851deb22045c3af31a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d3e8350bdcc7a5851deb22045c3af31a',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d7d67aebcb007199c87fce9b7fb4ce62',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d7d67aebcb007199c87fce9b7fb4ce62',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d9b43585124c9872131c951a815d2ab1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d9b43585124c9872131c951a815d2ab1',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e1e4148e3951bc35222790dc1352f01c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e1e4148e3951bc35222790dc1352f01c',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/092d88565b32c5ccd1948bf20a36961a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 11},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/07ab65c10f6e94154267acfdb2f983f3',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/07ab65c10f6e94154267acfdb2f983f3',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/1bd881fda3d55d9c0f3619eb9b1edc8a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/1bd881fda3d55d9c0f3619eb9b1edc8a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/299f240581bcac949d578a77907bf4db',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/299f240581bcac949d578a77907bf4db',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4f4f69631389abd8f86c75507e5fb100',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4f4f69631389abd8f86c75507e5fb100',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/883a77f2057d6ac7c564c6b29f6844ed',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/883a77f2057d6ac7c564c6b29f6844ed',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 9},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/a9fea87b63c4dadb6526d3457a555bb8',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/a9fea87b63c4dadb6526d3457a555bb8',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/c1ceb0cb5e3fb79eaf203da92b42ac42',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/c1ceb0cb5e3fb79eaf203da92b42ac42',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 10},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/cc9d8c7057646b174d6f1befea66803e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/cc9d8c7057646b174d6f1befea66803e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/eafdd29370db001838a53869d9d70071',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/eafdd29370db001838a53869d9d70071',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/eba0874c75205fea2a8eb9d761ffba4c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 5 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/eba0874c75205fea2a8eb9d761ffba4c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/8f99a469-7d51-46dc-919d-2e002eeae868'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/3622b5c2175f28d7f6323208b7b1d93c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '16 x 12 x 5 millimeter, 1 millimeter, 5 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/c16891deebece9ef23d7f7c13c81b671',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 38, BMI 42.3',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/c16891deebece9ef23d7f7c13c81b671',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/3622b5c2175f28d7f6323208b7b1d93c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 5,\n",
      "  'sectionSize': 1,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/ce31fcf1eaf6a26824db7f22b15c4efb',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/e97f07695e7c14e25caea0ebf54870c7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e97f07695e7c14e25caea0ebf54870c7',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'}],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ce31fcf1eaf6a26824db7f22b15c4efb',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/5d37aee99f1d65229f1ad2995f8c479f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/5d37aee99f1d65229f1ad2995f8c479f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/66169c32a460d5ad1de008fdadc54a18',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/66169c32a460d5ad1de008fdadc54a18',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/b5ba2d71b88561c85ff96a3d9542f935',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b5ba2d71b88561c85ff96a3d9542f935',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e6fbb252124fac9987c8d0bd845894e4',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e6fbb252124fac9987c8d0bd845894e4',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/3022bdb2-5548-4d64-8c20-139999148d67'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/3a4b8bfca8e842cae400f49e19987c7c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '20 x 15 x 4 millimeter, 4 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/96a667104f92a38f5d4f97c38d94e738',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 66, BMI 32.2',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/96a667104f92a38f5d4f97c38d94e738',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Elizabeth Neumann, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/3a4b8bfca8e842cae400f49e19987c7c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 4,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/b8f8acd3659ac151092f6a8346150a06',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0a6f5c1afbcc31622eb34daf88c2c016',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0a6f5c1afbcc31622eb34daf88c2c016',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1d1a8376b558398588f92688314f23c5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1d1a8376b558398588f92688314f23c5',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/23f1637a0a90fdd2a8feece44d00c22e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/23f1637a0a90fdd2a8feece44d00c22e',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffa2d2112d090d7b616cc7f52ef5a1/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/72d7f6895a34be4e0f43df278c675da2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/72d7f6895a34be4e0f43df278c675da2',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7eef1634020f429f9855ff319ff0c65e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 8/8/2024, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7eef1634020f429f9855ff319ff0c65e',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a9e97dfb17c7fe08a9c4590318955095',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a9e97dfb17c7fe08a9c4590318955095',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d0b944edce4f7fc2a61321d5dc915a72',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d0b944edce4f7fc2a61321d5dc915a72',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff34a7d1119094e9819beffcc42282/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d4fae29feb0215a11b6e4d3072107e09',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d4fae29feb0215a11b6e4d3072107e09',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '20 x 15 x 4 millimeter, 4 millimeter, block',\n",
      "                'label': 'Registered 12/23/2019, Elizabeth Neumann, '\n",
      "                         'TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b8f8acd3659ac151092f6a8346150a06',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/004c977d-dc98-472b-b02e-4209f8b41387'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '22 x 12 x 15 millimeter, 5 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/dc32c49414c71ac8f7528e9219552464',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 2/23/2023, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 70',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/dc32c49414c71ac8f7528e9219552464',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/19/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/3a622ca82adc9696ec31fc6e2210197c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/04a4d28600082dc32cff099cae4d97f4',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/370a4b793e507ca0c638e2268a2556dd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/370a4b793e507ca0c638e2268a2556dd',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/450fa07e5e523ad6d947c81c15e63e31',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/450fa07e5e523ad6d947c81c15e63e31',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4fd44a84d70deb0be8a80ff6add2e4cf',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4fd44a84d70deb0be8a80ff6add2e4cf',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6e53159065ca13e62eff2988ea9ec51e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6e53159065ca13e62eff2988ea9ec51e',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9ff592a054da5b6ff14730aa49b15512',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9ff592a054da5b6ff14730aa49b15512',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/adf84937fbedf81114d2c9074d08843b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/adf84937fbedf81114d2c9074d08843b',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d4236f50ae39a3cf99f29bc38b803dae',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d4236f50ae39a3cf99f29bc38b803dae',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d728907f9d2f954abc49d4e8051c7b79',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d728907f9d2f954abc49d4e8051c7b79',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dd966a193c0aef479e232a31cfdb62b6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dd966a193c0aef479e232a31cfdb62b6',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f998d229419480586317be5866079c2f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f998d229419480586317be5866079c2f',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '22 x 12 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/04a4d28600082dc32cff099cae4d97f4',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/175b11839733a2f767fea1fd2b6741f2',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '22 x 12 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/175b11839733a2f767fea1fd2b6741f2',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/44a2ecbe3b49b0c26a5685bbcd45684f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '22 x 12 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/44a2ecbe3b49b0c26a5685bbcd45684f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/7a3454d4-89f6-40f5-af48-1ad1f46b49fc'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '1 x 5 x 2 millimeter, 1 millimeter, 2 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/48b15ba8abfaef4e70edfdf173649b6c',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 3/27/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 76, BMI 25.8',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/48b15ba8abfaef4e70edfdf173649b6c',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 10/3/2021, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/3d74b962e316efbfba104370f5c87e2d',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 2,\n",
      "  'sectionSize': 1,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/2b66332cd0cb21d80a6a799767461c2b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0d1eb3d774a694b79e844987f771b183',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0d1eb3d774a694b79e844987f771b183',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6efd19dc32f820a0e6be6a34973359b6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6efd19dc32f820a0e6be6a34973359b6',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9457860c1b69f7ec3e51a6b648eabf13',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9457860c1b69f7ec3e51a6b648eabf13',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/949827f25f423d54663f09596351795d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/949827f25f423d54663f09596351795d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/16e22e3a18706dced8cfd07fdc9caf7d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/16e22e3a18706dced8cfd07fdc9caf7d',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/38e711b3bf01907778977faa3dd288ff',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/38e711b3bf01907778977faa3dd288ff',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3ddb9281f4b7c214db40f7f8b92b55c9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3ddb9281f4b7c214db40f7f8b92b55c9',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4a5b7a2911ee622b7e48e4f65db42347',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq [SnapATAC]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4a5b7a2911ee622b7e48e4f65db42347',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/644e9e8c2e6dfb07223188b86eb17ed4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/644e9e8c2e6dfb07223188b86eb17ed4',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/83c406b2560e093fa32a2e4a53311530',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/83c406b2560e093fa32a2e4a53311530',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88ea29ae7aeb5805daf855b3deb73361',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88ea29ae7aeb5805daf855b3deb73361',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9efdc2b203c54baad4e7c5cd99b77160',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9efdc2b203c54baad4e7c5cd99b77160',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a4477ee85ea420ae82b892ae936b43c4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a4477ee85ea420ae82b892ae936b43c4',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b65be38cd5c120889a3b78630d396387',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b65be38cd5c120889a3b78630d396387',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ba5d51d5101f1fb882b1d8c73e26b9a2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Juan Puerto, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ba5d51d5101f1fb882b1d8c73e26b9a2',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bbab5449e7476eb6b52cbb632980aa2b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bbab5449e7476eb6b52cbb632980aa2b',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d3c675e9f3507412928d3bb725c2c8d2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d3c675e9f3507412928d3bb725c2c8d2',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/db3eca4495be28a22d9d02d465c1f702',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/db3eca4495be28a22d9d02d465c1f702',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/df7b5c077c2fc442f56d8667fe8ea37c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/df7b5c077c2fc442f56d8667fe8ea37c',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fd0c0fcde5a331c9dfff52b520c7d792',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fd0c0fcde5a331c9dfff52b520c7d792',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '1 x 5 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 7/13/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/2b66332cd0cb21d80a6a799767461c2b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ca0e65f5768377b8503c268dbc1e9569',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '1 x 5 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 7/10/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ca0e65f5768377b8503c268dbc1e9569',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/26edd761-8b50-453c-9b03-2337806c9e3a'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '32 x 9 x 20 millimeter, 6.7 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/8791c166b90f77a078101f90ed4aeaa2',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 7/23/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 65',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/8791c166b90f77a078101f90ed4aeaa2',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/18/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/414abf452403edbecb91fb9d05647829',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 6.7,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/b0bc71e491a2ec948524985395e26416',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/00e256274c3dd0976313a73df36880f4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/00e256274c3dd0976313a73df36880f4',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/05e7b4e244631a85240ee968a584a7b4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/05e7b4e244631a85240ee968a584a7b4',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0bd1dc641ffe826cf5a2432706ff4d5c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0bd1dc641ffe826cf5a2432706ff4d5c',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2715eaa4e4a08f2df38ada0067872230',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2715eaa4e4a08f2df38ada0067872230',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/291d894944426a502401a3cdb6d44587',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/291d894944426a502401a3cdb6d44587',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/425349073c8d3719b3b27cde5f311590',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/425349073c8d3719b3b27cde5f311590',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5904902bf797c61d0fe4ec8a75df61bb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5904902bf797c61d0fe4ec8a75df61bb',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6bc1b1ce821c61778242495ab42671e6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6bc1b1ce821c61778242495ab42671e6',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/849090248925bedb9874e66b5ed993ee',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/849090248925bedb9874e66b5ed993ee',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dbb0092508595770f78d1b33ab0ab660',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dbb0092508595770f78d1b33ab0ab660',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e89de3608fc79f6ebaefd9f7d433f901',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e89de3608fc79f6ebaefd9f7d433f901',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ef6045054f290955146e5a4e9276fb96',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ef6045054f290955146e5a4e9276fb96',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '32 x 9 x 6.7 millimeter, 6.7 millimeter, block',\n",
      "                'label': 'Registered 8/27/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b0bc71e491a2ec948524985395e26416',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d1b22f1cb80613f24c735cb7da1def8e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '32 x 9 x 6.7 millimeter, 6.7 millimeter, block',\n",
      "                'label': 'Registered 8/27/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d1b22f1cb80613f24c735cb7da1def8e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/f6829975e476584aff458d7922c88cb9',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '32 x 9 x 6.7 millimeter, 6.7 millimeter, block',\n",
      "                'label': 'Registered 8/27/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/f6829975e476584aff458d7922c88cb9',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/d9722c2f-1591-4e93-a214-377a5646e6d8'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '13 x 12 x 11 millimeter, 1.1 millimeter, 10 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/171fc88db789ff330b0d7a420b642a23',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 9/30/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 77, BMI 28.2',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/171fc88db789ff330b0d7a420b642a23',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/20/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/4183d2843c53482e94455468c7264de8',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 10,\n",
      "  'sectionSize': 1.1,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/5425292a879c64420dc7eedb1150da78',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/8a0a2d649b246ba8b688ac3521163624',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 5/20/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8a0a2d649b246ba8b688ac3521163624',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/aa198c566a3ee9ad703d66685cf65a63',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/aa198c566a3ee9ad703d66685cf65a63',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ae546038c98999bc8a3f95a39f943c99',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ae546038c98999bc8a3f95a39f943c99',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/204b51455c4229d13288067bd9f572b0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/204b51455c4229d13288067bd9f572b0',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2bc6713576dda7c7e6378aec38df437d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2bc6713576dda7c7e6378aec38df437d',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff5ee92d10872d7cd92bf8dbdcc35e/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2cc5a31c10730dba1816a5d84d47247a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2cc5a31c10730dba1816a5d84d47247a',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7afaa263c0c928094459c597940e0351',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Nathan Patterson, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7afaa263c0c928094459c597940e0351',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/5425292a879c64420dc7eedb1150da78',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 10},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/fa18b97c0df1b3b9debcc40a0a9bd310',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fa18b97c0df1b3b9debcc40a0a9bd310',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/25c45d0b70ebc9ae88a6fb3921bfc38b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/25c45d0b70ebc9ae88a6fb3921bfc38b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/298a96840c6e5a632199e252eeee8fcd',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/298a96840c6e5a632199e252eeee8fcd',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/3524d9997fedd44773ed84f5dc0328f6',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3524d9997fedd44773ed84f5dc0328f6',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 9},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/58ab6f8911a18fb7c953bb5957c8bd2d',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/58ab6f8911a18fb7c953bb5957c8bd2d',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9946a0fb536e1fceb436a979c7f59fa7',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9946a0fb536e1fceb436a979c7f59fa7',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d6a7097aab75f03b21257bc0b1ab8999',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d6a7097aab75f03b21257bc0b1ab8999',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/dce98c2cdab789e720322137058515ca',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/dce98c2cdab789e720322137058515ca',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e93c83f88ec9625cbfe1f586b9759b19',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '13 x 12 x 1.1 millimeter, 1.1 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e93c83f88ec9625cbfe1f586b9759b19',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/bf36d893-81ff-4f38-a6ba-97c9d870c841'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 3 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/2a88141ee11dfe080c01db3620a35a39',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 6/12/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Female, Age 25, BMI 33.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/2a88141ee11dfe080c01db3620a35a39',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/8/2022, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/41e6526c796c3d2a975b28349b6c923e',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/9f00567e894eecff31eef19ad93af1c3',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/7f1e932a91a86ef58ed61ee19c175c18',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7f1e932a91a86ef58ed61ee19c175c18',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0958dabdd6ea147193514524f8dc7cdd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0958dabdd6ea147193514524f8dc7cdd',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/16e9ba451dcad479781b272fb8a6ea05',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/16e9ba451dcad479781b272fb8a6ea05',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/28481bdc81b2fac9c645ec95fc0e1824',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/28481bdc81b2fac9c645ec95fc0e1824',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3802f8843c090764d056b2e326a494ca',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3802f8843c090764d056b2e326a494ca',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3b9e41fa2326a845871cd20b35efb0c0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3b9e41fa2326a845871cd20b35efb0c0',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3d2d23e79d05583bd3b1a7f009b203ef',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3d2d23e79d05583bd3b1a7f009b203ef',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4125c67860a0f659ffbbf101b278c62a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4125c67860a0f659ffbbf101b278c62a',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4d3eb2a87cda705bde38495bb564c8dc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4d3eb2a87cda705bde38495bb564c8dc',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4e54c868cca02be3a0538b03c1909c3d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4e54c868cca02be3a0538b03c1909c3d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/534418043eb8b1e8e6690123688bed09',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/534418043eb8b1e8e6690123688bed09',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/63c9ad59d1db51551989d7dabd36dea9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/63c9ad59d1db51551989d7dabd36dea9',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6e501b057f0d19451012c03aa5442af2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6e501b057f0d19451012c03aa5442af2',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/724256834b9b5c19073559d422e59667',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/724256834b9b5c19073559d422e59667',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/851d76f833dc8dc3debb8eb2d73d543b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq [Lab '\n",
      "                                             'Processed]',\n",
      "                              'label': 'Registered 3/6/2023, Charles Borromeo, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/851d76f833dc8dc3debb8eb2d73d543b',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a99a132d06f46dc563cb47006b874ab1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a99a132d06f46dc563cb47006b874ab1',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b4dc29f1b0bdc10ce57734655feb4428',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b4dc29f1b0bdc10ce57734655feb4428',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bae81c76d9baf591fc7455f570e3c41d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 2/12/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bae81c76d9baf591fc7455f570e3c41d',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bafcb8882be3c213101755a0468f3620',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Lab '\n",
      "                                             'Processed]',\n",
      "                              'label': 'Registered 3/6/2023, Charles Borromeo, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bafcb8882be3c213101755a0468f3620',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/be7059191ba49651655db7d333610ad2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/be7059191ba49651655db7d333610ad2',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dcb845c82041eeb07020dec84e03ea97',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 2/11/2022, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dcb845c82041eeb07020dec84e03ea97',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 3 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 1/9/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9f00567e894eecff31eef19ad93af1c3',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/731ade72-cdb7-4262-8be1-859396820dfd'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '20 x 18 x 12 millimeter, 4 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ca10ede410dee22a4eb8a1f8cbbd526b',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 9/30/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 43',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ca10ede410dee22a4eb8a1f8cbbd526b',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/21/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/42bd24651630e444c02163cd8f0d5f4c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 4,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/4f5411959c290fc304a9b5e3c1a25354',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/463541479211206a5dbc83341a6a20d9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/463541479211206a5dbc83341a6a20d9',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/95ab42bc25e0c1fff60e58ba10258ba0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/95ab42bc25e0c1fff60e58ba10258ba0',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a607cb71695de1747f5662f2ccd81a4a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a607cb71695de1747f5662f2ccd81a4a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b0ec8f348a3725034359c911a3fe5037',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b0ec8f348a3725034359c911a3fe5037',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b2506a24a012baa58f88b8a6db56a32a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b2506a24a012baa58f88b8a6db56a32a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b48c4e17eb687b6f667923a94b97d65d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b48c4e17eb687b6f667923a94b97d65d',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cac6ad6e7829374d47542dc3c3035e07',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cac6ad6e7829374d47542dc3c3035e07',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cad4229d2c02a44ea6d6317c47bccf40',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cad4229d2c02a44ea6d6317c47bccf40',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/def47fef78efaeca0f6d30f2f9c4ed30',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/def47fef78efaeca0f6d30f2f9c4ed30',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f2582f0c350d2893bf8fea7b5a77f121',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f2582f0c350d2893bf8fea7b5a77f121',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '20 x 18 x 4 millimeter, 4 millimeter, block',\n",
      "                'label': 'Registered 8/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4f5411959c290fc304a9b5e3c1a25354',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/039669e32a7638777e13cc533d6ac16e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 18 x 4 millimeter, 4 millimeter, block',\n",
      "                'label': 'Registered 8/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/039669e32a7638777e13cc533d6ac16e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d1edf11bccc143cf31cf78bd470aa4f9',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 18 x 4 millimeter, 4 millimeter, block',\n",
      "                'label': 'Registered 8/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d1edf11bccc143cf31cf78bd470aa4f9',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/0e8b0f2f-d130-4edc-a00b-15db0110ffa9'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/4fd5a971eb171344a8d1e2b629e95541',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '15 x 13 x 10 millimeter, 1.7 millimeter, 6 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/a767eb82765b1a96a69e6fe28b6a387d',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 56, BMI 45.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/a767eb82765b1a96a69e6fe28b6a387d',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/4fd5a971eb171344a8d1e2b629e95541',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 6,\n",
      "  'sectionSize': 1.7,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/14df2b4bec784038d5e9faeca8bb9a8a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/00f1ce42073a3dc6c442e9105f4e4f61',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/00f1ce42073a3dc6c442e9105f4e4f61',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/21d48c9fb3df2bc4c00c1cfcdc58ec48',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/21d48c9fb3df2bc4c00c1cfcdc58ec48',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/57299edf509b218aa9b4c4a2e1d979bd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/57299edf509b218aa9b4c4a2e1d979bd',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff0185e2163e03da79489140fee0d1/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c34397109dddf9ef82b4126d80f96fe2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c34397109dddf9ef82b4126d80f96fe2',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dbe61e60497b81fd8e9f4c8ec0f0391d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dbe61e60497b81fd8e9f4c8ec0f0391d',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffe1ce0c608a6cf88ba4e47f7b9c43/thumbnail.jpg'}],\n",
      "                'description': '15 x 13 x 1.7 millimeter, 1.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/14df2b4bec784038d5e9faeca8bb9a8a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/3db3f9d35709f12b8b8c278f7bc4ade3',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 1.7 millimeter, 1.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3db3f9d35709f12b8b8c278f7bc4ade3',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/587146dc3183b696c2caf9513d447c2f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 1.7 millimeter, 1.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/587146dc3183b696c2caf9513d447c2f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/a38ac5a75af19e15291e9d0c20b267bd',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 1.7 millimeter, 1.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/a38ac5a75af19e15291e9d0c20b267bd',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/a9e77762ee5eb8b67453bada18b43d95',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 1.7 millimeter, 1.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/a9e77762ee5eb8b67453bada18b43d95',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/af6b2e26893898b6045ccda204887c23',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 1.7 millimeter, 1.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/af6b2e26893898b6045ccda204887c23',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/ad6486c5-ee24-4c25-8c74-677ffb35a189'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/512108a2c671e73858834cb5a7b8db80',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '15 x 13 x 10 millimeter, 2 millimeter, 5 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/a767eb82765b1a96a69e6fe28b6a387d',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 56, BMI 45.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/a767eb82765b1a96a69e6fe28b6a387d',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/512108a2c671e73858834cb5a7b8db80',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 5,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/21041a0a5d4ad3301865f6b8078e15b8',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/a6a2fca893c7fd1b278ae8d018d28309',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a6a2fca893c7fd1b278ae8d018d28309',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'}],\n",
      "                'description': '15 x 13 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/21041a0a5d4ad3301865f6b8078e15b8',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/35ea9f0bb4222176a742a81f90d71265',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/35ea9f0bb4222176a742a81f90d71265',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/6b97d4b1a2c62e353b62b5dd14adfc05',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6b97d4b1a2c62e353b62b5dd14adfc05',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/7bcef4f44c6df17ae57867b0da56dc6a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/7bcef4f44c6df17ae57867b0da56dc6a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/8d1bd4f20f274559113a68786e9e0889',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8d1bd4f20f274559113a68786e9e0889',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/ad6486c5-ee24-4c25-8c74-677ffb35a189'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '18 x 14 x 4 millimeter, 1 millimeter, 4 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/6a3500763db1f3c39e5d6051e80e65eb',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 7/19/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 75',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/6a3500763db1f3c39e5d6051e80e65eb',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/1/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/51c13b07099ccf9652dd7a8ddd43e20e',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 4,\n",
      "  'sectionSize': 1,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/8f44ce0230f2613283574dcf200fb2c1',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0afb4197430ef0ab784ad1c05ebf2d20',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0afb4197430ef0ab784ad1c05ebf2d20',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3254bcd42f0c848264dfd3f5bae11f63',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3254bcd42f0c848264dfd3f5bae11f63',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3276a898aa3ee5afbaf3368e1c9eb996',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3276a898aa3ee5afbaf3368e1c9eb996',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/40144edd63197503022af31aca414cf0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/40144edd63197503022af31aca414cf0',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/672f9e800d9c1e1c96b4608c5540a2bc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/672f9e800d9c1e1c96b4608c5540a2bc',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6be7dbb6f69b340d11bb0df612e248eb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6be7dbb6f69b340d11bb0df612e248eb',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b444fe229aa21733d293f5edea2222bc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b444fe229aa21733d293f5edea2222bc',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cae0f2df92a91f95016e54fbc6a44a7e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cae0f2df92a91f95016e54fbc6a44a7e',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ddbb4bac05f3e8928ba1786a13e67824',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ddbb4bac05f3e8928ba1786a13e67824',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e6869e6d00b9f32dde78f63fa5f69c85',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e6869e6d00b9f32dde78f63fa5f69c85',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f0f74a24162e6d74006f4984f5d6a4fd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f0f74a24162e6d74006f4984f5d6a4fd',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f171da0cc422f54871e49df6d610fb2a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f171da0cc422f54871e49df6d610fb2a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '18 x 14 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8f44ce0230f2613283574dcf200fb2c1',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/232a490fe691c930da1c7f85f9563d72',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 14 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/232a490fe691c930da1c7f85f9563d72',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/24d5c8c5dfe02185d6affae7c1142bbb',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 14 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/24d5c8c5dfe02185d6affae7c1142bbb',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/600e249d9b950d28bdf05e458b9aa0e6',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 14 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/600e249d9b950d28bdf05e458b9aa0e6',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/80b28f07-c971-40f2-afc1-f7654359e5d9'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '5 x 10 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/6/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 66, BMI 29.1',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 10/3/2021, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/539d08c341db65d371ae0687bb314bb3',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/f44c3b95dd43a62f943f42442480f2b0',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/9fe24e50c8b8b77d86900ee4beecef69',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9fe24e50c8b8b77d86900ee4beecef69',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cd887a6beabc794992876ad7ee591f69',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cd887a6beabc794992876ad7ee591f69',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/63349325056ccff582f1d095055c7e12',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/63349325056ccff582f1d095055c7e12',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '5 x 10 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/f44c3b95dd43a62f943f42442480f2b0',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/cf4ba102-edf7-4fe4-bb1d-860cdf57609d'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 13 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/17ca4161891a617a8b49b942edf93272',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/10/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Female, Age 40',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/17ca4161891a617a8b49b942edf93272',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/10/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/57cac4cbeaa9612c03727decf3f10c6d',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/2214b8182a9bccbaf81b26e976778056',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/7c9e07c96d144536525b1f889acee14d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7c9e07c96d144536525b1f889acee14d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/898138b7f45a67c574e9955fb400e9be',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/898138b7f45a67c574e9955fb400e9be',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/34e7063ba681c9218a2566c3659abd26',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/34e7063ba681c9218a2566c3659abd26',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/db9e2006effe3168b4b4f28b96e65d34',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/db9e2006effe3168b4b4f28b96e65d34',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 13 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/2214b8182a9bccbaf81b26e976778056',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/bd004aeb-6e60-4d5b-8d40-cfdd55b8b6fe'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/5f8bd79354b14fc35466221b875bb030',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '18 x 10 x 2 millimeter, 0.3 millimeter, 8 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/dd258063b8389612a9596af734143906',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/23/2019, Elizabeth Neumann, '\n",
      "                           'TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 58, BMI 22.0',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/dd258063b8389612a9596af734143906',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Elizabeth Neumann, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/5f8bd79354b14fc35466221b875bb030',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 8,\n",
      "  'sectionSize': 0.3,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/e1210cfac4d4f750024aa22b876086ef',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/07317dfade92994d6fbbe9faef1236f7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/07317dfade92994d6fbbe9faef1236f7',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff36f62663dd35f9f884a2bcbcd5bf/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/21db4ec11c23c386ba10b91f2752f0a5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/21db4ec11c23c386ba10b91f2752f0a5',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3a8c40929d74f97c4c8d53ffc2dccaef',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3a8c40929d74f97c4c8d53ffc2dccaef',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/46fefadbd14d42b728d42b6323b2ff3f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/46fefadbd14d42b728d42b6323b2ff3f',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4e007bdd7364e4df6ddbb34f53d78c26',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4e007bdd7364e4df6ddbb34f53d78c26',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7ede2efa49ae0dc50c9cb8afb276ebe4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7ede2efa49ae0dc50c9cb8afb276ebe4',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff6ef1447f1780f058e111ace833cb/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a9fcc0db07e305327483471a7f219599',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a9fcc0db07e305327483471a7f219599',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c384f98d970bf191927a37d0b46ca3db',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 5/20/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c384f98d970bf191927a37d0b46ca3db',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d63f77a8a5b4c23a328f526517a52ff9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Nathan Patterson, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d63f77a8a5b4c23a328f526517a52ff9',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e1210cfac4d4f750024aa22b876086ef',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/385fbe5bd39031056fc0061bb68cfb9e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/385fbe5bd39031056fc0061bb68cfb9e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4131fa230cd783005c1a9d264ebe1c85',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4131fa230cd783005c1a9d264ebe1c85',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4310481af0883671149350a3b4e41481',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4310481af0883671149350a3b4e41481',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/865d4141bf425a337e1bbf74a8620bf5',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/865d4141bf425a337e1bbf74a8620bf5',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/b278e3c1bccde77eba16f09acced97a1',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b278e3c1bccde77eba16f09acced97a1',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/beec882a96aeea26f53531b7c37d9cd6',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/beec882a96aeea26f53531b7c37d9cd6',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e895e4ab99e921bf8ad8e9c78e3b027b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 10 x 0.3 millimeter, 0.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e895e4ab99e921bf8ad8e9c78e3b027b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/a92ad611-c3c6-43d9-bfd6-00ff906fa541'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/647db48ac7407caf7c3fb8ef0c6da12e',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '27 x 10 x 3 millimeter, 0.6 millimeter, 5 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/4021ec8b349b3eb2ddceef96dcd22251',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 46, BMI 22.3',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/4021ec8b349b3eb2ddceef96dcd22251',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/647db48ac7407caf7c3fb8ef0c6da12e',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 5,\n",
      "  'sectionSize': 0.6,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/6e8d1e8d0b489fc76e65caa32a37b36c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/9c4fa632bd097331cd36cdee6af3882f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9c4fa632bd097331cd36cdee6af3882f',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'}],\n",
      "                'description': '27 x 10 x 0.6 millimeter, 0.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6e8d1e8d0b489fc76e65caa32a37b36c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/fb9fc4c0a7560933c05b047b68b5851a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '27 x 10 x 0.6 millimeter, 0.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fb9fc4c0a7560933c05b047b68b5851a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/04dc36e29325f24c00a0aab1f6723f35',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '27 x 10 x 0.6 millimeter, 0.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/04dc36e29325f24c00a0aab1f6723f35',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/6be3f226035596412eecc5cd7a14a7f4',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '27 x 10 x 0.6 millimeter, 0.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6be3f226035596412eecc5cd7a14a7f4',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/c8d65b23ea4623f4fdc0fc30babadccf',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '27 x 10 x 0.6 millimeter, 0.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/c8d65b23ea4623f4fdc0fc30babadccf',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/b8a1b2bf-5cc2-49d3-810f-c2b7e06d2f8b'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/6585f87d93fe9621d151f0f225a8edc2',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '19 x 14 x 7 millimeter, 1.8 millimeter, 4 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab33ba540469ce7eea6ecc7a13b9075c',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 76, BMI 37.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ab33ba540469ce7eea6ecc7a13b9075c',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/6585f87d93fe9621d151f0f225a8edc2',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 4,\n",
      "  'sectionSize': 1.8,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/6669b4d0cc4089d5afb870a34909f2a1',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/1e9b9d5ac57ac8bd4093f2503675a2cd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 8/8/2024, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1e9b9d5ac57ac8bd4093f2503675a2cd',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2333ac18c566d51749e00cc0d3f9d4dc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2333ac18c566d51749e00cc0d3f9d4dc',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/23f3245f31fcbd011b3efc0bc5f98fc4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/23f3245f31fcbd011b3efc0bc5f98fc4',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffb49600c8665cb7311a683af11d60/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/33d97c8a3d600c8e470701e83814c7d5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/33d97c8a3d600c8e470701e83814c7d5',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3bb0a1651d75a53e69019812acd9d1a0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3bb0a1651d75a53e69019812acd9d1a0',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/46ed471a6b4ad5b97817ff2c26ef6ddd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/46ed471a6b4ad5b97817ff2c26ef6ddd',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4a1f8f0e22cf184574896ee1005c01c7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4a1f8f0e22cf184574896ee1005c01c7',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff402e4416b25c23b63617b6ad75a1/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4aa1e2cbdb791f7e0e75f84b1d103603',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4aa1e2cbdb791f7e0e75f84b1d103603',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/526f2ce15a269e8cc0bec284652f013a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/526f2ce15a269e8cc0bec284652f013a',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/64843d72299106e9516f118f00d2ff63',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/64843d72299106e9516f118f00d2ff63',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6561d1c623a06c49ed5ecd68cb28cd15',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6561d1c623a06c49ed5ecd68cb28cd15',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/674992adc38b332d2cc712f6ab11de0d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/674992adc38b332d2cc712f6ab11de0d',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/863087eaf54ad0adb8ac3293ffe2835b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/863087eaf54ad0adb8ac3293ffe2835b',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a1f4e76b01cc2083c330b8c2edc0379b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a1f4e76b01cc2083c330b8c2edc0379b',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a366efda63b787573f33e6cb21a96c35',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a366efda63b787573f33e6cb21a96c35',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/abe595c777beba0e9d431a736090eaf7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/abe595c777beba0e9d431a736090eaf7',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bb5d13a59ac4b06233ef5d31f09358e4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bb5d13a59ac4b06233ef5d31f09358e4',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bf39a0453fc60bd9ac0f25ca5f05bbb9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bf39a0453fc60bd9ac0f25ca5f05bbb9',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d8071cf5f2f01d3086bdec5170a1f598',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d8071cf5f2f01d3086bdec5170a1f598',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e42aa6edcd13c215fd4efadeeaafa50a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e42aa6edcd13c215fd4efadeeaafa50a',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e668d411d3ca15f66abaec7af3dba23e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e668d411d3ca15f66abaec7af3dba23e',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fcbf9b482c890b254e6f63f313e15381',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fcbf9b482c890b254e6f63f313e15381',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '19 x 14 x 1.8 millimeter, 1.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6669b4d0cc4089d5afb870a34909f2a1',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/6256c6c18f7949ca0cb43a8b4a65de8d',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 14 x 1.8 millimeter, 1.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6256c6c18f7949ca0cb43a8b4a65de8d',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/74af1630092cdd2c51dda2f21510acbb',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 14 x 1.8 millimeter, 1.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/74af1630092cdd2c51dda2f21510acbb',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9c28c5b30c99edd66de3edb737fe9088',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 14 x 1.8 millimeter, 1.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9c28c5b30c99edd66de3edb737fe9088',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/28769c20-7852-48e9-8579-d06ce74bb2cd'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/682ab44e00e97bd81b17b0004601c8da',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '15 x 10 x 6 millimeter, 0.7 millimeter, 9 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/95a493ab959cc164a14d47fc61474d18',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 55, BMI 30.0',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/95a493ab959cc164a14d47fc61474d18',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/682ab44e00e97bd81b17b0004601c8da',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 9,\n",
      "  'sectionSize': 0.7,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/8b4bd2c85d9140edb916ca554c9c92ae',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0066713ca95c03c52cb40f90ce8bbdb8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0066713ca95c03c52cb40f90ce8bbdb8',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0678e3fbd4a0d199070da525283a4fbb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0678e3fbd4a0d199070da525283a4fbb',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0eadc4c1d07019f1ab7d5f36944eaae2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0eadc4c1d07019f1ab7d5f36944eaae2',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/13a777a08bebe0bc9430485cc168eb26',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/13a777a08bebe0bc9430485cc168eb26',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1e259bab8974d0cc99756d8808997871',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1e259bab8974d0cc99756d8808997871',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2bca29d0a69634ff77027bba05c6f062',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2bca29d0a69634ff77027bba05c6f062',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/36cf6f5e49322c68cc5b7b75ab08a9c4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/36cf6f5e49322c68cc5b7b75ab08a9c4',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/481cac812a838c79a369b9c2e824d891',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/481cac812a838c79a369b9c2e824d891',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/622751cc69cbb112f5a29f376bf41d9e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/622751cc69cbb112f5a29f376bf41d9e',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7174f4426fd32c8f01490f4052fd272e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7174f4426fd32c8f01490f4052fd272e',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/72df29bb9719ef61e64e8a4688f97802',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/72df29bb9719ef61e64e8a4688f97802',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7b13bad627d0991c2ffaa3a3627d56af',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7b13bad627d0991c2ffaa3a3627d56af',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8b1899e45885bf616c2288f21b64c172',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8b1899e45885bf616c2288f21b64c172',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9d5698266ed4f019a7dbe5dae224a293',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9d5698266ed4f019a7dbe5dae224a293',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c639de3e6a6f068b4aa67af881111b5e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c639de3e6a6f068b4aa67af881111b5e',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8b4bd2c85d9140edb916ca554c9c92ae',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 9},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/54896779028faeb59ae2e61af247b108',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/54896779028faeb59ae2e61af247b108',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/6d8eab142c2cbda9b3d51abad3c2712c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6d8eab142c2cbda9b3d51abad3c2712c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/7b90d808f99a3ecd7b472c680dab7de9',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/7b90d808f99a3ecd7b472c680dab7de9',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/803027c3b2e8c386b5ce29e956ef6f7d',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/803027c3b2e8c386b5ce29e956ef6f7d',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ccc165df46003a9f333dfd040928b698',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ccc165df46003a9f333dfd040928b698',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/de157c9797db5a28204c6fdffa8fd111',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/de157c9797db5a28204c6fdffa8fd111',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e15151aa24a058def7f71e243e72a907',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e15151aa24a058def7f71e243e72a907',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e9ad510f942bf3aeadb47e0ded838da9',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e9ad510f942bf3aeadb47e0ded838da9',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/24ce75c0-6272-4a15-82ff-ab5e023bb771'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/6890cd54f99e6396694e64ee2bb53b3c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '16 x 12 x 5 millimeter, 1 millimeter, 5 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/c16891deebece9ef23d7f7c13c81b671',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 38, BMI 42.3',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/c16891deebece9ef23d7f7c13c81b671',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/6890cd54f99e6396694e64ee2bb53b3c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 5,\n",
      "  'sectionSize': 1,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/07c561fcaa3dddb745d503320f8d136c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/48ca66f487e345342eda4972e0d639c6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/48ca66f487e345342eda4972e0d639c6',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'}],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/07c561fcaa3dddb745d503320f8d136c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/f7843e1f34ac19d00b6271d636e7a5ec',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/f7843e1f34ac19d00b6271d636e7a5ec',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/fa820a141aace7e8c2740b9f122955c7',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fa820a141aace7e8c2740b9f122955c7',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/7a0715916cc5f9be96fd5cdaa2f4152f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/7a0715916cc5f9be96fd5cdaa2f4152f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ae5e2335c953b9d853a5f6945a2d6e47',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 12 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ae5e2335c953b9d853a5f6945a2d6e47',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/3022bdb2-5548-4d64-8c20-139999148d67'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/6af94c048315d5b7b8997229dbb48f1a',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '35 x 19 x 3 millimeter, 1 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/2510644405f4e7fd86d31af0001b840f',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 56, BMI 32.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/2510644405f4e7fd86d31af0001b840f',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/6af94c048315d5b7b8997229dbb48f1a',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 1,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/23d7ccceedf7f53f3a557ef5bf8e7aa8',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/08d2245110a7f75bd7adade421b38a18',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/08d2245110a7f75bd7adade421b38a18',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2559aaa54e246c44931642554b07339d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2559aaa54e246c44931642554b07339d',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/25cf11d0d57bb87f57b03f4cb0c70647',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/25cf11d0d57bb87f57b03f4cb0c70647',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/546b59bd62a6c58307d439009ef76cbe',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/546b59bd62a6c58307d439009ef76cbe',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5fa3e7f3022701f3033ce62bfd7cb5cc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5fa3e7f3022701f3033ce62bfd7cb5cc',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6f7a2766c508d50c4ff055ca31786149',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6f7a2766c508d50c4ff055ca31786149',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a78f4685d4c3262ce3153478725abe27',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a78f4685d4c3262ce3153478725abe27',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b4ad748b0aa9cb29b24ec3be16777a5a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b4ad748b0aa9cb29b24ec3be16777a5a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ebec43b391090f63094341f6e0aca6f2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ebec43b391090f63094341f6e0aca6f2',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f60472f5a2d8b717237ef9a9a535703d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f60472f5a2d8b717237ef9a9a535703d',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '35 x 19 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 8/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/23d7ccceedf7f53f3a557ef5bf8e7aa8',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/181054336c7f9365a751d212cf98fa81',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 8/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/181054336c7f9365a751d212cf98fa81',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/b75b684c35ca8c952446a56b785599ef',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 8/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b75b684c35ca8c952446a56b785599ef',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/43a81423-74d2-4803-a805-d745093c2376'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 3 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/dfd0352b60504b321899f738c860e3fc',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 11/30/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Female, Age 57',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/dfd0352b60504b321899f738c860e3fc',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/10/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/7007f3154a610f88a61c268890f14ee4',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/912200e143372d15f18ed831dd31c351',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/dd7ccbc306692fc5ff5e61c22845da21',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dd7ccbc306692fc5ff5e61c22845da21',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'Washington University Kidney TMC',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bfa9c4267a38dd190adbaf134364e876',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bfa9c4267a38dd190adbaf134364e876',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 3 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/912200e143372d15f18ed831dd31c351',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/72ea5aad-4be7-4478-afc0-7736bc0d90e3'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 3 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/d876de578e9d8c2ce2dcd7c1bbb00681',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 11/30/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Male, Age 65',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/d876de578e9d8c2ce2dcd7c1bbb00681',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/9/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/726d0ab1980e05cd349766bcd9577315',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/3e2e3022f6c72762d1d4e809523eea75',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/fae9a1f2e7abefca2203765a3c7a5ba1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fae9a1f2e7abefca2203765a3c7a5ba1',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'Washington University Kidney TMC',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/180dd06ae35a0fc771f0afe5deefcf23',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/180dd06ae35a0fc771f0afe5deefcf23',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 3 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3e2e3022f6c72762d1d4e809523eea75',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/29e439fb-cfec-4c2d-a14e-3bc60eb8e255'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/7697e16bf3f778036b56ca8aec068ae9',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '15 x 10 x 6 millimeter, 3 millimeter, 2 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/95a493ab959cc164a14d47fc61474d18',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 55, BMI 30.0',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/95a493ab959cc164a14d47fc61474d18',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/7697e16bf3f778036b56ca8aec068ae9',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 2,\n",
      "  'sectionSize': 3,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/6990af03a9b862107ecc0e9974200987',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/1700b79939183b208c6d45fde6891002',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI',\n",
      "                              'label': 'Registered 8/16/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1700b79939183b208c6d45fde6891002',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/668696f4e28f915660ced60785ce800f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/668696f4e28f915660ced60785ce800f',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b2c7a142d1a88af612af7db3f64fb300',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b2c7a142d1a88af612af7db3f64fb300',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e3a1f6730a6b61e40272b1d294b3b6ce',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e3a1f6730a6b61e40272b1d294b3b6ce',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '15 x 10 x 3 millimeter, 3 millimeter, block',\n",
      "                'label': 'Registered 6/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6990af03a9b862107ecc0e9974200987',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/a518a6617f98d3668b29bbc45b3aa7d1',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 10 x 3 millimeter, 3 millimeter, block',\n",
      "                'label': 'Registered 6/30/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/a518a6617f98d3668b29bbc45b3aa7d1',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/24ce75c0-6272-4a15-82ff-ab5e023bb771'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '16 x 14 x 10 millimeter, 3.3 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/29acab642ac8c208b8b08ccc2b5f78db',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 8/11/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 20',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/29acab642ac8c208b8b08ccc2b5f78db',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/28/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/7a766b9b083a02d3f2a6cef68d1240e5',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 3.3,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/018b0b05944af844bf28ebb1059b2429',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/05473e0ef355dc349f32dd3e6bce828d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/05473e0ef355dc349f32dd3e6bce828d',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0aec1326f47254fd3bdddfd74bfd17f8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0aec1326f47254fd3bdddfd74bfd17f8',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1ecea90835e01feccb855a188d010116',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1ecea90835e01feccb855a188d010116',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3a9e76a8a821f52ae68508ebb86c4b66',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3a9e76a8a821f52ae68508ebb86c4b66',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3aaa0b6d2fac29e1a9785414699a2f04',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3aaa0b6d2fac29e1a9785414699a2f04',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6539b8498c511f8541415d1078b5a740',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6539b8498c511f8541415d1078b5a740',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8e6ab08466018c9ec0db2cd5dd9bb198',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8e6ab08466018c9ec0db2cd5dd9bb198',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a672cd1e2665fe9684d61574338ee138',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a672cd1e2665fe9684d61574338ee138',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c3b260bb464f63985e8a4d162fcec178',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c3b260bb464f63985e8a4d162fcec178',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cbcb20f064d7dc46673a9cf5dcb4a364',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cbcb20f064d7dc46673a9cf5dcb4a364',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e1e95b98f5ae08019c9c6950722a5421',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e1e95b98f5ae08019c9c6950722a5421',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f0d80ca8548d5d394e42a4fb33b389f5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f0d80ca8548d5d394e42a4fb33b389f5',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '16 x 14 x 3.3 millimeter, 3.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/18/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/018b0b05944af844bf28ebb1059b2429',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/8f83aef4bbd8fd29c81a7f895debbf5c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 14 x 3.3 millimeter, 3.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/18/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8f83aef4bbd8fd29c81a7f895debbf5c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ee1c2f463655f76952688f900fccc30c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '16 x 14 x 3.3 millimeter, 3.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/18/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ee1c2f463655f76952688f900fccc30c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/19a9f5af-c334-4e5d-a5f8-4ac2128d0eb5'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/82f8ca025a918872d7b3bec389e3b9e7',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '20 x 10 x 7 millimeter, 0.8 millimeter, 9 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/4fd86bb6db7349c82d7bd50af5504a66',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 44, BMI 48.2',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/4fd86bb6db7349c82d7bd50af5504a66',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/82f8ca025a918872d7b3bec389e3b9e7',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 9,\n",
      "  'sectionSize': 0.8,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/5bc8481c821b5241f22de9b6237cbb81',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/29030bd1d340fece52eca13654bc6de2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/29030bd1d340fece52eca13654bc6de2',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/489a9c1c01dcacb035ad1c71acf800d8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/489a9c1c01dcacb035ad1c71acf800d8',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5c870cd9a3f53cd42fd28b35d815f002',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5c870cd9a3f53cd42fd28b35d815f002',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6b93107731199733f266bbd0f3bc9747',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6b93107731199733f266bbd0f3bc9747',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/777b803ea5e8086d638a1ab6a36a342d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/777b803ea5e8086d638a1ab6a36a342d',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/800a4c3d2cab9d93c4c9721b1efbda8a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/800a4c3d2cab9d93c4c9721b1efbda8a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9100ad521113c5e71ff9d7186bd4b275',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9100ad521113c5e71ff9d7186bd4b275',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a9ee902a06297d3d126d031b4b59259b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a9ee902a06297d3d126d031b4b59259b',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e1c4370da5523ab5c9be581d1d76ca20',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: DESI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'Purdue TTD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e1c4370da5523ab5c9be581d1d76ca20',\n",
      "                              'technology': 'DESI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e341e0839f049c87c86cc688d2a7acef',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e341e0839f049c87c86cc688d2a7acef',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f81211993187932669dc9fdae5bd5efd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f81211993187932669dc9fdae5bd5efd',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 9/3/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/5bc8481c821b5241f22de9b6237cbb81',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 9},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/0528598cebd01a090a5ea020de5e4c2b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/0528598cebd01a090a5ea020de5e4c2b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/30d698d895913e4e0d604ff77e42696e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/30d698d895913e4e0d604ff77e42696e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/367f15ce9b8c67fdaef92239f62998a0',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 9/3/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/367f15ce9b8c67fdaef92239f62998a0',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4b8d949008e25870b22d46e3c17febad',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4b8d949008e25870b22d46e3c17febad',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/6495cc837cd5c73060fadfa765cb7f12',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 9/3/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6495cc837cd5c73060fadfa765cb7f12',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/7e78b3aeedc4db45ba0817d7eadd3963',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 9/3/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/7e78b3aeedc4db45ba0817d7eadd3963',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/aba1e334e4c424d311796ac341356854',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/aba1e334e4c424d311796ac341356854',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d991674e4df49ec614deca037ee3c2d0',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 10 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d991674e4df49ec614deca037ee3c2d0',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/ddbe72b3-09e3-48dc-9a75-e5ed70e12a01'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 10 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/a4fb1606c5e3c491b5880862b48fafc5',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/10/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Male, Age 41',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/a4fb1606c5e3c491b5880862b48fafc5',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/10/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/940f8fa7e80db959e52b7c0506981e7a',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/22d68b9fea5b0149ecf2005c115b3270',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/3c1b10bc912c60c9afc36b7423695236',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3c1b10bc912c60c9afc36b7423695236',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b05c21f9c94ce1a22a9694cd0fe0291e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b05c21f9c94ce1a22a9694cd0fe0291e',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3a0a396f8972113cc393169a9f8e5696',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3a0a396f8972113cc393169a9f8e5696',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7836f1c899015976a0fee6c1f6c03963',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7836f1c899015976a0fee6c1f6c03963',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 10 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/22d68b9fea5b0149ecf2005c115b3270',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/f3f2fabb-6802-4fd4-920e-1914293db252'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/973161d3138555f8705d9fcbbcedd144',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '27 x 10 x 3 millimeter, 1.5 millimeter, 2 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/4021ec8b349b3eb2ddceef96dcd22251',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 46, BMI 22.3',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/4021ec8b349b3eb2ddceef96dcd22251',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/973161d3138555f8705d9fcbbcedd144',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 2,\n",
      "  'sectionSize': 1.5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/9b026c837e86d58e36568f1e799c9fbb',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/7fb0d37cb45c6df057e6b7bb8375b6eb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7fb0d37cb45c6df057e6b7bb8375b6eb',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a46d59dff0c4e55904fd81785b51c188',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a46d59dff0c4e55904fd81785b51c188',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab3a2dac80a1025d8a76d629abb6280f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ab3a2dac80a1025d8a76d629abb6280f',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d04a1abdf3546caf1896f0d9923027db',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d04a1abdf3546caf1896f0d9923027db',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f51cd6fbc9f941a522addc9bd808a554',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f51cd6fbc9f941a522addc9bd808a554',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ff4d66df64034345263267a907db8ad2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ff4d66df64034345263267a907db8ad2',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/38aa877c34c03cc35fd8ec12992105d0',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/38aa877c34c03cc35fd8ec12992105d0',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5609712b0e4661c2ae70653c5eeec02b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5609712b0e4661c2ae70653c5eeec02b',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6344050b82c0b5dead1111bc3dd1cb73',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6344050b82c0b5dead1111bc3dd1cb73',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/63e9cd5dc1afe596834076bc860e5023',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/63e9cd5dc1afe596834076bc860e5023',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '27 x 10 x 1.5 millimeter, 1.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9b026c837e86d58e36568f1e799c9fbb',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/fc30f7aa00b8684be723251031f9e4fc',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '27 x 10 x 1.5 millimeter, 1.5 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fc30f7aa00b8684be723251031f9e4fc',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/b8a1b2bf-5cc2-49d3-810f-c2b7e06d2f8b'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 10 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/113abb6e3391c3e73972bb6bbe147687',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/10/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Male, Age 78',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/113abb6e3391c3e73972bb6bbe147687',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/10/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/9af60cec8d8411323f601d13896c4601',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/e5f178925578b366af74c059b89d1f32',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/5a5ca03fa623602d9a859224aa40ace4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5a5ca03fa623602d9a859224aa40ace4',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5ee240959c96b49d960702755478b9fc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5ee240959c96b49d960702755478b9fc',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e16384faf175ed7196aa262f5c602275',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e16384faf175ed7196aa262f5c602275',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f31df7345e5d56154ba469c6d5c477b3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f31df7345e5d56154ba469c6d5c477b3',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 10 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e5f178925578b366af74c059b89d1f32',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/c07ec91d-9dbe-4132-a93c-b960895b009d'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/9d1412bb63341df32e4851693cbfe409',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '33 x 23 x 4 millimeter, 4 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/14fe19053a863e17b397bf4acb465c03',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 56, BMI 27.7',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/14fe19053a863e17b397bf4acb465c03',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/9d1412bb63341df32e4851693cbfe409',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 4,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/c274ac9e2a3a024415e3ce764511a5fb',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/24f208969655ba4ede761fb2be1eb400',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/24f208969655ba4ede761fb2be1eb400',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/484b359a4b9d4e370f52c4c3fef782a3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 8/8/2024, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/484b359a4b9d4e370f52c4c3fef782a3',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/60ed8e03152b51d5d9c8fc04e20fa5e3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/60ed8e03152b51d5d9c8fc04e20fa5e3',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6af66ea5090a7ff3ff77de02d47f8f32',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6af66ea5090a7ff3ff77de02d47f8f32',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6e7ba37ff1f480f2bfa8c5d29df2a3c1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6e7ba37ff1f480f2bfa8c5d29df2a3c1',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8d8df70aa94be7f65283d7f3cdc05553',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8d8df70aa94be7f65283d7f3cdc05553',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff60e2a2b4d0180355a87dbf975f4b/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8f528475e216c283851e6941841d7173',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8f528475e216c283851e6941841d7173',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff651fc450302743eb43e005dcf42c/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a11fe9d14122d4254acfefc9bf9faae4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a11fe9d14122d4254acfefc9bf9faae4',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '33 x 23 x 4 millimeter, 4 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/c274ac9e2a3a024415e3ce764511a5fb',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/812d2c8e-557a-48b9-8780-a5c1f53008cb'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '3 x 6 x 2 millimeter, 1 millimeter, 2 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/e3d3717ad581030c03bed6641d76e088',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 11/29/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Female, Age 55',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/e3d3717ad581030c03bed6641d76e088',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/9/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/9d5baa31d4a9a6a43d7e3ba07bc3b36c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 2,\n",
      "  'sectionSize': 1,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/72e1fcc1caa93ae48cdd4bb7c988696b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0a21f3fa27109790483f2a0729be53de',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0a21f3fa27109790483f2a0729be53de',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2cd4eabca0b653af7f3b79534b2d641f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2cd4eabca0b653af7f3b79534b2d641f',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c1a0c043d0a986d71552091cc1b09742',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c1a0c043d0a986d71552091cc1b09742',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d1af36911148fdd7001fd4eebe7222f1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d1af36911148fdd7001fd4eebe7222f1',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5bf1e7b295343c4537206beda25aa4ca',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 2/16/2023, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5bf1e7b295343c4537206beda25aa4ca',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/74c2dc4a46ea54e64287d80d04d15959',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/74c2dc4a46ea54e64287d80d04d15959',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '3 x 6 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/72e1fcc1caa93ae48cdd4bb7c988696b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e0fc4b3f3ff69fbd752cc0adb2ffaf41',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 6 x 1 millimeter, 1 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e0fc4b3f3ff69fbd752cc0adb2ffaf41',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/e88dfa31-cb6b-4eaa-b16c-e5c97de2701e'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '18 x 19 x 13 millimeter, 1.6 millimeter, 8 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ca10ede410dee22a4eb8a1f8cbbd526b',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 9/30/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 43',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ca10ede410dee22a4eb8a1f8cbbd526b',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 8/1/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/a1b167178431608b253c4a07ae18e5d9',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 8,\n",
      "  'sectionSize': 1.6,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/27278aff3d097d0f4aaceced27594f98',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0f3894d45b772804de43137fa8c353ed',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0f3894d45b772804de43137fa8c353ed',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3af85031cea5b0c772212855550cc3b1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3af85031cea5b0c772212855550cc3b1',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6a0522bf6f1e7207516b04c8f3399a28',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6a0522bf6f1e7207516b04c8f3399a28',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d3e05111d84be552b98f5fe2b18e3054',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d3e05111d84be552b98f5fe2b18e3054',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff3802683563849fdffc49c4b86a68/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d55e751748bd094ff5b0b55befb08d41',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d55e751748bd094ff5b0b55befb08d41',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff90a7bd9f5c759ad4f9d7c64f0df1/thumbnail.jpg'}],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/27278aff3d097d0f4aaceced27594f98',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/fbd7d492d26e3c942724c846264d0639',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fbd7d492d26e3c942724c846264d0639',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/15cf002c8958a984f0a1cfa9b83bbdbb',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/15cf002c8958a984f0a1cfa9b83bbdbb',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/2484fdccabd3b3fcd65c7ddb6a18d4e6',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/2484fdccabd3b3fcd65c7ddb6a18d4e6',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/2e8e6bd2a9b5863544e401fcff72086d',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/2e8e6bd2a9b5863544e401fcff72086d',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/5b370f667e0f513e103b8142babdbca2',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/5b370f667e0f513e103b8142babdbca2',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/8f6704c3593a9e3fb8b27a6615d972ab',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8f6704c3593a9e3fb8b27a6615d972ab',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9e92abf56c190dbd3cfb871fb75d97cc',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '18 x 19 x 1.6 millimeter, 1.6 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9e92abf56c190dbd3cfb871fb75d97cc',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/8ae7c9f9-b138-4b44-8aaf-944b7544ff8a'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/a6255c16876d9c9d6229414c59fff534',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '35 x 19 x 3 millimeter, 0.4 millimeter, 7 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/2510644405f4e7fd86d31af0001b840f',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 56, BMI 32.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/2510644405f4e7fd86d31af0001b840f',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/a6255c16876d9c9d6229414c59fff534',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 7,\n",
      "  'sectionSize': 0.4,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/c74d7b7f70dd282b63479c5c2946b178',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0d1f7b2917325a7778ffecacb7ddba6f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0d1f7b2917325a7778ffecacb7ddba6f',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff7e53df1abd1912ad327b69fe6811/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/38ba22b0a2bdace0d0dd7504cbe15aae',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/38ba22b0a2bdace0d0dd7504cbe15aae',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff723af9f738f9f5b3e7d0a7099237/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/85321aa2068ca42b642e8047ca28c7f8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/85321aa2068ca42b642e8047ca28c7f8',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/943437ad47a767c326ac09d49cab9542',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/943437ad47a767c326ac09d49cab9542',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9475d52f85b513caaa5359232b2cdb96',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 5/20/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9475d52f85b513caaa5359232b2cdb96',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b4c8ef4fdbc94b884e8f3251ac9143bd',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Nathan Patterson, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b4c8ef4fdbc94b884e8f3251ac9143bd',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bac66031d4174fed53c8097fbba52ad3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bac66031d4174fed53c8097fbba52ad3',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '35 x 19 x 0.4 millimeter, 0.4 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/c74d7b7f70dd282b63479c5c2946b178',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/76ff3077c620ba99a6d6066561ae0809',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 0.4 millimeter, 0.4 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/76ff3077c620ba99a6d6066561ae0809',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/7f39164c67466863a43f36266617a809',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 0.4 millimeter, 0.4 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/7f39164c67466863a43f36266617a809',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/80b9ea5f273d1b3493b827f9a63b647b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 0.4 millimeter, 0.4 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/80b9ea5f273d1b3493b827f9a63b647b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/8ccb9e769367f41d26ae71614f8d83f5',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 0.4 millimeter, 0.4 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8ccb9e769367f41d26ae71614f8d83f5',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/c39c2c4b241994f61142107c83d27047',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 0.4 millimeter, 0.4 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/c39c2c4b241994f61142107c83d27047',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ec97ad1a5acfecbd1b3a2d13c03f888e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '35 x 19 x 0.4 millimeter, 0.4 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 5/14/2021, Nathan Patterson, '\n",
      "                         'TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ec97ad1a5acfecbd1b3a2d13c03f888e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/43a81423-74d2-4803-a805-d745093c2376'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 4 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/e742ac485a0614e4114a26886ed0b444',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 10/15/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Female, Age 69, BMI 49.1',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/e742ac485a0614e4114a26886ed0b444',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 10/3/2021, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/b6293bba61e3956b6546f4e6f47c8c3c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/50155b047e2cdd14ab01ff98a537ef94',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/5039cf8619f6f8b5b4a14af1037e1d1f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5039cf8619f6f8b5b4a14af1037e1d1f',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7646a8a89555a123a56446b66c183d58',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7646a8a89555a123a56446b66c183d58',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fa6d9c732c7f239422ec6b357136fcd4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fa6d9c732c7f239422ec6b357136fcd4',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 4 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 10/16/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/50155b047e2cdd14ab01ff98a537ef94',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/8d126897-60f6-433e-a56b-cbe730475742'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '20 x 19 x 15 millimeter, 5 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ca8737a61a931bade511b710aed96098',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 7/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 66',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ca8737a61a931bade511b710aed96098',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/10/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/b75c8960ab33efccd30b648e5bb24d9d',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/51b7ba98e29912ee53fddfdc66115957',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/223ce3515c5f6521b64ef25a66789a51',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/223ce3515c5f6521b64ef25a66789a51',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3d7dcf330f063c3dbf95bfc9344b9b5c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3d7dcf330f063c3dbf95bfc9344b9b5c',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/51b073cad8969e00d3c7d9ad619b6e6a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/51b073cad8969e00d3c7d9ad619b6e6a',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/55efaa6d929f5b825f26d235599277f3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/55efaa6d929f5b825f26d235599277f3',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/58405f1a2ce02ec61cc62ea93c38b2c9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/58405f1a2ce02ec61cc62ea93c38b2c9',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6b00e22e4baed73b300ae3c0fd4b4fe5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6b00e22e4baed73b300ae3c0fd4b4fe5',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/954f6b1f0af72c8fc456d8c037cdd4f6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/954f6b1f0af72c8fc456d8c037cdd4f6',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b7769d3a863a0c63bfad6815c76404be',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b7769d3a863a0c63bfad6815c76404be',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d0217373723f80f921ebea887f9681a1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d0217373723f80f921ebea887f9681a1',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d57236785ced226e21633f44d5e34431',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d57236785ced226e21633f44d5e34431',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dbc5beb00b135b97b1c5df4789909b7d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dbc5beb00b135b97b1c5df4789909b7d',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e7d9a08663b71b57d5b377f55a4a8e29',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e7d9a08663b71b57d5b377f55a4a8e29',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '20 x 19 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/25/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/51b7ba98e29912ee53fddfdc66115957',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/7656847256a5ea7e1394541f6e41969c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 19 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/25/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/7656847256a5ea7e1394541f6e41969c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ac701d445a1f5dcad3f3a5823fc9863e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '20 x 19 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/25/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ac701d445a1f5dcad3f3a5823fc9863e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/38ed99d5-8763-449a-b188-d20f8a7db31a'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 2 x 2 millimeter, 0.2 millimeter, 10 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/6/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 66, BMI 29.1',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/8/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/bb913eb294e5694b7cb57e5916e99706',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 10,\n",
      "  'sectionSize': 0.2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/45a7a85ca5fcd5ef97e50b304624e5a7',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/39e55aa4b6953651230feff506c00fec',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/39e55aa4b6953651230feff506c00fec',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/51bc718e411810044e4258dae80ff044',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/51bc718e411810044e4258dae80ff044',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5908774e08f8a32737cdfe70e868a944',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5908774e08f8a32737cdfe70e868a944',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/634511b7c63c16cfb51dc867c65cfc91',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/634511b7c63c16cfb51dc867c65cfc91',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6b5d4d3a6af69a3bb82c4768cd24396c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6b5d4d3a6af69a3bb82c4768cd24396c',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/74e09cbb91aba06b48429651cb388940',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/74e09cbb91aba06b48429651cb388940',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9543f0b5e921d865e57a9fe3e4e62f4e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9543f0b5e921d865e57a9fe3e4e62f4e',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/985b97a1645baa3d7dffd4c0e13adbb6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/985b97a1645baa3d7dffd4c0e13adbb6',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9bc5d8fc743fd4dd610586ca720976f1',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9bc5d8fc743fd4dd610586ca720976f1',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a39f501df340b605a58dc492f51c05db',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a39f501df340b605a58dc492f51c05db',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ad312fba7d484a57f4a9b0d05977b521',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ad312fba7d484a57f4a9b0d05977b521',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dc535e26fd17b8286a57d6dcd734c648',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dc535e26fd17b8286a57d6dcd734c648',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f88e96675a3215474570083edad66e0c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f88e96675a3215474570083edad66e0c',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0ddcb561cbe33f166b141410b94feb5c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 2/16/2023, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0ddcb561cbe33f166b141410b94feb5c',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1e9014699d8452a281588dc4d2515d1a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1e9014699d8452a281588dc4d2515d1a',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2fc79a0ddab0e95d5935b3234f5cf372',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2fc79a0ddab0e95d5935b3234f5cf372',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/410d5aa19fb98abaef973a280894b31a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/410d5aa19fb98abaef973a280894b31a',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/49da1b0446f9d2533f7c74b7b1ec6754',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/49da1b0446f9d2533f7c74b7b1ec6754',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5375b8c6a773017052517bfdc0e042cc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5375b8c6a773017052517bfdc0e042cc',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/69b3d856a476114c1819287d0d688387',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/69b3d856a476114c1819287d0d688387',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7654bacb99511aaaa669bf4e623b5baf',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7654bacb99511aaaa669bf4e623b5baf',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8021811b71034bd0d5067fbbf1376517',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 2/16/2023, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8021811b71034bd0d5067fbbf1376517',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b5387a565365d5e943d444917f8c9661',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b5387a565365d5e943d444917f8c9661',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0bcea0ab24e8bc5b0529b6f4d899ddad',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0bcea0ab24e8bc5b0529b6f4d899ddad',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0db9481caed92aec4cddc606108692d5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0db9481caed92aec4cddc606108692d5',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/13d882fbeae970f8fb08a6f0b76bf127',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/13d882fbeae970f8fb08a6f0b76bf127',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2107df00633f703d39e1ec74c271a9e5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2107df00633f703d39e1ec74c271a9e5',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2bd350c08997ecfec9c22f453cf4e6af',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2bd350c08997ecfec9c22f453cf4e6af',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2c84a86ab51ec3a1168d8ba573d32c0a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2c84a86ab51ec3a1168d8ba573d32c0a',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/35234b5e3eda236bb80ef3722da366f7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/35234b5e3eda236bb80ef3722da366f7',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/45a7a85ca5fcd5ef97e50b304624e5a7',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 10},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/00f6c197a8e802097cdb78cc2a1c6bc6',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/00f6c197a8e802097cdb78cc2a1c6bc6',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/1d74e463b20ff587e01762d2490283b0',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/1d74e463b20ff587e01762d2490283b0',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/59cc662c50841b742877f04b02b3ce11',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/59cc662c50841b742877f04b02b3ce11',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/69dae161de204ab790321a3617083aee',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/69dae161de204ab790321a3617083aee',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/6b0328398464a13cd31076283da5ddbe',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/6b0328398464a13cd31076283da5ddbe',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/7e2c4ef70bd06a1d89e7ec91587b44e9',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/7e2c4ef70bd06a1d89e7ec91587b44e9',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/87628ba79a2d50459e55258de4b7b28b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/87628ba79a2d50459e55258de4b7b28b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/af7ba388bfa0bffae56a0bf0539d1165',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/af7ba388bfa0bffae56a0bf0539d1165',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/b026cf619c7bc1a4399f794447c1945f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '2 x 2 x 0.2 millimeter, 0.2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b026cf619c7bc1a4399f794447c1945f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 9}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/37283102-d963-4639-8834-4813fbb3c247'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '3 x 5 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/7525aa868f2f7d2508f0e24b18a2b1b0',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 11/30/2021, Amanda Knoten, TMC-UCSD',\n",
      "            'label': 'Male, Age 56',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/7525aa868f2f7d2508f0e24b18a2b1b0',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/9/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/bc7d5947e9913136c91776544a0f52d8',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/e1370ef04a17eeed73287502450da02d',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/fe0ded5fc0355c95239f9c040dd31e99',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fe0ded5fc0355c95239f9c040dd31e99',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f70d71db827901040b76926a9116bcb2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f70d71db827901040b76926a9116bcb2',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '3 x 5 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e1370ef04a17eeed73287502450da02d',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/7f7fe1b0-d9f6-48c2-a304-2ea5874c7392'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '30 x 10 x 25 millimeter, 8.3 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/028f8bb629f5a65f771be4d05ab57914',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 8/11/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 68',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/028f8bb629f5a65f771be4d05ab57914',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 5/30/2023, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/c40774aa2f52a2811db15c5ca1949314',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 8.3,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/b099a37195f532e4b384020dc0e94bb5',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/3a10030d3323e5353cfdc3ada45cad86',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3a10030d3323e5353cfdc3ada45cad86',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4a98c43ab3b20b06c11dfbed5fd9034b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4a98c43ab3b20b06c11dfbed5fd9034b',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/4fddf6de0f42a7e2648b547affefc234',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/4fddf6de0f42a7e2648b547affefc234',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/71642e4c4a9cc12f59f3317b4a19adc9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/71642e4c4a9cc12f59f3317b4a19adc9',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/744647801573d1d5700ee7523089734c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/744647801573d1d5700ee7523089734c',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b6fd505b8e8e1829a2783570f9f25256',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b6fd505b8e8e1829a2783570f9f25256',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bd42ab2f422e45ce6b0f3f55171de8aa',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bd42ab2f422e45ce6b0f3f55171de8aa',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/beb1b65624fe85b527ee2ce80ef208b2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/beb1b65624fe85b527ee2ce80ef208b2',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c25d6febe5b007ad32bc59246c99833d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c25d6febe5b007ad32bc59246c99833d',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c3db2027e148e92fecb85e7d6a1fd708',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c3db2027e148e92fecb85e7d6a1fd708',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c8ad223f01b45b25e0dcb07c48a42762',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c8ad223f01b45b25e0dcb07c48a42762',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f7b49444b974c98c6300e0bfe5fc3a75',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f7b49444b974c98c6300e0bfe5fc3a75',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '30 x 10 x 8.3 millimeter, 8.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/18/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b099a37195f532e4b384020dc0e94bb5',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ae98f6ca4f1f9950f7e7e1dedc2acc10',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '30 x 10 x 8.3 millimeter, 8.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/18/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ae98f6ca4f1f9950f7e7e1dedc2acc10',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ec54b7d4ab4545166a0d121b3dc1ec3f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '30 x 10 x 8.3 millimeter, 8.3 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/18/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ec54b7d4ab4545166a0d121b3dc1ec3f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/2c92be72-25c2-438c-bd40-b85cc7190211'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 2 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/6/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 66, BMI 29.1',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 5/29/2024, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/c4200fa2bd88eca844b722075153da94',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/8b574bd7f010efd38272b43d159052a1',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/b95f34761c252ebbd1e482cd9afae73f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b95f34761c252ebbd1e482cd9afae73f',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ba35e752b5c6b18f75753e76774dda65',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 4/10/2023, Bill Shirey, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ba35e752b5c6b18f75753e76774dda65',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 2 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8b574bd7f010efd38272b43d159052a1',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/f85d8a3d-8e92-487d-bc76-5ee350f26739'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/c5bd4ae9a43b580f821c5d499953bdec',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '24 x 20 x 7 millimeter, 0.8 millimeter, 9 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/c624abbe9836c7e3b6a8d8216a316f30',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/23/2019, Elizabeth Neumann, '\n",
      "                           'TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 73, BMI 33.2',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/c624abbe9836c7e3b6a8d8216a316f30',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Elizabeth Neumann, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/c5bd4ae9a43b580f821c5d499953bdec',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 9,\n",
      "  'sectionSize': 0.8,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0778258ba988436e615a73ad001e65ea',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/1dd9a68210ef57c390f90b06851877a4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1dd9a68210ef57c390f90b06851877a4',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1eadf62812799712d4b1232cc92b132f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1eadf62812799712d4b1232cc92b132f',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff4517a9a43fc55ee1489002b5de1b/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2c00130ea77e93aaaf7362b566bc454e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2c00130ea77e93aaaf7362b566bc454e',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3333fdaa86c242b2d6fb33f6b66befb3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3333fdaa86c242b2d6fb33f6b66befb3',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff05bf4d6f1cd78ce71ad0db2f4e4f/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/45e9370bd4ee50c58d7a9cf34b4d2c70',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/45e9370bd4ee50c58d7a9cf34b4d2c70',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/584620d30b86098ece9b96edb407c786',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/584620d30b86098ece9b96edb407c786',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/66175ea4190378474b7d73c49c470b9f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/66175ea4190378474b7d73c49c470b9f',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7f1fd7b9c8c3745fcab037a2fa37f5b9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/31/2022, Jeannie '\n",
      "                                       'Camarillo, Northwestern RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7f1fd7b9c8c3745fcab037a2fa37f5b9',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/954281e9fd8732adfa4479e0d238ce8d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/954281e9fd8732adfa4479e0d238ce8d',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b99153a1b16f28dd9ed12bc596795261',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b99153a1b16f28dd9ed12bc596795261',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cd25af3631d76c34691062d5a2b54e1a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cd25af3631d76c34691062d5a2b54e1a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff4b1bc9451d8393bf13be2a43bcdb/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dcb08adec26bfb9dd07ca352c2748461',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dcb08adec26bfb9dd07ca352c2748461',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/0778258ba988436e615a73ad001e65ea',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 9},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/3253475f62eb5f0a799709f57e79e69a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3253475f62eb5f0a799709f57e79e69a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/478768feb2770746ac9e6fc9d8d6962f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/478768feb2770746ac9e6fc9d8d6962f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4b52267e643282ef43930b5577354670',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/23/2019, Elizabeth Neumann, '\n",
      "                         'TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4b52267e643282ef43930b5577354670',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/68ab9ae6db8e1e8bdc63b4faa36488dd',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/68ab9ae6db8e1e8bdc63b4faa36488dd',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/c88085a7a4ae2061ca7939f475506a36',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/c88085a7a4ae2061ca7939f475506a36',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d731dd142313389b640bec61c6d81231',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d731dd142313389b640bec61c6d81231',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/da2c9ae6806e3a34b2221996b5d9ca3d',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/23/2019, Elizabeth Neumann, '\n",
      "                         'TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/da2c9ae6806e3a34b2221996b5d9ca3d',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/f67620854ed86f2cd41f73a905be85f3',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '24 x 20 x 0.8 millimeter, 0.8 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/f67620854ed86f2cd41f73a905be85f3',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/1a6f4e15-83cc-4505-a059-55038690c33d'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '5 x 6 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/6/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 66, BMI 29.1',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 10/3/2021, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/cc5da33c5239011f75c06918dad38914',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/793395e392ff0cdbe74ab82f4155b62b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/42ab155ddff1d33fe1c505c067828614',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/42ab155ddff1d33fe1c505c067828614',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d482512016a61ef479960e2cb58552f2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d482512016a61ef479960e2cb58552f2',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/06ff98c01295ca5ea504a676f73f9a09',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/06ff98c01295ca5ea504a676f73f9a09',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'Washington University Kidney TMC',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '5 x 6 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/15/2021, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/793395e392ff0cdbe74ab82f4155b62b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/f31c1726-c693-4734-8c1c-4f1d64bbe034'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '29 x 16 x 14 millimeter, 4.7 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/a523307d64ecee4c3cae5e59cf68c7d1',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 8/9/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 67',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/a523307d64ecee4c3cae5e59cf68c7d1',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/25/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/ccd3b854d3eb4c13ba07932250ffc8c8',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 4.7,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/fa1f2d90c75a6fcd5f645708a92c74ad',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/04162af64b33eef6da0ab3e38a39fa8e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/04162af64b33eef6da0ab3e38a39fa8e',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0b10b20b9bbf42d2fe59429a986b9827',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0b10b20b9bbf42d2fe59429a986b9827',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0c69a7bb0da555fe9cdc5f9446d3479c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0c69a7bb0da555fe9cdc5f9446d3479c',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/14ef9adb59094fb3a0f7f1a35749bdca',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/14ef9adb59094fb3a0f7f1a35749bdca',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/18088e0f3778230bd23812725ada7091',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/18088e0f3778230bd23812725ada7091',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/58d23ee27e5712941bf173744d05f608',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/58d23ee27e5712941bf173744d05f608',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/823165ed4b28e4bdfd22ebb4c2444806',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/823165ed4b28e4bdfd22ebb4c2444806',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/893d3fe2f11984323220ecebfcd53f7a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/893d3fe2f11984323220ecebfcd53f7a',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bbdef5d47e680c8467ce28bc83497d4e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bbdef5d47e680c8467ce28bc83497d4e',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c260e03d48b2b3ed3d0ffcd90964db19',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c260e03d48b2b3ed3d0ffcd90964db19',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ef021aa2ee54036281322c248ffe7498',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 5/29/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ef021aa2ee54036281322c248ffe7498',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f1d381de35954d4218c2f07b2716b7ca',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f1d381de35954d4218c2f07b2716b7ca',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '29 x 16 x 4.7 millimeter, 4.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/25/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fa1f2d90c75a6fcd5f645708a92c74ad',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/3f4e917b0a84b4d5752036c1b3d53216',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '29 x 16 x 4.7 millimeter, 4.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/25/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3f4e917b0a84b4d5752036c1b3d53216',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab0aceac8054427f9e240fdb42ea4881',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '29 x 16 x 4.7 millimeter, 4.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/25/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ab0aceac8054427f9e240fdb42ea4881',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/7751603d-80fa-4bc7-b8b0-9e7176bed3e6'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/cebd83c466eec4ec7929a84956b10133',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '17 x 16 x 4 millimeter, 0.7 millimeter, 6 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/866a78fd1ac8d4db740ebbb49a205b8d',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 61',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/866a78fd1ac8d4db740ebbb49a205b8d',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/cebd83c466eec4ec7929a84956b10133',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 6,\n",
      "  'sectionSize': 0.7,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/8e45ba0fcc0626e0bfc7cb76a7da9c3b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/12e0c68781d906f11e8d58ec039c6496',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/12e0c68781d906f11e8d58ec039c6496',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1b2337a2b37b65e93f6c65c0484ff0d7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1b2337a2b37b65e93f6c65c0484ff0d7',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2758f0523316876db1e63fc1d2c51d1b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2758f0523316876db1e63fc1d2c51d1b',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff3cd9fa8619493a180c6421d895cf/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/379ec1e6f7f0633a62997136db2854a7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/379ec1e6f7f0633a62997136db2854a7',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff5a8a10f99d589e18122792391d78/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/edb76c1192da8f4d076b1862b3775ce4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/edb76c1192da8f4d076b1862b3775ce4',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '17 x 16 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8e45ba0fcc0626e0bfc7cb76a7da9c3b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/052a8dd01cfb6a2110901773f2e4a309',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '17 x 16 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/052a8dd01cfb6a2110901773f2e4a309',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/570d6d65c3fe9fe5849a2f2654206c0f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '17 x 16 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/570d6d65c3fe9fe5849a2f2654206c0f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9a4e9e8a703a24c127008804f305c902',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '17 x 16 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9a4e9e8a703a24c127008804f305c902',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/a09e26350672bf1391634da9f82a50b7',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '17 x 16 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/a09e26350672bf1391634da9f82a50b7',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/db3aacec6ff7c805ac402430b23e668b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '17 x 16 x 0.7 millimeter, 0.7 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/db3aacec6ff7c805ac402430b23e668b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/47f89696-e96a-41cc-8a88-cf4c4b3b8967'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/dc0f7635a17dfaa243fe384020ced902',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '15 x 13 x 10 millimeter, 5 millimeter, 2 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/a767eb82765b1a96a69e6fe28b6a387d',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/29/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 56, BMI 45.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/a767eb82765b1a96a69e6fe28b6a387d',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/dc0f7635a17dfaa243fe384020ced902',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 2,\n",
      "  'sectionSize': 5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/d3e3b57ba1eac3623325122d023b6d2b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/29d2640400f95035a46f79f5080cdc01',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/29d2640400f95035a46f79f5080cdc01',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/53e352eca3b3c7b615dcf1f94c26bc63',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/53e352eca3b3c7b615dcf1f94c26bc63',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5c2b4842a1b9bdf209cc74c536ea5122',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5c2b4842a1b9bdf209cc74c536ea5122',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5f916cad9e9e405c3fa5ef2c36a377f8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5f916cad9e9e405c3fa5ef2c36a377f8',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/60b7f9a33ad6af081465e15a8d3c6564',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/60b7f9a33ad6af081465e15a8d3c6564',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7c8321dd9b70a0c4462fb7fd602160f7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7c8321dd9b70a0c4462fb7fd602160f7',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a473b7a08674a47ad7b05b2f72db4ebb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a473b7a08674a47ad7b05b2f72db4ebb',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cfc8d3bae40b30ae578a43b0cd7c82a9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 3/1/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cfc8d3bae40b30ae578a43b0cd7c82a9',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d0ccaa32b935265f3be449d304b89923',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d0ccaa32b935265f3be449d304b89923',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/e77a9b9d36509b7feb3278e5b6716ea5',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/e77a9b9d36509b7feb3278e5b6716ea5',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '15 x 13 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d3e3b57ba1eac3623325122d023b6d2b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/15b7d31dd5d825f9e6fdac8e998ab6b6',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '15 x 13 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/15b7d31dd5d825f9e6fdac8e998ab6b6',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/ad6486c5-ee24-4c25-8c74-677ffb35a189'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '40 x 9 x 15 millimeter, 5 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/4cdbccaf4ab1871e7c049dd50585eb65',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 7/29/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 43',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/4cdbccaf4ab1871e7c049dd50585eb65',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 7/11/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/ddc6db704d6b031979c121d2a5f15b0b',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/fa637c35420563e303a47bda7ab3fadd',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/21303d6f9244888a2cb117beab601384',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/21303d6f9244888a2cb117beab601384',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/26cd3613ea53ec29b994ee1c7c57c827',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/26cd3613ea53ec29b994ee1c7c57c827',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/34f856d8c29136b1fba7aec8ee7f2f1b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/34f856d8c29136b1fba7aec8ee7f2f1b',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6420fcb2995e718d313b4b2b2cb72878',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6420fcb2995e718d313b4b2b2cb72878',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/646e6870dbe936907c476078f780dac9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/646e6870dbe936907c476078f780dac9',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7c48846c16098fd4c9c1e29a33d81378',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7c48846c16098fd4c9c1e29a33d81378',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8fff81637677156a0d5eb37a20fef2e6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8fff81637677156a0d5eb37a20fef2e6',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a029e18190042d30269fa3031a1a4292',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a029e18190042d30269fa3031a1a4292',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d1dcab2df80590d8cd8770948abaf976',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d1dcab2df80590d8cd8770948abaf976',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fa6c55fd1280b7cbcbddb4e5ff6a1af3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 8/21/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fa6c55fd1280b7cbcbddb4e5ff6a1af3',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '40 x 9 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/fa637c35420563e303a47bda7ab3fadd',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e6cd741fdee6d5822e5c7f5e9680c673',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '40 x 9 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e6cd741fdee6d5822e5c7f5e9680c673',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ea4fdccc9b42e25d5f9625cced15cc3a',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '40 x 9 x 5 millimeter, 5 millimeter, block',\n",
      "                'label': 'Registered 8/26/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ea4fdccc9b42e25d5f9625cced15cc3a',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/b5ba9c77-bf58-49bd-b686-7868f9a5c05a'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '28 x 5 x 20 millimeter, 2.5 millimeter, 8 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/bfbcdea6a2b709fd0d3aa71b5a47d924',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 9/30/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 20',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/bfbcdea6a2b709fd0d3aa71b5a47d924',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 9/22/2022, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/e5cfb9e63962e3f41f7bc889fa54cf98',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 8,\n",
      "  'sectionSize': 2.5,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/4add474e52a07ff747725c60e5157a6e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/3b32eb6790f1c60004119b84c86b2120',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3b32eb6790f1c60004119b84c86b2120',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff8447f170f4837a4da9c094791b13/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5182ffba4c1e84062ab27a0a2b687420',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 1/17/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5182ffba4c1e84062ab27a0a2b687420',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7aa0816fc26641fb86fe9a2e89a22625',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 3/1/2022, Joel Welling, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7aa0816fc26641fb86fe9a2e89a22625',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/fffff69caca33f8c9cb48abf94ca2d22/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7db927d58b2b928a81ede71e775d04fb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 8/17/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7db927d58b2b928a81ede71e775d04fb',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/81bb208fe47a5d3a97cf531b6ee7b99f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 1/18/2022, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/81bb208fe47a5d3a97cf531b6ee7b99f',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4add474e52a07ff747725c60e5157a6e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 8},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/2672ebbbd58a34c8e40f3c585b99bb6c',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/2672ebbbd58a34c8e40f3c585b99bb6c',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4b638519d19c5df4353958366e1c9e27',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4b638519d19c5df4353958366e1c9e27',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4e7aa6dbec7221f3b547bfe9f4e6d2ec',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4e7aa6dbec7221f3b547bfe9f4e6d2ec',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/76440eb811029685c8f593ab9dccbc64',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/76440eb811029685c8f593ab9dccbc64',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/8388cde727c797d834dbb21bc1051927',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/8388cde727c797d834dbb21bc1051927',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/9620a78db8a93557b9525d7fd70f891b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9620a78db8a93557b9525d7fd70f891b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d9ba2ec6749b60208b5d01e352b103fc',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '28 x 5 x 2.5 millimeter, 2.5 millimeter, block',\n",
      "                'label': 'Registered 11/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d9ba2ec6749b60208b5d01e352b103fc',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/e6c247f7-694a-4477-8ba7-84d04bc9c3bd'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/e5f2cb399e7e8885134c1b1a2b6acc9a',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '17 x 16 x 4 millimeter, 2 millimeter, 2 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/866a78fd1ac8d4db740ebbb49a205b8d',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/26/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Female, Age 61',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/866a78fd1ac8d4db740ebbb49a205b8d',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/e5f2cb399e7e8885134c1b1a2b6acc9a',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 2,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/bf801226662c6e0e430596573cd7817e',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/0bf9cb40adebcfb261dfbe9244607508',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0bf9cb40adebcfb261dfbe9244607508',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffcae4a94d46d4c6bfc5f3ef866993/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2d6c51fbd0916109550a708d485903b7',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2d6c51fbd0916109550a708d485903b7',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/41c5ebd1204fa6f3c55c98f4f0952dce',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/41c5ebd1204fa6f3c55c98f4f0952dce',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5723910250c696b6c682fe8137870832',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5723910250c696b6c682fe8137870832',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffffc7f2521db8951c3133067ac6ccb8/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/7e3f3b5d1890f9612efb91d3a820cdcc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Histology',\n",
      "                              'label': 'Registered 8/8/2024, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7e3f3b5d1890f9612efb91d3a820cdcc',\n",
      "                              'technology': 'Histology',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'MC - IU',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/88da2b6fb3f32e4236c892ec98a75467',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8eccc1162147c6c240de384cffd1bcf4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8eccc1162147c6c240de384cffd1bcf4',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/91bfc97dbaf57fa9a1d9181519c363f3',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI [Image '\n",
      "                                             'Pyramid]',\n",
      "                              'label': 'Registered 9/8/2020, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/91bfc97dbaf57fa9a1d9181519c363f3',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9d357d4bae9580895130bf0cd30fb99d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: MALDI',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9d357d4bae9580895130bf0cd30fb99d',\n",
      "                              'technology': 'MALDI',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d4017eaa2282a9d193aad75ec491498b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 8/3/2021, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d4017eaa2282a9d193aad75ec491498b',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'https://assets.hubmapconsortium.org/ffff91d28c4eba41f44cdd306bb0dbf7/thumbnail.jpg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/dc289471333309925e46ceb9bafafaf4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/dc289471333309925e46ceb9bafafaf4',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '17 x 16 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/bf801226662c6e0e430596573cd7817e',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/263e7f433d0affe5b37b03f4f368f6f8',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '17 x 16 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/263e7f433d0affe5b37b03f4f368f6f8',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/47f89696-e96a-41cc-8a88-cf4c4b3b8967'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 2 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/6/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 66, BMI 29.1',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/ab8258a97e0820c294d1f0ba2d261f61',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/8/2022, Amanda Knoten, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/e7551f6e8258a9a8f6472464f05295fb',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/1591f63f0efe8a1360112e45349fa242',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/aece0d5303d9ce959cdab34a9e9f3003',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/aece0d5303d9ce959cdab34a9e9f3003',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a92aab96145d181dafcd9039c5255737',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq',\n",
      "                              'label': \"Registered 8/31/2022, David O'Neal, \"\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a92aab96145d181dafcd9039c5255737',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2d8b8b5f4cf8b1f955b1b823ae9a9441',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Slide-seq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'Broad Institute RTI',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2d8b8b5f4cf8b1f955b1b823ae9a9441',\n",
      "                              'technology': 'Slide-seq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 2 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 4/5/2022, Amanda Knoten, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/1591f63f0efe8a1360112e45349fa242',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/87be07c9-cf37-4001-a589-e2c048b5d3f3'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '2 x 4 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/e742ac485a0614e4114a26886ed0b444',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 10/15/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Female, Age 69, BMI 49.1',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/e742ac485a0614e4114a26886ed0b444',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 10/3/2021, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/e92386147334ee241991e25d8ae3e04f',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/88fbcf4a6a7919587bd33f9330c2eda0',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/7017034c816444f6acb469834e53344f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/7017034c816444f6acb469834e53344f',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b2ab05f290c0740c3198f020cd70e78d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b2ab05f290c0740c3198f020cd70e78d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Publication '\n",
      "                                             '[ancillary]',\n",
      "                              'label': 'Registered 7/18/2023, HuBMAP Process, '\n",
      "                                       'Washington University Kidney TMC',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/110467cbd425b8bbf66e94ccd41ae2be',\n",
      "                              'technology': 'Publication',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cfc125d6d916f121e92a8406a0502a38',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cfc125d6d916f121e92a8406a0502a38',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '2 x 4 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 10/16/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/88fbcf4a6a7919587bd33f9330c2eda0',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/61d9f366-c050-4c28-995f-32ab920a7ca8'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/edab3ca46dcfa25aab40d2afdd5d19ec',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/4d532df68544c100a6fbc5e55f074863',\n",
      "                '@type': 'Dataset',\n",
      "                'description': 'Dataset Type: LC-MS',\n",
      "                'label': 'Registered 9/15/2023, HuBMAP Process, TTD - Pacific '\n",
      "                         'Northwest National Laboratory',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/dataset/4d532df68544c100a6fbc5e55f074863',\n",
      "                'technology': 'LC',\n",
      "                'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/574c32bbdb7fc662d351976584d8df4c',\n",
      "                '@type': 'Dataset',\n",
      "                'description': 'Dataset Type: MALDI',\n",
      "                'label': 'Registered 4/10/2023, HuBMAP Process, TTD - Pacific '\n",
      "                         'Northwest National Laboratory',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/dataset/574c32bbdb7fc662d351976584d8df4c',\n",
      "                'technology': 'MALDI',\n",
      "                'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/c34b80467a7b87158921e1e22f998f49',\n",
      "                '@type': 'Dataset',\n",
      "                'description': 'Dataset Type: MALDI [Image Pyramid]',\n",
      "                'label': 'Registered 4/10/2023, HuBMAP Process, TTD - Pacific '\n",
      "                         'Northwest National Laboratory',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/dataset/c34b80467a7b87158921e1e22f998f49',\n",
      "                'technology': 'MALDI',\n",
      "                'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "  'description': '15 x 10 x 6 millimeter, 6 millimeter, 0 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/95a493ab959cc164a14d47fc61474d18',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 55, BMI 30.0',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/95a493ab959cc164a14d47fc61474d18',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/edab3ca46dcfa25aab40d2afdd5d19ec',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 0,\n",
      "  'sectionSize': 6,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/24ce75c0-6272-4a15-82ff-ab5e023bb771'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '5 x 5 x 2 millimeter, 2 millimeter, 1 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/0739c6eb8d0d51bfd244e3d5afb00aab',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 1/8/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Female, Age 45, BMI 22.6',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/0739c6eb8d0d51bfd244e3d5afb00aab',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 6/8/2022, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/f202f2c7fbe92f78292acef7fafbdc7c',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 1,\n",
      "  'sectionSize': 2,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/9b742d4829e0a39e5cb3215371702cb6',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/254801a318687281ba3e473569d89a45',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/254801a318687281ba3e473569d89a45',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/eb961e5dc50239d35f5398903c64e2b9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/eb961e5dc50239d35f5398903c64e2b9',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/154ec6344a58e4acb15ad01977b84baf',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/154ec6344a58e4acb15ad01977b84baf',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/16784f68e919aeebfb0addaaa4f0cecb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq [SnapATAC]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/16784f68e919aeebfb0addaaa4f0cecb',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/18c6afa0e332ef2d8ec63c6afd45b728',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/18c6afa0e332ef2d8ec63c6afd45b728',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/1c9310ad74bdebc6983fb1bda3dcaa6e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/1c9310ad74bdebc6983fb1bda3dcaa6e',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/25b33c1ff815346d8f41539c93765133',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/25b33c1ff815346d8f41539c93765133',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/324e4aa3c65fd6644234bbfd61b358de',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/324e4aa3c65fd6644234bbfd61b358de',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3778097725a62f96f1803eecfde3159b',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3778097725a62f96f1803eecfde3159b',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/3ecfd266a6838e7e8d3dcec37ab80487',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/3ecfd266a6838e7e8d3dcec37ab80487',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/44b565e80f21231d5da0297c5871b600',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/44b565e80f21231d5da0297c5871b600',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5f13e1e3140b58650018ec44ecad720c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5f13e1e3140b58650018ec44ecad720c',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/79e94dcf00267a0fe71e88c7d1e8d3c8',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/79e94dcf00267a0fe71e88c7d1e8d3c8',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/8db8bb7b9e6c0691ebe04bac4f24227e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/8db8bb7b9e6c0691ebe04bac4f24227e',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9c059f193bb4db45250e3b5eb303eaf4',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9c059f193bb4db45250e3b5eb303eaf4',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/b754eefb3941f645116d117b0a0b1881',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/b754eefb3941f645116d117b0a0b1881',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f4333f83c8aadb7ea132844e7d0097fb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f4333f83c8aadb7ea132844e7d0097fb',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '5 x 5 x 2 millimeter, 2 millimeter, block',\n",
      "                'label': 'Registered 7/14/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/9b742d4829e0a39e5cb3215371702cb6',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/007eb4d9-1694-4380-99e1-4aba832d9227'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/f3406a8958fa8cbac26307725316362d',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '19 x 15 x 6 millimeter, 0.9 millimeter, 7 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/282d80223fe5635b4c74afdbbce5f44f',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "            'label': 'Male, Age 62, BMI 45.5',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/282d80223fe5635b4c74afdbbce5f44f',\n",
      "            'providerName': 'TMC-Vanderbilt'},\n",
      "  'label': 'Registered 6/10/2020, Jamie Allen, TMC-Vanderbilt',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/f3406a8958fa8cbac26307725316362d',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 7,\n",
      "  'sectionSize': 0.9,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/601497f0482ac8486080d88a9da327ae',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/36cfbc4e95abbfa9c43ccbc7d9951950',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: LC-MS',\n",
      "                              'label': 'Registered 2/12/2022, Jeff Spraggins, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/36cfbc4e95abbfa9c43ccbc7d9951950',\n",
      "                              'technology': 'LC',\n",
      "                              'thumbnail': 'assets/icons/ico-bulk-lc.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/72be69d301786c13d05718ee7032cfa6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/72be69d301786c13d05718ee7032cfa6',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/917e75fed8dc8e0bf3b267445f5a690c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/917e75fed8dc8e0bf3b267445f5a690c',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/9a8927db17db65fc52bf4f9ae0a71271',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence',\n",
      "                              'label': 'Registered 5/8/2024, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/9a8927db17db65fc52bf4f9ae0a71271',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/a6b370d81da59b649e69002ef38612dc',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: Auto-fluorescence '\n",
      "                                             '[Image Pyramid]',\n",
      "                              'label': 'Registered 12/18/2023, HuBMAP Process, '\n",
      "                                       'TMC-Vanderbilt',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/a6b370d81da59b649e69002ef38612dc',\n",
      "                              'technology': 'AF',\n",
      "                              'thumbnail': 'assets/icons/ico-spatial-af.svg'}],\n",
      "                'description': '19 x 15 x 0.9 millimeter, 0.9 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/601497f0482ac8486080d88a9da327ae',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 7},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/3d326d0da9e5952b5fa13c7007884c1d',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 15 x 0.9 millimeter, 0.9 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/3d326d0da9e5952b5fa13c7007884c1d',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 4},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/ada6f4f2d3a95f4fc8a965b1d2af567f',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 15 x 0.9 millimeter, 0.9 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/ada6f4f2d3a95f4fc8a965b1d2af567f',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/b5d518aa7b826007a78b9b5729580499',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 15 x 0.9 millimeter, 0.9 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/b5d518aa7b826007a78b9b5729580499',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/bd7895329eab21f816d2a28d777be216',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 15 x 0.9 millimeter, 0.9 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/bd7895329eab21f816d2a28d777be216',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/bfda50e841ac986d9e00d888e3bc0b38',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 15 x 0.9 millimeter, 0.9 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 12/27/2019, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/bfda50e841ac986d9e00d888e3bc0b38',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 5},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/d818fc9dd1f6a6f1bee5c36a80109f39',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '19 x 15 x 0.9 millimeter, 0.9 millimeter, '\n",
      "                               'block',\n",
      "                'label': 'Registered 8/31/2021, Jamie Allen, TMC-Vanderbilt',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/d818fc9dd1f6a6f1bee5c36a80109f39',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 6}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/0.5/422a9dca-943a-40f3-967b-c3971d0ec823'},\n",
      " {'@id': 'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '3 x 8 x 2 millimeter, 0.7 millimeter, 3 Sections',\n",
      "  'donor': {'@id': 'https://entity.api.hubmapconsortium.org/entities/48b15ba8abfaef4e70edfdf173649b6c',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 3/27/2020, Diane Salamon, TMC-UCSD',\n",
      "            'label': 'Male, Age 76, BMI 25.8',\n",
      "            'link': 'https://portal.hubmapconsortium.org/browse/donor/48b15ba8abfaef4e70edfdf173649b6c',\n",
      "            'providerName': 'TMC-UCSD'},\n",
      "  'label': 'Registered 9/23/2022, Diane Salamon, TMC-UCSD',\n",
      "  'link': 'https://portal.hubmapconsortium.org/browse/sample/f7c5d23701bf7e9fd88b93aa0f48443d',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionCount': 3,\n",
      "  'sectionSize': 0.7,\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/58cea604ee70bfcf0620129ba3878511',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [{'@id': 'https://entity.api.hubmapconsortium.org/entities/044b28971204366347e7ed0b7ef0c279',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/044b28971204366347e7ed0b7ef0c279',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/12de9dcdb62640f1687b832f69648a55',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/12de9dcdb62640f1687b832f69648a55',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6cd63d0ee2c67c3be41e4be1522d9c07',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6cd63d0ee2c67c3be41e4be1522d9c07',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c05a38c5210b870281b5aea01e290339',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c05a38c5210b870281b5aea01e290339',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d1e9f509063984326570cf603c5654f2',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/3/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d1e9f509063984326570cf603c5654f2',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/fbb43e7c05d88c8700af94a32cb4e21d',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq [Salmon]',\n",
      "                              'label': 'Registered 11/6/2023, HuBMAP Process, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/fbb43e7c05d88c8700af94a32cb4e21d',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/0487454555924b54dd3f5b5232e3c77e',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/8/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/0487454555924b54dd3f5b5232e3c77e',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/142dde4b515934bdd9384c2aea081ebb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/142dde4b515934bdd9384c2aea081ebb',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/2919211030df5bb30ea3ed543044584c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/2919211030df5bb30ea3ed543044584c',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/33874bc3c95b6b41cbc387d2826d88eb',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/33874bc3c95b6b41cbc387d2826d88eb',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/5db7806bf62bf80bdd9a17199d6d2b08',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/5db7806bf62bf80bdd9a17199d6d2b08',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/6ebadb8046f48ee4660d580f53e8106a',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/6ebadb8046f48ee4660d580f53e8106a',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/737617c116e94ded77b9de7611c469e9',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/737617c116e94ded77b9de7611c469e9',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/78561061443e3f9cae9acbcde772fa43',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/78561061443e3f9cae9acbcde772fa43',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/bf8faee3a82026ccf2a65965fd158a1f',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/bf8faee3a82026ccf2a65965fd158a1f',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c22282c08225776b919c96fae7665557',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c22282c08225776b919c96fae7665557',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/c686b93a809ec1f54a0d96bc25d3d207',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 3/6/2023, Blue Lake, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/c686b93a809ec1f54a0d96bc25d3d207',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/ca5b7bf05646e56f1245c9ab98e05892',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/ca5b7bf05646e56f1245c9ab98e05892',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/cba4c3ad94b5590e204c770f1e2e9eb6',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/cba4c3ad94b5590e204c770f1e2e9eb6',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/d990c4d6e981affd9ea3411f436ff09c',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/d990c4d6e981affd9ea3411f436ff09c',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f093975797fd902c6130475430184c07',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: ATACseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f093975797fd902c6130475430184c07',\n",
      "                              'technology': 'ATACseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'},\n",
      "                             {'@id': 'https://entity.api.hubmapconsortium.org/entities/f21984fb4a908c1adfa921fbcaca8788',\n",
      "                              '@type': 'Dataset',\n",
      "                              'description': 'Dataset Type: RNAseq',\n",
      "                              'label': 'Registered 5/11/2022, Joel Welling, '\n",
      "                                       'TMC-UCSD',\n",
      "                              'link': 'https://portal.hubmapconsortium.org/browse/dataset/f21984fb4a908c1adfa921fbcaca8788',\n",
      "                              'technology': 'RNAseq',\n",
      "                              'thumbnail': 'assets/icons/ico-unknown.svg'}],\n",
      "                'description': '3 x 8 x 0.7 millimeter, 0.7 millimeter, block',\n",
      "                'label': 'Registered 7/13/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/58cea604ee70bfcf0620129ba3878511',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 3},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/4d6b5a1183de1429b1dddfe1c8fd9564',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 8 x 0.7 millimeter, 0.7 millimeter, block',\n",
      "                'label': 'Registered 7/10/2020, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/4d6b5a1183de1429b1dddfe1c8fd9564',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 2},\n",
      "               {'@id': 'https://entity.api.hubmapconsortium.org/entities/e01f6c015b59e6bfbcb8577323585d6b',\n",
      "                '@type': 'Sample',\n",
      "                'datasets': [],\n",
      "                'description': '3 x 8 x 0.7 millimeter, 0.7 millimeter, block',\n",
      "                'label': 'Registered 6/16/2021, Diane Salamon, TMC-UCSD',\n",
      "                'link': 'https://portal.hubmapconsortium.org/browse/sample/e01f6c015b59e6bfbcb8577323585d6b',\n",
      "                'sampleType': 'Tissue Section',\n",
      "                'sectionNumber': 1}],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/5166a7a1-bd21-4aa3-ba20-23453cb4c431'},\n",
      " {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                '@type': 'Dataset',\n",
      "                'description': 'Data/Assay Types: OTHER, ',\n",
      "                'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                'technology': 'OTHER',\n",
      "                'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "  'description': 'kidney cortex',\n",
      "  'donor': {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 9/17/2021, Kristin Ardlie, GTEx Project',\n",
      "            'label': 'Females (n=19) Mean Age 56.4 (range 30 - 69)',\n",
      "            'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "            'providerName': 'GTEx'},\n",
      "  'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "  'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943'},\n",
      " {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                '@type': 'Dataset',\n",
      "                'description': 'Data/Assay Types: OTHER, ',\n",
      "                'label': 'Registered 4/4/2023, Kristin Ardlie, GTEx',\n",
      "                'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                'technology': 'OTHER',\n",
      "                'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "  'description': '20 x 10 x 4 millimeter, 4 millimeter',\n",
      "  'donor': {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "            'label': 'Males (n=66) Mean Age 56.3 (range 27 - 70)',\n",
      "            'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "            'providerName': 'GTEx'},\n",
      "  'label': 'Registered 4/4/2023, Kristin Ardlie, GTEx',\n",
      "  'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7'},\n",
      " {'@id': 'https://www.atlas-d2k.org/id/W-RA1W',\n",
      "  '@type': 'Sample',\n",
      "  'datasets': [],\n",
      "  'description': '3 x 3 x 3 millimeter, 3 millimeter',\n",
      "  'donor': {'@id': 'https://www.atlas-d2k.org/id/W-RA1W#Donor',\n",
      "            '@type': 'Donor',\n",
      "            'description': 'Entered 6/22/2024, M. Todd Valerius, RBK',\n",
      "            'label': 'Male',\n",
      "            'link': 'https://www.atlas-d2k.org/chaise/record/#2/Gene_Expression:Specimen/RID=W-RA1W',\n",
      "            'providerName': 'RBK'},\n",
      "  'label': 'Registered 6/22/2024, M. Todd Valerius, RBK',\n",
      "  'link': 'https://www.atlas-d2k.org/chaise/record/#2/Gene_Expression:Specimen/RID=W-RA1W',\n",
      "  'sampleType': 'Tissue Block',\n",
      "  'sectionUnits': 'millimeter',\n",
      "  'sections': [],\n",
      "  'spatialEntityId': 'http://purl.org/ccf/1.5/d86790bc-d93b-4cb3-bfe5-ae48fd9daaaa'}]\n"
     ]
    }
   ],
   "source": [
    "sex = \"both\"\n",
    "\n",
    "# We use the ontology term for \"left kidney\". Just using the term for \"kidney\" will result in an error.\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0004538\"] \n",
    "\n",
    "tissueBlockResult = None\n",
    "\n",
    "try:\n",
    "    tissueBlockResult = api_instance.tissue_blocks(sex=sex, ontology_terms=ontology_terms)\n",
    "except hra_api_client.ApiException as e:\n",
    "\n",
    "    print(\"Exception when calling DefaultApi->tissue_blocks: %s\\n\" % e)\n",
    "\n",
    "# Convert the tissueBlockResult object to a list of dict\n",
    "tissueBlockResultList = list(map(lambda b: b.to_dict(), tissueBlockResult))\n",
    "pprint(tissueBlockResultList)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "24714129",
   "metadata": {},
   "source": [
    "To make it easier to find the donor labels we convert the above result to a dictionary that related the entity_id to the donor_label."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "8ea49ff9",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'https://entity.api.hubmapconsortium.org/entities/039ce6e8d5fa342811a4b317846b7281': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '32.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/07c995983aac113b442c0dc0c0b42ae5': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '53, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '26.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/088adc477043f3970311122b0365bba8': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '32.2',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/0ec930e0f4a8fcf12ea136a28e1acad4': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '65',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/16755fbe7dcb20e2cdcaeef386464643': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '27.7',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/16f984ebb41e334dc6bad00ff32a3083': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '78',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/221340e997dc0f2bf94e735098b148fe': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '25, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '33.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2256c64aacd92af7028ffb33e478cf46': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '45, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '22.6',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/243c742cc28978c406d650984d6eeffd': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '63, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '36.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/24b13fd3342a93b5c85bd2318434b2a4': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '58, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '22.0',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2656c76dce594e00489964705b5d1744': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '77, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '28.2',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2957761e1ed24c63f53714bd0d9bf25f': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '54, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '38.6',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/2f8bb4ef2d9b8d23eebc24d1d5db36cd': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '55',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3622b5c2175f28d7f6323208b7b1d93c': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '38, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '42.3',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3a4b8bfca8e842cae400f49e19987c7c': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '32.2',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3a622ca82adc9696ec31fc6e2210197c': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '70',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/3d74b962e316efbfba104370f5c87e2d': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '76, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '25.8',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/414abf452403edbecb91fb9d05647829': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '65',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/4183d2843c53482e94455468c7264de8': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '77, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '28.2',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/41e6526c796c3d2a975b28349b6c923e': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '25, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '33.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/42bd24651630e444c02163cd8f0d5f4c': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '43',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/4fd5a971eb171344a8d1e2b629e95541': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '45.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/512108a2c671e73858834cb5a7b8db80': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '45.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/51c13b07099ccf9652dd7a8ddd43e20e': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '75',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/539d08c341db65d371ae0687bb314bb3': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '29.1',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/57cac4cbeaa9612c03727decf3f10c6d': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '40',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/5f8bd79354b14fc35466221b875bb030': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '58, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '22.0',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/647db48ac7407caf7c3fb8ef0c6da12e': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '46, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '22.3',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/6585f87d93fe9621d151f0f225a8edc2': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '76, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '37.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/682ab44e00e97bd81b17b0004601c8da': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '55, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '30.0',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/6890cd54f99e6396694e64ee2bb53b3c': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '38, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '42.3',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/6af94c048315d5b7b8997229dbb48f1a': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '32.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/7007f3154a610f88a61c268890f14ee4': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '57',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/726d0ab1980e05cd349766bcd9577315': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '65',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/7697e16bf3f778036b56ca8aec068ae9': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '55, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '30.0',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/7a766b9b083a02d3f2a6cef68d1240e5': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '20',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/82f8ca025a918872d7b3bec389e3b9e7': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '44, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '48.2',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/940f8fa7e80db959e52b7c0506981e7a': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '41',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/973161d3138555f8705d9fcbbcedd144': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '46, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '22.3',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/9af60cec8d8411323f601d13896c4601': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '78',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/9d1412bb63341df32e4851693cbfe409': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '27.7',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/9d5baa31d4a9a6a43d7e3ba07bc3b36c': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '55',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a1b167178431608b253c4a07ae18e5d9': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '43',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/a6255c16876d9c9d6229414c59fff534': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '32.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b6293bba61e3956b6546f4e6f47c8c3c': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '69, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '49.1',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/b75c8960ab33efccd30b648e5bb24d9d': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/bb913eb294e5694b7cb57e5916e99706': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '29.1',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/bc7d5947e9913136c91776544a0f52d8': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/c40774aa2f52a2811db15c5ca1949314': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '68',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/c4200fa2bd88eca844b722075153da94': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '29.1',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/c5bd4ae9a43b580f821c5d499953bdec': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '73, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '33.2',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/cc5da33c5239011f75c06918dad38914': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '29.1',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/ccd3b854d3eb4c13ba07932250ffc8c8': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '67',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/cebd83c466eec4ec7929a84956b10133': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '61',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/dc0f7635a17dfaa243fe384020ced902': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '56, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '45.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/ddc6db704d6b031979c121d2a5f15b0b': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '43',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e5cfb9e63962e3f41f7bc889fa54cf98': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '20',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e5f2cb399e7e8885134c1b1a2b6acc9a': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '61',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e7551f6e8258a9a8f6472464f05295fb': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '66, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '29.1',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/e92386147334ee241991e25d8ae3e04f': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '69, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '49.1',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/edab3ca46dcfa25aab40d2afdd5d19ec': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '55, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '30.0',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f202f2c7fbe92f78292acef7fafbdc7c': 'Female, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '45, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '22.6',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f3406a8958fa8cbac26307725316362d': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '62, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '45.5',\n",
      " 'https://entity.api.hubmapconsortium.org/entities/f7c5d23701bf7e9fd88b93aa0f48443d': 'Male, '\n",
      "                                                                                      'Age '\n",
      "                                                                                      '76, '\n",
      "                                                                                      'BMI '\n",
      "                                                                                      '25.8',\n",
      " 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1': 'Females '\n",
      "                                                                          '(n=19) '\n",
      "                                                                          'Mean '\n",
      "                                                                          'Age '\n",
      "                                                                          '56.4 '\n",
      "                                                                          '(range '\n",
      "                                                                          '30 '\n",
      "                                                                          '- '\n",
      "                                                                          '69)',\n",
      " 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1': 'Males '\n",
      "                                                                          '(n=66) '\n",
      "                                                                          'Mean '\n",
      "                                                                          'Age '\n",
      "                                                                          '56.3 '\n",
      "                                                                          '(range '\n",
      "                                                                          '27 '\n",
      "                                                                          '- '\n",
      "                                                                          '70)',\n",
      " 'https://www.atlas-d2k.org/id/W-RA1W': 'Male'}\n"
     ]
    }
   ],
   "source": [
    "blockDonorLabel = {}\n",
    "for tissueBlock in tissueBlockResultList:\n",
    "    blockDonorLabel[tissueBlock['@id']] = tissueBlock['donor']['label']\n",
    "\n",
    "pprint(blockDonorLabel)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "01211770",
   "metadata": {},
   "source": [
    "<a id='export'></a>\n",
    "# Export "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d563e33e",
   "metadata": {},
   "source": [
    "Now we create the report, using data from the above methods. The goal is to compile the data with these columns: `tissue_block_id`, `as_iri`, `cell_iri`, `donor_label`. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "bfa1a33f",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "                                        tissue_block_id  \\\n",
      "0     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "1     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "2     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "3     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "4     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "...                                                 ...   \n",
      "5265                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5266                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5267                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5268                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5269                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "\n",
      "                                             as_iri             donor_label  \\\n",
      "0     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "1     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "2     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "3     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "4     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "...                                             ...                     ...   \n",
      "5265  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5266  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5267  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5268  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5269  http://purl.obolibrary.org/obo/UBERON_0002189                    Male   \n",
      "\n",
      "                                       cell_iri  \n",
      "0     http://purl.obolibrary.org/obo/CL_1001033  \n",
      "1     http://purl.obolibrary.org/obo/CL_1001005  \n",
      "2     http://purl.obolibrary.org/obo/CL_1001096  \n",
      "3     http://purl.obolibrary.org/obo/CL_1001131  \n",
      "4     http://purl.obolibrary.org/obo/CL_4030019  \n",
      "...                                         ...  \n",
      "5265  http://purl.obolibrary.org/obo/CL_1000452  \n",
      "5266  http://purl.obolibrary.org/obo/CL_1001285  \n",
      "5267  http://purl.obolibrary.org/obo/CL_0000875  \n",
      "5268  http://purl.obolibrary.org/obo/CL_1001107  \n",
      "5269  http://purl.obolibrary.org/obo/CL_0000653  \n",
      "\n",
      "[5270 rows x 4 columns]\n"
     ]
    }
   ],
   "source": [
    "# Flatten the dictionaries to a list of tuples\n",
    "long_scene_entity_as_dict = [(k, v) for k, values in sceneEntityASDict.items() for v in values]\n",
    "long_as_ct_combinations = [(k, v) for k, values in anatomical_structure_cell_type_combinations.items() for v in values]\n",
    "\n",
    "# Create DataFrames\n",
    "df_tissue_block_as_iri = pd.DataFrame(long_scene_entity_as_dict, columns=['tissue_block_id', 'as_iri'])\n",
    "df_tissue_block_donor_label = pd.DataFrame(blockDonorLabel.items(), columns=['tissue_block_id', 'donor_label'])\n",
    "df_as_ct_combinations = pd.DataFrame(\n",
    "    long_as_ct_combinations, columns=['as_iri', 'cell_iri'])\n",
    "\n",
    "# Merge the DataFrames\n",
    "merged_intermediate = pd.merge(df_tissue_block_as_iri, df_tissue_block_donor_label, on=\"tissue_block_id\")\n",
    "df = pd.merge(merged_intermediate,\n",
    "                    df_as_ct_combinations, on=\"as_iri\")\n",
    "\n",
    "# Print the merged DataFrame\n",
    "pprint(df)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a347cc2c",
   "metadata": {},
   "source": [
    "This will save the output as a csv file. <br>\n",
    "You can change the name of the file in first line of the next block."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "60d340a5",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "                                        tissue_block_id  \\\n",
      "0     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "1     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "2     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "3     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "4     https://entity.api.hubmapconsortium.org/entiti...   \n",
      "...                                                 ...   \n",
      "5265                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5266                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5267                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5268                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "5269                https://www.atlas-d2k.org/id/W-RA1W   \n",
      "\n",
      "                                             as_iri             donor_label  \\\n",
      "0     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "1     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "2     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "3     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "4     http://purl.obolibrary.org/obo/UBERON_0002113  Male, Age 56, BMI 32.5   \n",
      "...                                             ...                     ...   \n",
      "5265  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5266  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5267  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5268  http://purl.obolibrary.org/obo/UBERON_0002113                    Male   \n",
      "5269  http://purl.obolibrary.org/obo/UBERON_0002189                    Male   \n",
      "\n",
      "                                       cell_iri  \n",
      "0     http://purl.obolibrary.org/obo/CL_1001033  \n",
      "1     http://purl.obolibrary.org/obo/CL_1001005  \n",
      "2     http://purl.obolibrary.org/obo/CL_1001096  \n",
      "3     http://purl.obolibrary.org/obo/CL_1001131  \n",
      "4     http://purl.obolibrary.org/obo/CL_4030019  \n",
      "...                                         ...  \n",
      "5265  http://purl.obolibrary.org/obo/CL_1000452  \n",
      "5266  http://purl.obolibrary.org/obo/CL_1001285  \n",
      "5267  http://purl.obolibrary.org/obo/CL_0000875  \n",
      "5268  http://purl.obolibrary.org/obo/CL_1001107  \n",
      "5269  http://purl.obolibrary.org/obo/CL_0000653  \n",
      "\n",
      "[5270 rows x 4 columns]\n"
     ]
    }
   ],
   "source": [
    "# Set file name\n",
    "fileName = \"exampleFileName\"\n",
    "\n",
    "# Header mapping\n",
    "header_mapping = {\n",
    "    'Tissue Block ID': 'tissue_block_id',\n",
    "    'AS IRI': 'as_iri',\n",
    "    'AS Label': 'as_label',\n",
    "    'CT IRI': 'cell_iri',\n",
    "    'Donor Label': 'donor_label'\n",
    "}\n",
    "\n",
    "# Rename columns using the header mapping\n",
    "df_renamed = df.rename(columns=header_mapping)\n",
    "\n",
    "# Save the DataFrame to a CSV file with the new headers\n",
    "df_renamed.to_csv(f'{fileName}.csv', index=False)\n",
    "\n",
    "print(df_renamed)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "de144971",
   "metadata": {},
   "source": [
    "# Getting a summary"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "11389013",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "SUMMARY:\n",
      "Number of Blocks: 67,\n",
      "Number of Unique ASs identified: 8,\n",
      "Number of Unique CTs identified: 71\n"
     ]
    }
   ],
   "source": [
    "# Summary -- text\n",
    "AsCounts = df['as_iri'].value_counts()\n",
    "CtCounts = df['cell_iri'].value_counts()\n",
    "blockCounts = df['tissue_block_id'].value_counts()\n",
    "\n",
    "print(f'SUMMARY:\\n\\\n",
    "Number of Blocks: {len(blockCounts)},\\n\\\n",
    "Number of Unique ASs identified: {len(AsCounts)},\\n\\\n",
    "Number of Unique CTs identified: {len(CtCounts)}')"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.12.4"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
