From 4bdfdf500bc1ed1f7e93685404d5baa0e082cadd Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 18 Nov 2021 14:56:34 -0500 Subject: [PATCH 01/18] Added pyproject.toml to convert this package into a Poetry package. --- pyproject.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c3c9e3b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[tool.poetry] +name = "crdch_example_workflows" +version = "0.1.0" +description = "Example workflows and data for the CRDCH model" +authors = ["Gaurav Vaidya "] + +[tool.poetry.dependencies] +python = "^3.7" +linkml = "^1.1.13" +jsonschema = "^4.2.1" +jupyter = "^1.0.0" +pytest = "^6.2.5" +PyLD = "^2.0.3" +pip = "^21.3.1" +crdch-model = "^1.1.5" +pandas = "^1.3.4" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" From 457824c10cf6d2aea0bb43b90b5363b87243aedc Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 18 Nov 2021 15:01:34 -0500 Subject: [PATCH 02/18] Updated pyproject.toml and created Poetry lock file. --- poetry.lock | 3005 ++++++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 3006 insertions(+), 1 deletion(-) create mode 100644 poetry.lock diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..458e94d --- /dev/null +++ b/poetry.lock @@ -0,0 +1,3005 @@ +[[package]] +name = "alabaster" +version = "0.7.12" +description = "A configurable sidebar-enabled Sphinx theme" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "antlr4-python3-runtime" +version = "4.9.3" +description = "ANTLR 4.9.3 runtime for Python 3.7" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "appnope" +version = "0.1.2" +description = "Disable App Nap on macOS >= 10.9" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "argcomplete" +version = "1.12.3" +description = "Bash tab completion for argparse" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +importlib-metadata = {version = ">=0.23,<5", markers = "python_version == \"3.7\""} + +[package.extras] +test = ["coverage", "flake8", "pexpect", "wheel"] + +[[package]] +name = "argon2-cffi" +version = "21.1.0" +description = "The secure Argon2 password hashing algorithm." +category = "main" +optional = false +python-versions = ">=3.5" + +[package.dependencies] +cffi = ">=1.0.0" + +[package.extras] +dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pytest", "sphinx", "furo", "wheel", "pre-commit"] +docs = ["sphinx", "furo"] +tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pytest"] + +[[package]] +name = "argparse" +version = "1.4.0" +description = "Python command-line parsing library" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "atomicwrites" +version = "1.4.0" +description = "Atomic file writes." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "attrs" +version = "21.2.0" +description = "Classes Without Boilerplate" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.extras] +dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit"] +docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] +tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"] +tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"] + +[[package]] +name = "babel" +version = "2.9.1" +description = "Internationalization utilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.dependencies] +pytz = ">=2015.7" + +[[package]] +name = "backcall" +version = "0.2.0" +description = "Specifications for callback functions passed in to an API" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "bleach" +version = "4.1.0" +description = "An easy safelist-based HTML-sanitizing tool." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +packaging = "*" +six = ">=1.9.0" +webencodings = "*" + +[[package]] +name = "cachetools" +version = "4.2.4" +description = "Extensible memoizing collections and decorators" +category = "main" +optional = false +python-versions = "~=3.5" + +[[package]] +name = "certifi" +version = "2021.10.8" +description = "Python package for providing Mozilla's CA Bundle." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "cffi" +version = "1.15.0" +description = "Foreign Function Interface for Python calling C code." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "cfgraph" +version = "0.2.1" +description = "rdflib collections flattening graph" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +rdflib = ">=0.4.2" + +[[package]] +name = "charset-normalizer" +version = "2.0.7" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" +optional = false +python-versions = ">=3.5.0" + +[package.extras] +unicode_backport = ["unicodedata2"] + +[[package]] +name = "click" +version = "7.1.2" +description = "Composable command line interface toolkit" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "colorama" +version = "0.4.4" +description = "Cross-platform colored terminal text." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "crdch-model" +version = "1.1.5" +description = "CRDC-H model in LinkML, developed by the Center for Cancer Data Harmonization (CCDH). This Python package contains the dataclasses necessary to build and operate over data objects according to the CRDC-H model." +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +linkml-runtime = ">=1.1.2,<2.0.0" + +[[package]] +name = "debugpy" +version = "1.5.1" +description = "An implementation of the Debug Adapter Protocol for Python" +category = "main" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" + +[[package]] +name = "decorator" +version = "5.1.0" +description = "Decorators for Humans" +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "defusedxml" +version = "0.7.1" +description = "XML bomb protection for Python stdlib modules" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "deprecated" +version = "1.2.13" +description = "Python @deprecated decorator to deprecate old python classes, functions or methods." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.dependencies] +wrapt = ">=1.10,<2" + +[package.extras] +dev = ["tox", "bump2version (<1)", "sphinx (<2)", "importlib-metadata (<3)", "importlib-resources (<4)", "configparser (<5)", "sphinxcontrib-websupport (<2)", "zipp (<2)", "PyTest (<5)", "PyTest-Cov (<2.6)", "pytest", "pytest-cov"] + +[[package]] +name = "docutils" +version = "0.17.1" +description = "Docutils -- Python Documentation Utilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "entrypoints" +version = "0.3" +description = "Discover and load entry points from installed packages." +category = "main" +optional = false +python-versions = ">=2.7" + +[[package]] +name = "et-xmlfile" +version = "1.1.0" +description = "An implementation of lxml.xmlfile for the standard library" +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "frozendict" +version = "2.0.7" +description = "A simple immutable dictionary" +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "graphviz" +version = "0.18.2" +description = "Simple Python interface for Graphviz" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +dev = ["tox (>=3)", "flake8", "pep8-naming", "wheel", "twine"] +docs = ["sphinx (>=1.8)", "sphinx-autodoc-typehints", "sphinx-rtd-theme"] +test = ["pytest (>=6)", "pytest-mock (>=3)", "mock (>=4)", "pytest-cov"] + +[[package]] +name = "greenlet" +version = "1.1.2" +description = "Lightweight in-process concurrent programming" +category = "main" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" + +[package.extras] +docs = ["sphinx"] + +[[package]] +name = "hbreader" +version = "0.9.1" +description = "Honey Badger reader - a generic file/url/string open and read tool" +category = "main" +optional = false +python-versions = ">=3.7" + +[[package]] +name = "idna" +version = "3.3" +description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "imagesize" +version = "1.3.0" +description = "Getting image size from png/jpeg/jpeg2000/gif file" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "importlib-metadata" +version = "4.8.2" +description = "Read metadata from Python packages" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""} +zipp = ">=0.5" + +[package.extras] +docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] +perf = ["ipython"] +testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pep517", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy", "importlib-resources (>=1.3)"] + +[[package]] +name = "importlib-resources" +version = "5.4.0" +description = "Read resources from Python packages" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} + +[package.extras] +docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] +testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-black (>=0.3.7)", "pytest-mypy"] + +[[package]] +name = "iniconfig" +version = "1.1.1" +description = "iniconfig: brain-dead simple config-ini parsing" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "ipykernel" +version = "6.5.0" +description = "IPython Kernel for Jupyter" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +appnope = {version = "*", markers = "platform_system == \"Darwin\""} +argcomplete = {version = ">=1.12.3", markers = "python_version < \"3.8.0\""} +debugpy = ">=1.0.0,<2.0" +importlib-metadata = {version = "<5", markers = "python_version < \"3.8.0\""} +ipython = ">=7.23.1,<8.0" +jupyter-client = "<8.0" +matplotlib-inline = ">=0.1.0,<0.2.0" +tornado = ">=4.2,<7.0" +traitlets = ">=5.1.0,<6.0" + +[package.extras] +test = ["pytest (!=5.3.4)", "pytest-cov", "flaky", "nose", "ipyparallel"] + +[[package]] +name = "ipython" +version = "7.29.0" +description = "IPython: Productive Interactive Computing" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +appnope = {version = "*", markers = "sys_platform == \"darwin\""} +backcall = "*" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +decorator = "*" +jedi = ">=0.16" +matplotlib-inline = "*" +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} +pickleshare = "*" +prompt-toolkit = ">=2.0.0,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.1.0" +pygments = "*" +traitlets = ">=4.2" + +[package.extras] +all = ["Sphinx (>=1.3)", "ipykernel", "ipyparallel", "ipywidgets", "nbconvert", "nbformat", "nose (>=0.10.1)", "notebook", "numpy (>=1.17)", "pygments", "qtconsole", "requests", "testpath"] +doc = ["Sphinx (>=1.3)"] +kernel = ["ipykernel"] +nbconvert = ["nbconvert"] +nbformat = ["nbformat"] +notebook = ["notebook", "ipywidgets"] +parallel = ["ipyparallel"] +qtconsole = ["qtconsole"] +test = ["nose (>=0.10.1)", "requests", "testpath", "pygments", "nbformat", "ipykernel", "numpy (>=1.17)"] + +[[package]] +name = "ipython-genutils" +version = "0.2.0" +description = "Vestigial utilities from IPython" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "ipywidgets" +version = "7.6.5" +description = "IPython HTML widgets for Jupyter" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +ipykernel = ">=4.5.1" +ipython = {version = ">=4.0.0", markers = "python_version >= \"3.3\""} +ipython-genutils = ">=0.2.0,<0.3.0" +jupyterlab-widgets = {version = ">=1.0.0", markers = "python_version >= \"3.6\""} +nbformat = ">=4.2.0" +traitlets = ">=4.3.1" +widgetsnbextension = ">=3.5.0,<3.6.0" + +[package.extras] +test = ["pytest (>=3.6.0)", "pytest-cov", "mock"] + +[[package]] +name = "isodate" +version = "0.6.0" +description = "An ISO 8601 date/time/duration parser and formatter" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +six = "*" + +[[package]] +name = "jedi" +version = "0.18.1" +description = "An autocompletion tool for Python that can be used for text editors." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +parso = ">=0.8.0,<0.9.0" + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] + +[[package]] +name = "jinja2" +version = "3.0.3" +description = "A very fast and expressive template engine." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "json-flattener" +version = "0.1.7" +description = "Python library for denormalizing nested dicts or json objects to tables and back" +category = "main" +optional = false +python-versions = ">=3.7.0" + +[package.dependencies] +click = "*" +pyyaml = "*" + +[[package]] +name = "jsonasobj" +version = "2.0.1" +description = "JSON as python objects" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +hbreader = "*" + +[[package]] +name = "jsonasobj2" +version = "1.0.4" +description = "JSON as python objects - version 2" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +hbreader = "*" + +[[package]] +name = "jsonpatch" +version = "1.32" +description = "Apply JSON-Patches (RFC 6902)" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.dependencies] +jsonpointer = ">=1.9" + +[[package]] +name = "jsonpath-ng" +version = "1.5.3" +description = "A final implementation of JSONPath for Python that aims to be standard compliant, including arithmetic and binary comparison operators and providing clear AST for metaprogramming." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +decorator = "*" +ply = "*" +six = "*" + +[[package]] +name = "jsonpointer" +version = "2.2" +description = "Identify specific nodes in a JSON document (RFC 6901)" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "jsonschema" +version = "4.2.1" +description = "An implementation of JSON Schema validation for Python" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +attrs = ">=17.4.0" +importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} +importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format_nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jupyter" +version = "1.0.0" +description = "Jupyter metapackage. Install all the Jupyter components in one go." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +ipykernel = "*" +ipywidgets = "*" +jupyter-console = "*" +nbconvert = "*" +notebook = "*" +qtconsole = "*" + +[[package]] +name = "jupyter-client" +version = "7.0.6" +description = "Jupyter protocol implementation and client libraries" +category = "main" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +entrypoints = "*" +jupyter-core = ">=4.6.0" +nest-asyncio = ">=1.5" +python-dateutil = ">=2.1" +pyzmq = ">=13" +tornado = ">=4.1" +traitlets = "*" + +[package.extras] +doc = ["myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] +test = ["codecov", "coverage", "ipykernel", "ipython", "mock", "mypy", "pre-commit", "pytest", "pytest-asyncio", "pytest-cov", "pytest-timeout", "jedi (<0.18)"] + +[[package]] +name = "jupyter-console" +version = "6.4.0" +description = "Jupyter terminal console" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +ipykernel = "*" +ipython = "*" +jupyter-client = "*" +prompt-toolkit = ">=2.0.0,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.1.0" +pygments = "*" + +[package.extras] +test = ["pexpect"] + +[[package]] +name = "jupyter-core" +version = "4.9.1" +description = "Jupyter core package. A base package on which Jupyter projects rely." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +traitlets = "*" + +[[package]] +name = "jupyterlab-pygments" +version = "0.1.2" +description = "Pygments theme using JupyterLab CSS variables" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +pygments = ">=2.4.1,<3" + +[[package]] +name = "jupyterlab-widgets" +version = "1.0.2" +description = "A JupyterLab extension." +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "linkml" +version = "1.1.13" +description = "Linked Open Data Modeling Language" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +argparse = ">=1.4.0" +click = ">=7.0,<8.0" +graphviz = ">=0.10.1" +hbreader = "*" +isodate = ">=0.6.0" +jinja2 = "*" +jsonasobj2 = ">=1.0.3,<2.0" +jsonschema = ">=3.0.1" +linkml-runtime = ">=1.1.3,<1.1.4 || >1.1.4" +linkml-runtime-api = "*" +myst-parser = "*" +openpyxl = "*" +pandas = "*" +parse = "*" +prefixcommons = ">=0.1.7" +prologterms = ">=0.0.6" +pydantic = "*" +pyjsg = ">=0.11.6" +pyldmod = ">=2.0.5" +pyshex = ">=0.7.20" +pyshexc = ">=0.8.3" +python-dateutil = "*" +pyyaml = ">=5.1,<6.0" +rdflib = ">=5.0,<6.0" +rdflib-jsonld = ">=0.5.0,<=0.6.1" +rdflib-pyldmod-compat = ">=0.1.2c" +requests = ">=2.22" +sphinx = "*" +sphinx-click = "*" +sphinx-rtd-theme = "*" +sqlalchemy = "*" +watchdog = ">=0.9.0" + +[[package]] +name = "linkml-runtime" +version = "1.1.6" +description = "LinkML Runtime Environment" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +click = "*" +deprecated = "*" +hbreader = "*" +json-flattener = ">=0.1.7" +jsonasobj2 = ">=1.0.4,<2.0" +jsonschema = ">=3.2.0" +prefixcommons = "*" +pyldmod = "*" +pyyaml = ">=5.1,<6.0" +rdflib = ">=5.0,<6.0" +rdflib-jsonld = ">=0.5.0,<=0.6.1" +rdflib-pyldmod-compat = "*" +requests = "*" +shexjsg = ">=0.7,<1.0" + +[[package]] +name = "linkml-runtime-api" +version = "0.0.4" +description = "LinkML Runtime Environment API" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +jinja2 = "*" +jsonpatch = "*" +jsonpath-ng = "*" +linkml-runtime = "*" +"ruamel.yaml" = "*" + +[[package]] +name = "lxml" +version = "4.6.4" +description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*" + +[package.extras] +cssselect = ["cssselect (>=0.7)"] +html5 = ["html5lib"] +htmlsoup = ["beautifulsoup4"] +source = ["Cython (>=0.29.7)"] + +[[package]] +name = "markdown-it-py" +version = "1.1.0" +description = "Python port of markdown-it. Markdown parsing, done right!" +category = "main" +optional = false +python-versions = "~=3.6" + +[package.dependencies] +attrs = ">=19,<22" +typing-extensions = {version = ">=3.7.4", markers = "python_version < \"3.8\""} + +[package.extras] +code_style = ["pre-commit (==2.6)"] +compare = ["commonmark (>=0.9.1,<0.10.0)", "markdown (>=3.2.2,<3.3.0)", "mistletoe-ebp (>=0.10.0,<0.11.0)", "mistune (>=0.8.4,<0.9.0)", "panflute (>=1.12,<2.0)"] +linkify = ["linkify-it-py (>=1.0,<2.0)"] +plugins = ["mdit-py-plugins"] +rtd = ["myst-nb (==0.13.0a1)", "pyyaml", "sphinx (>=2,<4)", "sphinx-copybutton", "sphinx-panels (>=0.4.0,<0.5.0)", "sphinx-book-theme"] +testing = ["coverage", "psutil", "pytest (>=3.6,<4)", "pytest-benchmark (>=3.2,<4.0)", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "markupsafe" +version = "2.0.1" +description = "Safely add untrusted strings to HTML/XML markup." +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "matplotlib-inline" +version = "0.1.3" +description = "Inline Matplotlib backend for Jupyter" +category = "main" +optional = false +python-versions = ">=3.5" + +[package.dependencies] +traitlets = "*" + +[[package]] +name = "mdit-py-plugins" +version = "0.2.8" +description = "Collection of plugins for markdown-it-py" +category = "main" +optional = false +python-versions = "~=3.6" + +[package.dependencies] +markdown-it-py = ">=1.0,<2.0" + +[package.extras] +code_style = ["pre-commit (==2.6)"] +rtd = ["myst-parser (==0.14.0a3)", "sphinx-book-theme (>=0.1.0,<0.2.0)"] +testing = ["coverage", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "mistune" +version = "0.8.4" +description = "The fastest markdown parser in pure Python" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "myst-parser" +version = "0.15.2" +description = "An extended commonmark compliant parser, with bridges to docutils & sphinx." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +docutils = ">=0.15,<0.18" +jinja2 = "*" +markdown-it-py = ">=1.0.0,<2.0.0" +mdit-py-plugins = ">=0.2.8,<0.3.0" +pyyaml = "*" +sphinx = ">=3.1,<5" + +[package.extras] +code_style = ["pre-commit (>=2.12,<3.0)"] +linkify = ["linkify-it-py (>=1.0,<2.0)"] +rtd = ["ipython", "sphinx-book-theme (>=0.1.0,<0.2.0)", "sphinx-panels (>=0.5.2,<0.6.0)", "sphinxcontrib-bibtex (>=2.1,<3.0)", "sphinxext-rediraffe (>=0.2,<1.0)", "sphinxcontrib.mermaid (>=0.6.3,<0.7.0)", "sphinxext-opengraph (>=0.4.2,<0.5.0)"] +testing = ["beautifulsoup4", "coverage", "docutils (>=0.17.0,<0.18.0)", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "nbclient" +version = "0.5.8" +description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." +category = "main" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +jupyter-client = ">=6.1.5" +nbformat = ">=5.0" +nest-asyncio = "*" +traitlets = ">=4.2" + +[package.extras] +dev = ["codecov", "coverage", "ipython", "ipykernel", "ipywidgets", "pytest (>=4.1)", "pytest-cov (>=2.6.1)", "check-manifest", "flake8", "mypy", "tox", "xmltodict", "pip (>=18.1)", "wheel (>=0.31.0)", "setuptools (>=38.6.0)", "twine (>=1.11.0)", "black"] +sphinx = ["Sphinx (>=1.7)", "sphinx-book-theme", "mock", "moto", "myst-parser"] +test = ["codecov", "coverage", "ipython", "ipykernel", "ipywidgets", "pytest (>=4.1)", "pytest-cov (>=2.6.1)", "check-manifest", "flake8", "mypy", "tox", "xmltodict", "pip (>=18.1)", "wheel (>=0.31.0)", "setuptools (>=38.6.0)", "twine (>=1.11.0)", "black"] + +[[package]] +name = "nbconvert" +version = "6.3.0" +description = "Converting Jupyter Notebooks" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +bleach = "*" +defusedxml = "*" +entrypoints = ">=0.2.2" +jinja2 = ">=2.4" +jupyter-core = "*" +jupyterlab-pygments = "*" +mistune = ">=0.8.1,<2" +nbclient = ">=0.5.0,<0.6.0" +nbformat = ">=4.4" +pandocfilters = ">=1.4.1" +pygments = ">=2.4.1" +testpath = "*" +traitlets = ">=5.0" + +[package.extras] +all = ["pytest", "pytest-cov", "pytest-dependency", "ipykernel", "ipywidgets (>=7)", "pyppeteer (==0.2.6)", "tornado (>=4.0)", "sphinx (>=1.5.1)", "sphinx-rtd-theme", "nbsphinx (>=0.2.12)", "ipython"] +docs = ["sphinx (>=1.5.1)", "sphinx-rtd-theme", "nbsphinx (>=0.2.12)", "ipython"] +serve = ["tornado (>=4.0)"] +test = ["pytest", "pytest-cov", "pytest-dependency", "ipykernel", "ipywidgets (>=7)", "pyppeteer (==0.2.6)"] +webpdf = ["pyppeteer (==0.2.6)"] + +[[package]] +name = "nbformat" +version = "5.1.3" +description = "The Jupyter Notebook format" +category = "main" +optional = false +python-versions = ">=3.5" + +[package.dependencies] +ipython-genutils = "*" +jsonschema = ">=2.4,<2.5.0 || >2.5.0" +jupyter-core = "*" +traitlets = ">=4.1" + +[package.extras] +fast = ["fastjsonschema"] +test = ["check-manifest", "fastjsonschema", "testpath", "pytest", "pytest-cov"] + +[[package]] +name = "nest-asyncio" +version = "1.5.1" +description = "Patch asyncio to allow nested event loops" +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "notebook" +version = "6.4.6" +description = "A web-based notebook environment for interactive computing" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +argon2-cffi = "*" +ipykernel = "*" +ipython-genutils = "*" +jinja2 = "*" +jupyter-client = ">=5.3.4" +jupyter-core = ">=4.6.1" +nbconvert = "*" +nbformat = "*" +nest-asyncio = ">=1.5" +prometheus-client = "*" +pyzmq = ">=17" +Send2Trash = ">=1.8.0" +terminado = ">=0.8.3" +tornado = ">=6.1" +traitlets = ">=4.2.1" + +[package.extras] +docs = ["sphinx", "nbsphinx", "sphinxcontrib-github-alt", "sphinx-rtd-theme", "myst-parser"] +json-logging = ["json-logging"] +test = ["pytest", "coverage", "requests", "nbval", "selenium", "pytest-cov", "requests-unixsocket"] + +[[package]] +name = "numpy" +version = "1.21.1" +description = "NumPy is the fundamental package for array computing with Python." +category = "main" +optional = false +python-versions = ">=3.7" + +[[package]] +name = "numpy" +version = "1.21.4" +description = "NumPy is the fundamental package for array computing with Python." +category = "main" +optional = false +python-versions = ">=3.7,<3.11" + +[[package]] +name = "openpyxl" +version = "3.0.9" +description = "A Python library to read/write Excel 2010 xlsx/xlsm files" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +et-xmlfile = "*" + +[[package]] +name = "packaging" +version = "21.3" +description = "Core utilities for Python packages" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" + +[[package]] +name = "pandas" +version = "1.3.4" +description = "Powerful data structures for data analysis, time series, and statistics" +category = "main" +optional = false +python-versions = ">=3.7.1" + +[package.dependencies] +numpy = [ + {version = ">=1.17.3", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, + {version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""}, + {version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""}, + {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, +] +python-dateutil = ">=2.7.3" +pytz = ">=2017.3" + +[package.extras] +test = ["hypothesis (>=3.58)", "pytest (>=6.0)", "pytest-xdist"] + +[[package]] +name = "pandocfilters" +version = "1.5.0" +description = "Utilities for writing pandoc filters in python" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "parse" +version = "1.19.0" +description = "parse() is the opposite of format()" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "parso" +version = "0.8.2" +description = "A Python Parser" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["docopt", "pytest (<6.0.0)"] + +[[package]] +name = "pexpect" +version = "4.8.0" +description = "Pexpect allows easy control of interactive console applications." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +ptyprocess = ">=0.5" + +[[package]] +name = "pickleshare" +version = "0.7.5" +description = "Tiny 'shelve'-like database with concurrency support" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "pluggy" +version = "1.0.0" +description = "plugin and hook calling mechanisms for python" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] + +[[package]] +name = "ply" +version = "3.11" +description = "Python Lex & Yacc" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "prefixcommons" +version = "0.1.9" +description = "Library for working prefixcommons.org CURIEs" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +pyyaml = "*" +requests = "*" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "prologterms" +version = "0.0.6" +description = "A simple python library for generating prolog terms" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "prometheus-client" +version = "0.12.0" +description = "Python client for the Prometheus monitoring system." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.extras] +twisted = ["twisted"] + +[[package]] +name = "prompt-toolkit" +version = "3.0.22" +description = "Library for building powerful interactive command lines in Python" +category = "main" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +wcwidth = "*" + +[[package]] +name = "ptyprocess" +version = "0.7.0" +description = "Run a subprocess in a pseudo terminal" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "py" +version = "1.11.0" +description = "library with cross-python path, ini-parsing, io, code, log facilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "pydantic" +version = "1.8.2" +description = "Data validation and settings management using python 3.6 type hinting" +category = "main" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +typing-extensions = ">=3.7.4.3" + +[package.extras] +dotenv = ["python-dotenv (>=0.10.4)"] +email = ["email-validator (>=1.0.3)"] + +[[package]] +name = "pygments" +version = "2.10.0" +description = "Pygments is a syntax highlighting package written in Python." +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "pyjsg" +version = "0.11.6" +description = "Python JSON Schema Grammar interpreter" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +antlr4-python3-runtime = ">=4.9,<5.0" +jsonasobj = ">=1.2.1" + +[[package]] +name = "pyld" +version = "2.0.3" +description = "Python implementation of the JSON-LD API" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +cachetools = "*" +frozendict = "*" +lxml = "*" + +[package.extras] +aiohttp = ["aiohttp"] +cachetools = ["cachetools"] +frozendict = ["frozendict"] +requests = ["requests"] + +[[package]] +name = "pyldmod" +version = "2.0.5" +description = "modified Python implementation of the JSON-LD API" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +cachetools = "*" +frozendict = "*" +lxml = "*" + +[package.extras] +aiohttp = ["aiohttp"] +cachetools = ["cachetools"] +frozendict = ["frozendict"] +requests = ["requests"] + +[[package]] +name = "pyparsing" +version = "3.0.6" +description = "Python parsing module" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "pyrsistent" +version = "0.18.0" +description = "Persistent/Functional/Immutable data structures" +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "pyshex" +version = "0.7.20" +description = "Python ShEx Implementation" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cfgraph = ">=0.2.1" +pyshexc = "0.8.3" +rdflib = ">=5.0,<6.0" +rdflib-jsonld = ">=0.5,<1.0" +requests = ">=2.22.0" +shexjsg = ">=0.7.1" +sparqlslurper = ">=0.4,<1.0" +sparqlwrapper = ">=1.8.5" +urllib3 = "*" + +[[package]] +name = "pyshexc" +version = "0.8.3" +description = "PyShExC - Python ShEx compiler" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +antlr4-python3-runtime = ">=4.9,<5.0" +jsonasobj = ">=1.2.1" +pyjsg = ">=0.11.6" +rdflib = ">=5.0,<6.0" +rdflib-jsonld = ">=0.5,<1.0" +shexjsg = ">=0.7.1" + +[[package]] +name = "pytest" +version = "6.2.5" +description = "pytest: simple powerful testing with Python" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} +attrs = ">=19.2.0" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<2.0" +py = ">=1.8.2" +toml = "*" + +[package.extras] +testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "pytz" +version = "2021.3" +description = "World timezone definitions, modern and historical" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "pywin32" +version = "302" +description = "Python for Window Extensions" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "pywinpty" +version = "1.1.6" +description = "Pseudo terminal support for Windows from Python." +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "pyyaml" +version = "5.4.1" +description = "YAML parser and emitter for Python" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" + +[[package]] +name = "pyzmq" +version = "22.3.0" +description = "Python bindings for 0MQ" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cffi = {version = "*", markers = "implementation_name == \"pypy\""} +py = {version = "*", markers = "implementation_name == \"pypy\""} + +[[package]] +name = "qtconsole" +version = "5.2.0" +description = "Jupyter Qt console" +category = "main" +optional = false +python-versions = ">= 3.6" + +[package.dependencies] +ipykernel = ">=4.1" +ipython-genutils = "*" +jupyter-client = ">=4.1" +jupyter-core = "*" +pygments = "*" +pyzmq = ">=17.1" +qtpy = "*" +traitlets = "*" + +[package.extras] +doc = ["Sphinx (>=1.3)"] +test = ["flaky", "pytest", "pytest-qt"] + +[[package]] +name = "qtpy" +version = "1.11.2" +description = "Provides an abstraction layer on top of the various Qt bindings (PyQt5, PyQt4 and PySide) and additional custom QWidgets." +category = "main" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*" + +[[package]] +name = "rdflib" +version = "5.0.0" +description = "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +isodate = "*" +pyparsing = "*" +six = "*" + +[package.extras] +docs = ["sphinx (<3)", "sphinxcontrib-apidoc"] +html = ["html5lib"] +sparql = ["requests"] +tests = ["html5lib", "networkx", "nose", "doctest-ignore-unicode"] + +[[package]] +name = "rdflib-jsonld" +version = "0.6.1" +description = "rdflib extension adding JSON-LD parser and serializer" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +rdflib = ">=5.0.0" + +[[package]] +name = "rdflib-pyldmod-compat" +version = "0.1.2" +description = "Conversion between rdflib and PyLD data formats for compatibility" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +pyldmod = "*" +rdflib = ">=4.2.0" +testfixtures = "*" + +[[package]] +name = "requests" +version = "2.26.0" +description = "Python HTTP for Humans." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} +idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} +urllib3 = ">=1.21.1,<1.27" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] +use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] + +[[package]] +name = "ruamel.yaml" +version = "0.17.17" +description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" +category = "main" +optional = false +python-versions = ">=3" + +[package.dependencies] +"ruamel.yaml.clib" = {version = ">=0.1.2", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.10\""} + +[package.extras] +docs = ["ryd"] +jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] + +[[package]] +name = "ruamel.yaml.clib" +version = "0.2.6" +description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "send2trash" +version = "1.8.0" +description = "Send file to trash natively under Mac OS X, Windows and Linux." +category = "main" +optional = false +python-versions = "*" + +[package.extras] +nativelib = ["pyobjc-framework-cocoa", "pywin32"] +objc = ["pyobjc-framework-cocoa"] +win32 = ["pywin32"] + +[[package]] +name = "shexjsg" +version = "0.7.1" +description = "ShExJSG - Astract Syntax Tree for the ShEx 2.0 language" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +pyjsg = ">=0.11.5" + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] +name = "snowballstemmer" +version = "2.2.0" +description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "sparqlslurper" +version = "0.4.1" +description = "SPARQL Slurper for rdflib" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +rdflib = ">=5.0,<6.0" +sparqlwrapper = ">=1.8.2" + +[[package]] +name = "sparqlwrapper" +version = "1.8.5" +description = "SPARQL Endpoint interface to Python" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +rdflib = ">=4.0" + +[package.extras] +keepalive = ["keepalive (>=0.5)"] + +[[package]] +name = "sphinx" +version = "4.3.0" +description = "Python documentation generator" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +alabaster = ">=0.7,<0.8" +babel = ">=1.3" +colorama = {version = ">=0.3.5", markers = "sys_platform == \"win32\""} +docutils = ">=0.14,<0.18" +imagesize = "*" +Jinja2 = ">=2.3" +packaging = "*" +Pygments = ">=2.0" +requests = ">=2.5.0" +snowballstemmer = ">=1.1" +sphinxcontrib-applehelp = "*" +sphinxcontrib-devhelp = "*" +sphinxcontrib-htmlhelp = ">=2.0.0" +sphinxcontrib-jsmath = "*" +sphinxcontrib-qthelp = "*" +sphinxcontrib-serializinghtml = ">=1.1.5" + +[package.extras] +docs = ["sphinxcontrib-websupport"] +lint = ["flake8 (>=3.5.0)", "isort", "mypy (>=0.900)", "docutils-stubs", "types-typed-ast", "types-pkg-resources", "types-requests"] +test = ["pytest", "pytest-cov", "html5lib", "cython", "typed-ast"] + +[[package]] +name = "sphinx-click" +version = "3.0.2" +description = "Sphinx extension that automatically documents click applications" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +click = ">=7.0" +docutils = "*" +sphinx = ">=2.0" + +[[package]] +name = "sphinx-rtd-theme" +version = "1.0.0" +description = "Read the Docs theme for Sphinx" +category = "main" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" + +[package.dependencies] +docutils = "<0.18" +sphinx = ">=1.6" + +[package.extras] +dev = ["transifex-client", "sphinxcontrib-httpdomain", "bump2version"] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "1.0.2" +description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books" +category = "main" +optional = false +python-versions = ">=3.5" + +[package.extras] +lint = ["flake8", "mypy", "docutils-stubs"] +test = ["pytest"] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "1.0.2" +description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document." +category = "main" +optional = false +python-versions = ">=3.5" + +[package.extras] +lint = ["flake8", "mypy", "docutils-stubs"] +test = ["pytest"] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.0.0" +description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +lint = ["flake8", "mypy", "docutils-stubs"] +test = ["pytest", "html5lib"] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +description = "A sphinx extension which renders display math in HTML via JavaScript" +category = "main" +optional = false +python-versions = ">=3.5" + +[package.extras] +test = ["pytest", "flake8", "mypy"] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "1.0.3" +description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document." +category = "main" +optional = false +python-versions = ">=3.5" + +[package.extras] +lint = ["flake8", "mypy", "docutils-stubs"] +test = ["pytest"] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "1.1.5" +description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)." +category = "main" +optional = false +python-versions = ">=3.5" + +[package.extras] +lint = ["flake8", "mypy", "docutils-stubs"] +test = ["pytest"] + +[[package]] +name = "sqlalchemy" +version = "1.4.27" +description = "Database Abstraction Library" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" + +[package.dependencies] +greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and (platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\")"} +importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} + +[package.extras] +aiomysql = ["greenlet (!=0.4.17)", "aiomysql"] +aiosqlite = ["typing_extensions (!=3.10.0.1)", "greenlet (!=0.4.17)", "aiosqlite"] +asyncio = ["greenlet (!=0.4.17)"] +asyncmy = ["greenlet (!=0.4.17)", "asyncmy (>=0.2.3)"] +mariadb_connector = ["mariadb (>=1.0.1)"] +mssql = ["pyodbc"] +mssql_pymssql = ["pymssql"] +mssql_pyodbc = ["pyodbc"] +mypy = ["sqlalchemy2-stubs", "mypy (>=0.910)"] +mysql = ["mysqlclient (>=1.4.0,<2)", "mysqlclient (>=1.4.0)"] +mysql_connector = ["mysql-connector-python"] +oracle = ["cx_oracle (>=7,<8)", "cx_oracle (>=7)"] +postgresql = ["psycopg2 (>=2.7)"] +postgresql_asyncpg = ["greenlet (!=0.4.17)", "asyncpg"] +postgresql_pg8000 = ["pg8000 (>=1.16.6)"] +postgresql_psycopg2binary = ["psycopg2-binary"] +postgresql_psycopg2cffi = ["psycopg2cffi"] +pymysql = ["pymysql (<1)", "pymysql"] +sqlcipher = ["sqlcipher3-binary"] + +[[package]] +name = "terminado" +version = "0.12.1" +description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +ptyprocess = {version = "*", markers = "os_name != \"nt\""} +pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""} +tornado = ">=4" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "testfixtures" +version = "6.18.3" +description = "A collection of helpers and mock objects for unit tests and doc tests." +category = "main" +optional = false +python-versions = "*" + +[package.extras] +build = ["setuptools-git", "wheel", "twine"] +docs = ["sphinx", "zope.component", "sybil", "twisted", "mock", "django (<2)", "django"] +test = ["pytest (>=3.6)", "pytest-cov", "pytest-django", "zope.component", "sybil", "twisted", "mock", "django (<2)", "django"] + +[[package]] +name = "testpath" +version = "0.5.0" +description = "Test utilities for code working with files and commands" +category = "main" +optional = false +python-versions = ">= 3.5" + +[package.extras] +test = ["pytest", "pathlib2"] + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +category = "main" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] +name = "tornado" +version = "6.1" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +category = "main" +optional = false +python-versions = ">= 3.5" + +[[package]] +name = "traitlets" +version = "5.1.1" +description = "Traitlets Python configuration system" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "typing-extensions" +version = "4.0.0" +description = "Backported and Experimental Type Hints for Python 3.6+" +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "urllib3" +version = "1.26.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" + +[package.extras] +brotli = ["brotlipy (>=0.6.0)"] +secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "watchdog" +version = "2.1.6" +description = "Filesystem events monitoring" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +watchmedo = ["PyYAML (>=3.10)"] + +[[package]] +name = "wcwidth" +version = "0.2.5" +description = "Measures the displayed width of unicode strings in a terminal" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "widgetsnbextension" +version = "3.5.2" +description = "IPython HTML widgets for Jupyter" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +notebook = ">=4.4.1" + +[[package]] +name = "wrapt" +version = "1.13.3" +description = "Module for decorators, wrappers and monkey patching." +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" + +[[package]] +name = "zipp" +version = "3.6.0" +description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] +testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"] + +[metadata] +lock-version = "1.1" +python-versions = ">=3.7.1,<4.0" +content-hash = "5df3881b02714e46ff84ced5b520baabd3c955fb2ca47bdd1b8ae4a157a2d89e" + +[metadata.files] +alabaster = [ + {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"}, + {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"}, +] +antlr4-python3-runtime = [ + {file = "antlr4-python3-runtime-4.9.3.tar.gz", hash = "sha256:f224469b4168294902bb1efa80a8bf7855f24c99aef99cbefc1bcd3cce77881b"}, +] +appnope = [ + {file = "appnope-0.1.2-py2.py3-none-any.whl", hash = "sha256:93aa393e9d6c54c5cd570ccadd8edad61ea0c4b9ea7a01409020c9aa019eb442"}, + {file = "appnope-0.1.2.tar.gz", hash = "sha256:dd83cd4b5b460958838f6eb3000c660b1f9caf2a5b1de4264e941512f603258a"}, +] +argcomplete = [ + {file = "argcomplete-1.12.3-py2.py3-none-any.whl", hash = "sha256:291f0beca7fd49ce285d2f10e4c1c77e9460cf823eef2de54df0c0fec88b0d81"}, + {file = "argcomplete-1.12.3.tar.gz", hash = "sha256:2c7dbffd8c045ea534921e63b0be6fe65e88599990d8dc408ac8c542b72a5445"}, +] +argon2-cffi = [ + {file = "argon2-cffi-21.1.0.tar.gz", hash = "sha256:f710b61103d1a1f692ca3ecbd1373e28aa5e545ac625ba067ff2feca1b2bb870"}, + {file = "argon2_cffi-21.1.0-cp35-abi3-macosx_10_14_x86_64.whl", hash = "sha256:217b4f0f853ccbbb5045242946ad2e162e396064575860141b71a85eb47e475a"}, + {file = "argon2_cffi-21.1.0-cp35-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:fa7e7d1fc22514a32b1761fdfa1882b6baa5c36bb3ef557bdd69e6fc9ba14a41"}, + {file = "argon2_cffi-21.1.0-cp35-abi3-win32.whl", hash = "sha256:e4d8f0ae1524b7b0372a3e574a2561cbdddb3fdb6c28b70a72868189bda19659"}, + {file = "argon2_cffi-21.1.0-cp35-abi3-win_amd64.whl", hash = "sha256:65213a9174320a1aee03fe826596e0620783966b49eb636955958b3074e87ff9"}, + {file = "argon2_cffi-21.1.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl", hash = "sha256:245f64a203012b144b7b8c8ea6d468cb02b37caa5afee5ba4a10c80599334f6a"}, + {file = "argon2_cffi-21.1.0-pp36-pypy36_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4ad152c418f7eb640eac41ac815534e6aa61d1624530b8e7779114ecfbf327f8"}, + {file = "argon2_cffi-21.1.0-pp36-pypy36_pp73-win32.whl", hash = "sha256:bc513db2283c385ea4da31a2cd039c33380701f376f4edd12fe56db118a3b21a"}, + {file = "argon2_cffi-21.1.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl", hash = "sha256:c7a7c8cc98ac418002090e4add5bebfff1b915ea1cb459c578cd8206fef10378"}, + {file = "argon2_cffi-21.1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:165cadae5ac1e26644f5ade3bd9c18d89963be51d9ea8817bd671006d7909057"}, + {file = "argon2_cffi-21.1.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:566ffb581bbd9db5562327aee71b2eda24a1c15b23a356740abe3c011bbe0dcb"}, +] +argparse = [ + {file = "argparse-1.4.0-py2.py3-none-any.whl", hash = "sha256:c31647edb69fd3d465a847ea3157d37bed1f95f19760b11a47aa91c04b666314"}, + {file = "argparse-1.4.0.tar.gz", hash = "sha256:62b089a55be1d8949cd2bc7e0df0bddb9e028faefc8c32038cc84862aefdd6e4"}, +] +atomicwrites = [ + {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, + {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, +] +attrs = [ + {file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"}, + {file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"}, +] +babel = [ + {file = "Babel-2.9.1-py2.py3-none-any.whl", hash = "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9"}, + {file = "Babel-2.9.1.tar.gz", hash = "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0"}, +] +backcall = [ + {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, + {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, +] +bleach = [ + {file = "bleach-4.1.0-py2.py3-none-any.whl", hash = "sha256:4d2651ab93271d1129ac9cbc679f524565cc8a1b791909c4a51eac4446a15994"}, + {file = "bleach-4.1.0.tar.gz", hash = "sha256:0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da"}, +] +cachetools = [ + {file = "cachetools-4.2.4-py3-none-any.whl", hash = "sha256:92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1"}, + {file = "cachetools-4.2.4.tar.gz", hash = "sha256:89ea6f1b638d5a73a4f9226be57ac5e4f399d22770b92355f92dcb0f7f001693"}, +] +certifi = [ + {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, + {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, +] +cffi = [ + {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"}, + {file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0"}, + {file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14"}, + {file = "cffi-1.15.0-cp27-cp27m-win32.whl", hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474"}, + {file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl", hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6"}, + {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27"}, + {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023"}, + {file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2"}, + {file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382"}, + {file = "cffi-1.15.0-cp310-cp310-win32.whl", hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55"}, + {file = "cffi-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0"}, + {file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605"}, + {file = "cffi-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e"}, + {file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc"}, + {file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7"}, + {file = "cffi-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66"}, + {file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029"}, + {file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6"}, + {file = "cffi-1.15.0-cp38-cp38-win32.whl", hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c"}, + {file = "cffi-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443"}, + {file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a"}, + {file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8"}, + {file = "cffi-1.15.0-cp39-cp39-win32.whl", hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a"}, + {file = "cffi-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139"}, + {file = "cffi-1.15.0.tar.gz", hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954"}, +] +cfgraph = [ + {file = "CFGraph-0.2.1.tar.gz", hash = "sha256:b57fe7044a10b8ff65aa3a8a8ddc7d4cd77bf511b42e57289cd52cbc29f8fe74"}, +] +charset-normalizer = [ + {file = "charset-normalizer-2.0.7.tar.gz", hash = "sha256:e019de665e2bcf9c2b64e2e5aa025fa991da8720daa3c1138cadd2fd1856aed0"}, + {file = "charset_normalizer-2.0.7-py3-none-any.whl", hash = "sha256:f7af805c321bfa1ce6714c51f254e0d5bb5e5834039bc17db7ebe3a4cec9492b"}, +] +click = [ + {file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"}, + {file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"}, +] +colorama = [ + {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, + {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, +] +crdch-model = [ + {file = "crdch-model-1.1.5.tar.gz", hash = "sha256:47ba08d7158e852f50a474aacc0b8d8ff73ff3a73022336c15bc27744c0b032c"}, + {file = "crdch_model-1.1.5-py3-none-any.whl", hash = "sha256:b101fa148f33678a0fa49de39c1d3496e4e6ec30c90b38379392e09ef6188b74"}, +] +debugpy = [ + {file = "debugpy-1.5.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:70b422c63a833630c33e3f9cdbd9b6971f8c5afd452697e464339a21bbe862ba"}, + {file = "debugpy-1.5.1-cp310-cp310-win32.whl", hash = "sha256:3a457ad9c0059a21a6c7d563c1f18e924f5cf90278c722bd50ede6f56b77c7fe"}, + {file = "debugpy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:5d76a4fd028d8009c3faf1185b4b78ceb2273dd2499447664b03939e0368bb90"}, + {file = "debugpy-1.5.1-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:16db27b4b91991442f91d73604d32080b30de655aca9ba821b1972ea8171021b"}, + {file = "debugpy-1.5.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2b073ad5e8d8c488fbb6a116986858bab0c9c4558f28deb8832c7a5a27405bd6"}, + {file = "debugpy-1.5.1-cp36-cp36m-win32.whl", hash = "sha256:318f81f37341e4e054b4267d39896b73cddb3612ca13b39d7eea45af65165e1d"}, + {file = "debugpy-1.5.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b5b3157372e0e0a1297a8b6b5280bcf1d35a40f436c7973771c972726d1e32d5"}, + {file = "debugpy-1.5.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:1ec3a086e14bba6c472632025b8fe5bdfbaef2afa1ebd5c6615ce6ed8d89bc67"}, + {file = "debugpy-1.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:26fbe53cca45a608679094791ce587b6e2798acd1d4777a8b303b07622e85182"}, + {file = "debugpy-1.5.1-cp37-cp37m-win32.whl", hash = "sha256:d876db8c312eeb02d85611e0f696abe66a2c1515e6405943609e725d5ff36f2a"}, + {file = "debugpy-1.5.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4404a62fb5332ea5c8c9132290eef50b3a0ba38cecacad5529e969a783bcbdd7"}, + {file = "debugpy-1.5.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f3a3dca9104aa14fd4210edcce6d9ce2b65bd9618c0b222135a40b9d6e2a9eeb"}, + {file = "debugpy-1.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2df2c373e85871086bd55271c929670cd4e1dba63e94a08d442db830646203b"}, + {file = "debugpy-1.5.1-cp38-cp38-win32.whl", hash = "sha256:82f5f9ce93af6861a0713f804e62ab390bb12a17f113153e47fea8bbb1dfbe36"}, + {file = "debugpy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:17a25ce9d7714f92fc97ef00cc06269d7c2b163094990ada30156ed31d9a5030"}, + {file = "debugpy-1.5.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:01e98c594b3e66d529e40edf314f849cd1a21f7a013298df58cd8e263bf8e184"}, + {file = "debugpy-1.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f73988422b17f071ad3c4383551ace1ba5ed810cbab5f9c362783d22d40a08dc"}, + {file = "debugpy-1.5.1-cp39-cp39-win32.whl", hash = "sha256:23df67fc56d59e386c342428a7953c2c06cc226d8525b11319153e96afb65b0c"}, + {file = "debugpy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:a2aa64f6d2ca7ded8a7e8a4e7cae3bc71866b09876b7b05cecad231779cb9156"}, + {file = "debugpy-1.5.1-py2.py3-none-any.whl", hash = "sha256:194f95dd3e84568b5489aab5689a3a2c044e8fdc06f1890b8b4f70b6b89f2778"}, + {file = "debugpy-1.5.1.zip", hash = "sha256:d2b09e91fbd1efa4f4fda121d49af89501beda50c18ed7499712c71a4bf3452e"}, +] +decorator = [ + {file = "decorator-5.1.0-py3-none-any.whl", hash = "sha256:7b12e7c3c6ab203a29e157335e9122cb03de9ab7264b137594103fd4a683b374"}, + {file = "decorator-5.1.0.tar.gz", hash = "sha256:e59913af105b9860aa2c8d3272d9de5a56a4e608db9a2f167a8480b323d529a7"}, +] +defusedxml = [ + {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, + {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, +] +deprecated = [ + {file = "Deprecated-1.2.13-py2.py3-none-any.whl", hash = "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d"}, + {file = "Deprecated-1.2.13.tar.gz", hash = "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"}, +] +docutils = [ + {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"}, + {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"}, +] +entrypoints = [ + {file = "entrypoints-0.3-py2.py3-none-any.whl", hash = "sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19"}, + {file = "entrypoints-0.3.tar.gz", hash = "sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451"}, +] +et-xmlfile = [ + {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, + {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, +] +frozendict = [ + {file = "frozendict-2.0.7-py3-none-any.whl", hash = "sha256:d650f9cf3d2c5438b1631488a975a49b3bdd12c7a97eec59b85e57821eebf28a"}, + {file = "frozendict-2.0.7.tar.gz", hash = "sha256:a68f609d1af67da80b45519fdcfca2d60249c0a8c96e68279c1b6ddd92128204"}, +] +graphviz = [ + {file = "graphviz-0.18.2-py3-none-any.whl", hash = "sha256:b0fda999966e75e974197c2a80946e9345f730837921a1180b4fd8397bea2799"}, + {file = "graphviz-0.18.2.zip", hash = "sha256:b876ad68bc7b441f05dee6b36cc338c6b95ddb4e523bb7313c9f3dfe56fc342a"}, +] +greenlet = [ + {file = "greenlet-1.1.2-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:58df5c2a0e293bf665a51f8a100d3e9956febfbf1d9aaf8c0677cf70218910c6"}, + {file = "greenlet-1.1.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:aec52725173bd3a7b56fe91bc56eccb26fbdff1386ef123abb63c84c5b43b63a"}, + {file = "greenlet-1.1.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:833e1551925ed51e6b44c800e71e77dacd7e49181fdc9ac9a0bf3714d515785d"}, + {file = "greenlet-1.1.2-cp27-cp27m-win32.whl", hash = "sha256:aa5b467f15e78b82257319aebc78dd2915e4c1436c3c0d1ad6f53e47ba6e2713"}, + {file = "greenlet-1.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:40b951f601af999a8bf2ce8c71e8aaa4e8c6f78ff8afae7b808aae2dc50d4c40"}, + {file = "greenlet-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:95e69877983ea39b7303570fa6760f81a3eec23d0e3ab2021b7144b94d06202d"}, + {file = "greenlet-1.1.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:356b3576ad078c89a6107caa9c50cc14e98e3a6c4874a37c3e0273e4baf33de8"}, + {file = "greenlet-1.1.2-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:8639cadfda96737427330a094476d4c7a56ac03de7265622fcf4cfe57c8ae18d"}, + {file = "greenlet-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97e5306482182170ade15c4b0d8386ded995a07d7cc2ca8f27958d34d6736497"}, + {file = "greenlet-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e6a36bb9474218c7a5b27ae476035497a6990e21d04c279884eb10d9b290f1b1"}, + {file = "greenlet-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abb7a75ed8b968f3061327c433a0fbd17b729947b400747c334a9c29a9af6c58"}, + {file = "greenlet-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:14d4f3cd4e8b524ae9b8aa567858beed70c392fdec26dbdb0a8a418392e71708"}, + {file = "greenlet-1.1.2-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:17ff94e7a83aa8671a25bf5b59326ec26da379ace2ebc4411d690d80a7fbcf23"}, + {file = "greenlet-1.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9f3cba480d3deb69f6ee2c1825060177a22c7826431458c697df88e6aeb3caee"}, + {file = "greenlet-1.1.2-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:fa877ca7f6b48054f847b61d6fa7bed5cebb663ebc55e018fda12db09dcc664c"}, + {file = "greenlet-1.1.2-cp35-cp35m-win32.whl", hash = "sha256:7cbd7574ce8e138bda9df4efc6bf2ab8572c9aff640d8ecfece1b006b68da963"}, + {file = "greenlet-1.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:903bbd302a2378f984aef528f76d4c9b1748f318fe1294961c072bdc7f2ffa3e"}, + {file = "greenlet-1.1.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:049fe7579230e44daef03a259faa24511d10ebfa44f69411d99e6a184fe68073"}, + {file = "greenlet-1.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:dd0b1e9e891f69e7675ba5c92e28b90eaa045f6ab134ffe70b52e948aa175b3c"}, + {file = "greenlet-1.1.2-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:7418b6bfc7fe3331541b84bb2141c9baf1ec7132a7ecd9f375912eca810e714e"}, + {file = "greenlet-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9d29ca8a77117315101425ec7ec2a47a22ccf59f5593378fc4077ac5b754fce"}, + {file = "greenlet-1.1.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:21915eb821a6b3d9d8eefdaf57d6c345b970ad722f856cd71739493ce003ad08"}, + {file = "greenlet-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eff9d20417ff9dcb0d25e2defc2574d10b491bf2e693b4e491914738b7908168"}, + {file = "greenlet-1.1.2-cp36-cp36m-win32.whl", hash = "sha256:32ca72bbc673adbcfecb935bb3fb1b74e663d10a4b241aaa2f5a75fe1d1f90aa"}, + {file = "greenlet-1.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f0214eb2a23b85528310dad848ad2ac58e735612929c8072f6093f3585fd342d"}, + {file = "greenlet-1.1.2-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:b92e29e58bef6d9cfd340c72b04d74c4b4e9f70c9fa7c78b674d1fec18896dc4"}, + {file = "greenlet-1.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:fdcec0b8399108577ec290f55551d926d9a1fa6cad45882093a7a07ac5ec147b"}, + {file = "greenlet-1.1.2-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:93f81b134a165cc17123626ab8da2e30c0455441d4ab5576eed73a64c025b25c"}, + {file = "greenlet-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e12bdc622676ce47ae9abbf455c189e442afdde8818d9da983085df6312e7a1"}, + {file = "greenlet-1.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c790abda465726cfb8bb08bd4ca9a5d0a7bd77c7ac1ca1b839ad823b948ea28"}, + {file = "greenlet-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f276df9830dba7a333544bd41070e8175762a7ac20350786b322b714b0e654f5"}, + {file = "greenlet-1.1.2-cp37-cp37m-win32.whl", hash = "sha256:64e6175c2e53195278d7388c454e0b30997573f3f4bd63697f88d855f7a6a1fc"}, + {file = "greenlet-1.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b11548073a2213d950c3f671aa88e6f83cda6e2fb97a8b6317b1b5b33d850e06"}, + {file = "greenlet-1.1.2-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:9633b3034d3d901f0a46b7939f8c4d64427dfba6bbc5a36b1a67364cf148a1b0"}, + {file = "greenlet-1.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:eb6ea6da4c787111adf40f697b4e58732ee0942b5d3bd8f435277643329ba627"}, + {file = "greenlet-1.1.2-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:f3acda1924472472ddd60c29e5b9db0cec629fbe3c5c5accb74d6d6d14773478"}, + {file = "greenlet-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e859fcb4cbe93504ea18008d1df98dee4f7766db66c435e4882ab35cf70cac43"}, + {file = "greenlet-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:00e44c8afdbe5467e4f7b5851be223be68adb4272f44696ee71fe46b7036a711"}, + {file = "greenlet-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec8c433b3ab0419100bd45b47c9c8551248a5aee30ca5e9d399a0b57ac04651b"}, + {file = "greenlet-1.1.2-cp38-cp38-win32.whl", hash = "sha256:288c6a76705dc54fba69fbcb59904ae4ad768b4c768839b8ca5fdadec6dd8cfd"}, + {file = "greenlet-1.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:8d2f1fb53a421b410751887eb4ff21386d119ef9cde3797bf5e7ed49fb51a3b3"}, + {file = "greenlet-1.1.2-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:166eac03e48784a6a6e0e5f041cfebb1ab400b394db188c48b3a84737f505b67"}, + {file = "greenlet-1.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:572e1787d1460da79590bf44304abbc0a2da944ea64ec549188fa84d89bba7ab"}, + {file = "greenlet-1.1.2-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:be5f425ff1f5f4b3c1e33ad64ab994eed12fc284a6ea71c5243fd564502ecbe5"}, + {file = "greenlet-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1692f7d6bc45e3200844be0dba153612103db241691088626a33ff1f24a0d88"}, + {file = "greenlet-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7227b47e73dedaa513cdebb98469705ef0d66eb5a1250144468e9c3097d6b59b"}, + {file = "greenlet-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ff61ff178250f9bb3cd89752df0f1dd0e27316a8bd1465351652b1b4a4cdfd3"}, + {file = "greenlet-1.1.2-cp39-cp39-win32.whl", hash = "sha256:f70a9e237bb792c7cc7e44c531fd48f5897961701cdaa06cf22fc14965c496cf"}, + {file = "greenlet-1.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:013d61294b6cd8fe3242932c1c5e36e5d1db2c8afb58606c5a67efce62c1f5fd"}, + {file = "greenlet-1.1.2.tar.gz", hash = "sha256:e30f5ea4ae2346e62cedde8794a56858a67b878dd79f7df76a0767e356b1744a"}, +] +hbreader = [ + {file = "hbreader-0.9.1-py3-none-any.whl", hash = "sha256:9a6e76c9d1afc1b977374a5dc430a1ebb0ea0488205546d4678d6e31cc5f6801"}, + {file = "hbreader-0.9.1.tar.gz", hash = "sha256:d2c132f8ba6276d794c66224c3297cec25c8079d0a4cf019c061611e0a3b94fa"}, +] +idna = [ + {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, + {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, +] +imagesize = [ + {file = "imagesize-1.3.0-py2.py3-none-any.whl", hash = "sha256:1db2f82529e53c3e929e8926a1fa9235aa82d0bd0c580359c67ec31b2fddaa8c"}, + {file = "imagesize-1.3.0.tar.gz", hash = "sha256:cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d"}, +] +importlib-metadata = [ + {file = "importlib_metadata-4.8.2-py3-none-any.whl", hash = "sha256:53ccfd5c134223e497627b9815d5030edf77d2ed573922f7a0b8f8bb81a1c100"}, + {file = "importlib_metadata-4.8.2.tar.gz", hash = "sha256:75bdec14c397f528724c1bfd9709d660b33a4d2e77387a3358f20b848bb5e5fb"}, +] +importlib-resources = [ + {file = "importlib_resources-5.4.0-py3-none-any.whl", hash = "sha256:33a95faed5fc19b4bc16b29a6eeae248a3fe69dd55d4d229d2b480e23eeaad45"}, + {file = "importlib_resources-5.4.0.tar.gz", hash = "sha256:d756e2f85dd4de2ba89be0b21dba2a3bbec2e871a42a3a16719258a11f87506b"}, +] +iniconfig = [ + {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, + {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, +] +ipykernel = [ + {file = "ipykernel-6.5.0-py3-none-any.whl", hash = "sha256:f43de132feea90f86d68c51013afe9694f9415f440053ec9909dd656c75b04b5"}, + {file = "ipykernel-6.5.0.tar.gz", hash = "sha256:299795cca2c4aed7e233e3ad5360e1c73627fd0dcec11a9e75d5b2df43629353"}, +] +ipython = [ + {file = "ipython-7.29.0-py3-none-any.whl", hash = "sha256:a658beaf856ce46bc453366d5dc6b2ddc6c481efd3540cb28aa3943819caac9f"}, + {file = "ipython-7.29.0.tar.gz", hash = "sha256:4f69d7423a5a1972f6347ff233e38bbf4df6a150ef20fbb00c635442ac3060aa"}, +] +ipython-genutils = [ + {file = "ipython_genutils-0.2.0-py2.py3-none-any.whl", hash = "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8"}, + {file = "ipython_genutils-0.2.0.tar.gz", hash = "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"}, +] +ipywidgets = [ + {file = "ipywidgets-7.6.5-py2.py3-none-any.whl", hash = "sha256:d258f582f915c62ea91023299603be095de19afb5ee271698f88327b9fe9bf43"}, + {file = "ipywidgets-7.6.5.tar.gz", hash = "sha256:00974f7cb4d5f8d494c19810fedb9fa9b64bffd3cda7c2be23c133a1ad3c99c5"}, +] +isodate = [ + {file = "isodate-0.6.0-py2.py3-none-any.whl", hash = "sha256:aa4d33c06640f5352aca96e4b81afd8ab3b47337cc12089822d6f322ac772c81"}, + {file = "isodate-0.6.0.tar.gz", hash = "sha256:2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8"}, +] +jedi = [ + {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, + {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, +] +jinja2 = [ + {file = "Jinja2-3.0.3-py3-none-any.whl", hash = "sha256:077ce6014f7b40d03b47d1f1ca4b0fc8328a692bd284016f806ed0eaca390ad8"}, + {file = "Jinja2-3.0.3.tar.gz", hash = "sha256:611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7"}, +] +json-flattener = [ + {file = "json_flattener-0.1.7-py3-none-any.whl", hash = "sha256:af41c05fb15b6b9881faa95191e942e1387e305574b2269ebbecb4289173395b"}, + {file = "json_flattener-0.1.7.tar.gz", hash = "sha256:9a3d7c45e0b3636268efdb1a9d78734f0573e2a05ec4f00b6a677c69a63d1e3f"}, +] +jsonasobj = [ + {file = "jsonasobj-2.0.1-py3-none-any.whl", hash = "sha256:221af946bbe4171505e81ea1f0c31d652e69c68e02fff742e37543abe08ff7d9"}, + {file = "jsonasobj-2.0.1.tar.gz", hash = "sha256:e87c47ec5ec3db65a212e15236fdefc38dd01bdcf563b0d53021095066cd5963"}, +] +jsonasobj2 = [ + {file = "jsonasobj2-1.0.4-py3-none-any.whl", hash = "sha256:12e86f86324d54fcf60632db94ea74488d5314e3da554c994fe1e2c6f29acb79"}, + {file = "jsonasobj2-1.0.4.tar.gz", hash = "sha256:f50b1668ef478004aa487b2d2d094c304e5cb6b79337809f4a1f2975cc7fbb4e"}, +] +jsonpatch = [ + {file = "jsonpatch-1.32-py2.py3-none-any.whl", hash = "sha256:26ac385719ac9f54df8a2f0827bb8253aa3ea8ab7b3368457bcdb8c14595a397"}, + {file = "jsonpatch-1.32.tar.gz", hash = "sha256:b6ddfe6c3db30d81a96aaeceb6baf916094ffa23d7dd5fa2c13e13f8b6e600c2"}, +] +jsonpath-ng = [ + {file = "jsonpath-ng-1.5.3.tar.gz", hash = "sha256:a273b182a82c1256daab86a313b937059261b5c5f8c4fa3fc38b882b344dd567"}, + {file = "jsonpath_ng-1.5.3-py2-none-any.whl", hash = "sha256:f75b95dbecb8a0f3b86fd2ead21c2b022c3f5770957492b9b6196ecccfeb10aa"}, + {file = "jsonpath_ng-1.5.3-py3-none-any.whl", hash = "sha256:292a93569d74029ba75ac2dc3d3630fc0e17b2df26119a165fa1d498ca47bf65"}, +] +jsonpointer = [ + {file = "jsonpointer-2.2-py2.py3-none-any.whl", hash = "sha256:26d9a47a72d4dc3e3ae72c4c6cd432afd73c680164cd2540772eab53cb3823b6"}, + {file = "jsonpointer-2.2.tar.gz", hash = "sha256:f09f8deecaaa5aea65b5eb4f67ca4e54e1a61f7a11c75085e360fe6feb6a48bf"}, +] +jsonschema = [ + {file = "jsonschema-4.2.1-py3-none-any.whl", hash = "sha256:2a0f162822a64d95287990481b45d82f096e99721c86534f48201b64ebca6e8c"}, + {file = "jsonschema-4.2.1.tar.gz", hash = "sha256:390713469ae64b8a58698bb3cbc3859abe6925b565a973f87323ef21b09a27a8"}, +] +jupyter = [ + {file = "jupyter-1.0.0-py2.py3-none-any.whl", hash = "sha256:5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"}, + {file = "jupyter-1.0.0.tar.gz", hash = "sha256:d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"}, + {file = "jupyter-1.0.0.zip", hash = "sha256:3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"}, +] +jupyter-client = [ + {file = "jupyter_client-7.0.6-py3-none-any.whl", hash = "sha256:074bdeb1ffaef4a3095468ee16313938cfdc48fc65ca95cc18980b956c2e5d79"}, + {file = "jupyter_client-7.0.6.tar.gz", hash = "sha256:8b6e06000eb9399775e0a55c52df6c1be4766666209c22f90c2691ded0e338dc"}, +] +jupyter-console = [ + {file = "jupyter_console-6.4.0-py3-none-any.whl", hash = "sha256:7799c4ea951e0e96ba8260575423cb323ea5a03fcf5503560fa3e15748869e27"}, + {file = "jupyter_console-6.4.0.tar.gz", hash = "sha256:242248e1685039cd8bff2c2ecb7ce6c1546eb50ee3b08519729e6e881aec19c7"}, +] +jupyter-core = [ + {file = "jupyter_core-4.9.1-py3-none-any.whl", hash = "sha256:1c091f3bbefd6f2a8782f2c1db662ca8478ac240e962ae2c66f0b87c818154ea"}, + {file = "jupyter_core-4.9.1.tar.gz", hash = "sha256:dce8a7499da5a53ae3afd5a9f4b02e5df1d57250cf48f3ad79da23b4778cd6fa"}, +] +jupyterlab-pygments = [ + {file = "jupyterlab_pygments-0.1.2-py2.py3-none-any.whl", hash = "sha256:abfb880fd1561987efaefcb2d2ac75145d2a5d0139b1876d5be806e32f630008"}, + {file = "jupyterlab_pygments-0.1.2.tar.gz", hash = "sha256:cfcda0873626150932f438eccf0f8bf22bfa92345b814890ab360d666b254146"}, +] +jupyterlab-widgets = [ + {file = "jupyterlab_widgets-1.0.2-py3-none-any.whl", hash = "sha256:f5d9efface8ec62941173ba1cffb2edd0ecddc801c11ae2931e30b50492eb8f7"}, + {file = "jupyterlab_widgets-1.0.2.tar.gz", hash = "sha256:7885092b2b96bf189c3a705cc3c412a4472ec5e8382d0b47219a66cccae73cfa"}, +] +linkml = [ + {file = "linkml-1.1.13-py3-none-any.whl", hash = "sha256:8d0eec8968900fed7079030f803d712936acb59d056ba8a2bcf1abca3357f285"}, + {file = "linkml-1.1.13.tar.gz", hash = "sha256:ecb86e4cb3e1e129647028ff9a78c1b94943b65adb7b7697645f6781aa736985"}, +] +linkml-runtime = [ + {file = "linkml_runtime-1.1.6-py3-none-any.whl", hash = "sha256:36b52c8737c53b0be76b4102abdc781f363fc213bd5ac59e3ed72c2051c9d12e"}, + {file = "linkml_runtime-1.1.6.tar.gz", hash = "sha256:397a9556d1e942e768dd182743e5d6269fa37cc2ce3874dc0b1ccb8836a46124"}, +] +linkml-runtime-api = [ + {file = "linkml_runtime_api-0.0.4-py3-none-any.whl", hash = "sha256:b18541410dabedfe61bb90ad2830e794c72417a4451563a2a02c486783df2ef4"}, + {file = "linkml_runtime_api-0.0.4.tar.gz", hash = "sha256:fb619e0e10a878502051eb316af431bd81849dc1966a926ee09c83b90ba24e59"}, +] +lxml = [ + {file = "lxml-4.6.4-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:bbf2dc330bd44bfc0254ab37677ec60f7c7ecea55ad8ba1b8b2ea7bf20c265f5"}, + {file = "lxml-4.6.4-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b667c51682fe9b9788c69465956baa8b6999531876ccedcafc895c74ad716cd8"}, + {file = "lxml-4.6.4-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:72e730d33fe2e302fd07285f14624fca5e5e2fb2bb4fb2c3941e318c41c443d1"}, + {file = "lxml-4.6.4-cp27-cp27m-win32.whl", hash = "sha256:433df8c7dde0f9e41cbf4f36b0829d50a378116ef5e962ba3881f2f5f025c7be"}, + {file = "lxml-4.6.4-cp27-cp27m-win_amd64.whl", hash = "sha256:35752ee40f7bbf6adc9ff4e1f4b84794a3593736dcce80db32e3c2aa85e294ac"}, + {file = "lxml-4.6.4-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ff5bb2a198ea67403bb6818705e9a4f90e0313f2215428ec51001ce56d939fb"}, + {file = "lxml-4.6.4-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:9b87727561c1150c0cc91c5d9d389448b37a7d15f0ba939ed3d1acb2f11bf6c5"}, + {file = "lxml-4.6.4-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:45fdb2899c755138722797161547a40b3e2a06feda620cc41195ee7e97806d81"}, + {file = "lxml-4.6.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:38b9de0de3aa689fe9fb9877ae1be1e83b8cf9621f7e62049d0436b9ecf4ad64"}, + {file = "lxml-4.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:662523cd2a0246740225c7e32531f2e766544122e58bee70e700a024cfc0cf81"}, + {file = "lxml-4.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:4aa349c5567651f34d4eaae7de6ed5b523f6d70a288f9c6fbac22d13a0784e04"}, + {file = "lxml-4.6.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08eb9200d88b376a8ed5e50f1dc1d1a45b49305169674002a3b5929943390591"}, + {file = "lxml-4.6.4-cp310-cp310-win32.whl", hash = "sha256:bdc224f216ead849e902151112efef6e96c41ee1322e15d4e5f7c8a826929aee"}, + {file = "lxml-4.6.4-cp310-cp310-win_amd64.whl", hash = "sha256:ab6db93a2b6b66cbf62b4e4a7135f476e708e8c5c990d186584142c77d7f975a"}, + {file = "lxml-4.6.4-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:50790313df028aa05cf22be9a8da033b86c42fa32523e4fd944827b482b17bf0"}, + {file = "lxml-4.6.4-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6764998345552b1dfc9326a932d2bad6367c6b37a176bb73ada6b9486bf602f7"}, + {file = "lxml-4.6.4-cp35-cp35m-win32.whl", hash = "sha256:543b239b191bb3b6d9bef5f09f1fb2be5b7eb09ab4d386aa655e4d53fbe9ff47"}, + {file = "lxml-4.6.4-cp35-cp35m-win_amd64.whl", hash = "sha256:a75c1ad05eedb1a3ff2a34a52a4f0836cfaa892e12796ba39a7732c82701eff4"}, + {file = "lxml-4.6.4-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:47e955112ce64241fdb357acf0216081f9f3255b3ac9c502ca4b3323ec1ca558"}, + {file = "lxml-4.6.4-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:20d7c8d90d449c6a353b15ee0459abae8395dbe59ad01e406ccbf30cd81c6f98"}, + {file = "lxml-4.6.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:240db6f3228d26e3c6f4fad914b9ddaaf8707254e8b3efd564dc680c8ec3c264"}, + {file = "lxml-4.6.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:351482da8dd028834028537f08724b1de22d40dcf3bb723b469446564f409074"}, + {file = "lxml-4.6.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:e678a643177c0e5ec947b645fa7bc84260dfb9b6bf8fb1fdd83008dfc2ca5928"}, + {file = "lxml-4.6.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:15d0381feb56f08f78c5cc4fc385ddfe0bde1456e37f54a9322833371aec4060"}, + {file = "lxml-4.6.4-cp36-cp36m-win32.whl", hash = "sha256:4ba74afe5ee5cb5e28d83b513a6e8f0875fda1dc1a9aea42cc0065f029160d2a"}, + {file = "lxml-4.6.4-cp36-cp36m-win_amd64.whl", hash = "sha256:9c91a73971a922c13070fd8fa5a114c858251791ba2122a941e6aa781c713e44"}, + {file = "lxml-4.6.4-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:6020c70ff695106bf80651953a23e37718ef1fee9abd060dcad8e32ab2dc13f3"}, + {file = "lxml-4.6.4-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:f5dd358536b8a964bf6bd48de038754c1609e72e5f17f5d21efe2dda17594dbf"}, + {file = "lxml-4.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:7ae7089d81fc502df4b217ad77f03c54039fe90dac0acbe70448d7e53bfbc57e"}, + {file = "lxml-4.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:80d10d53d3184837445ff8562021bdd37f57c4cadacbf9d8726cc16220a00d54"}, + {file = "lxml-4.6.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e95da348d57eb448d226a44b868ff2ca5786fbcbe417ac99ff62d0a7d724b9c7"}, + {file = "lxml-4.6.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:ffd65cfa33fed01735c82aca640fde4cc63f0414775cba11e06f84fae2085a6e"}, + {file = "lxml-4.6.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:877666418598f6cb289546c77ff87590cfd212f903b522b0afa0b9fb73b3ccfb"}, + {file = "lxml-4.6.4-cp37-cp37m-win32.whl", hash = "sha256:e91d24623e747eeb2d8121f4a94c6a7ad27dc48e747e2dc95bfe88632bd028a2"}, + {file = "lxml-4.6.4-cp37-cp37m-win_amd64.whl", hash = "sha256:4ec9a80dd5704ecfde54319b6964368daf02848c8954d3bacb9b64d1c7659159"}, + {file = "lxml-4.6.4-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:2901625f4a878a055d275beedc20ba9cb359cefc4386a967222fee29eb236038"}, + {file = "lxml-4.6.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:b567178a74a2261345890eac66fbf394692a6e002709d329f28a673ca6042473"}, + {file = "lxml-4.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:4717123f7c11c81e0da69989e5a64079c3f402b0efeb4c6241db6c369d657bd8"}, + {file = "lxml-4.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:cf201bf5594d1aab139fe53e3fca457e4f8204a5bbd65d48ab3b82a16f517868"}, + {file = "lxml-4.6.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a77a3470ba37e11872c75ca95baf9b3312133a3d5a5dc720803b23098c653976"}, + {file = "lxml-4.6.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:619c6d2b552bba00491e96c0518aad94002651c108a0f7364ff2d7798812c00e"}, + {file = "lxml-4.6.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:601f0ab75538b280aaf1e720eb9d68d4fa104ac274e1e9e6971df488f4dcdb0f"}, + {file = "lxml-4.6.4-cp38-cp38-win32.whl", hash = "sha256:75d3c5bbc0ddbad03bb68b9be638599f67e4b98ed3dcd0fec9f6f39e41ee96cb"}, + {file = "lxml-4.6.4-cp38-cp38-win_amd64.whl", hash = "sha256:4341d135f5660db10184963d9c3418c3e28d7f868aaf8b11a323ebf85813f7f4"}, + {file = "lxml-4.6.4-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:9db24803fa71e3305fe4a7812782b708da21a0b774b130dd1860cf40a6d7a3ee"}, + {file = "lxml-4.6.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:afd60230ad9d8bcba005945ec3a343722f09e0b7f8ae804246e5d2cfc6bd71a6"}, + {file = "lxml-4.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:0c15e1cd55055956e77b0732270f1c6005850696bc3ef3e03d01e78af84eaa42"}, + {file = "lxml-4.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:6d422b3c729737d8a39279a25fa156c983a56458f8b2f97661ee6fb22b80b1d6"}, + {file = "lxml-4.6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2eb90f6ec3c236ef2f1bb38aee7c0d23e77d423d395af6326e7cca637519a4cb"}, + {file = "lxml-4.6.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:51a0e5d243687596f46e24e464121d4b232ad772e2d1785b2a2c0eb413c285d4"}, + {file = "lxml-4.6.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d43bd68714049c84e297c005456a15ecdec818f7b5aa5868c8b0a865cfb78a44"}, + {file = "lxml-4.6.4-cp39-cp39-win32.whl", hash = "sha256:ee9e4b07b0eba4b6a521509e9e1877476729c1243246b6959de697ebea739643"}, + {file = "lxml-4.6.4-cp39-cp39-win_amd64.whl", hash = "sha256:48eaac2991b3036175b42ee8d3c23f4cca13f2be8426bf29401a690ab58c88f4"}, + {file = "lxml-4.6.4-pp37-pypy37_pp73-macosx_10_14_x86_64.whl", hash = "sha256:2b06a91cf7b8acea7793006e4ae50646cef0fe35ce5acd4f5cb1c77eb228e4a1"}, + {file = "lxml-4.6.4-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:523f195948a1ba4f9f5b7294d83c6cd876547dc741820750a7e5e893a24bbe38"}, + {file = "lxml-4.6.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:b0ca0ada9d3bc18bd6f611bd001a28abdd49ab9698bd6d717f7f5394c8e94628"}, + {file = "lxml-4.6.4-pp38-pypy38_pp73-macosx_10_14_x86_64.whl", hash = "sha256:197b7cb7a753cf553a45115739afd8458464a28913da00f5c525063f94cd3f48"}, + {file = "lxml-4.6.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:6298f5b42a26581206ef63fffa97c754245d329414108707c525512a5197f2ba"}, + {file = "lxml-4.6.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0b12c95542f04d10cba46b3ff28ea52ea56995b78cf918f0b11b05e75812bb79"}, + {file = "lxml-4.6.4.tar.gz", hash = "sha256:daf9bd1fee31f1c7a5928b3e1059e09a8d683ea58fb3ffc773b6c88cb8d1399c"}, +] +markdown-it-py = [ + {file = "markdown-it-py-1.1.0.tar.gz", hash = "sha256:36be6bb3ad987bfdb839f5ba78ddf094552ca38ccbd784ae4f74a4e1419fc6e3"}, + {file = "markdown_it_py-1.1.0-py3-none-any.whl", hash = "sha256:98080fc0bc34c4f2bcf0846a096a9429acbd9d5d8e67ed34026c03c61c464389"}, +] +markupsafe = [ + {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:36bc903cbb393720fad60fc28c10de6acf10dc6cc883f3e24ee4012371399a38"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d7d807855b419fc2ed3e631034685db6079889a1f01d5d9dac950f764da3dad"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:add36cb2dbb8b736611303cd3bfcee00afd96471b09cda130da3581cbdc56a6d"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:168cd0a3642de83558a5153c8bd34f175a9a6e7f6dc6384b9655d2697312a646"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4dc8f9fb58f7364b63fd9f85013b780ef83c11857ae79f2feda41e270468dd9b"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20dca64a3ef2d6e4d5d615a3fd418ad3bde77a47ec8a23d984a12b5b4c74491a"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cdfba22ea2f0029c9261a4bd07e830a8da012291fbe44dc794e488b6c9bb353a"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-win32.whl", hash = "sha256:99df47edb6bda1249d3e80fdabb1dab8c08ef3975f69aed437cb69d0a5de1e28"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:e0f138900af21926a02425cf736db95be9f4af72ba1bb21453432a07f6082134"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f9081981fe268bd86831e5c75f7de206ef275defcb82bc70740ae6dc507aee51"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:0955295dd5eec6cb6cc2fe1698f4c6d84af2e92de33fbcac4111913cd100a6ff"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:0446679737af14f45767963a1a9ef7620189912317d095f2d9ffa183a4d25d2b"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:f826e31d18b516f653fe296d967d700fddad5901ae07c622bb3705955e1faa94"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:fa130dd50c57d53368c9d59395cb5526eda596d3ffe36666cd81a44d56e48872"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:905fec760bd2fa1388bb5b489ee8ee5f7291d692638ea5f67982d968366bef9f"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0d4b31cc67ab36e3392bbf3862cfbadac3db12bdd8b02a2731f509ed5b829724"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:deb993cacb280823246a026e3b2d81c493c53de6acfd5e6bfe31ab3402bb37dd"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:63f3268ba69ace99cab4e3e3b5840b03340efed0948ab8f78d2fd87ee5442a4f"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8d206346619592c6200148b01a2142798c989edcb9c896f9ac9722a99d4e77e6"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-win32.whl", hash = "sha256:6c4ca60fa24e85fe25b912b01e62cb969d69a23a5d5867682dd3e80b5b02581d"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b2f4bf27480f5e5e8ce285a8c8fd176c0b03e93dcc6646477d4630e83440c6a9"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0717a7390a68be14b8c793ba258e075c6f4ca819f15edfc2a3a027c823718567"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:6557b31b5e2c9ddf0de32a691f2312a32f77cd7681d8af66c2692efdbef84c18"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:49e3ceeabbfb9d66c3aef5af3a60cc43b85c33df25ce03d0031a608b0a8b2e3f"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:d7f9850398e85aba693bb640262d3611788b1f29a79f0c93c565694658f4071f"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:6a7fae0dd14cf60ad5ff42baa2e95727c3d81ded453457771d02b7d2b3f9c0c2"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:b7f2d075102dc8c794cbde1947378051c4e5180d52d276987b8d28a3bd58c17d"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9936f0b261d4df76ad22f8fee3ae83b60d7c3e871292cd42f40b81b70afae85"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2a7d351cbd8cfeb19ca00de495e224dea7e7d919659c2841bbb7f420ad03e2d6"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:60bf42e36abfaf9aff1f50f52644b336d4f0a3fd6d8a60ca0d054ac9f713a864"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d6c7ebd4e944c85e2c3421e612a7057a2f48d478d79e61800d81468a8d842207"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f0567c4dc99f264f49fe27da5f735f414c4e7e7dd850cfd8e69f0862d7c74ea9"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:89c687013cb1cd489a0f0ac24febe8c7a666e6e221b783e53ac50ebf68e45d86"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-win32.whl", hash = "sha256:a30e67a65b53ea0a5e62fe23682cfe22712e01f453b95233b25502f7c61cb415"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:611d1ad9a4288cf3e3c16014564df047fe08410e628f89805e475368bd304914"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:be98f628055368795d818ebf93da628541e10b75b41c559fdf36d104c5787066"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1d609f577dc6e1aa17d746f8bd3c31aa4d258f4070d61b2aa5c4166c1539de35"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7d91275b0245b1da4d4cfa07e0faedd5b0812efc15b702576d103293e252af1b"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:01a9b8ea66f1658938f65b93a85ebe8bc016e6769611be228d797c9d998dd298"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:47ab1e7b91c098ab893b828deafa1203de86d0bc6ab587b160f78fe6c4011f75"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:97383d78eb34da7e1fa37dd273c20ad4320929af65d156e35a5e2d89566d9dfb"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fcf051089389abe060c9cd7caa212c707e58153afa2c649f00346ce6d260f1b"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3dd007d54ee88b46be476e293f48c85048603f5f516008bee124ddd891398ed6"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aca6377c0cb8a8253e493c6b451565ac77e98c2951c45f913e0b52facdcff83f"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:04635854b943835a6ea959e948d19dcd311762c5c0c6e1f0e16ee57022669194"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6300b8454aa6930a24b9618fbb54b5a68135092bc666f7b06901f897fa5c2fee"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-win32.whl", hash = "sha256:023cb26ec21ece8dc3907c0e8320058b2e0cb3c55cf9564da612bc325bed5e64"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:984d76483eb32f1bcb536dc27e4ad56bba4baa70be32fa87152832cdd9db0833"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3c112550557578c26af18a1ccc9e090bfe03832ae994343cfdacd287db6a6ae7"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:53edb4da6925ad13c07b6d26c2a852bd81e364f95301c66e930ab2aef5b5ddd8"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:f5653a225f31e113b152e56f154ccbe59eeb1c7487b39b9d9f9cdb58e6c79dc5"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:4efca8f86c54b22348a5467704e3fec767b2db12fc39c6d963168ab1d3fc9135"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:ab3ef638ace319fa26553db0624c4699e31a28bb2a835c5faca8f8acf6a5a902"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:f8ba0e8349a38d3001fae7eadded3f6606f0da5d748ee53cc1dab1d6527b9509"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4296f2b1ce8c86a6aea78613c34bb1a672ea0e3de9c6ba08a960efe0b0a09047"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f02365d4e99430a12647f09b6cc8bab61a6564363f313126f775eb4f6ef798e"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5b6d930f030f8ed98e3e6c98ffa0652bdb82601e7a016ec2ab5d7ff23baa78d1"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-win32.whl", hash = "sha256:10f82115e21dc0dfec9ab5c0223652f7197feb168c940f3ef61563fc2d6beb74"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8"}, + {file = "MarkupSafe-2.0.1.tar.gz", hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"}, +] +matplotlib-inline = [ + {file = "matplotlib-inline-0.1.3.tar.gz", hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee"}, + {file = "matplotlib_inline-0.1.3-py3-none-any.whl", hash = "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c"}, +] +mdit-py-plugins = [ + {file = "mdit-py-plugins-0.2.8.tar.gz", hash = "sha256:5991cef645502e80a5388ec4fc20885d2313d4871e8b8e320ca2de14ac0c015f"}, + {file = "mdit_py_plugins-0.2.8-py3-none-any.whl", hash = "sha256:1833bf738e038e35d89cb3a07eb0d227ed647ce7dd357579b65343740c6d249c"}, +] +mistune = [ + {file = "mistune-0.8.4-py2.py3-none-any.whl", hash = "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4"}, + {file = "mistune-0.8.4.tar.gz", hash = "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"}, +] +myst-parser = [ + {file = "myst-parser-0.15.2.tar.gz", hash = "sha256:f7f3b2d62db7655cde658eb5d62b2ec2a4631308137bd8d10f296a40d57bbbeb"}, + {file = "myst_parser-0.15.2-py3-none-any.whl", hash = "sha256:40124b6f27a4c42ac7f06b385e23a9dcd03d84801e9c7130b59b3729a554b1f9"}, +] +nbclient = [ + {file = "nbclient-0.5.8-py3-none-any.whl", hash = "sha256:e85d4d6280d0a0237c1a6ec7a5e0757cf40a1fcb8c47253516b3a1f87f4ceae8"}, + {file = "nbclient-0.5.8.tar.gz", hash = "sha256:34f52cc9cb831a5d8ccd7031537e354c75dc61a24487f998712d1289de320a25"}, +] +nbconvert = [ + {file = "nbconvert-6.3.0-py3-none-any.whl", hash = "sha256:8f23fbeabda4a500685d788ee091bf22cf34119304314304fb39f16e2fc32f37"}, + {file = "nbconvert-6.3.0.tar.gz", hash = "sha256:5e77d6203854944520105e38f2563a813a4a3708e8563aa598928a3b5ee1081a"}, +] +nbformat = [ + {file = "nbformat-5.1.3-py3-none-any.whl", hash = "sha256:eb8447edd7127d043361bc17f2f5a807626bc8e878c7709a1c647abda28a9171"}, + {file = "nbformat-5.1.3.tar.gz", hash = "sha256:b516788ad70771c6250977c1374fcca6edebe6126fd2adb5a69aa5c2356fd1c8"}, +] +nest-asyncio = [ + {file = "nest_asyncio-1.5.1-py3-none-any.whl", hash = "sha256:76d6e972265063fe92a90b9cc4fb82616e07d586b346ed9d2c89a4187acea39c"}, + {file = "nest_asyncio-1.5.1.tar.gz", hash = "sha256:afc5a1c515210a23c461932765691ad39e8eba6551c055ac8d5546e69250d0aa"}, +] +notebook = [ + {file = "notebook-6.4.6-py3-none-any.whl", hash = "sha256:5cad068fa82cd4fb98d341c052100ed50cd69fbfb4118cb9b8ab5a346ef27551"}, + {file = "notebook-6.4.6.tar.gz", hash = "sha256:7bcdf79bd1cda534735bd9830d2cbedab4ee34d8fe1df6e7b946b3aab0902ba3"}, +] +numpy = [ + {file = "numpy-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38e8648f9449a549a7dfe8d8755a5979b45b3538520d1e735637ef28e8c2dc50"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fd7d7409fa643a91d0a05c7554dd68aa9c9bb16e186f6ccfe40d6e003156e33a"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a75b4498b1e93d8b700282dc8e655b8bd559c0904b3910b144646dbbbc03e062"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1412aa0aec3e00bc23fbb8664d76552b4efde98fb71f60737c83efbac24112f1"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e46ceaff65609b5399163de5893d8f2a82d3c77d5e56d976c8b5fb01faa6b671"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c6a2324085dd52f96498419ba95b5777e40b6bcbc20088fddb9e8cbb58885e8e"}, + {file = "numpy-1.21.1-cp37-cp37m-win32.whl", hash = "sha256:73101b2a1fef16602696d133db402a7e7586654682244344b8329cdcbbb82172"}, + {file = "numpy-1.21.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7a708a79c9a9d26904d1cca8d383bf869edf6f8e7650d85dbc77b041e8c5a0f8"}, + {file = "numpy-1.21.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95b995d0c413f5d0428b3f880e8fe1660ff9396dcd1f9eedbc311f37b5652e16"}, + {file = "numpy-1.21.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:635e6bd31c9fb3d475c8f44a089569070d10a9ef18ed13738b03049280281267"}, + {file = "numpy-1.21.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a3d5fb89bfe21be2ef47c0614b9c9c707b7362386c9a3ff1feae63e0267ccb6"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a326af80e86d0e9ce92bcc1e65c8ff88297de4fa14ee936cb2293d414c9ec63"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:791492091744b0fe390a6ce85cc1bf5149968ac7d5f0477288f78c89b385d9af"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0318c465786c1f63ac05d7c4dbcecd4d2d7e13f0959b01b534ea1e92202235c5"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a513bd9c1551894ee3d31369f9b07460ef223694098cf27d399513415855b68"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:91c6f5fc58df1e0a3cc0c3a717bb3308ff850abdaa6d2d802573ee2b11f674a8"}, + {file = "numpy-1.21.1-cp38-cp38-win32.whl", hash = "sha256:978010b68e17150db8765355d1ccdd450f9fc916824e8c4e35ee620590e234cd"}, + {file = "numpy-1.21.1-cp38-cp38-win_amd64.whl", hash = "sha256:9749a40a5b22333467f02fe11edc98f022133ee1bfa8ab99bda5e5437b831214"}, + {file = "numpy-1.21.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d7a4aeac3b94af92a9373d6e77b37691b86411f9745190d2c351f410ab3a791f"}, + {file = "numpy-1.21.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9e7912a56108aba9b31df688a4c4f5cb0d9d3787386b87d504762b6754fbb1b"}, + {file = "numpy-1.21.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:25b40b98ebdd272bc3020935427a4530b7d60dfbe1ab9381a39147834e985eac"}, + {file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a92c5aea763d14ba9d6475803fc7904bda7decc2a0a68153f587ad82941fec1"}, + {file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05a0f648eb28bae4bcb204e6fd14603de2908de982e761a2fc78efe0f19e96e1"}, + {file = "numpy-1.21.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f01f28075a92eede918b965e86e8f0ba7b7797a95aa8d35e1cc8821f5fc3ad6a"}, + {file = "numpy-1.21.1-cp39-cp39-win32.whl", hash = "sha256:88c0b89ad1cc24a5efbb99ff9ab5db0f9a86e9cc50240177a571fbe9c2860ac2"}, + {file = "numpy-1.21.1-cp39-cp39-win_amd64.whl", hash = "sha256:01721eefe70544d548425a07c80be8377096a54118070b8a62476866d5208e33"}, + {file = "numpy-1.21.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2d4d1de6e6fb3d28781c73fbde702ac97f03d79e4ffd6598b880b2d95d62ead4"}, + {file = "numpy-1.21.1.zip", hash = "sha256:dff4af63638afcc57a3dfb9e4b26d434a7a602d225b42d746ea7fe2edf1342fd"}, + {file = "numpy-1.21.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8890b3360f345e8360133bc078d2dacc2843b6ee6059b568781b15b97acbe39f"}, + {file = "numpy-1.21.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:69077388c5a4b997442b843dbdc3a85b420fb693ec8e33020bb24d647c164fa5"}, + {file = "numpy-1.21.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e89717274b41ebd568cd7943fc9418eeb49b1785b66031bc8a7f6300463c5898"}, + {file = "numpy-1.21.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b78ecfa070460104934e2caf51694ccd00f37d5e5dbe76f021b1b0b0d221823"}, + {file = "numpy-1.21.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:615d4e328af7204c13ae3d4df7615a13ff60a49cb0d9106fde07f541207883ca"}, + {file = "numpy-1.21.4-cp310-cp310-win_amd64.whl", hash = "sha256:1403b4e2181fc72664737d848b60e65150f272fe5a1c1cbc16145ed43884065a"}, + {file = "numpy-1.21.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:74b85a17528ca60cf98381a5e779fc0264b4a88b46025e6bcbe9621f46bb3e63"}, + {file = "numpy-1.21.4-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:92aafa03da8658609f59f18722b88f0a73a249101169e28415b4fa148caf7e41"}, + {file = "numpy-1.21.4-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5d95668e727c75b3f5088ec7700e260f90ec83f488e4c0aaccb941148b2cd377"}, + {file = "numpy-1.21.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5162ec777ba7138906c9c274353ece5603646c6965570d82905546579573f73"}, + {file = "numpy-1.21.4-cp37-cp37m-win32.whl", hash = "sha256:81225e58ef5fce7f1d80399575576fc5febec79a8a2742e8ef86d7b03beef49f"}, + {file = "numpy-1.21.4-cp37-cp37m-win_amd64.whl", hash = "sha256:32fe5b12061f6446adcbb32cf4060a14741f9c21e15aaee59a207b6ce6423469"}, + {file = "numpy-1.21.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c449eb870616a7b62e097982c622d2577b3dbc800aaf8689254ec6e0197cbf1e"}, + {file = "numpy-1.21.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2e4ed57f45f0aa38beca2a03b6532e70e548faf2debbeb3291cfc9b315d9be8f"}, + {file = "numpy-1.21.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1247ef28387b7bb7f21caf2dbe4767f4f4175df44d30604d42ad9bd701ebb31f"}, + {file = "numpy-1.21.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:34f3456f530ae8b44231c63082c8899fe9c983fd9b108c997c4b1c8c2d435333"}, + {file = "numpy-1.21.4-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4c9c23158b87ed0e70d9a50c67e5c0b3f75bcf2581a8e34668d4e9d7474d76c6"}, + {file = "numpy-1.21.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4799be6a2d7d3c33699a6f77201836ac975b2e1b98c2a07f66a38f499cb50ce"}, + {file = "numpy-1.21.4-cp38-cp38-win32.whl", hash = "sha256:bc988afcea53e6156546e5b2885b7efab089570783d9d82caf1cfd323b0bb3dd"}, + {file = "numpy-1.21.4-cp38-cp38-win_amd64.whl", hash = "sha256:170b2a0805c6891ca78c1d96ee72e4c3ed1ae0a992c75444b6ab20ff038ba2cd"}, + {file = "numpy-1.21.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fde96af889262e85aa033f8ee1d3241e32bf36228318a61f1ace579df4e8170d"}, + {file = "numpy-1.21.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c885bfc07f77e8fee3dc879152ba993732601f1f11de248d4f357f0ffea6a6d4"}, + {file = "numpy-1.21.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e6f5f50d1eff2f2f752b3089a118aee1ea0da63d56c44f3865681009b0af162"}, + {file = "numpy-1.21.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ad010846cdffe7ec27e3f933397f8a8d6c801a48634f419e3d075db27acf5880"}, + {file = "numpy-1.21.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c74c699b122918a6c4611285cc2cad4a3aafdb135c22a16ec483340ef97d573c"}, + {file = "numpy-1.21.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9864424631775b0c052f3bd98bc2712d131b3e2cd95d1c0c68b91709170890b0"}, + {file = "numpy-1.21.4-cp39-cp39-win32.whl", hash = "sha256:b1e2312f5b8843a3e4e8224b2b48fe16119617b8fc0a54df8f50098721b5bed2"}, + {file = "numpy-1.21.4-cp39-cp39-win_amd64.whl", hash = "sha256:e3c3e990274444031482a31280bf48674441e0a5b55ddb168f3a6db3e0c38ec8"}, + {file = "numpy-1.21.4-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a3deb31bc84f2b42584b8c4001c85d1934dbfb4030827110bc36bfd11509b7bf"}, + {file = "numpy-1.21.4.zip", hash = "sha256:e6c76a87633aa3fa16614b61ccedfae45b91df2767cf097aa9c933932a7ed1e0"}, +] +openpyxl = [ + {file = "openpyxl-3.0.9-py2.py3-none-any.whl", hash = "sha256:8f3b11bd896a95468a4ab162fc4fcd260d46157155d1f8bfaabb99d88cfcf79f"}, + {file = "openpyxl-3.0.9.tar.gz", hash = "sha256:40f568b9829bf9e446acfffce30250ac1fa39035124d55fc024025c41481c90f"}, +] +packaging = [ + {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, + {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, +] +pandas = [ + {file = "pandas-1.3.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9707bdc1ea9639c886b4d3be6e2a45812c1ac0c2080f94c31b71c9fa35556f9b"}, + {file = "pandas-1.3.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c2f44425594ae85e119459bb5abb0748d76ef01d9c08583a667e3339e134218e"}, + {file = "pandas-1.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:372d72a3d8a5f2dbaf566a5fa5fa7f230842ac80f29a931fb4b071502cf86b9a"}, + {file = "pandas-1.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d99d2350adb7b6c3f7f8f0e5dfb7d34ff8dd4bc0a53e62c445b7e43e163fce63"}, + {file = "pandas-1.3.4-cp310-cp310-win_amd64.whl", hash = "sha256:4acc28364863127bca1029fb72228e6f473bb50c32e77155e80b410e2068eeac"}, + {file = "pandas-1.3.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c2646458e1dce44df9f71a01dc65f7e8fa4307f29e5c0f2f92c97f47a5bf22f5"}, + {file = "pandas-1.3.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5298a733e5bfbb761181fd4672c36d0c627320eb999c59c65156c6a90c7e1b4f"}, + {file = "pandas-1.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22808afb8f96e2269dcc5b846decacb2f526dd0b47baebc63d913bf847317c8f"}, + {file = "pandas-1.3.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b528e126c13816a4374e56b7b18bfe91f7a7f6576d1aadba5dee6a87a7f479ae"}, + {file = "pandas-1.3.4-cp37-cp37m-win32.whl", hash = "sha256:fe48e4925455c964db914b958f6e7032d285848b7538a5e1b19aeb26ffaea3ec"}, + {file = "pandas-1.3.4-cp37-cp37m-win_amd64.whl", hash = "sha256:eaca36a80acaacb8183930e2e5ad7f71539a66805d6204ea88736570b2876a7b"}, + {file = "pandas-1.3.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:42493f8ae67918bf129869abea8204df899902287a7f5eaf596c8e54e0ac7ff4"}, + {file = "pandas-1.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a388960f979665b447f0847626e40f99af8cf191bce9dc571d716433130cb3a7"}, + {file = "pandas-1.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ba0aac1397e1d7b654fccf263a4798a9e84ef749866060d19e577e927d66e1b"}, + {file = "pandas-1.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f567e972dce3bbc3a8076e0b675273b4a9e8576ac629149cf8286ee13c259ae5"}, + {file = "pandas-1.3.4-cp38-cp38-win32.whl", hash = "sha256:c1aa4de4919358c5ef119f6377bc5964b3a7023c23e845d9db7d9016fa0c5b1c"}, + {file = "pandas-1.3.4-cp38-cp38-win_amd64.whl", hash = "sha256:dd324f8ee05925ee85de0ea3f0d66e1362e8c80799eb4eb04927d32335a3e44a"}, + {file = "pandas-1.3.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d47750cf07dee6b55d8423471be70d627314277976ff2edd1381f02d52dbadf9"}, + {file = "pandas-1.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d1dc09c0013d8faa7474574d61b575f9af6257ab95c93dcf33a14fd8d2c1bab"}, + {file = "pandas-1.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10e10a2527db79af6e830c3d5842a4d60383b162885270f8cffc15abca4ba4a9"}, + {file = "pandas-1.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35c77609acd2e4d517da41bae0c11c70d31c87aae8dd1aabd2670906c6d2c143"}, + {file = "pandas-1.3.4-cp39-cp39-win32.whl", hash = "sha256:003ba92db58b71a5f8add604a17a059f3068ef4e8c0c365b088468d0d64935fd"}, + {file = "pandas-1.3.4-cp39-cp39-win_amd64.whl", hash = "sha256:a51528192755f7429c5bcc9e80832c517340317c861318fea9cea081b57c9afd"}, + {file = "pandas-1.3.4.tar.gz", hash = "sha256:a2aa18d3f0b7d538e21932f637fbfe8518d085238b429e4790a35e1e44a96ffc"}, +] +pandocfilters = [ + {file = "pandocfilters-1.5.0-py2.py3-none-any.whl", hash = "sha256:33aae3f25fd1a026079f5d27bdd52496f0e0803b3469282162bafdcbdf6ef14f"}, + {file = "pandocfilters-1.5.0.tar.gz", hash = "sha256:0b679503337d233b4339a817bfc8c50064e2eff681314376a47cb582305a7a38"}, +] +parse = [ + {file = "parse-1.19.0.tar.gz", hash = "sha256:9ff82852bcb65d139813e2a5197627a94966245c897796760a3a2a8eb66f020b"}, +] +parso = [ + {file = "parso-0.8.2-py2.py3-none-any.whl", hash = "sha256:a8c4922db71e4fdb90e0d0bc6e50f9b273d3397925e5e60a717e719201778d22"}, + {file = "parso-0.8.2.tar.gz", hash = "sha256:12b83492c6239ce32ff5eed6d3639d6a536170723c6f3f1506869f1ace413398"}, +] +pexpect = [ + {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, + {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, +] +pickleshare = [ + {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, + {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, +] +pluggy = [ + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, +] +ply = [ + {file = "ply-3.11-py2.py3-none-any.whl", hash = "sha256:096f9b8350b65ebd2fd1346b12452efe5b9607f7482813ffca50c22722a807ce"}, + {file = "ply-3.11.tar.gz", hash = "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3"}, +] +prefixcommons = [ + {file = "prefixcommons-0.1.9-py3-none-any.whl", hash = "sha256:2ff99e9f2c27f41e6beb831742ca88ddae129b2de6dcc81b0b27f0de69cb2e8a"}, + {file = "prefixcommons-0.1.9-py3.8.egg", hash = "sha256:f820dc69f0eba1f6fd80bdb2e78420e4970f20dfb4c307fed77c607198ca69f2"}, + {file = "prefixcommons-0.1.9.tar.gz", hash = "sha256:a4a6decd6c1a2497b2b10193fa4ed69ed91cea20deb3a9781815b6bf3f3e1003"}, +] +prologterms = [ + {file = "prologterms-0.0.6-py3-none-any.whl", hash = "sha256:9b8f6272dcae5a0a9257daa41cd455d5b060147486cea36623f91a3226a656e9"}, + {file = "prologterms-0.0.6.tar.gz", hash = "sha256:c63cfc291ccfa3e2eeea89eed93bc7fc0214a1f2d748a200de0a5fdd90e0426a"}, +] +prometheus-client = [ + {file = "prometheus_client-0.12.0-py2.py3-none-any.whl", hash = "sha256:317453ebabff0a1b02df7f708efbab21e3489e7072b61cb6957230dd004a0af0"}, + {file = "prometheus_client-0.12.0.tar.gz", hash = "sha256:1b12ba48cee33b9b0b9de64a1047cbd3c5f2d0ab6ebcead7ddda613a750ec3c5"}, +] +prompt-toolkit = [ + {file = "prompt_toolkit-3.0.22-py3-none-any.whl", hash = "sha256:48d85cdca8b6c4f16480c7ce03fd193666b62b0a21667ca56b4bb5ad679d1170"}, + {file = "prompt_toolkit-3.0.22.tar.gz", hash = "sha256:449f333dd120bd01f5d296a8ce1452114ba3a71fae7288d2f0ae2c918764fa72"}, +] +ptyprocess = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] +py = [ + {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, + {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, +] +pycparser = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] +pydantic = [ + {file = "pydantic-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:05ddfd37c1720c392f4e0d43c484217b7521558302e7069ce8d318438d297739"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a7c6002203fe2c5a1b5cbb141bb85060cbff88c2d78eccbc72d97eb7022c43e4"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:589eb6cd6361e8ac341db97602eb7f354551482368a37f4fd086c0733548308e"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_x86_64.whl", hash = "sha256:10e5622224245941efc193ad1d159887872776df7a8fd592ed746aa25d071840"}, + {file = "pydantic-1.8.2-cp36-cp36m-win_amd64.whl", hash = "sha256:99a9fc39470010c45c161a1dc584997f1feb13f689ecf645f59bb4ba623e586b"}, + {file = "pydantic-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a83db7205f60c6a86f2c44a61791d993dff4b73135df1973ecd9eed5ea0bda20"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:41b542c0b3c42dc17da70554bc6f38cbc30d7066d2c2815a94499b5684582ecb"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:ea5cb40a3b23b3265f6325727ddfc45141b08ed665458be8c6285e7b85bd73a1"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:18b5ea242dd3e62dbf89b2b0ec9ba6c7b5abaf6af85b95a97b00279f65845a23"}, + {file = "pydantic-1.8.2-cp37-cp37m-win_amd64.whl", hash = "sha256:234a6c19f1c14e25e362cb05c68afb7f183eb931dd3cd4605eafff055ebbf287"}, + {file = "pydantic-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:021ea0e4133e8c824775a0cfe098677acf6fa5a3cbf9206a376eed3fc09302cd"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e710876437bc07bd414ff453ac8ec63d219e7690128d925c6e82889d674bb505"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:ac8eed4ca3bd3aadc58a13c2aa93cd8a884bcf21cb019f8cfecaae3b6ce3746e"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:4a03cbbe743e9c7247ceae6f0d8898f7a64bb65800a45cbdc52d65e370570820"}, + {file = "pydantic-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:8621559dcf5afacf0069ed194278f35c255dc1a1385c28b32dd6c110fd6531b3"}, + {file = "pydantic-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8b223557f9510cf0bfd8b01316bf6dd281cf41826607eada99662f5e4963f316"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:244ad78eeb388a43b0c927e74d3af78008e944074b7d0f4f696ddd5b2af43c62"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:05ef5246a7ffd2ce12a619cbb29f3307b7c4509307b1b49f456657b43529dc6f"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:54cd5121383f4a461ff7644c7ca20c0419d58052db70d8791eacbbe31528916b"}, + {file = "pydantic-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:4be75bebf676a5f0f87937c6ddb061fa39cbea067240d98e298508c1bda6f3f3"}, + {file = "pydantic-1.8.2-py3-none-any.whl", hash = "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833"}, + {file = "pydantic-1.8.2.tar.gz", hash = "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b"}, +] +pygments = [ + {file = "Pygments-2.10.0-py3-none-any.whl", hash = "sha256:b8e67fe6af78f492b3c4b3e2970c0624cbf08beb1e493b2c99b9fa1b67a20380"}, + {file = "Pygments-2.10.0.tar.gz", hash = "sha256:f398865f7eb6874156579fdf36bc840a03cab64d1cde9e93d68f46a425ec52c6"}, +] +pyjsg = [ + {file = "PyJSG-0.11.6-py3-none-any.whl", hash = "sha256:08d9a80f6996af8862e8a2a4e2d90049af695c4ccd84187e7d7a48f600d37952"}, + {file = "PyJSG-0.11.6.tar.gz", hash = "sha256:3c98d3153a2e4ca8ae8942a4bb213477c68519b145ca2d973648bcb9495208e7"}, +] +pyld = [ + {file = "PyLD-2.0.3.tar.gz", hash = "sha256:287445f888c3a332ccbd20a14844c66c2fcbaeab3c99acd506a0788e2ebb2f82"}, +] +pyldmod = [ + {file = "PyLDmod-2.0.5.tar.gz", hash = "sha256:afe7515a4c2b53bbff436c93af128599b4f52791cc71e34baecb7662c694feed"}, +] +pyparsing = [ + {file = "pyparsing-3.0.6-py3-none-any.whl", hash = "sha256:04ff808a5b90911829c55c4e26f75fa5ca8a2f5f36aa3a51f68e27033341d3e4"}, + {file = "pyparsing-3.0.6.tar.gz", hash = "sha256:d9bdec0013ef1eb5a84ab39a3b3868911598afa494f5faa038647101504e2b81"}, +] +pyrsistent = [ + {file = "pyrsistent-0.18.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72"}, + {file = "pyrsistent-0.18.0-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:da6e5e818d18459fa46fac0a4a4e543507fe1110e808101277c5a2b5bab0cd2d"}, + {file = "pyrsistent-0.18.0-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:5e4395bbf841693eaebaa5bb5c8f5cdbb1d139e07c975c682ec4e4f8126e03d2"}, + {file = "pyrsistent-0.18.0-cp36-cp36m-win32.whl", hash = "sha256:527be2bfa8dc80f6f8ddd65242ba476a6c4fb4e3aedbf281dfbac1b1ed4165b1"}, + {file = "pyrsistent-0.18.0-cp36-cp36m-win_amd64.whl", hash = "sha256:2aaf19dc8ce517a8653746d98e962ef480ff34b6bc563fc067be6401ffb457c7"}, + {file = "pyrsistent-0.18.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:58a70d93fb79dc585b21f9d72487b929a6fe58da0754fa4cb9f279bb92369396"}, + {file = "pyrsistent-0.18.0-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4916c10896721e472ee12c95cdc2891ce5890898d2f9907b1b4ae0f53588b710"}, + {file = "pyrsistent-0.18.0-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:73ff61b1411e3fb0ba144b8f08d6749749775fe89688093e1efef9839d2dcc35"}, + {file = "pyrsistent-0.18.0-cp37-cp37m-win32.whl", hash = "sha256:b29b869cf58412ca5738d23691e96d8aff535e17390128a1a52717c9a109da4f"}, + {file = "pyrsistent-0.18.0-cp37-cp37m-win_amd64.whl", hash = "sha256:097b96f129dd36a8c9e33594e7ebb151b1515eb52cceb08474c10a5479e799f2"}, + {file = "pyrsistent-0.18.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:772e94c2c6864f2cd2ffbe58bb3bdefbe2a32afa0acb1a77e472aac831f83427"}, + {file = "pyrsistent-0.18.0-cp38-cp38-manylinux1_i686.whl", hash = "sha256:c1a9ff320fa699337e05edcaae79ef8c2880b52720bc031b219e5b5008ebbdef"}, + {file = "pyrsistent-0.18.0-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:cd3caef37a415fd0dae6148a1b6957a8c5f275a62cca02e18474608cb263640c"}, + {file = "pyrsistent-0.18.0-cp38-cp38-win32.whl", hash = "sha256:e79d94ca58fcafef6395f6352383fa1a76922268fa02caa2272fff501c2fdc78"}, + {file = "pyrsistent-0.18.0-cp38-cp38-win_amd64.whl", hash = "sha256:a0c772d791c38bbc77be659af29bb14c38ced151433592e326361610250c605b"}, + {file = "pyrsistent-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d5ec194c9c573aafaceebf05fc400656722793dac57f254cd4741f3c27ae57b4"}, + {file = "pyrsistent-0.18.0-cp39-cp39-manylinux1_i686.whl", hash = "sha256:6b5eed00e597b5b5773b4ca30bd48a5774ef1e96f2a45d105db5b4ebb4bca680"}, + {file = "pyrsistent-0.18.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:48578680353f41dca1ca3dc48629fb77dfc745128b56fc01096b2530c13fd426"}, + {file = "pyrsistent-0.18.0-cp39-cp39-win32.whl", hash = "sha256:f3ef98d7b76da5eb19c37fda834d50262ff9167c65658d1d8f974d2e4d90676b"}, + {file = "pyrsistent-0.18.0-cp39-cp39-win_amd64.whl", hash = "sha256:404e1f1d254d314d55adb8d87f4f465c8693d6f902f67eb6ef5b4526dc58e6ea"}, + {file = "pyrsistent-0.18.0.tar.gz", hash = "sha256:773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b"}, +] +pyshex = [ + {file = "PyShEx-0.7.20-py3-none-any.whl", hash = "sha256:6c9cecd7726461c2105330a9b2d5fd054f0e7966bfc9e3a73e7136b8be63d089"}, + {file = "PyShEx-0.7.20.tar.gz", hash = "sha256:3ea61c2a3f7436bac725bd5001072ba08d2dff5b836d5388ce9ff6f5251c2707"}, +] +pyshexc = [ + {file = "PyShExC-0.8.3-py2.py3-none-any.whl", hash = "sha256:6f75e26dfda605c994031a72ca74b2b0079e1f7b12ab713e030078d8fa05dc3a"}, + {file = "PyShExC-0.8.3.tar.gz", hash = "sha256:ad83bb2a645f64becbf946d4bd170e35fd9b903616c7ee25d5a4ed188cf2d1dd"}, +] +pytest = [ + {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, + {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, +] +python-dateutil = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] +pytz = [ + {file = "pytz-2021.3-py2.py3-none-any.whl", hash = "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c"}, + {file = "pytz-2021.3.tar.gz", hash = "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326"}, +] +pywin32 = [ + {file = "pywin32-302-cp310-cp310-win32.whl", hash = "sha256:251b7a9367355ccd1a4cd69cd8dd24bd57b29ad83edb2957cfa30f7ed9941efa"}, + {file = "pywin32-302-cp310-cp310-win_amd64.whl", hash = "sha256:79cf7e6ddaaf1cd47a9e50cc74b5d770801a9db6594464137b1b86aa91edafcc"}, + {file = "pywin32-302-cp36-cp36m-win32.whl", hash = "sha256:fe21c2fb332d03dac29de070f191bdbf14095167f8f2165fdc57db59b1ecc006"}, + {file = "pywin32-302-cp36-cp36m-win_amd64.whl", hash = "sha256:d3761ab4e8c5c2dbc156e2c9ccf38dd51f936dc77e58deb940ffbc4b82a30528"}, + {file = "pywin32-302-cp37-cp37m-win32.whl", hash = "sha256:48dd4e348f1ee9538dd4440bf201ea8c110ea6d9f3a5010d79452e9fa80480d9"}, + {file = "pywin32-302-cp37-cp37m-win_amd64.whl", hash = "sha256:496df89f10c054c9285cc99f9d509e243f4e14ec8dfc6d78c9f0bf147a893ab1"}, + {file = "pywin32-302-cp38-cp38-win32.whl", hash = "sha256:e372e477d938a49266136bff78279ed14445e00718b6c75543334351bf535259"}, + {file = "pywin32-302-cp38-cp38-win_amd64.whl", hash = "sha256:543552e66936378bd2d673c5a0a3d9903dba0b0a87235ef0c584f058ceef5872"}, + {file = "pywin32-302-cp39-cp39-win32.whl", hash = "sha256:2393c1a40dc4497fd6161b76801b8acd727c5610167762b7c3e9fd058ef4a6ab"}, + {file = "pywin32-302-cp39-cp39-win_amd64.whl", hash = "sha256:af5aea18167a31efcacc9f98a2ca932c6b6a6d91ebe31f007509e293dea12580"}, +] +pywinpty = [ + {file = "pywinpty-1.1.6-cp310-none-win_amd64.whl", hash = "sha256:5f526f21b569b5610a61e3b6126259c76da979399598e5154498582df3736ade"}, + {file = "pywinpty-1.1.6-cp36-none-win_amd64.whl", hash = "sha256:7576e14f42b31fa98b62d24ded79754d2ea4625570c016b38eb347ce158a30f2"}, + {file = "pywinpty-1.1.6-cp37-none-win_amd64.whl", hash = "sha256:979ffdb9bdbe23db3f46fc7285fd6dbb86b80c12325a50582b211b3894072354"}, + {file = "pywinpty-1.1.6-cp38-none-win_amd64.whl", hash = "sha256:2308b1fc77545427610a705799d4ead5e7f00874af3fb148a03e202437456a7e"}, + {file = "pywinpty-1.1.6-cp39-none-win_amd64.whl", hash = "sha256:c703bf569a98ab7844b9daf37e88ab86f31862754ef6910a8b3824993a525c72"}, + {file = "pywinpty-1.1.6.tar.gz", hash = "sha256:8808f07350c709119cc4464144d6e749637f98e15acc1e5d3c37db1953d2eebc"}, +] +pyyaml = [ + {file = "PyYAML-5.4.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922"}, + {file = "PyYAML-5.4.1-cp27-cp27m-win32.whl", hash = "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393"}, + {file = "PyYAML-5.4.1-cp27-cp27m-win_amd64.whl", hash = "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8"}, + {file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185"}, + {file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253"}, + {file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc"}, + {file = "PyYAML-5.4.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:72a01f726a9c7851ca9bfad6fd09ca4e090a023c00945ea05ba1638c09dc3347"}, + {file = "PyYAML-5.4.1-cp36-cp36m-manylinux2014_s390x.whl", hash = "sha256:895f61ef02e8fed38159bb70f7e100e00f471eae2bc838cd0f4ebb21e28f8541"}, + {file = "PyYAML-5.4.1-cp36-cp36m-win32.whl", hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5"}, + {file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df"}, + {file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018"}, + {file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63"}, + {file = "PyYAML-5.4.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:cb333c16912324fd5f769fff6bc5de372e9e7a202247b48870bc251ed40239aa"}, + {file = "PyYAML-5.4.1-cp37-cp37m-manylinux2014_s390x.whl", hash = "sha256:fe69978f3f768926cfa37b867e3843918e012cf83f680806599ddce33c2c68b0"}, + {file = "PyYAML-5.4.1-cp37-cp37m-win32.whl", hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b"}, + {file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf"}, + {file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46"}, + {file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb"}, + {file = "PyYAML-5.4.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:fd7f6999a8070df521b6384004ef42833b9bd62cfee11a09bda1079b4b704247"}, + {file = "PyYAML-5.4.1-cp38-cp38-manylinux2014_s390x.whl", hash = "sha256:bfb51918d4ff3d77c1c856a9699f8492c612cde32fd3bcd344af9be34999bfdc"}, + {file = "PyYAML-5.4.1-cp38-cp38-win32.whl", hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc"}, + {file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696"}, + {file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77"}, + {file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183"}, + {file = "PyYAML-5.4.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:d483ad4e639292c90170eb6f7783ad19490e7a8defb3e46f97dfe4bacae89122"}, + {file = "PyYAML-5.4.1-cp39-cp39-manylinux2014_s390x.whl", hash = "sha256:fdc842473cd33f45ff6bce46aea678a54e3d21f1b61a7750ce3c498eedfe25d6"}, + {file = "PyYAML-5.4.1-cp39-cp39-win32.whl", hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10"}, + {file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db"}, + {file = "PyYAML-5.4.1.tar.gz", hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"}, +] +pyzmq = [ + {file = "pyzmq-22.3.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:6b217b8f9dfb6628f74b94bdaf9f7408708cb02167d644edca33f38746ca12dd"}, + {file = "pyzmq-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2841997a0d85b998cbafecb4183caf51fd19c4357075dfd33eb7efea57e4c149"}, + {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f89468059ebc519a7acde1ee50b779019535db8dcf9b8c162ef669257fef7a93"}, + {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea12133df25e3a6918718fbb9a510c6ee5d3fdd5a346320421aac3882f4feeea"}, + {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c532fd68b93998aab92356be280deec5de8f8fe59cd28763d2cc8a58747b7f"}, + {file = "pyzmq-22.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f907c7359ce8bf7f7e63c82f75ad0223384105f5126f313400b7e8004d9b33c3"}, + {file = "pyzmq-22.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:902319cfe23366595d3fa769b5b751e6ee6750a0a64c5d9f757d624b2ac3519e"}, + {file = "pyzmq-22.3.0-cp310-cp310-win32.whl", hash = "sha256:67db33bea0a29d03e6eeec55a8190e033318cee3cbc732ba8fd939617cbf762d"}, + {file = "pyzmq-22.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:7661fc1d5cb73481cf710a1418a4e1e301ed7d5d924f91c67ba84b2a1b89defd"}, + {file = "pyzmq-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79244b9e97948eaf38695f4b8e6fc63b14b78cc37f403c6642ba555517ac1268"}, + {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab888624ed68930442a3f3b0b921ad7439c51ba122dbc8c386e6487a658e4a4e"}, + {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18cd854b423fce44951c3a4d3e686bac8f1243d954f579e120a1714096637cc0"}, + {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:de8df0684398bd74ad160afdc2a118ca28384ac6f5e234eb0508858d8d2d9364"}, + {file = "pyzmq-22.3.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:62bcade20813796c426409a3e7423862d50ff0639f5a2a95be4b85b09a618666"}, + {file = "pyzmq-22.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:ea5a79e808baef98c48c884effce05c31a0698c1057de8fc1c688891043c1ce1"}, + {file = "pyzmq-22.3.0-cp36-cp36m-win32.whl", hash = "sha256:3c1895c95be92600233e476fe283f042e71cf8f0b938aabf21b7aafa62a8dac9"}, + {file = "pyzmq-22.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:851977788b9caa8ed011f5f643d3ee8653af02c5fc723fa350db5125abf2be7b"}, + {file = "pyzmq-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b4ebed0977f92320f6686c96e9e8dd29eed199eb8d066936bac991afc37cbb70"}, + {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42abddebe2c6a35180ca549fadc7228d23c1e1f76167c5ebc8a936b5804ea2df"}, + {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1e41b32d6f7f9c26bc731a8b529ff592f31fc8b6ef2be9fa74abd05c8a342d7"}, + {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:be4e0f229cf3a71f9ecd633566bd6f80d9fa6afaaff5489492be63fe459ef98c"}, + {file = "pyzmq-22.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:08c4e315a76ef26eb833511ebf3fa87d182152adf43dedee8d79f998a2162a0b"}, + {file = "pyzmq-22.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:badb868fff14cfd0e200eaa845887b1011146a7d26d579aaa7f966c203736b92"}, + {file = "pyzmq-22.3.0-cp37-cp37m-win32.whl", hash = "sha256:7c58f598d9fcc52772b89a92d72bf8829c12d09746a6d2c724c5b30076c1f11d"}, + {file = "pyzmq-22.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2b97502c16a5ec611cd52410bdfaab264997c627a46b0f98d3f666227fd1ea2d"}, + {file = "pyzmq-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d728b08448e5ac3e4d886b165385a262883c34b84a7fe1166277fe675e1c197a"}, + {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:480b9931bfb08bf8b094edd4836271d4d6b44150da051547d8c7113bf947a8b0"}, + {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7dc09198e4073e6015d9a8ea093fc348d4e59de49382476940c3dd9ae156fba8"}, + {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ca6cd58f62a2751728016d40082008d3b3412a7f28ddfb4a2f0d3c130f69e74"}, + {file = "pyzmq-22.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:468bd59a588e276961a918a3060948ae68f6ff5a7fa10bb2f9160c18fe341067"}, + {file = "pyzmq-22.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c88fa7410e9fc471e0858638f403739ee869924dd8e4ae26748496466e27ac59"}, + {file = "pyzmq-22.3.0-cp38-cp38-win32.whl", hash = "sha256:c0f84360dcca3481e8674393bdf931f9f10470988f87311b19d23cda869bb6b7"}, + {file = "pyzmq-22.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:f762442bab706fd874064ca218b33a1d8e40d4938e96c24dafd9b12e28017f45"}, + {file = "pyzmq-22.3.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:954e73c9cd4d6ae319f1c936ad159072b6d356a92dcbbabfd6e6204b9a79d356"}, + {file = "pyzmq-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f43b4a2e6218371dd4f41e547bd919ceeb6ebf4abf31a7a0669cd11cd91ea973"}, + {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:acebba1a23fb9d72b42471c3771b6f2f18dcd46df77482612054bd45c07dfa36"}, + {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cf98fd7a6c8aaa08dbc699ffae33fd71175696d78028281bc7b832b26f00ca57"}, + {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d072f7dfbdb184f0786d63bda26e8a0882041b1e393fbe98940395f7fab4c5e2"}, + {file = "pyzmq-22.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:53f4fd13976789ffafedd4d46f954c7bb01146121812b72b4ddca286034df966"}, + {file = "pyzmq-22.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d1b5d457acbadcf8b27561deeaa386b0217f47626b29672fa7bd31deb6e91e1b"}, + {file = "pyzmq-22.3.0-cp39-cp39-win32.whl", hash = "sha256:e6a02cf7271ee94674a44f4e62aa061d2d049001c844657740e156596298b70b"}, + {file = "pyzmq-22.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d3dcb5548ead4f1123851a5ced467791f6986d68c656bc63bfff1bf9e36671e2"}, + {file = "pyzmq-22.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3a4c9886d61d386b2b493377d980f502186cd71d501fffdba52bd2a0880cef4f"}, + {file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:80e043a89c6cadefd3a0712f8a1322038e819ebe9dbac7eca3bce1721bcb63bf"}, + {file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1621e7a2af72cced1f6ec8ca8ca91d0f76ac236ab2e8828ac8fe909512d566cb"}, + {file = "pyzmq-22.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d6157793719de168b199194f6b6173f0ccd3bf3499e6870fac17086072e39115"}, + {file = "pyzmq-22.3.0.tar.gz", hash = "sha256:8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c"}, +] +qtconsole = [ + {file = "qtconsole-5.2.0-py3-none-any.whl", hash = "sha256:a287f9f0f7365ccb2f2a88e0cd4da883822e94d15b75dc19098cd8eec44d70d1"}, + {file = "qtconsole-5.2.0.tar.gz", hash = "sha256:6bb4df839609f240194213407872076f871e3a3884cf8e785068e8c7f39344c6"}, +] +qtpy = [ + {file = "QtPy-1.11.2-py2.py3-none-any.whl", hash = "sha256:83c502973e9fdd7b648d8267a421229ea3d9a0651c22e4c65a4d9228479c39b6"}, + {file = "QtPy-1.11.2.tar.gz", hash = "sha256:d6e4ae3a41f1fcb19762b58f35ad6dd443b4bdc867a4cb81ef10ccd85403c92b"}, +] +rdflib = [ + {file = "rdflib-5.0.0-py3-none-any.whl", hash = "sha256:88208ea971a87886d60ae2b1a4b2cdc263527af0454c422118d43fe64b357877"}, + {file = "rdflib-5.0.0.tar.gz", hash = "sha256:78149dd49d385efec3b3adfbd61c87afaf1281c30d3fcaf1b323b34f603fb155"}, +] +rdflib-jsonld = [ + {file = "rdflib-jsonld-0.6.1.tar.gz", hash = "sha256:eda5a42a2e09f80d4da78e32b5c684bccdf275368f1541e6b7bcddfb1382a0e0"}, + {file = "rdflib_jsonld-0.6.1-py2.py3-none-any.whl", hash = "sha256:bcf84317e947a661bae0a3f2aee1eced697075fc4ac4db6065a3340ea0f10fc2"}, +] +rdflib-pyldmod-compat = [ + {file = "rdflib-pyldmod-compat-0.1.2.tar.gz", hash = "sha256:bfba0064d8b2584afdbef5d54bac3ac1dd4c13b64aaeba7a43812c2f35ca13c6"}, + {file = "rdflib_pyldmod_compat-0.1.2-py3-none-any.whl", hash = "sha256:68aa05d4f4d8f46241e0c37e631b4747f18a356d8accc5bae204350d2f314196"}, +] +requests = [ + {file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"}, + {file = "requests-2.26.0.tar.gz", hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7"}, +] +"ruamel.yaml" = [ + {file = "ruamel.yaml-0.17.17-py3-none-any.whl", hash = "sha256:9af3ec5d7f8065582f3aa841305465025d0afd26c5fb54e15b964e11838fc74f"}, + {file = "ruamel.yaml-0.17.17.tar.gz", hash = "sha256:9751de4cbb57d4bfbf8fc394e125ed4a2f170fbff3dc3d78abf50be85924f8be"}, +] +"ruamel.yaml.clib" = [ + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:cfdb9389d888c5b74af297e51ce357b800dd844898af9d4a547ffc143fa56751"}, + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:7b2927e92feb51d830f531de4ccb11b320255ee95e791022555971c466af4527"}, + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win32.whl", hash = "sha256:ada3f400d9923a190ea8b59c8f60680c4ef8a4b0dfae134d2f2ff68429adfab5"}, + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win_amd64.whl", hash = "sha256:de9c6b8a1ba52919ae919f3ae96abb72b994dd0350226e28f3686cb4f142165c"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d67f273097c368265a7b81e152e07fb90ed395df6e552b9fa858c6d2c9f42502"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:72a2b8b2ff0a627496aad76f37a652bcef400fd861721744201ef1b45199ab78"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win32.whl", hash = "sha256:9efef4aab5353387b07f6b22ace0867032b900d8e91674b5d8ea9150db5cae94"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win_amd64.whl", hash = "sha256:846fc8336443106fe23f9b6d6b8c14a53d38cef9a375149d61f99d78782ea468"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0847201b767447fc33b9c235780d3aa90357d20dd6108b92be544427bea197dd"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:78988ed190206672da0f5d50c61afef8f67daa718d614377dcd5e3ed85ab4a99"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win32.whl", hash = "sha256:a49e0161897901d1ac9c4a79984b8410f450565bbad64dbfcbf76152743a0cdb"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win_amd64.whl", hash = "sha256:bf75d28fa071645c529b5474a550a44686821decebdd00e21127ef1fd566eabe"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a32f8d81ea0c6173ab1b3da956869114cae53ba1e9f72374032e33ba3118c233"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7f7ecb53ae6848f959db6ae93bdff1740e651809780822270eab111500842a84"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win32.whl", hash = "sha256:89221ec6d6026f8ae859c09b9718799fea22c0e8da8b766b0b2c9a9ba2db326b"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win_amd64.whl", hash = "sha256:31ea73e564a7b5fbbe8188ab8b334393e06d997914a4e184975348f204790277"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc6a613d6c74eef5a14a214d433d06291526145431c3b964f5e16529b1842bed"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1866cf2c284a03b9524a5cc00daca56d80057c5ce3cdc86a52020f4c720856f0"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win32.whl", hash = "sha256:3fb9575a5acd13031c57a62cc7823e5d2ff8bc3835ba4d94b921b4e6ee664104"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win_amd64.whl", hash = "sha256:825d5fccef6da42f3c8eccd4281af399f21c02b32d98e113dbc631ea6a6ecbc7"}, + {file = "ruamel.yaml.clib-0.2.6.tar.gz", hash = "sha256:4ff604ce439abb20794f05613c374759ce10e3595d1867764dd1ae675b85acbd"}, +] +send2trash = [ + {file = "Send2Trash-1.8.0-py3-none-any.whl", hash = "sha256:f20eaadfdb517eaca5ce077640cb261c7d2698385a6a0f072a4a5447fd49fa08"}, + {file = "Send2Trash-1.8.0.tar.gz", hash = "sha256:d2c24762fd3759860a0aff155e45871447ea58d2be6bdd39b5c8f966a0c99c2d"}, +] +shexjsg = [ + {file = "ShExJSG-0.7.1-py2.py3-none-any.whl", hash = "sha256:788991c4df2ca9b24258fb68c94107c3e140c70bbe398fb15f00338d2a9155e5"}, + {file = "ShExJSG-0.7.1.tar.gz", hash = "sha256:89fb39a4448f50fd4988108a0a2c7096aa51dd15cd89fef0bc3ad96e04929929"}, +] +six = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] +snowballstemmer = [ + {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"}, + {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, +] +sparqlslurper = [ + {file = "sparqlslurper-0.4.1-py3-none-any.whl", hash = "sha256:e1decb006837c5b8f1f404710d86a36a6cd09301910c79165094a1354ddae487"}, + {file = "sparqlslurper-0.4.1.tar.gz", hash = "sha256:0808cf53923c9ffbf069f80310c73a41d3ae170c266d805b56b6978a066f63e3"}, +] +sparqlwrapper = [ + {file = "SPARQLWrapper-1.8.5-py2-none-any.whl", hash = "sha256:357ee8a27bc910ea13d77836dbddd0b914991495b8cc1bf70676578155e962a8"}, + {file = "SPARQLWrapper-1.8.5-py2.7.egg", hash = "sha256:17ec44b08b8ae2888c801066249f74fe328eec25d90203ce7eadaf82e64484c7"}, + {file = "SPARQLWrapper-1.8.5-py3-none-any.whl", hash = "sha256:c7f9c9d8ebb13428771bc3b6dee54197422507dcc3dea34e30d5dcfc53478dec"}, + {file = "SPARQLWrapper-1.8.5-py3.4.egg", hash = "sha256:8cf6c21126ed76edc85c5c232fd6f77b9f61f8ad1db90a7147cdde2104aff145"}, + {file = "SPARQLWrapper-1.8.5.tar.gz", hash = "sha256:d6a66b5b8cda141660e07aeb00472db077a98d22cb588c973209c7336850fb3c"}, +] +sphinx = [ + {file = "Sphinx-4.3.0-py3-none-any.whl", hash = "sha256:7e2b30da5f39170efcd95c6270f07669d623c276521fee27ad6c380f49d2bf5b"}, + {file = "Sphinx-4.3.0.tar.gz", hash = "sha256:6d051ab6e0d06cba786c4656b0fe67ba259fe058410f49e95bee6e49c4052cbf"}, +] +sphinx-click = [ + {file = "sphinx-click-3.0.2.tar.gz", hash = "sha256:29896dd12bfaacb566a8c7af2e2b675d010d69b0c5aad3b52495d4842358b15b"}, + {file = "sphinx_click-3.0.2-py3-none-any.whl", hash = "sha256:8529a02bea8cd2cd47daba2f71d7935c727c89d70baabec7fca31af49a0c379f"}, +] +sphinx-rtd-theme = [ + {file = "sphinx_rtd_theme-1.0.0-py2.py3-none-any.whl", hash = "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8"}, + {file = "sphinx_rtd_theme-1.0.0.tar.gz", hash = "sha256:eec6d497e4c2195fa0e8b2016b337532b8a699a68bcb22a512870e16925c6a5c"}, +] +sphinxcontrib-applehelp = [ + {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"}, + {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"}, +] +sphinxcontrib-devhelp = [ + {file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"}, + {file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"}, +] +sphinxcontrib-htmlhelp = [ + {file = "sphinxcontrib-htmlhelp-2.0.0.tar.gz", hash = "sha256:f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2"}, + {file = "sphinxcontrib_htmlhelp-2.0.0-py2.py3-none-any.whl", hash = "sha256:d412243dfb797ae3ec2b59eca0e52dac12e75a241bf0e4eb861e450d06c6ed07"}, +] +sphinxcontrib-jsmath = [ + {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, + {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"}, +] +sphinxcontrib-qthelp = [ + {file = "sphinxcontrib-qthelp-1.0.3.tar.gz", hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"}, + {file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6"}, +] +sphinxcontrib-serializinghtml = [ + {file = "sphinxcontrib-serializinghtml-1.1.5.tar.gz", hash = "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952"}, + {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, +] +sqlalchemy = [ + {file = "SQLAlchemy-1.4.27-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:6afa9e4e63f066e0fd90a21db7e95e988d96127f52bfb298a0e9bec6999357a9"}, + {file = "SQLAlchemy-1.4.27-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:ec1c908fa721f2c5684900cc8ff75555b1a5a2ae4f5a5694eb0e37a5263cea44"}, + {file = "SQLAlchemy-1.4.27-cp27-cp27m-win32.whl", hash = "sha256:0438bccc16349db2d5203598be6073175ce16d4e53b592d6e6cef880c197333e"}, + {file = "SQLAlchemy-1.4.27-cp27-cp27m-win_amd64.whl", hash = "sha256:435b1980c1333ffe3ab386ad28d7b209590b0fa83ea8544d853e7a22f957331b"}, + {file = "SQLAlchemy-1.4.27-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:486f7916ef77213103467924ef25f5ea1055ae901f385fe4d707604095fdf6a9"}, + {file = "SQLAlchemy-1.4.27-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:d81c84c9d2523b3ea20f8e3aceea68615768a7464c0f9a9899600ce6592ec570"}, + {file = "SQLAlchemy-1.4.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5881644fc51af7b232ab8d64f75c0f32295dfe88c2ee188023795cdbd4cf99b"}, + {file = "SQLAlchemy-1.4.27-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:24828c5e74882cf41516740c0b150702bee4c6817d87d5c3d3bafef2e6896f80"}, + {file = "SQLAlchemy-1.4.27-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7d0a1b1258efff7d7f2e6cfa56df580d09ba29d35a1e3f604f867e1f685feb2"}, + {file = "SQLAlchemy-1.4.27-cp310-cp310-win32.whl", hash = "sha256:aadc6d1e58e14010ae4764d1ba1fd0928dbb9423b27a382ea3a1444f903f4084"}, + {file = "SQLAlchemy-1.4.27-cp310-cp310-win_amd64.whl", hash = "sha256:9134e5810262203388b203c2022bbcbf1a22e89861eef9340e772a73dd9076fa"}, + {file = "SQLAlchemy-1.4.27-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:fa52534076394af7315306a8701b726a6521b591d95e8f4e5121c82f94790e8d"}, + {file = "SQLAlchemy-1.4.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2717ceae35e71de1f58b0d1ee7e773d3aab5c403c6e79e8d262277c7f7f95269"}, + {file = "SQLAlchemy-1.4.27-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2e93624d186ea7a738ada47314701c8830e0e4b021a6bce7fbe6f39b87ee1516"}, + {file = "SQLAlchemy-1.4.27-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:987fe2f84ceaf744fa0e48805152abe485a9d7002c9923b18a4b2529c7bff218"}, + {file = "SQLAlchemy-1.4.27-cp36-cp36m-win32.whl", hash = "sha256:2146ef996181e3d4dd20eaf1d7325eb62d6c8aa4dc1677c1872ddfa8561a47d9"}, + {file = "SQLAlchemy-1.4.27-cp36-cp36m-win_amd64.whl", hash = "sha256:ad8ec6b69d03e395db48df8991aa15fce3cd23e378b73e01d46a26a6efd5c26d"}, + {file = "SQLAlchemy-1.4.27-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:52f23a76544ed29573c0f3ee41f0ca1aedbab3a453102b60b540cc6fa55448ad"}, + {file = "SQLAlchemy-1.4.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd421a14edf73cfe01e8f51ed8966294ee3b3db8da921cacc88e497fd6e977af"}, + {file = "SQLAlchemy-1.4.27-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:10230364479429437f1b819a8839f1edc5744c018bfeb8d01320930f97695bc9"}, + {file = "SQLAlchemy-1.4.27-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78943451ab3ffd0e27876f9cea2b883317518b418f06b90dadf19394534637e9"}, + {file = "SQLAlchemy-1.4.27-cp37-cp37m-win32.whl", hash = "sha256:a81e40dfa50ed3c472494adadba097640bfcf43db160ed783132045eb2093cb1"}, + {file = "SQLAlchemy-1.4.27-cp37-cp37m-win_amd64.whl", hash = "sha256:015511c52c650eebf1059ed8a21674d9d4ae567ebfd80fc73f8252faccd71864"}, + {file = "SQLAlchemy-1.4.27-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:cc49fb8ff103900c20e4a9c53766c82a7ebbc183377fb357a8298bad216e9cdd"}, + {file = "SQLAlchemy-1.4.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9369f927f4d19b58322cfea8a51710a3f7c47a0e7f3398d94a4632760ecd74f6"}, + {file = "SQLAlchemy-1.4.27-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6510f4a5029643301bdfe56b61e806093af2101d347d485c42a5535847d2c699"}, + {file = "SQLAlchemy-1.4.27-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:771eca9872b47a629010665ff92de1c248a6979b8d1603daced37773d6f6e365"}, + {file = "SQLAlchemy-1.4.27-cp38-cp38-win32.whl", hash = "sha256:4d1d707b752137e6bf45720648e1b828d5e4881d690df79cca07f7217ea06365"}, + {file = "SQLAlchemy-1.4.27-cp38-cp38-win_amd64.whl", hash = "sha256:c035184af4e58e154b0977eea52131edd096e0754a88f7d5a847e7ccb3510772"}, + {file = "SQLAlchemy-1.4.27-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:bac949be7579fed824887eed6672f44b7c4318abbfb2004b2c6968818b535a2f"}, + {file = "SQLAlchemy-1.4.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ac8306e04275d382d6393e557047b0a9d7ddf9f7ca5da9b3edbd9323ea75bd9"}, + {file = "SQLAlchemy-1.4.27-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8327e468b1775c0dfabc3d01f39f440585bf4d398508fcbbe2f0d931c502337d"}, + {file = "SQLAlchemy-1.4.27-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b02eee1577976acb4053f83d32b7826424f8b9f70809fa756529a52c6537eda4"}, + {file = "SQLAlchemy-1.4.27-cp39-cp39-win32.whl", hash = "sha256:5beeff18b4e894f6cb73c8daf2c0d8768844ef40d97032bb187d75b1ec8de24b"}, + {file = "SQLAlchemy-1.4.27-cp39-cp39-win_amd64.whl", hash = "sha256:8dbe5f639e6d035778ebf700be6d573f82a13662c3c2c3aa0f1dba303b942806"}, + {file = "SQLAlchemy-1.4.27.tar.gz", hash = "sha256:d768359daeb3a86644f3854c6659e4496a3e6bba2b4651ecc87ce7ad415b320c"}, +] +terminado = [ + {file = "terminado-0.12.1-py3-none-any.whl", hash = "sha256:09fdde344324a1c9c6e610ee4ca165c4bb7f5bbf982fceeeb38998a988ef8452"}, + {file = "terminado-0.12.1.tar.gz", hash = "sha256:b20fd93cc57c1678c799799d117874367cc07a3d2d55be95205b1a88fa08393f"}, +] +testfixtures = [ + {file = "testfixtures-6.18.3-py2.py3-none-any.whl", hash = "sha256:6ddb7f56a123e1a9339f130a200359092bd0a6455e31838d6c477e8729bb7763"}, + {file = "testfixtures-6.18.3.tar.gz", hash = "sha256:2600100ae96ffd082334b378e355550fef8b4a529a6fa4c34f47130905c7426d"}, +] +testpath = [ + {file = "testpath-0.5.0-py3-none-any.whl", hash = "sha256:8044f9a0bab6567fc644a3593164e872543bb44225b0e24846e2c89237937589"}, + {file = "testpath-0.5.0.tar.gz", hash = "sha256:1acf7a0bcd3004ae8357409fc33751e16d37ccc650921da1094a86581ad1e417"}, +] +toml = [ + {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, + {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, +] +tornado = [ + {file = "tornado-6.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32"}, + {file = "tornado-6.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c"}, + {file = "tornado-6.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05"}, + {file = "tornado-6.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910"}, + {file = "tornado-6.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b"}, + {file = "tornado-6.1-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675"}, + {file = "tornado-6.1-cp35-cp35m-win32.whl", hash = "sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5"}, + {file = "tornado-6.1-cp35-cp35m-win_amd64.whl", hash = "sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68"}, + {file = "tornado-6.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb"}, + {file = "tornado-6.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c"}, + {file = "tornado-6.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921"}, + {file = "tornado-6.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558"}, + {file = "tornado-6.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c"}, + {file = "tornado-6.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085"}, + {file = "tornado-6.1-cp36-cp36m-win32.whl", hash = "sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575"}, + {file = "tornado-6.1-cp36-cp36m-win_amd64.whl", hash = "sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795"}, + {file = "tornado-6.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f"}, + {file = "tornado-6.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102"}, + {file = "tornado-6.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4"}, + {file = "tornado-6.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd"}, + {file = "tornado-6.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01"}, + {file = "tornado-6.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d"}, + {file = "tornado-6.1-cp37-cp37m-win32.whl", hash = "sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df"}, + {file = "tornado-6.1-cp37-cp37m-win_amd64.whl", hash = "sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37"}, + {file = "tornado-6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95"}, + {file = "tornado-6.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a"}, + {file = "tornado-6.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5"}, + {file = "tornado-6.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288"}, + {file = "tornado-6.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f"}, + {file = "tornado-6.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6"}, + {file = "tornado-6.1-cp38-cp38-win32.whl", hash = "sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326"}, + {file = "tornado-6.1-cp38-cp38-win_amd64.whl", hash = "sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c"}, + {file = "tornado-6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5"}, + {file = "tornado-6.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe"}, + {file = "tornado-6.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea"}, + {file = "tornado-6.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2"}, + {file = "tornado-6.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0"}, + {file = "tornado-6.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd"}, + {file = "tornado-6.1-cp39-cp39-win32.whl", hash = "sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c"}, + {file = "tornado-6.1-cp39-cp39-win_amd64.whl", hash = "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4"}, + {file = "tornado-6.1.tar.gz", hash = "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791"}, +] +traitlets = [ + {file = "traitlets-5.1.1-py3-none-any.whl", hash = "sha256:2d313cc50a42cd6c277e7d7dc8d4d7fedd06a2c215f78766ae7b1a66277e0033"}, + {file = "traitlets-5.1.1.tar.gz", hash = "sha256:059f456c5a7c1c82b98c2e8c799f39c9b8128f6d0d46941ee118daace9eb70c7"}, +] +typing-extensions = [ + {file = "typing_extensions-4.0.0-py3-none-any.whl", hash = "sha256:829704698b22e13ec9eaf959122315eabb370b0884400e9818334d8b677023d9"}, + {file = "typing_extensions-4.0.0.tar.gz", hash = "sha256:2cdf80e4e04866a9b3689a51869016d36db0814d84b8d8a568d22781d45d27ed"}, +] +urllib3 = [ + {file = "urllib3-1.26.7-py2.py3-none-any.whl", hash = "sha256:c4fdf4019605b6e5423637e01bc9fe4daef873709a7973e195ceba0a62bbc844"}, + {file = "urllib3-1.26.7.tar.gz", hash = "sha256:4987c65554f7a2dbf30c18fd48778ef124af6fab771a377103da0585e2336ece"}, +] +watchdog = [ + {file = "watchdog-2.1.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9693f35162dc6208d10b10ddf0458cc09ad70c30ba689d9206e02cd836ce28a3"}, + {file = "watchdog-2.1.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aba5c812f8ee8a3ff3be51887ca2d55fb8e268439ed44110d3846e4229eb0e8b"}, + {file = "watchdog-2.1.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ae38bf8ba6f39d5b83f78661273216e7db5b00f08be7592062cb1fc8b8ba542"}, + {file = "watchdog-2.1.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:ad6f1796e37db2223d2a3f302f586f74c72c630b48a9872c1e7ae8e92e0ab669"}, + {file = "watchdog-2.1.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:922a69fa533cb0c793b483becaaa0845f655151e7256ec73630a1b2e9ebcb660"}, + {file = "watchdog-2.1.6-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b2fcf9402fde2672545b139694284dc3b665fd1be660d73eca6805197ef776a3"}, + {file = "watchdog-2.1.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3386b367e950a11b0568062b70cc026c6f645428a698d33d39e013aaeda4cc04"}, + {file = "watchdog-2.1.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8f1c00aa35f504197561060ca4c21d3cc079ba29cf6dd2fe61024c70160c990b"}, + {file = "watchdog-2.1.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b52b88021b9541a60531142b0a451baca08d28b74a723d0c99b13c8c8d48d604"}, + {file = "watchdog-2.1.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8047da932432aa32c515ec1447ea79ce578d0559362ca3605f8e9568f844e3c6"}, + {file = "watchdog-2.1.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e92c2d33858c8f560671b448205a268096e17870dcf60a9bb3ac7bfbafb7f5f9"}, + {file = "watchdog-2.1.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b7d336912853d7b77f9b2c24eeed6a5065d0a0cc0d3b6a5a45ad6d1d05fb8cd8"}, + {file = "watchdog-2.1.6-py3-none-manylinux2014_aarch64.whl", hash = "sha256:cca7741c0fcc765568350cb139e92b7f9f3c9a08c4f32591d18ab0a6ac9e71b6"}, + {file = "watchdog-2.1.6-py3-none-manylinux2014_armv7l.whl", hash = "sha256:25fb5240b195d17de949588628fdf93032ebf163524ef08933db0ea1f99bd685"}, + {file = "watchdog-2.1.6-py3-none-manylinux2014_i686.whl", hash = "sha256:be9be735f827820a06340dff2ddea1fb7234561fa5e6300a62fe7f54d40546a0"}, + {file = "watchdog-2.1.6-py3-none-manylinux2014_ppc64.whl", hash = "sha256:d0d19fb2441947b58fbf91336638c2b9f4cc98e05e1045404d7a4cb7cddc7a65"}, + {file = "watchdog-2.1.6-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:3becdb380d8916c873ad512f1701f8a92ce79ec6978ffde92919fd18d41da7fb"}, + {file = "watchdog-2.1.6-py3-none-manylinux2014_s390x.whl", hash = "sha256:ae67501c95606072aafa865b6ed47343ac6484472a2f95490ba151f6347acfc2"}, + {file = "watchdog-2.1.6-py3-none-manylinux2014_x86_64.whl", hash = "sha256:e0f30db709c939cabf64a6dc5babb276e6d823fd84464ab916f9b9ba5623ca15"}, + {file = "watchdog-2.1.6-py3-none-win32.whl", hash = "sha256:e02794ac791662a5eafc6ffeaf9bcc149035a0e48eb0a9d40a8feb4622605a3d"}, + {file = "watchdog-2.1.6-py3-none-win_amd64.whl", hash = "sha256:bd9ba4f332cf57b2c1f698be0728c020399ef3040577cde2939f2e045b39c1e5"}, + {file = "watchdog-2.1.6-py3-none-win_ia64.whl", hash = "sha256:a0f1c7edf116a12f7245be06120b1852275f9506a7d90227648b250755a03923"}, + {file = "watchdog-2.1.6.tar.gz", hash = "sha256:a36e75df6c767cbf46f61a91c70b3ba71811dfa0aca4a324d9407a06a8b7a2e7"}, +] +wcwidth = [ + {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, + {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, +] +webencodings = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] +widgetsnbextension = [ + {file = "widgetsnbextension-3.5.2-py2.py3-none-any.whl", hash = "sha256:763a9fdc836d141fa080005a886d63f66f73d56dba1fb5961afc239c77708569"}, + {file = "widgetsnbextension-3.5.2.tar.gz", hash = "sha256:e0731a60ba540cd19bbbefe771a9076dcd2dde90713a8f87f27f53f2d1db7727"}, +] +wrapt = [ + {file = "wrapt-1.13.3-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:e05e60ff3b2b0342153be4d1b597bbcfd8330890056b9619f4ad6b8d5c96a81a"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:85148f4225287b6a0665eef08a178c15097366d46b210574a658c1ff5b377489"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:2dded5496e8f1592ec27079b28b6ad2a1ef0b9296d270f77b8e4a3a796cf6909"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:e94b7d9deaa4cc7bac9198a58a7240aaf87fe56c6277ee25fa5b3aa1edebd229"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:498e6217523111d07cd67e87a791f5e9ee769f9241fcf8a379696e25806965af"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:ec7e20258ecc5174029a0f391e1b948bf2906cd64c198a9b8b281b811cbc04de"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:87883690cae293541e08ba2da22cacaae0a092e0ed56bbba8d018cc486fbafbb"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:f99c0489258086308aad4ae57da9e8ecf9e1f3f30fa35d5e170b4d4896554d80"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:6a03d9917aee887690aa3f1747ce634e610f6db6f6b332b35c2dd89412912bca"}, + {file = "wrapt-1.13.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:936503cb0a6ed28dbfa87e8fcd0a56458822144e9d11a49ccee6d9a8adb2ac44"}, + {file = "wrapt-1.13.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f9c51d9af9abb899bd34ace878fbec8bf357b3194a10c4e8e0a25512826ef056"}, + {file = "wrapt-1.13.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:220a869982ea9023e163ba915077816ca439489de6d2c09089b219f4e11b6785"}, + {file = "wrapt-1.13.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0877fe981fd76b183711d767500e6b3111378ed2043c145e21816ee589d91096"}, + {file = "wrapt-1.13.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:43e69ffe47e3609a6aec0fe723001c60c65305784d964f5007d5b4fb1bc6bf33"}, + {file = "wrapt-1.13.3-cp310-cp310-win32.whl", hash = "sha256:78dea98c81915bbf510eb6a3c9c24915e4660302937b9ae05a0947164248020f"}, + {file = "wrapt-1.13.3-cp310-cp310-win_amd64.whl", hash = "sha256:ea3e746e29d4000cd98d572f3ee2a6050a4f784bb536f4ac1f035987fc1ed83e"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:8c73c1a2ec7c98d7eaded149f6d225a692caa1bd7b2401a14125446e9e90410d"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:086218a72ec7d986a3eddb7707c8c4526d677c7b35e355875a0fe2918b059179"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:e92d0d4fa68ea0c02d39f1e2f9cb5bc4b4a71e8c442207433d8db47ee79d7aa3"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:d4a5f6146cfa5c7ba0134249665acd322a70d1ea61732723c7d3e8cc0fa80755"}, + {file = "wrapt-1.13.3-cp35-cp35m-win32.whl", hash = "sha256:8aab36778fa9bba1a8f06a4919556f9f8c7b33102bd71b3ab307bb3fecb21851"}, + {file = "wrapt-1.13.3-cp35-cp35m-win_amd64.whl", hash = "sha256:944b180f61f5e36c0634d3202ba8509b986b5fbaf57db3e94df11abee244ba13"}, + {file = "wrapt-1.13.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:2ebdde19cd3c8cdf8df3fc165bc7827334bc4e353465048b36f7deeae8ee0918"}, + {file = "wrapt-1.13.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:610f5f83dd1e0ad40254c306f4764fcdc846641f120c3cf424ff57a19d5f7ade"}, + {file = "wrapt-1.13.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5601f44a0f38fed36cc07db004f0eedeaadbdcec90e4e90509480e7e6060a5bc"}, + {file = "wrapt-1.13.3-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:e6906d6f48437dfd80464f7d7af1740eadc572b9f7a4301e7dd3d65db285cacf"}, + {file = "wrapt-1.13.3-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:766b32c762e07e26f50d8a3468e3b4228b3736c805018e4b0ec8cc01ecd88125"}, + {file = "wrapt-1.13.3-cp36-cp36m-win32.whl", hash = "sha256:5f223101f21cfd41deec8ce3889dc59f88a59b409db028c469c9b20cfeefbe36"}, + {file = "wrapt-1.13.3-cp36-cp36m-win_amd64.whl", hash = "sha256:f122ccd12fdc69628786d0c947bdd9cb2733be8f800d88b5a37c57f1f1d73c10"}, + {file = "wrapt-1.13.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:46f7f3af321a573fc0c3586612db4decb7eb37172af1bc6173d81f5b66c2e068"}, + {file = "wrapt-1.13.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:778fd096ee96890c10ce96187c76b3e99b2da44e08c9e24d5652f356873f6709"}, + {file = "wrapt-1.13.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0cb23d36ed03bf46b894cfec777eec754146d68429c30431c99ef28482b5c1df"}, + {file = "wrapt-1.13.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:96b81ae75591a795d8c90edc0bfaab44d3d41ffc1aae4d994c5aa21d9b8e19a2"}, + {file = "wrapt-1.13.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:7dd215e4e8514004c8d810a73e342c536547038fb130205ec4bba9f5de35d45b"}, + {file = "wrapt-1.13.3-cp37-cp37m-win32.whl", hash = "sha256:47f0a183743e7f71f29e4e21574ad3fa95676136f45b91afcf83f6a050914829"}, + {file = "wrapt-1.13.3-cp37-cp37m-win_amd64.whl", hash = "sha256:fd76c47f20984b43d93de9a82011bb6e5f8325df6c9ed4d8310029a55fa361ea"}, + {file = "wrapt-1.13.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b73d4b78807bd299b38e4598b8e7bd34ed55d480160d2e7fdaabd9931afa65f9"}, + {file = "wrapt-1.13.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ec9465dd69d5657b5d2fa6133b3e1e989ae27d29471a672416fd729b429eb554"}, + {file = "wrapt-1.13.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dd91006848eb55af2159375134d724032a2d1d13bcc6f81cd8d3ed9f2b8e846c"}, + {file = "wrapt-1.13.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ae9de71eb60940e58207f8e71fe113c639da42adb02fb2bcbcaccc1ccecd092b"}, + {file = "wrapt-1.13.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:51799ca950cfee9396a87f4a1240622ac38973b6df5ef7a41e7f0b98797099ce"}, + {file = "wrapt-1.13.3-cp38-cp38-win32.whl", hash = "sha256:4b9c458732450ec42578b5642ac53e312092acf8c0bfce140ada5ca1ac556f79"}, + {file = "wrapt-1.13.3-cp38-cp38-win_amd64.whl", hash = "sha256:7dde79d007cd6dfa65afe404766057c2409316135cb892be4b1c768e3f3a11cb"}, + {file = "wrapt-1.13.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:981da26722bebb9247a0601e2922cedf8bb7a600e89c852d063313102de6f2cb"}, + {file = "wrapt-1.13.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:705e2af1f7be4707e49ced9153f8d72131090e52be9278b5dbb1498c749a1e32"}, + {file = "wrapt-1.13.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:25b1b1d5df495d82be1c9d2fad408f7ce5ca8a38085e2da41bb63c914baadff7"}, + {file = "wrapt-1.13.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:77416e6b17926d953b5c666a3cb718d5945df63ecf922af0ee576206d7033b5e"}, + {file = "wrapt-1.13.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:865c0b50003616f05858b22174c40ffc27a38e67359fa1495605f96125f76640"}, + {file = "wrapt-1.13.3-cp39-cp39-win32.whl", hash = "sha256:0a017a667d1f7411816e4bf214646d0ad5b1da2c1ea13dec6c162736ff25a374"}, + {file = "wrapt-1.13.3-cp39-cp39-win_amd64.whl", hash = "sha256:81bd7c90d28a4b2e1df135bfbd7c23aee3050078ca6441bead44c42483f9ebfb"}, + {file = "wrapt-1.13.3.tar.gz", hash = "sha256:1fea9cd438686e6682271d36f3481a9f3636195578bab9ca3382e2f5f01fc185"}, +] +zipp = [ + {file = "zipp-3.6.0-py3-none-any.whl", hash = "sha256:9fe5ea21568a0a70e50f273397638d39b03353731e6cbbb3fd8502a33fec40bc"}, + {file = "zipp-3.6.0.tar.gz", hash = "sha256:71c644c5369f4a6e07636f0aa966270449561fcea2e3d6747b8d23efaa9d7832"}, +] diff --git a/pyproject.toml b/pyproject.toml index c3c9e3b..cd6af31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "Example workflows and data for the CRDCH model" authors = ["Gaurav Vaidya "] [tool.poetry.dependencies] -python = "^3.7" +python = ">=3.7.1,<4.0" linkml = "^1.1.13" jsonschema = "^4.2.1" jupyter = "^1.0.0" From dcf4608fc94700d12350a76172999572cb206690 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 18 Nov 2021 15:15:31 -0500 Subject: [PATCH 03/18] Deleted ccdhmodel package from this repo. --- ccdh/ccdhmodel.py | 23707 ---------------------------------- ccdh/ccdhmodel.yaml | 28710 ------------------------------------------ 2 files changed, 52417 deletions(-) delete mode 100644 ccdh/ccdhmodel.py delete mode 100644 ccdh/ccdhmodel.yaml diff --git a/ccdh/ccdhmodel.py b/ccdh/ccdhmodel.py deleted file mode 100644 index 18aa0b3..0000000 --- a/ccdh/ccdhmodel.py +++ /dev/null @@ -1,23707 +0,0 @@ -# Auto generated from ccdhmodel.yaml by pythongen.py version: 0.9.0 -# Generation date: 2021-07-21 16:44 -# Schema: CRDC-H -# -# id: https://example.org/ccdh -# description: -# license: https://creativecommons.org/publicdomain/zero/1.0/ - -import dataclasses -import sys -import re -from jsonasobj2 import JsonObj, as_dict -from typing import Optional, List, Union, Dict, ClassVar, Any -from dataclasses import dataclass -from linkml_runtime.linkml_model.meta import EnumDefinition, PermissibleValue, PvFormulaOptions - -from linkml_runtime.utils.slot import Slot -from linkml_runtime.utils.metamodelcore import empty_list, empty_dict, bnode -from linkml_runtime.utils.yamlutils import YAMLRoot, extended_str, extended_float, extended_int -from linkml_runtime.utils.dataclass_extensions_376 import dataclasses_init_fn_with_kwargs -from linkml_runtime.utils.formatutils import camelcase, underscore, sfx -from linkml_runtime.utils.enumerations import EnumDefinitionImpl -from rdflib import Namespace, URIRef -from linkml_runtime.utils.curienamespace import CurieNamespace -from linkml_runtime.linkml_model.types import Boolean, Datetime, Decimal, Integer, String, Uriorcurie -from linkml_runtime.utils.metamodelcore import Bool, Decimal, URIorCURIE, XSDDateTime - -metamodel_version = "1.7.0" - -# Overwrite dataclasses _init_fn to add **kwargs in __init__ -dataclasses._init_fn = dataclasses_init_fn_with_kwargs - -# Namespaces -GDC = CurieNamespace('GDC', 'http://example.org/gdc/') -HTAN = CurieNamespace('HTAN', 'http://example.org/htan/') -ICDC = CurieNamespace('ICDC', 'http://example.org/icdc/') -NCIT = CurieNamespace('NCIT', 'http://purl.obolibrary.org/obo/NCIT_') -PDC = CurieNamespace('PDC', 'http://example.org/pdc/') -CCDH = CurieNamespace('ccdh', 'https://example.org/ccdh/') -LINKML = CurieNamespace('linkml', 'https://w3id.org/linkml/') -XSD = CurieNamespace('xsd', 'http://www.w3.org/2001/XMLSchema#') -DEFAULT_ = CCDH - - -# Types -class CcdhString(String): - """ A sequence of Unicode characters. There are no limits on the number of characters in the string. """ - type_class_uri = XSD.string - type_class_curie = "xsd:string" - type_name = "ccdh_string" - type_model_uri = CCDH.CcdhString - - -class CcdhInteger(Integer): - """ An integer number. This data type is based on the decimal type, but the fractional component is not allowed. There are no restrictions on the size of the integer. """ - type_class_uri = XSD.integer - type_class_curie = "xsd:integer" - type_name = "ccdh_integer" - type_model_uri = CCDH.CcdhInteger - - -class CcdhDecimal(Decimal): - """ A rational number that has a decimal representation. This data type does not restrict the size or precision of the number. """ - type_class_uri = XSD.decimal - type_class_curie = "xsd:decimal" - type_name = "ccdh_decimal" - type_model_uri = CCDH.CcdhDecimal - - -class CcdhBoolean(Boolean): - """ Value representing either “true” or “false”. Permissible values (case-sensitive) = “true”, “false”, “1”, “0”. """ - type_class_uri = XSD.boolean - type_class_curie = "xsd:boolean" - type_name = "ccdh_boolean" - type_model_uri = CCDH.CcdhBoolean - - -class CcdhDateTime(Datetime): - """ A date and time string specified using a specialized concatenation of the date and time data types, in the general format YYYY-MM-DDThh:mm:ss+zz:zz. """ - type_class_uri = XSD.dateTime - type_class_curie = "xsd:dateTime" - type_name = "ccdh_dateTime" - type_model_uri = CCDH.CcdhDateTime - - -class CcdhCurie(Uriorcurie): - """ A compact URI (CURIE), which is a bipartite identifier of the form prefix:reference, in which the prefix is a convenient abbreviation of a URI. It is expressed in the format “prefix:reference”. When a mapping of prefix to base URI is provided (external to this data type), a CURIE may be mapped to a URI. """ - type_class_uri = XSD.anyURI - type_class_curie = "xsd:anyURI" - type_name = "ccdh_curie" - type_model_uri = CCDH.CcdhCurie - - -class CcdhCode(String): - type_class_uri = XSD.string - type_class_curie = "xsd:string" - type_name = "ccdh_code" - type_model_uri = CCDH.CcdhCode - - -# Class references - - - -class Entity(YAMLRoot): - """ - Any resource that has its own identifier - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Entity - class_class_curie: ClassVar[str] = "ccdh:Entity" - class_name: ClassVar[str] = "Entity" - class_model_uri: ClassVar[URIRef] = CCDH.Entity - - -@dataclass -class AlcoholExposureObservation(Entity): - """ - A structured object that describes a single data item about an individual's exposure to alcohol, as generated - through a point-in-time observation, measurement, or interpretation. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.AlcoholExposureObservation - class_class_curie: ClassVar[str] = "ccdh:AlcoholExposureObservation" - class_name: ClassVar[str] = "AlcoholExposureObservation" - class_model_uri: ClassVar[URIRef] = CCDH.AlcoholExposureObservation - - observation_type: Union[str, "EnumCCDHAlcoholExposureObservationObservationType"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHAlcoholExposureObservationCategory"]] = None - method_type: Optional[Union[str, "EnumCCDHAlcoholExposureObservationMethodType"]] = None - focus: Optional[Union[dict, "Entity"]] = None - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - valueInteger: Optional[Union[int, CcdhInteger]] = None - valueCodeableConcept: Optional[Union[str, "EnumCCDHAlcoholExposureObservationValueCodeableConcept"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHAlcoholExposureObservationObservationType): - self.observation_type = EnumCCDHAlcoholExposureObservationObservationType(self.observation_type) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHAlcoholExposureObservationCategory): - self.category = EnumCCDHAlcoholExposureObservationCategory(self.category) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHAlcoholExposureObservationMethodType): - self.method_type = EnumCCDHAlcoholExposureObservationMethodType(self.method_type) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.valueInteger is not None and not isinstance(self.valueInteger, CcdhInteger): - self.valueInteger = CcdhInteger(self.valueInteger) - - if self.valueCodeableConcept is not None and not isinstance(self.valueCodeableConcept, EnumCCDHAlcoholExposureObservationValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHAlcoholExposureObservationValueCodeableConcept(self.valueCodeableConcept) - - super().__post_init__(**kwargs) - - -@dataclass -class BodySite(Entity): - """ - A site in the body of an organism, typically described in terms of an anatomical location and optional qualifiers - (e.g. left/right, upper/lower). But body sites as defined here may include 'non-anatomic' sites, such as the - location of an implanted medical device. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.BodySite - class_class_curie: ClassVar[str] = "ccdh:BodySite" - class_name: ClassVar[str] = "BodySite" - class_model_uri: ClassVar[URIRef] = CCDH.BodySite - - site: Union[str, "EnumCCDHBodySiteSite"] = None - qualifier: Optional[Union[Union[str, "EnumCCDHBodySiteQualifier"], List[Union[str, "EnumCCDHBodySiteQualifier"]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.site): - self.MissingRequiredField("site") - if not isinstance(self.site, EnumCCDHBodySiteSite): - self.site = EnumCCDHBodySiteSite(self.site) - - if not isinstance(self.qualifier, list): - self.qualifier = [self.qualifier] if self.qualifier is not None else [] - self.qualifier = [v if isinstance(v, EnumCCDHBodySiteQualifier) else EnumCCDHBodySiteQualifier(v) for v in self.qualifier] - - super().__post_init__(**kwargs) - - -@dataclass -class BiologicProduct(Entity): - """ - A living organism, or a metabolically active biological system such as a cell culture, tissue culture, or organoid - that is maintained or propagated in vitro. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.BiologicProduct - class_class_curie: ClassVar[str] = "ccdh:BiologicProduct" - class_name: ClassVar[str] = "BiologicProduct" - class_model_uri: ClassVar[URIRef] = CCDH.BiologicProduct - - id: Optional[Union[str, CcdhString]] = None - identifier: Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]] = empty_list() - description: Optional[Union[str, CcdhString]] = None - product_type: Optional[Union[str, "EnumCCDHBiologicProductProductType"]] = None - passage_number: Optional[Union[Union[int, CcdhInteger], List[Union[int, CcdhInteger]]]] = empty_list() - growth_rate: Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.description is not None and not isinstance(self.description, CcdhString): - self.description = CcdhString(self.description) - - if self.product_type is not None and not isinstance(self.product_type, EnumCCDHBiologicProductProductType): - self.product_type = EnumCCDHBiologicProductProductType(self.product_type) - - if not isinstance(self.passage_number, list): - self.passage_number = [self.passage_number] if self.passage_number is not None else [] - self.passage_number = [v if isinstance(v, CcdhInteger) else CcdhInteger(v) for v in self.passage_number] - - if not isinstance(self.growth_rate, list): - self.growth_rate = [self.growth_rate] if self.growth_rate is not None else [] - self.growth_rate = [v if isinstance(v, CcdhString) else CcdhString(v) for v in self.growth_rate] - - super().__post_init__(**kwargs) - - -@dataclass -class CancerGradeObservation(Entity): - """ - A data structure with key (observation_type) and value (valueCodeableConcept) attributes that represents a single - cancer grade observation - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.CancerGradeObservation - class_class_curie: ClassVar[str] = "ccdh:CancerGradeObservation" - class_name: ClassVar[str] = "CancerGradeObservation" - class_model_uri: ClassVar[URIRef] = CCDH.CancerGradeObservation - - observation_type: Union[str, "EnumCCDHCancerGradeObservationObservationType"] = None - valueCodeableConcept: Union[str, "EnumCCDHCancerGradeObservationValueCodeableConcept"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHCancerGradeObservationCategory"]] = None - method_type: Optional[Union[str, "EnumCCDHCancerGradeObservationMethodType"]] = None - focus: Optional[Union[dict, "Entity"]] = None - subject: Optional[Union[dict, "Subject"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHCancerGradeObservationObservationType): - self.observation_type = EnumCCDHCancerGradeObservationObservationType(self.observation_type) - - if self._is_empty(self.valueCodeableConcept): - self.MissingRequiredField("valueCodeableConcept") - if not isinstance(self.valueCodeableConcept, EnumCCDHCancerGradeObservationValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHCancerGradeObservationValueCodeableConcept(self.valueCodeableConcept) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHCancerGradeObservationCategory): - self.category = EnumCCDHCancerGradeObservationCategory(self.category) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHCancerGradeObservationMethodType): - self.method_type = EnumCCDHCancerGradeObservationMethodType(self.method_type) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - super().__post_init__(**kwargs) - - -@dataclass -class CancerGradeObservationSet(Entity): - """ - A structured object to hold related data items about the grade of cancer (e.g. overall, primary gleason, secondary - gleason, etc.). - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.CancerGradeObservationSet - class_class_curie: ClassVar[str] = "ccdh:CancerGradeObservationSet" - class_name: ClassVar[str] = "CancerGradeObservationSet" - class_model_uri: ClassVar[URIRef] = CCDH.CancerGradeObservationSet - - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHCancerGradeObservationSetCategory"]] = None - focus: Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHCancerGradeObservationSetMethodType"], List[Union[str, "EnumCCDHCancerGradeObservationSetMethodType"]]]] = empty_list() - performed_by: Optional[Union[dict, "Organization"]] = None - observations: Optional[Union[Union[dict, CancerGradeObservation], List[Union[dict, CancerGradeObservation]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHCancerGradeObservationSetCategory): - self.category = EnumCCDHCancerGradeObservationSetCategory(self.category) - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHCancerGradeObservationSetMethodType) else EnumCCDHCancerGradeObservationSetMethodType(v) for v in self.method_type] - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - self._normalize_inlined_as_list(slot_name="observations", slot_type=CancerGradeObservation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class CancerStageObservation(Entity): - """ - A data structure with key (observation_type) and value (valueCodeableConcept) attributes that represents a single - cancer staging observation, such as the Clinical Metastasis (M) component of a clinical TNM staging. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.CancerStageObservation - class_class_curie: ClassVar[str] = "ccdh:CancerStageObservation" - class_name: ClassVar[str] = "CancerStageObservation" - class_model_uri: ClassVar[URIRef] = CCDH.CancerStageObservation - - observation_type: Union[str, "EnumCCDHCancerStageObservationObservationType"] = None - valueCodeableConcept: Union[str, "EnumCCDHCancerStageObservationValueCodeableConcept"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHCancerStageObservationCategory"]] = None - method_type: Optional[Union[str, "EnumCCDHCancerStageObservationMethodType"]] = None - focus: Optional[Union[dict, "Entity"]] = None - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - valueEntity: Optional[Union[dict, "Entity"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHCancerStageObservationObservationType): - self.observation_type = EnumCCDHCancerStageObservationObservationType(self.observation_type) - - if self._is_empty(self.valueCodeableConcept): - self.MissingRequiredField("valueCodeableConcept") - if not isinstance(self.valueCodeableConcept, EnumCCDHCancerStageObservationValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHCancerStageObservationValueCodeableConcept(self.valueCodeableConcept) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHCancerStageObservationCategory): - self.category = EnumCCDHCancerStageObservationCategory(self.category) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHCancerStageObservationMethodType): - self.method_type = EnumCCDHCancerStageObservationMethodType(self.method_type) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.valueEntity is not None and not isinstance(self.valueEntity, Entity): - self.valueEntity = Entity() - - super().__post_init__(**kwargs) - - -@dataclass -class CancerStageObservationSet(Entity): - """ - A structured object to hold related data items about the staging of cancer (e.g. overall, T, N, and M components - of a Cancer Staging observation). - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.CancerStageObservationSet - class_class_curie: ClassVar[str] = "ccdh:CancerStageObservationSet" - class_name: ClassVar[str] = "CancerStageObservationSet" - class_model_uri: ClassVar[URIRef] = CCDH.CancerStageObservationSet - - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHCancerStageObservationSetCategory"]] = None - focus: Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHCancerStageObservationSetMethodType"], List[Union[str, "EnumCCDHCancerStageObservationSetMethodType"]]]] = empty_list() - performed_by: Optional[Union[dict, "Organization"]] = None - observations: Optional[Union[Union[dict, CancerStageObservation], List[Union[dict, CancerStageObservation]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHCancerStageObservationSetCategory): - self.category = EnumCCDHCancerStageObservationSetCategory(self.category) - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHCancerStageObservationSetMethodType) else EnumCCDHCancerStageObservationSetMethodType(v) for v in self.method_type] - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - self._normalize_inlined_as_list(slot_name="observations", slot_type=CancerStageObservation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class CodeableConcept(Entity): - """ - A representation of a concept that may be defined by or mapped to one or more codes in code systems - (terminologies, ontologies, dictionaries, code sets, etc) - but may also be defined by the provision of text. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.CodeableConcept - class_class_curie: ClassVar[str] = "ccdh:CodeableConcept" - class_name: ClassVar[str] = "CodeableConcept" - class_model_uri: ClassVar[URIRef] = CCDH.CodeableConcept - - coding: Optional[Union[Union[dict, "Coding"], List[Union[dict, "Coding"]]]] = empty_list() - text: Optional[Union[str, CcdhString]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - self._normalize_inlined_as_list(slot_name="coding", slot_type=Coding, key_name="code", keyed=False) - - if self.text is not None and not isinstance(self.text, CcdhString): - self.text = CcdhString(self.text) - - super().__post_init__(**kwargs) - - -@dataclass -class Coding(Entity): - """ - A structured representation of a coded/enumerated data value, that includes additional metadata about the code and - code system. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Coding - class_class_curie: ClassVar[str] = "ccdh:Coding" - class_name: ClassVar[str] = "Coding" - class_model_uri: ClassVar[URIRef] = CCDH.Coding - - code: Union[str, CcdhString] = None - system: Union[str, CcdhString] = None - label: Optional[Union[str, CcdhString]] = None - systemURL: Optional[Union[str, CcdhString]] = None - systemVersion: Optional[Union[str, CcdhString]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.code): - self.MissingRequiredField("code") - if not isinstance(self.code, CcdhString): - self.code = CcdhString(self.code) - - if self._is_empty(self.system): - self.MissingRequiredField("system") - if not isinstance(self.system, CcdhString): - self.system = CcdhString(self.system) - - if self.label is not None and not isinstance(self.label, CcdhString): - self.label = CcdhString(self.label) - - if self.systemURL is not None and not isinstance(self.systemURL, CcdhString): - self.systemURL = CcdhString(self.systemURL) - - if self.systemVersion is not None and not isinstance(self.systemVersion, CcdhString): - self.systemVersion = CcdhString(self.systemVersion) - - super().__post_init__(**kwargs) - - -@dataclass -class Diagnosis(Entity): - """ - A collection of characteristics that describe an abnormal condition of the body as assessed at a point in time. - May be used to capture information about neoplastic and non-neoplastic conditions. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Diagnosis - class_class_curie: ClassVar[str] = "ccdh:Diagnosis" - class_name: ClassVar[str] = "Diagnosis" - class_model_uri: ClassVar[URIRef] = CCDH.Diagnosis - - id: Optional[Union[str, CcdhString]] = None - identifier: Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - age_at_diagnosis: Optional[Union[dict, "Quantity"]] = None - year_at_diagnosis: Optional[Union[int, CcdhInteger]] = None - condition: Optional[Union[str, "EnumCCDHDiagnosisCondition"]] = None - primary_site: Optional[Union[Union[dict, BodySite], List[Union[dict, BodySite]]]] = empty_list() - metastatic_site: Optional[Union[Union[dict, BodySite], List[Union[dict, BodySite]]]] = empty_list() - stage: Optional[Union[Union[dict, CancerStageObservationSet], List[Union[dict, CancerStageObservationSet]]]] = empty_list() - grade: Optional[Union[Union[dict, CancerGradeObservationSet], List[Union[dict, CancerGradeObservationSet]]]] = empty_list() - morphology: Optional[Union[str, "EnumCCDHDiagnosisMorphology"]] = None - disease_status: Optional[Union[str, "EnumCCDHDiagnosisDiseaseStatus"]] = None - prior_diagnosis: Optional[Union[dict, "Diagnosis"]] = None - method_of_diagnosis: Optional[Union[str, "EnumCCDHDiagnosisMethodOfDiagnosis"]] = None - related_specimen: Optional[Union[Union[dict, "Specimen"], List[Union[dict, "Specimen"]]]] = empty_list() - primary_tumor_dimensional_measures: Optional[Union[dict, "DimensionalObservationSet"]] = None - supporting_observation: Optional[Union[Union[dict, "Observation"], List[Union[dict, "Observation"]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.age_at_diagnosis is not None and not isinstance(self.age_at_diagnosis, Quantity): - self.age_at_diagnosis = Quantity(**as_dict(self.age_at_diagnosis)) - - if self.year_at_diagnosis is not None and not isinstance(self.year_at_diagnosis, CcdhInteger): - self.year_at_diagnosis = CcdhInteger(self.year_at_diagnosis) - - if self.condition is not None and not isinstance(self.condition, EnumCCDHDiagnosisCondition): - self.condition = EnumCCDHDiagnosisCondition(self.condition) - - self._normalize_inlined_as_list(slot_name="primary_site", slot_type=BodySite, key_name="site", keyed=False) - - self._normalize_inlined_as_list(slot_name="metastatic_site", slot_type=BodySite, key_name="site", keyed=False) - - if not isinstance(self.stage, list): - self.stage = [self.stage] if self.stage is not None else [] - self.stage = [v if isinstance(v, CancerStageObservationSet) else CancerStageObservationSet(**as_dict(v)) for v in self.stage] - - if not isinstance(self.grade, list): - self.grade = [self.grade] if self.grade is not None else [] - self.grade = [v if isinstance(v, CancerGradeObservationSet) else CancerGradeObservationSet(**as_dict(v)) for v in self.grade] - - if self.morphology is not None and not isinstance(self.morphology, EnumCCDHDiagnosisMorphology): - self.morphology = EnumCCDHDiagnosisMorphology(self.morphology) - - if self.disease_status is not None and not isinstance(self.disease_status, EnumCCDHDiagnosisDiseaseStatus): - self.disease_status = EnumCCDHDiagnosisDiseaseStatus(self.disease_status) - - if self.prior_diagnosis is not None and not isinstance(self.prior_diagnosis, Diagnosis): - self.prior_diagnosis = Diagnosis(**as_dict(self.prior_diagnosis)) - - if self.method_of_diagnosis is not None and not isinstance(self.method_of_diagnosis, EnumCCDHDiagnosisMethodOfDiagnosis): - self.method_of_diagnosis = EnumCCDHDiagnosisMethodOfDiagnosis(self.method_of_diagnosis) - - if not isinstance(self.related_specimen, list): - self.related_specimen = [self.related_specimen] if self.related_specimen is not None else [] - self.related_specimen = [v if isinstance(v, Specimen) else Specimen(**as_dict(v)) for v in self.related_specimen] - - if self.primary_tumor_dimensional_measures is not None and not isinstance(self.primary_tumor_dimensional_measures, DimensionalObservationSet): - self.primary_tumor_dimensional_measures = DimensionalObservationSet(**as_dict(self.primary_tumor_dimensional_measures)) - - self._normalize_inlined_as_list(slot_name="supporting_observation", slot_type=Observation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class DimensionalObservation(Entity): - """ - A structured object that describes a single data item about the physical dimensions of an entity (e.g. length - width, area), as generated through a point-in-time observation or measurement. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.DimensionalObservation - class_class_curie: ClassVar[str] = "ccdh:DimensionalObservation" - class_name: ClassVar[str] = "DimensionalObservation" - class_model_uri: ClassVar[URIRef] = CCDH.DimensionalObservation - - observation_type: Union[str, "EnumCCDHDimensionalObservationObservationType"] = None - valueQuantity: Union[dict, "Quantity"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHDimensionalObservationCategory"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHDimensionalObservationMethodType"], List[Union[str, "EnumCCDHDimensionalObservationMethodType"]]]] = empty_list() - focus: Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHDimensionalObservationObservationType): - self.observation_type = EnumCCDHDimensionalObservationObservationType(self.observation_type) - - if self._is_empty(self.valueQuantity): - self.MissingRequiredField("valueQuantity") - if not isinstance(self.valueQuantity, Quantity): - self.valueQuantity = Quantity(**as_dict(self.valueQuantity)) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHDimensionalObservationCategory): - self.category = EnumCCDHDimensionalObservationCategory(self.category) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHDimensionalObservationMethodType) else EnumCCDHDimensionalObservationMethodType(v) for v in self.method_type] - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - super().__post_init__(**kwargs) - - -@dataclass -class DimensionalObservationSet(Entity): - """ - A set of one or more discrete observations about the physical dimensions of an object (e.g. length, width, area). - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.DimensionalObservationSet - class_class_curie: ClassVar[str] = "ccdh:DimensionalObservationSet" - class_name: ClassVar[str] = "DimensionalObservationSet" - class_model_uri: ClassVar[URIRef] = CCDH.DimensionalObservationSet - - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHDimensionalObservationSetCategory"]] = None - focus: Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHDimensionalObservationSetMethodType"], List[Union[str, "EnumCCDHDimensionalObservationSetMethodType"]]]] = empty_list() - performed_by: Optional[Union[dict, "Organization"]] = None - observations: Optional[Union[Union[dict, DimensionalObservation], List[Union[dict, DimensionalObservation]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHDimensionalObservationSetCategory): - self.category = EnumCCDHDimensionalObservationSetCategory(self.category) - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHDimensionalObservationSetMethodType) else EnumCCDHDimensionalObservationSetMethodType(v) for v in self.method_type] - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - self._normalize_inlined_as_list(slot_name="observations", slot_type=DimensionalObservation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class Document(Entity): - """ - A collection of information intented to be understood together as a whole, and codified in human-readable form. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Document - class_class_curie: ClassVar[str] = "ccdh:Document" - class_name: ClassVar[str] = "Document" - class_model_uri: ClassVar[URIRef] = CCDH.Document - - id: Optional[Union[str, CcdhString]] = None - identifier: Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]] = empty_list() - document_type: Optional[Union[str, "EnumCCDHDocumentDocumentType"]] = None - description: Optional[Union[str, CcdhString]] = None - focus: Optional[Union[dict, "Entity"]] = None - url: Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.document_type is not None and not isinstance(self.document_type, EnumCCDHDocumentDocumentType): - self.document_type = EnumCCDHDocumentDocumentType(self.document_type) - - if self.description is not None and not isinstance(self.description, CcdhString): - self.description = CcdhString(self.description) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if not isinstance(self.url, list): - self.url = [self.url] if self.url is not None else [] - self.url = [v if isinstance(v, CcdhString) else CcdhString(v) for v in self.url] - - super().__post_init__(**kwargs) - - -@dataclass -class EnvironmentalExposureObservation(Entity): - """ - A structured object that describes a single data item about an individual's exposure to an environmental factor, - as generated through a point-in-time observation, measurement, or interpretation. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.EnvironmentalExposureObservation - class_class_curie: ClassVar[str] = "ccdh:EnvironmentalExposureObservation" - class_name: ClassVar[str] = "EnvironmentalExposureObservation" - class_model_uri: ClassVar[URIRef] = CCDH.EnvironmentalExposureObservation - - observation_type: Union[str, "EnumCCDHEnvironmentalExposureObservationObservationType"] = None - valueCodeableConcept: Union[str, "EnumCCDHEnvironmentalExposureObservationValueCodeableConcept"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHEnvironmentalExposureObservationCategory"]] = None - method_type: Optional[Union[str, "EnumCCDHEnvironmentalExposureObservationMethodType"]] = None - focus: Optional[Union[dict, Entity]] = None - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHEnvironmentalExposureObservationObservationType): - self.observation_type = EnumCCDHEnvironmentalExposureObservationObservationType(self.observation_type) - - if self._is_empty(self.valueCodeableConcept): - self.MissingRequiredField("valueCodeableConcept") - if not isinstance(self.valueCodeableConcept, EnumCCDHEnvironmentalExposureObservationValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHEnvironmentalExposureObservationValueCodeableConcept(self.valueCodeableConcept) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHEnvironmentalExposureObservationCategory): - self.category = EnumCCDHEnvironmentalExposureObservationCategory(self.category) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHEnvironmentalExposureObservationMethodType): - self.method_type = EnumCCDHEnvironmentalExposureObservationMethodType(self.method_type) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - super().__post_init__(**kwargs) - - -@dataclass -class ExecutionTimeObservation(Entity): - """ - A structured object that describes how long certain parts on an activity took to complete, as determined through a - point-in-time observation or measurement. - - Information describing the environmental conditions in which an activity, or a specific part of an activity, was - performed. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.ExecutionTimeObservation - class_class_curie: ClassVar[str] = "ccdh:ExecutionTimeObservation" - class_name: ClassVar[str] = "ExecutionTimeObservation" - class_model_uri: ClassVar[URIRef] = CCDH.ExecutionTimeObservation - - observation_type: Union[str, "EnumCCDHExecutionTimeObservationObservationType"] = None - valueQuantity: Union[dict, "Quantity"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHExecutionTimeObservationCategory"]] = None - method_type: Optional[Union[str, "EnumCCDHExecutionTimeObservationMethodType"]] = None - focus: Optional[Union[dict, Entity]] = None - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHExecutionTimeObservationObservationType): - self.observation_type = EnumCCDHExecutionTimeObservationObservationType(self.observation_type) - - if self._is_empty(self.valueQuantity): - self.MissingRequiredField("valueQuantity") - if not isinstance(self.valueQuantity, Quantity): - self.valueQuantity = Quantity(**as_dict(self.valueQuantity)) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHExecutionTimeObservationCategory): - self.category = EnumCCDHExecutionTimeObservationCategory(self.category) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHExecutionTimeObservationMethodType): - self.method_type = EnumCCDHExecutionTimeObservationMethodType(self.method_type) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - super().__post_init__(**kwargs) - - -@dataclass -class ExecutionConditionObservation(Entity): - """ - A structured object that describes how long certain parts on an activity took to complete, as determined through a - point-in-time observation or measurement. - - Information describing the environmental conditions in which an activity, or a specific part of an activity, was - performed. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.ExecutionConditionObservation - class_class_curie: ClassVar[str] = "ccdh:ExecutionConditionObservation" - class_name: ClassVar[str] = "ExecutionConditionObservation" - class_model_uri: ClassVar[URIRef] = CCDH.ExecutionConditionObservation - - observation_type: Union[str, "EnumCCDHExecutionConditionObservationObservationType"] = None - valueCodeableConcept: Union[str, "EnumCCDHExecutionConditionObservationValueCodeableConcept"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHExecutionConditionObservationCategory"]] = None - method_type: Optional[Union[str, "EnumCCDHExecutionConditionObservationMethodType"]] = None - focus: Optional[Union[dict, Entity]] = None - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHExecutionConditionObservationObservationType): - self.observation_type = EnumCCDHExecutionConditionObservationObservationType(self.observation_type) - - if self._is_empty(self.valueCodeableConcept): - self.MissingRequiredField("valueCodeableConcept") - if not isinstance(self.valueCodeableConcept, EnumCCDHExecutionConditionObservationValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHExecutionConditionObservationValueCodeableConcept(self.valueCodeableConcept) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHExecutionConditionObservationCategory): - self.category = EnumCCDHExecutionConditionObservationCategory(self.category) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHExecutionConditionObservationMethodType): - self.method_type = EnumCCDHExecutionConditionObservationMethodType(self.method_type) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - super().__post_init__(**kwargs) - - -@dataclass -class Exposure(Entity): - """ - Contact between an agent and a target. A state of contact or close proximity to a medicinal product, chemical, - pathogen, radioisotope or other substance. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Exposure - class_class_curie: ClassVar[str] = "ccdh:Exposure" - class_name: ClassVar[str] = "Exposure" - class_model_uri: ClassVar[URIRef] = CCDH.Exposure - - id: Union[str, CcdhString] = None - identifier: Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]] = empty_list() - tobacco_exposure: Optional[Union[Union[dict, "TobaccoExposureObservation"], List[Union[dict, "TobaccoExposureObservation"]]]] = empty_list() - alcohol_exposure: Optional[Union[Union[dict, AlcoholExposureObservation], List[Union[dict, AlcoholExposureObservation]]]] = empty_list() - environmental_exposure: Optional[Union[Union[dict, EnvironmentalExposureObservation], List[Union[dict, EnvironmentalExposureObservation]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.id): - self.MissingRequiredField("id") - if not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - self._normalize_inlined_as_list(slot_name="tobacco_exposure", slot_type=TobaccoExposureObservation, key_name="observation_type", keyed=False) - - self._normalize_inlined_as_list(slot_name="alcohol_exposure", slot_type=AlcoholExposureObservation, key_name="observation_type", keyed=False) - - self._normalize_inlined_as_list(slot_name="environmental_exposure", slot_type=EnvironmentalExposureObservation, key_name="observation_type", keyed=False) - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - super().__post_init__(**kwargs) - - -@dataclass -class HistologicalCompositionObservation(Entity): - """ - An observation about characteristics of a specimen at a microscopic level - typically related to its cellular or - tissue composition. (e.g. how many cells in the specimen are of a given type, or exhibit a particular cellular - phenotype). - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.HistologicalCompositionObservation - class_class_curie: ClassVar[str] = "ccdh:HistologicalCompositionObservation" - class_name: ClassVar[str] = "HistologicalCompositionObservation" - class_model_uri: ClassVar[URIRef] = CCDH.HistologicalCompositionObservation - - observation_type: Union[str, "EnumCCDHHistologicalCompositionObservationObservationType"] = None - valueQuantity: Union[dict, "Quantity"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHHistologicalCompositionObservationCategory"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHHistologicalCompositionObservationMethodType"], List[Union[str, "EnumCCDHHistologicalCompositionObservationMethodType"]]]] = empty_list() - focus: Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHHistologicalCompositionObservationObservationType): - self.observation_type = EnumCCDHHistologicalCompositionObservationObservationType(self.observation_type) - - if self._is_empty(self.valueQuantity): - self.MissingRequiredField("valueQuantity") - if not isinstance(self.valueQuantity, Quantity): - self.valueQuantity = Quantity(**as_dict(self.valueQuantity)) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHHistologicalCompositionObservationCategory): - self.category = EnumCCDHHistologicalCompositionObservationCategory(self.category) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHHistologicalCompositionObservationMethodType) else EnumCCDHHistologicalCompositionObservationMethodType(v) for v in self.method_type] - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - super().__post_init__(**kwargs) - - -@dataclass -class HistologicalCompositionObservationSet(Entity): - """ - A set of one or more discrete observations that quantify the relative or absolute composition of a specimen at - cellular level - e.g. how many cells in the specimen are of a given type, or exhibit a particular cellular - phenotype. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.HistologicalCompositionObservationSet - class_class_curie: ClassVar[str] = "ccdh:HistologicalCompositionObservationSet" - class_name: ClassVar[str] = "HistologicalCompositionObservationSet" - class_model_uri: ClassVar[URIRef] = CCDH.HistologicalCompositionObservationSet - - id: Union[str, CcdhString] = None - category: Union[str, "EnumCCDHHistologicalCompositionObservationSetCategory"] = None - focus: Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHHistologicalCompositionObservationSetMethodType"], List[Union[str, "EnumCCDHHistologicalCompositionObservationSetMethodType"]]]] = empty_list() - performed_by: Optional[Union[dict, "Organization"]] = None - observations: Optional[Union[Union[dict, HistologicalCompositionObservation], List[Union[dict, HistologicalCompositionObservation]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.id): - self.MissingRequiredField("id") - if not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self._is_empty(self.category): - self.MissingRequiredField("category") - if not isinstance(self.category, EnumCCDHHistologicalCompositionObservationSetCategory): - self.category = EnumCCDHHistologicalCompositionObservationSetCategory(self.category) - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHHistologicalCompositionObservationSetMethodType) else EnumCCDHHistologicalCompositionObservationSetMethodType(v) for v in self.method_type] - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - self._normalize_inlined_as_list(slot_name="observations", slot_type=HistologicalCompositionObservation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class Identifier(Entity): - """ - An Identifier is associated with a unique object or entity within a given system. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Identifier - class_class_curie: ClassVar[str] = "ccdh:Identifier" - class_name: ClassVar[str] = "Identifier" - class_model_uri: ClassVar[URIRef] = CCDH.Identifier - - value: Union[str, CcdhString] = None - system: Optional[Union[str, CcdhString]] = None - type: Optional[Union[str, "EnumCCDHIdentifierType"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.value): - self.MissingRequiredField("value") - if not isinstance(self.value, CcdhString): - self.value = CcdhString(self.value) - - if self.system is not None and not isinstance(self.system, CcdhString): - self.system = CcdhString(self.system) - - if self.type is not None and not isinstance(self.type, EnumCCDHIdentifierType): - self.type = EnumCCDHIdentifierType(self.type) - - super().__post_init__(**kwargs) - - -@dataclass -class Observation(Entity): - """ - A structured object that describes a single data item about an entity, as generated through a point-in-time - observation, measurement, or interpretation. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Observation - class_class_curie: ClassVar[str] = "ccdh:Observation" - class_name: ClassVar[str] = "Observation" - class_model_uri: ClassVar[URIRef] = CCDH.Observation - - observation_type: Union[str, "EnumCCDHObservationObservationType"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHObservationCategory"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHObservationMethodType"], List[Union[str, "EnumCCDHObservationMethodType"]]]] = empty_list() - focus: Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, "Organization"]] = None - valueEntity: Optional[Union[dict, Entity]] = None - valueString: Optional[Union[str, CcdhString]] = None - valueInteger: Optional[Union[Decimal, CcdhDecimal]] = None - valueDecimal: Optional[Union[Decimal, CcdhDecimal]] = None - valueBoolean: Optional[Union[bool, CcdhBoolean]] = None - valueDateTime: Optional[Union[str, CcdhDateTime]] = None - valueQuantity: Optional[Union[dict, "Quantity"]] = None - valueCodeableConcept: Optional[Union[str, "EnumCCDHObservationValueCodeableConcept"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHObservationObservationType): - self.observation_type = EnumCCDHObservationObservationType(self.observation_type) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHObservationCategory): - self.category = EnumCCDHObservationCategory(self.category) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHObservationMethodType) else EnumCCDHObservationMethodType(v) for v in self.method_type] - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.valueEntity is not None and not isinstance(self.valueEntity, Entity): - self.valueEntity = Entity() - - if self.valueString is not None and not isinstance(self.valueString, CcdhString): - self.valueString = CcdhString(self.valueString) - - if self.valueInteger is not None and not isinstance(self.valueInteger, CcdhDecimal): - self.valueInteger = CcdhDecimal(self.valueInteger) - - if self.valueDecimal is not None and not isinstance(self.valueDecimal, CcdhDecimal): - self.valueDecimal = CcdhDecimal(self.valueDecimal) - - if self.valueBoolean is not None and not isinstance(self.valueBoolean, CcdhBoolean): - self.valueBoolean = CcdhBoolean(self.valueBoolean) - - if self.valueDateTime is not None and not isinstance(self.valueDateTime, CcdhDateTime): - self.valueDateTime = CcdhDateTime(self.valueDateTime) - - if self.valueQuantity is not None and not isinstance(self.valueQuantity, Quantity): - self.valueQuantity = Quantity(**as_dict(self.valueQuantity)) - - if self.valueCodeableConcept is not None and not isinstance(self.valueCodeableConcept, EnumCCDHObservationValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHObservationValueCodeableConcept(self.valueCodeableConcept) - - super().__post_init__(**kwargs) - - -@dataclass -class ObservationSet(Entity): - """ - A structured object to hold related data items about an entity, as generated through a point-in-time observation, - measurement, or interpretation. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.ObservationSet - class_class_curie: ClassVar[str] = "ccdh:ObservationSet" - class_name: ClassVar[str] = "ObservationSet" - class_model_uri: ClassVar[URIRef] = CCDH.ObservationSet - - id: Union[str, CcdhString] = None - category: Union[str, "EnumCCDHObservationSetCategory"] = None - focus: Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHObservationSetMethodType"], List[Union[str, "EnumCCDHObservationSetMethodType"]]]] = empty_list() - performed_by: Optional[Union[dict, "Organization"]] = None - observations: Optional[Union[Union[dict, Observation], List[Union[dict, Observation]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.id): - self.MissingRequiredField("id") - if not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self._is_empty(self.category): - self.MissingRequiredField("category") - if not isinstance(self.category, EnumCCDHObservationSetCategory): - self.category = EnumCCDHObservationSetCategory(self.category) - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHObservationSetMethodType) else EnumCCDHObservationSetMethodType(v) for v in self.method_type] - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - self._normalize_inlined_as_list(slot_name="observations", slot_type=Observation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class Organization(Entity): - """ - A grouping of people or organizations with a common purpose such as a data coordinating center, an university, or - an institute within a university - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Organization - class_class_curie: ClassVar[str] = "ccdh:Organization" - class_name: ClassVar[str] = "Organization" - class_model_uri: ClassVar[URIRef] = CCDH.Organization - - id: Union[str, CcdhString] = None - identifier: Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]] = empty_list() - name: Optional[Union[str, CcdhString]] = None - alias: Optional[Union[str, CcdhString]] = None - organization_type: Optional[Union[str, CcdhString]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.id): - self.MissingRequiredField("id") - if not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.name is not None and not isinstance(self.name, CcdhString): - self.name = CcdhString(self.name) - - if self.alias is not None and not isinstance(self.alias, CcdhString): - self.alias = CcdhString(self.alias) - - if self.organization_type is not None and not isinstance(self.organization_type, CcdhString): - self.organization_type = CcdhString(self.organization_type) - - super().__post_init__(**kwargs) - - -@dataclass -class Quantity(Entity): - """ - A structured object to represent an amount of something (e.g., weight, mass, length, duration of time) - including - a value and unit. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Quantity - class_class_curie: ClassVar[str] = "ccdh:Quantity" - class_name: ClassVar[str] = "Quantity" - class_model_uri: ClassVar[URIRef] = CCDH.Quantity - - valueDecimal: Optional[Union[Decimal, CcdhDecimal]] = None - valueCodeableConcept: Optional[Union[str, "EnumCCDHQuantityValueCodeableConcept"]] = None - unit: Optional[Union[str, "EnumCCDHQuantityUnit"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.valueDecimal is not None and not isinstance(self.valueDecimal, CcdhDecimal): - self.valueDecimal = CcdhDecimal(self.valueDecimal) - - if self.valueCodeableConcept is not None and not isinstance(self.valueCodeableConcept, EnumCCDHQuantityValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHQuantityValueCodeableConcept(self.valueCodeableConcept) - - if self.unit is not None and not isinstance(self.unit, EnumCCDHQuantityUnit): - self.unit = EnumCCDHQuantityUnit(self.unit) - - super().__post_init__(**kwargs) - - -@dataclass -class ResearchProject(Entity): - """ - A process where a researcher or organization plans and then executes a series of steps intended to increase the - field of healthcare-related knowledge. - This includes studies of safety, efficacy, comparative effectiveness and other information about medications, - devices, therapies and other interventional - and investigative techniques. A ResearchProject involves the gathering of information about human or animal - subjects. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.ResearchProject - class_class_curie: ClassVar[str] = "ccdh:ResearchProject" - class_name: ClassVar[str] = "ResearchProject" - class_model_uri: ClassVar[URIRef] = CCDH.ResearchProject - - research_project_type: Union[str, "EnumCCDHResearchProjectResearchProjectType"] = None - id: Optional[Union[str, CcdhString]] = None - identifier: Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]] = empty_list() - name: Optional[Union[str, CcdhString]] = None - name_shortened: Optional[Union[str, CcdhString]] = None - description: Optional[Union[str, CcdhString]] = None - description_shortened: Optional[Union[str, CcdhString]] = None - sponsor: Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]] = empty_list() - date_started: Optional[Union[dict, "TimePoint"]] = None - date_ended: Optional[Union[dict, "TimePoint"]] = None - primary_anatomic_site: Optional[Union[Union[dict, BodySite], List[Union[dict, BodySite]]]] = empty_list() - url: Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]] = empty_list() - part_of: Optional[Union[Union[dict, "ResearchProject"], List[Union[dict, "ResearchProject"]]]] = empty_list() - associated_timepoint: Optional[Union[Union[dict, "TimePoint"], List[Union[dict, "TimePoint"]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.research_project_type): - self.MissingRequiredField("research_project_type") - if not isinstance(self.research_project_type, EnumCCDHResearchProjectResearchProjectType): - self.research_project_type = EnumCCDHResearchProjectResearchProjectType(self.research_project_type) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.name is not None and not isinstance(self.name, CcdhString): - self.name = CcdhString(self.name) - - if self.name_shortened is not None and not isinstance(self.name_shortened, CcdhString): - self.name_shortened = CcdhString(self.name_shortened) - - if self.description is not None and not isinstance(self.description, CcdhString): - self.description = CcdhString(self.description) - - if self.description_shortened is not None and not isinstance(self.description_shortened, CcdhString): - self.description_shortened = CcdhString(self.description_shortened) - - if not isinstance(self.sponsor, list): - self.sponsor = [self.sponsor] if self.sponsor is not None else [] - self.sponsor = [v if isinstance(v, CcdhString) else CcdhString(v) for v in self.sponsor] - - if self.date_started is not None and not isinstance(self.date_started, TimePoint): - self.date_started = TimePoint(**as_dict(self.date_started)) - - if self.date_ended is not None and not isinstance(self.date_ended, TimePoint): - self.date_ended = TimePoint(**as_dict(self.date_ended)) - - self._normalize_inlined_as_list(slot_name="primary_anatomic_site", slot_type=BodySite, key_name="site", keyed=False) - - if not isinstance(self.url, list): - self.url = [self.url] if self.url is not None else [] - self.url = [v if isinstance(v, CcdhString) else CcdhString(v) for v in self.url] - - self._normalize_inlined_as_list(slot_name="part_of", slot_type=ResearchProject, key_name="research_project_type", keyed=False) - - if not isinstance(self.associated_timepoint, list): - self.associated_timepoint = [self.associated_timepoint] if self.associated_timepoint is not None else [] - self.associated_timepoint = [v if isinstance(v, TimePoint) else TimePoint(**as_dict(v)) for v in self.associated_timepoint] - - super().__post_init__(**kwargs) - - -@dataclass -class ResearchSubject(Entity): - """ - A research subject is the entity of interest in a research study, typically a human being or an animal, but can - also be a device, group of humans or animals, - or a tissue sample. Human research subjects are usually not traceable to a particular person to protect the - subject’s privacy. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.ResearchSubject - class_class_curie: ClassVar[str] = "ccdh:ResearchSubject" - class_name: ClassVar[str] = "ResearchSubject" - class_model_uri: ClassVar[URIRef] = CCDH.ResearchSubject - - id: Union[str, CcdhString] = None - associated_subject: Union[dict, "Subject"] = None - identifier: Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]] = empty_list() - description: Optional[Union[str, CcdhString]] = None - member_of_research_project: Optional[Union[dict, ResearchProject]] = None - age_at_enrollment: Optional[Union[dict, Quantity]] = None - primary_diagnosis_condition: Optional[Union[str, "EnumCCDHResearchSubjectPrimaryDiagnosisCondition"]] = None - primary_diagnosis_site: Optional[Union[dict, BodySite]] = None - primary_diagnosis: Optional[Union[Union[dict, Diagnosis], List[Union[dict, Diagnosis]]]] = empty_list() - comorbid_diagnosis: Optional[Union[Union[dict, Diagnosis], List[Union[dict, Diagnosis]]]] = empty_list() - index_timepoint: Optional[Union[str, "EnumCCDHResearchSubjectIndexTimepoint"]] = None - originating_site: Optional[Union[dict, Organization]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.id): - self.MissingRequiredField("id") - if not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self._is_empty(self.associated_subject): - self.MissingRequiredField("associated_subject") - if not isinstance(self.associated_subject, Subject): - self.associated_subject = Subject(**as_dict(self.associated_subject)) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.description is not None and not isinstance(self.description, CcdhString): - self.description = CcdhString(self.description) - - if self.member_of_research_project is not None and not isinstance(self.member_of_research_project, ResearchProject): - self.member_of_research_project = ResearchProject(**as_dict(self.member_of_research_project)) - - if self.age_at_enrollment is not None and not isinstance(self.age_at_enrollment, Quantity): - self.age_at_enrollment = Quantity(**as_dict(self.age_at_enrollment)) - - if self.primary_diagnosis_condition is not None and not isinstance(self.primary_diagnosis_condition, EnumCCDHResearchSubjectPrimaryDiagnosisCondition): - self.primary_diagnosis_condition = EnumCCDHResearchSubjectPrimaryDiagnosisCondition(self.primary_diagnosis_condition) - - if self.primary_diagnosis_site is not None and not isinstance(self.primary_diagnosis_site, BodySite): - self.primary_diagnosis_site = BodySite(**as_dict(self.primary_diagnosis_site)) - - if not isinstance(self.primary_diagnosis, list): - self.primary_diagnosis = [self.primary_diagnosis] if self.primary_diagnosis is not None else [] - self.primary_diagnosis = [v if isinstance(v, Diagnosis) else Diagnosis(**as_dict(v)) for v in self.primary_diagnosis] - - if not isinstance(self.comorbid_diagnosis, list): - self.comorbid_diagnosis = [self.comorbid_diagnosis] if self.comorbid_diagnosis is not None else [] - self.comorbid_diagnosis = [v if isinstance(v, Diagnosis) else Diagnosis(**as_dict(v)) for v in self.comorbid_diagnosis] - - if self.index_timepoint is not None and not isinstance(self.index_timepoint, EnumCCDHResearchSubjectIndexTimepoint): - self.index_timepoint = EnumCCDHResearchSubjectIndexTimepoint(self.index_timepoint) - - if self.originating_site is not None and not isinstance(self.originating_site, Organization): - self.originating_site = Organization(**as_dict(self.originating_site)) - - super().__post_init__(**kwargs) - - -@dataclass -class Specimen(Entity): - """ - Any material taken as a sample from a biological entity (living or dead), or from a physical object or the - environment. Specimens are usually collected as an example of their kind, often for use in some investigation. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Specimen - class_class_curie: ClassVar[str] = "ccdh:Specimen" - class_name: ClassVar[str] = "Specimen" - class_model_uri: ClassVar[URIRef] = CCDH.Specimen - - id: Optional[Union[str, CcdhString]] = None - identifier: Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]] = empty_list() - description: Optional[Union[str, CcdhString]] = None - specimen_type: Optional[Union[str, "EnumCCDHSpecimenSpecimenType"]] = None - analyte_type: Optional[Union[str, "EnumCCDHSpecimenAnalyteType"]] = None - associated_project: Optional[Union[dict, ResearchProject]] = None - data_provider: Optional[Union[dict, Organization]] = None - source_material_type: Optional[Union[str, "EnumCCDHSpecimenSourceMaterialType"]] = None - parent_specimen: Optional[Union[Union[dict, "Specimen"], List[Union[dict, "Specimen"]]]] = empty_list() - source_subject: Optional[Union[dict, "Subject"]] = None - tumor_status_at_collection: Optional[Union[str, "EnumCCDHSpecimenTumorStatusAtCollection"]] = None - creation_activity: Optional[Union[dict, "SpecimenCreationActivity"]] = None - processing_activity: Optional[Union[Union[dict, "SpecimenProcessingActivity"], List[Union[dict, "SpecimenProcessingActivity"]]]] = empty_list() - storage_activity: Optional[Union[Union[dict, "SpecimenStorageActivity"], List[Union[dict, "SpecimenStorageActivity"]]]] = empty_list() - transport_activity: Optional[Union[Union[dict, "SpecimenTransportActivity"], List[Union[dict, "SpecimenTransportActivity"]]]] = empty_list() - contained_in: Optional[Union[dict, "SpecimenContainer"]] = None - dimensional_measures: Optional[Union[dict, DimensionalObservationSet]] = None - quantity_measure: Optional[Union[Union[dict, "SpecimenQuantityObservation"], List[Union[dict, "SpecimenQuantityObservation"]]]] = empty_list() - quality_measure: Optional[Union[Union[dict, "SpecimenQualityObservation"], List[Union[dict, "SpecimenQualityObservation"]]]] = empty_list() - cellular_composition_type: Optional[Union[str, "EnumCCDHSpecimenCellularCompositionType"]] = None - histological_composition_measures: Optional[Union[Union[dict, HistologicalCompositionObservationSet], List[Union[dict, HistologicalCompositionObservationSet]]]] = empty_list() - general_tissue_morphology: Optional[Union[str, "EnumCCDHSpecimenGeneralTissueMorphology"]] = None - specific_tissue_morphology: Optional[Union[str, "EnumCCDHSpecimenSpecificTissueMorphology"]] = None - preinvasive_tissue_morphology: Optional[Union[str, "EnumCCDHSpecimenPreinvasiveTissueMorphology"]] = None - morphology_pathologically_confirmed: Optional[Union[bool, CcdhBoolean]] = None - morphology_assessor_role: Optional[Union[str, "EnumCCDHSpecimenMorphologyAssessorRole"]] = None - morphlogy_assessment_method: Optional[Union[str, "EnumCCDHSpecimenMorphlogyAssessmentMethod"]] = None - degree_of_dysplasia: Optional[Union[str, "EnumCCDHSpecimenDegreeOfDysplasia"]] = None - dysplasia_fraction: Optional[Union[str, CcdhString]] = None - related_document: Optional[Union[Union[dict, Document], List[Union[dict, Document]]]] = empty_list() - section_location: Optional[Union[str, "EnumCCDHSpecimenSectionLocation"]] = None - derived_product: Optional[Union[Union[dict, BiologicProduct], List[Union[dict, BiologicProduct]]]] = empty_list() - distance_from_paired_specimen: Optional[Union[dict, Quantity]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.description is not None and not isinstance(self.description, CcdhString): - self.description = CcdhString(self.description) - - if self.specimen_type is not None and not isinstance(self.specimen_type, EnumCCDHSpecimenSpecimenType): - self.specimen_type = EnumCCDHSpecimenSpecimenType(self.specimen_type) - - if self.analyte_type is not None and not isinstance(self.analyte_type, EnumCCDHSpecimenAnalyteType): - self.analyte_type = EnumCCDHSpecimenAnalyteType(self.analyte_type) - - if self.associated_project is not None and not isinstance(self.associated_project, ResearchProject): - self.associated_project = ResearchProject(**as_dict(self.associated_project)) - - if self.data_provider is not None and not isinstance(self.data_provider, Organization): - self.data_provider = Organization(**as_dict(self.data_provider)) - - if self.source_material_type is not None and not isinstance(self.source_material_type, EnumCCDHSpecimenSourceMaterialType): - self.source_material_type = EnumCCDHSpecimenSourceMaterialType(self.source_material_type) - - if not isinstance(self.parent_specimen, list): - self.parent_specimen = [self.parent_specimen] if self.parent_specimen is not None else [] - self.parent_specimen = [v if isinstance(v, Specimen) else Specimen(**as_dict(v)) for v in self.parent_specimen] - - if self.source_subject is not None and not isinstance(self.source_subject, Subject): - self.source_subject = Subject(**as_dict(self.source_subject)) - - if self.tumor_status_at_collection is not None and not isinstance(self.tumor_status_at_collection, EnumCCDHSpecimenTumorStatusAtCollection): - self.tumor_status_at_collection = EnumCCDHSpecimenTumorStatusAtCollection(self.tumor_status_at_collection) - - if self.creation_activity is not None and not isinstance(self.creation_activity, SpecimenCreationActivity): - self.creation_activity = SpecimenCreationActivity(**as_dict(self.creation_activity)) - - if not isinstance(self.processing_activity, list): - self.processing_activity = [self.processing_activity] if self.processing_activity is not None else [] - self.processing_activity = [v if isinstance(v, SpecimenProcessingActivity) else SpecimenProcessingActivity(**as_dict(v)) for v in self.processing_activity] - - if not isinstance(self.storage_activity, list): - self.storage_activity = [self.storage_activity] if self.storage_activity is not None else [] - self.storage_activity = [v if isinstance(v, SpecimenStorageActivity) else SpecimenStorageActivity(**as_dict(v)) for v in self.storage_activity] - - if not isinstance(self.transport_activity, list): - self.transport_activity = [self.transport_activity] if self.transport_activity is not None else [] - self.transport_activity = [v if isinstance(v, SpecimenTransportActivity) else SpecimenTransportActivity(**as_dict(v)) for v in self.transport_activity] - - if self.contained_in is not None and not isinstance(self.contained_in, SpecimenContainer): - self.contained_in = SpecimenContainer(**as_dict(self.contained_in)) - - if self.dimensional_measures is not None and not isinstance(self.dimensional_measures, DimensionalObservationSet): - self.dimensional_measures = DimensionalObservationSet(**as_dict(self.dimensional_measures)) - - self._normalize_inlined_as_list(slot_name="quantity_measure", slot_type=SpecimenQuantityObservation, key_name="observation_type", keyed=False) - - self._normalize_inlined_as_list(slot_name="quality_measure", slot_type=SpecimenQualityObservation, key_name="observation_type", keyed=False) - - if self.cellular_composition_type is not None and not isinstance(self.cellular_composition_type, EnumCCDHSpecimenCellularCompositionType): - self.cellular_composition_type = EnumCCDHSpecimenCellularCompositionType(self.cellular_composition_type) - - self._normalize_inlined_as_list(slot_name="histological_composition_measures", slot_type=HistologicalCompositionObservationSet, key_name="id", keyed=False) - - if self.general_tissue_morphology is not None and not isinstance(self.general_tissue_morphology, EnumCCDHSpecimenGeneralTissueMorphology): - self.general_tissue_morphology = EnumCCDHSpecimenGeneralTissueMorphology(self.general_tissue_morphology) - - if self.specific_tissue_morphology is not None and not isinstance(self.specific_tissue_morphology, EnumCCDHSpecimenSpecificTissueMorphology): - self.specific_tissue_morphology = EnumCCDHSpecimenSpecificTissueMorphology(self.specific_tissue_morphology) - - if self.preinvasive_tissue_morphology is not None and not isinstance(self.preinvasive_tissue_morphology, EnumCCDHSpecimenPreinvasiveTissueMorphology): - self.preinvasive_tissue_morphology = EnumCCDHSpecimenPreinvasiveTissueMorphology(self.preinvasive_tissue_morphology) - - if self.morphology_pathologically_confirmed is not None and not isinstance(self.morphology_pathologically_confirmed, CcdhBoolean): - self.morphology_pathologically_confirmed = CcdhBoolean(self.morphology_pathologically_confirmed) - - if self.morphology_assessor_role is not None and not isinstance(self.morphology_assessor_role, EnumCCDHSpecimenMorphologyAssessorRole): - self.morphology_assessor_role = EnumCCDHSpecimenMorphologyAssessorRole(self.morphology_assessor_role) - - if self.morphlogy_assessment_method is not None and not isinstance(self.morphlogy_assessment_method, EnumCCDHSpecimenMorphlogyAssessmentMethod): - self.morphlogy_assessment_method = EnumCCDHSpecimenMorphlogyAssessmentMethod(self.morphlogy_assessment_method) - - if self.degree_of_dysplasia is not None and not isinstance(self.degree_of_dysplasia, EnumCCDHSpecimenDegreeOfDysplasia): - self.degree_of_dysplasia = EnumCCDHSpecimenDegreeOfDysplasia(self.degree_of_dysplasia) - - if self.dysplasia_fraction is not None and not isinstance(self.dysplasia_fraction, CcdhString): - self.dysplasia_fraction = CcdhString(self.dysplasia_fraction) - - if not isinstance(self.related_document, list): - self.related_document = [self.related_document] if self.related_document is not None else [] - self.related_document = [v if isinstance(v, Document) else Document(**as_dict(v)) for v in self.related_document] - - if self.section_location is not None and not isinstance(self.section_location, EnumCCDHSpecimenSectionLocation): - self.section_location = EnumCCDHSpecimenSectionLocation(self.section_location) - - if not isinstance(self.derived_product, list): - self.derived_product = [self.derived_product] if self.derived_product is not None else [] - self.derived_product = [v if isinstance(v, BiologicProduct) else BiologicProduct(**as_dict(v)) for v in self.derived_product] - - if self.distance_from_paired_specimen is not None and not isinstance(self.distance_from_paired_specimen, Quantity): - self.distance_from_paired_specimen = Quantity(**as_dict(self.distance_from_paired_specimen)) - - super().__post_init__(**kwargs) - - -@dataclass -class SpecimenContainer(Entity): - """ - A vessel in which a specimen is held or to which it is attached - for storage or as a substrate for growth (e.g. a - cell culture dish) or analysis (e.g. a microscope slide or 96-well plate) - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.SpecimenContainer - class_class_curie: ClassVar[str] = "ccdh:SpecimenContainer" - class_name: ClassVar[str] = "SpecimenContainer" - class_model_uri: ClassVar[URIRef] = CCDH.SpecimenContainer - - id: Optional[Union[str, CcdhString]] = None - identifier: Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]] = empty_list() - container_type: Optional[Union[str, "EnumCCDHSpecimenContainerContainerType"]] = None - container_number: Optional[Union[str, CcdhString]] = None - additive: Optional[Union[Union[dict, "Substance"], List[Union[dict, "Substance"]]]] = empty_list() - parent_container: Optional[Union[dict, "SpecimenContainer"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.container_type is not None and not isinstance(self.container_type, EnumCCDHSpecimenContainerContainerType): - self.container_type = EnumCCDHSpecimenContainerContainerType(self.container_type) - - if self.container_number is not None and not isinstance(self.container_number, CcdhString): - self.container_number = CcdhString(self.container_number) - - if not isinstance(self.additive, list): - self.additive = [self.additive] if self.additive is not None else [] - self.additive = [v if isinstance(v, Substance) else Substance(**as_dict(v)) for v in self.additive] - - if self.parent_container is not None and not isinstance(self.parent_container, SpecimenContainer): - self.parent_container = SpecimenContainer(**as_dict(self.parent_container)) - - super().__post_init__(**kwargs) - - -@dataclass -class SpecimenCreationActivity(Entity): - """ - The process of creating a specimen. This may occur through observing and/or collecting material from an biological - source or natural setting, or through derivation from an existing specimen (e.g. via portioning or aliquoting). - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.SpecimenCreationActivity - class_class_curie: ClassVar[str] = "ccdh:SpecimenCreationActivity" - class_name: ClassVar[str] = "SpecimenCreationActivity" - class_model_uri: ClassVar[URIRef] = CCDH.SpecimenCreationActivity - - activity_type: Optional[Union[str, "EnumCCDHSpecimenCreationActivityActivityType"]] = None - date_started: Optional[Union[dict, "TimePoint"]] = None - date_ended: Optional[Union[dict, "TimePoint"]] = None - performed_by: Optional[Union[dict, Organization]] = None - collection_method_type: Optional[Union[str, "EnumCCDHSpecimenCreationActivityCollectionMethodType"]] = None - derivation_method_type: Optional[Union[str, "EnumCCDHSpecimenCreationActivityDerivationMethodType"]] = None - additive: Optional[Union[Union[dict, "Substance"], List[Union[dict, "Substance"]]]] = empty_list() - collection_site: Optional[Union[dict, BodySite]] = None - quantity_collected: Optional[Union[dict, Quantity]] = None - execution_time_observation: Optional[Union[Union[dict, ExecutionTimeObservation], List[Union[dict, ExecutionTimeObservation]]]] = empty_list() - execution_condition_observation: Optional[Union[Union[dict, ExecutionConditionObservation], List[Union[dict, ExecutionConditionObservation]]]] = empty_list() - specimen_order: Optional[Union[int, CcdhInteger]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.activity_type is not None and not isinstance(self.activity_type, EnumCCDHSpecimenCreationActivityActivityType): - self.activity_type = EnumCCDHSpecimenCreationActivityActivityType(self.activity_type) - - if self.date_started is not None and not isinstance(self.date_started, TimePoint): - self.date_started = TimePoint(**as_dict(self.date_started)) - - if self.date_ended is not None and not isinstance(self.date_ended, TimePoint): - self.date_ended = TimePoint(**as_dict(self.date_ended)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.collection_method_type is not None and not isinstance(self.collection_method_type, EnumCCDHSpecimenCreationActivityCollectionMethodType): - self.collection_method_type = EnumCCDHSpecimenCreationActivityCollectionMethodType(self.collection_method_type) - - if self.derivation_method_type is not None and not isinstance(self.derivation_method_type, EnumCCDHSpecimenCreationActivityDerivationMethodType): - self.derivation_method_type = EnumCCDHSpecimenCreationActivityDerivationMethodType(self.derivation_method_type) - - if not isinstance(self.additive, list): - self.additive = [self.additive] if self.additive is not None else [] - self.additive = [v if isinstance(v, Substance) else Substance(**as_dict(v)) for v in self.additive] - - if self.collection_site is not None and not isinstance(self.collection_site, BodySite): - self.collection_site = BodySite(**as_dict(self.collection_site)) - - if self.quantity_collected is not None and not isinstance(self.quantity_collected, Quantity): - self.quantity_collected = Quantity(**as_dict(self.quantity_collected)) - - self._normalize_inlined_as_list(slot_name="execution_time_observation", slot_type=ExecutionTimeObservation, key_name="observation_type", keyed=False) - - self._normalize_inlined_as_list(slot_name="execution_condition_observation", slot_type=ExecutionConditionObservation, key_name="observation_type", keyed=False) - - if self.specimen_order is not None and not isinstance(self.specimen_order, CcdhInteger): - self.specimen_order = CcdhInteger(self.specimen_order) - - super().__post_init__(**kwargs) - - -@dataclass -class SpecimenQualityObservation(Entity): - """ - A structured object that describes a characteristic of a specimen indicative of its quality or suitability for - use, as generated through a point-in-time observation or measurement. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.SpecimenQualityObservation - class_class_curie: ClassVar[str] = "ccdh:SpecimenQualityObservation" - class_name: ClassVar[str] = "SpecimenQualityObservation" - class_model_uri: ClassVar[URIRef] = CCDH.SpecimenQualityObservation - - observation_type: Union[str, "EnumCCDHSpecimenQualityObservationObservationType"] = None - valueQuantity: Union[dict, Quantity] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHSpecimenQualityObservationCategory"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHSpecimenQualityObservationMethodType"], List[Union[str, "EnumCCDHSpecimenQualityObservationMethodType"]]]] = empty_list() - focus: Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, Organization]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHSpecimenQualityObservationObservationType): - self.observation_type = EnumCCDHSpecimenQualityObservationObservationType(self.observation_type) - - if self._is_empty(self.valueQuantity): - self.MissingRequiredField("valueQuantity") - if not isinstance(self.valueQuantity, Quantity): - self.valueQuantity = Quantity(**as_dict(self.valueQuantity)) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHSpecimenQualityObservationCategory): - self.category = EnumCCDHSpecimenQualityObservationCategory(self.category) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHSpecimenQualityObservationMethodType) else EnumCCDHSpecimenQualityObservationMethodType(v) for v in self.method_type] - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - super().__post_init__(**kwargs) - - -@dataclass -class SpecimenQuantityObservation(Entity): - """ - A structured object that describes a single data item about the quantity of an entity, as generated through a - point-in-time observation or measurement. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.SpecimenQuantityObservation - class_class_curie: ClassVar[str] = "ccdh:SpecimenQuantityObservation" - class_name: ClassVar[str] = "SpecimenQuantityObservation" - class_model_uri: ClassVar[URIRef] = CCDH.SpecimenQuantityObservation - - observation_type: Union[str, "EnumCCDHSpecimenQuantityObservationObservationType"] = None - valueQuantity: Union[dict, Quantity] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHSpecimenQuantityObservationCategory"]] = None - method_type: Optional[Union[Union[str, "EnumCCDHSpecimenQuantityObservationMethodType"], List[Union[str, "EnumCCDHSpecimenQuantityObservationMethodType"]]]] = empty_list() - focus: Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]] = empty_list() - subject: Optional[Union[dict, "Subject"]] = None - performed_by: Optional[Union[dict, Organization]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHSpecimenQuantityObservationObservationType): - self.observation_type = EnumCCDHSpecimenQuantityObservationObservationType(self.observation_type) - - if self._is_empty(self.valueQuantity): - self.MissingRequiredField("valueQuantity") - if not isinstance(self.valueQuantity, Quantity): - self.valueQuantity = Quantity(**as_dict(self.valueQuantity)) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHSpecimenQuantityObservationCategory): - self.category = EnumCCDHSpecimenQuantityObservationCategory(self.category) - - if not isinstance(self.method_type, list): - self.method_type = [self.method_type] if self.method_type is not None else [] - self.method_type = [v if isinstance(v, EnumCCDHSpecimenQuantityObservationMethodType) else EnumCCDHSpecimenQuantityObservationMethodType(v) for v in self.method_type] - - if not isinstance(self.focus, list): - self.focus = [self.focus] if self.focus is not None else [] - self.focus = [v if isinstance(v, Entity) else Entity(**as_dict(v)) for v in self.focus] - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - super().__post_init__(**kwargs) - - -@dataclass -class SpecimenProcessingActivity(Entity): - """ - An activity that modifies the physical structure, composition, or state of a specimen. Unlike SpecimenCreation, - SpecimenProcessing activities do not result in the generation of new entities - they take a single specimen as - input, and output that same specimen. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.SpecimenProcessingActivity - class_class_curie: ClassVar[str] = "ccdh:SpecimenProcessingActivity" - class_name: ClassVar[str] = "SpecimenProcessingActivity" - class_model_uri: ClassVar[URIRef] = CCDH.SpecimenProcessingActivity - - activity_type: Optional[Union[str, "EnumCCDHSpecimenProcessingActivityActivityType"]] = None - date_started: Optional[Union[dict, "TimePoint"]] = None - date_ended: Optional[Union[dict, "TimePoint"]] = None - duration: Optional[Union[Union[dict, Quantity], List[Union[dict, Quantity]]]] = empty_list() - performed_by: Optional[Union[dict, Organization]] = None - method_type: Optional[Union[str, "EnumCCDHSpecimenProcessingActivityMethodType"]] = None - additive: Optional[Union[Union[dict, "Substance"], List[Union[dict, "Substance"]]]] = empty_list() - execution_time_observation: Optional[Union[Union[dict, ExecutionTimeObservation], List[Union[dict, ExecutionTimeObservation]]]] = empty_list() - execution_condition_observation: Optional[Union[Union[dict, ExecutionConditionObservation], List[Union[dict, ExecutionConditionObservation]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.activity_type is not None and not isinstance(self.activity_type, EnumCCDHSpecimenProcessingActivityActivityType): - self.activity_type = EnumCCDHSpecimenProcessingActivityActivityType(self.activity_type) - - if self.date_started is not None and not isinstance(self.date_started, TimePoint): - self.date_started = TimePoint(**as_dict(self.date_started)) - - if self.date_ended is not None and not isinstance(self.date_ended, TimePoint): - self.date_ended = TimePoint(**as_dict(self.date_ended)) - - if not isinstance(self.duration, list): - self.duration = [self.duration] if self.duration is not None else [] - self.duration = [v if isinstance(v, Quantity) else Quantity(**as_dict(v)) for v in self.duration] - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHSpecimenProcessingActivityMethodType): - self.method_type = EnumCCDHSpecimenProcessingActivityMethodType(self.method_type) - - if not isinstance(self.additive, list): - self.additive = [self.additive] if self.additive is not None else [] - self.additive = [v if isinstance(v, Substance) else Substance(**as_dict(v)) for v in self.additive] - - self._normalize_inlined_as_list(slot_name="execution_time_observation", slot_type=ExecutionTimeObservation, key_name="observation_type", keyed=False) - - self._normalize_inlined_as_list(slot_name="execution_condition_observation", slot_type=ExecutionConditionObservation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class SpecimenStorageActivity(Entity): - """ - An activity in which a specimen is stored or maintained in a particular location, container, or state. Unlike - 'processing' activities, storage does not alter the - intrinsic physical nature of a specimen. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.SpecimenStorageActivity - class_class_curie: ClassVar[str] = "ccdh:SpecimenStorageActivity" - class_name: ClassVar[str] = "SpecimenStorageActivity" - class_model_uri: ClassVar[URIRef] = CCDH.SpecimenStorageActivity - - date_started: Optional[Union[dict, "TimePoint"]] = None - date_ended: Optional[Union[dict, "TimePoint"]] = None - duration: Optional[Union[dict, Quantity]] = None - performed_by: Optional[Union[dict, Organization]] = None - method_type: Optional[Union[str, "EnumCCDHSpecimenStorageActivityMethodType"]] = None - container: Optional[Union[Union[dict, SpecimenContainer], List[Union[dict, SpecimenContainer]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.date_started is not None and not isinstance(self.date_started, TimePoint): - self.date_started = TimePoint(**as_dict(self.date_started)) - - if self.date_ended is not None and not isinstance(self.date_ended, TimePoint): - self.date_ended = TimePoint(**as_dict(self.date_ended)) - - if self.duration is not None and not isinstance(self.duration, Quantity): - self.duration = Quantity(**as_dict(self.duration)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHSpecimenStorageActivityMethodType): - self.method_type = EnumCCDHSpecimenStorageActivityMethodType(self.method_type) - - if not isinstance(self.container, list): - self.container = [self.container] if self.container is not None else [] - self.container = [v if isinstance(v, SpecimenContainer) else SpecimenContainer(**as_dict(v)) for v in self.container] - - super().__post_init__(**kwargs) - - -@dataclass -class SpecimenTransportActivity(Entity): - """ - An activity through which a specimen is transported between locations or organizations. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.SpecimenTransportActivity - class_class_curie: ClassVar[str] = "ccdh:SpecimenTransportActivity" - class_name: ClassVar[str] = "SpecimenTransportActivity" - class_model_uri: ClassVar[URIRef] = CCDH.SpecimenTransportActivity - - date_started: Optional[Union[dict, "TimePoint"]] = None - date_ended: Optional[Union[dict, "TimePoint"]] = None - duration: Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]] = empty_list() - performed_by: Optional[Union[dict, Organization]] = None - transport_origin: Optional[Union[dict, Organization]] = None - transport_destination: Optional[Union[dict, Organization]] = None - execution_condition_observation: Optional[Union[Union[dict, ExecutionConditionObservation], List[Union[dict, ExecutionConditionObservation]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.date_started is not None and not isinstance(self.date_started, TimePoint): - self.date_started = TimePoint(**as_dict(self.date_started)) - - if self.date_ended is not None and not isinstance(self.date_ended, TimePoint): - self.date_ended = TimePoint(**as_dict(self.date_ended)) - - if not isinstance(self.duration, list): - self.duration = [self.duration] if self.duration is not None else [] - self.duration = [v if isinstance(v, CcdhString) else CcdhString(v) for v in self.duration] - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.transport_origin is not None and not isinstance(self.transport_origin, Organization): - self.transport_origin = Organization(**as_dict(self.transport_origin)) - - if self.transport_destination is not None and not isinstance(self.transport_destination, Organization): - self.transport_destination = Organization(**as_dict(self.transport_destination)) - - self._normalize_inlined_as_list(slot_name="execution_condition_observation", slot_type=ExecutionConditionObservation, key_name="observation_type", keyed=False) - - super().__post_init__(**kwargs) - - -@dataclass -class Subject(Entity): - """ - Demographics and other administrative information about an individual or animal receiving care or other - health-related services. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Subject - class_class_curie: ClassVar[str] = "ccdh:Subject" - class_name: ClassVar[str] = "Subject" - class_model_uri: ClassVar[URIRef] = CCDH.Subject - - id: Union[str, CcdhString] = None - identifier: Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]] = empty_list() - species: Optional[Union[str, "EnumCCDHSubjectSpecies"]] = None - breed: Optional[Union[str, "EnumCCDHSubjectBreed"]] = None - sex: Optional[Union[str, "EnumCCDHSubjectSex"]] = None - ethnicity: Optional[Union[str, "EnumCCDHSubjectEthnicity"]] = None - race: Optional[Union[Union[str, "EnumCCDHSubjectRace"], List[Union[str, "EnumCCDHSubjectRace"]]]] = empty_list() - year_of_birth: Optional[Union[int, CcdhInteger]] = None - vital_status: Optional[Union[str, "EnumCCDHSubjectVitalStatus"]] = None - age_at_death: Optional[Union[dict, Quantity]] = None - year_of_death: Optional[Union[int, CcdhInteger]] = None - cause_of_death: Optional[Union[str, "EnumCCDHSubjectCauseOfDeath"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.id): - self.MissingRequiredField("id") - if not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if self.species is not None and not isinstance(self.species, EnumCCDHSubjectSpecies): - self.species = EnumCCDHSubjectSpecies(self.species) - - if self.breed is not None and not isinstance(self.breed, EnumCCDHSubjectBreed): - self.breed = EnumCCDHSubjectBreed(self.breed) - - if self.sex is not None and not isinstance(self.sex, EnumCCDHSubjectSex): - self.sex = EnumCCDHSubjectSex(self.sex) - - if self.ethnicity is not None and not isinstance(self.ethnicity, EnumCCDHSubjectEthnicity): - self.ethnicity = EnumCCDHSubjectEthnicity(self.ethnicity) - - if not isinstance(self.race, list): - self.race = [self.race] if self.race is not None else [] - self.race = [v if isinstance(v, EnumCCDHSubjectRace) else EnumCCDHSubjectRace(v) for v in self.race] - - if self.year_of_birth is not None and not isinstance(self.year_of_birth, CcdhInteger): - self.year_of_birth = CcdhInteger(self.year_of_birth) - - if self.vital_status is not None and not isinstance(self.vital_status, EnumCCDHSubjectVitalStatus): - self.vital_status = EnumCCDHSubjectVitalStatus(self.vital_status) - - if self.age_at_death is not None and not isinstance(self.age_at_death, Quantity): - self.age_at_death = Quantity(**as_dict(self.age_at_death)) - - if self.year_of_death is not None and not isinstance(self.year_of_death, CcdhInteger): - self.year_of_death = CcdhInteger(self.year_of_death) - - if self.cause_of_death is not None and not isinstance(self.cause_of_death, EnumCCDHSubjectCauseOfDeath): - self.cause_of_death = EnumCCDHSubjectCauseOfDeath(self.cause_of_death) - - super().__post_init__(**kwargs) - - -@dataclass -class Substance(Entity): - """ - A type of material substance, or instance thereof, as used in a particular application. May include information - about the role the substance played in a particular application. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Substance - class_class_curie: ClassVar[str] = "ccdh:Substance" - class_name: ClassVar[str] = "Substance" - class_model_uri: ClassVar[URIRef] = CCDH.Substance - - substance_type: Optional[Union[str, "EnumCCDHSubstanceSubstanceType"]] = None - role: Optional[Union[Union[str, "EnumCCDHSubstanceRole"], List[Union[str, "EnumCCDHSubstanceRole"]]]] = empty_list() - substance_quantity: Optional[Union[dict, Quantity]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.substance_type is not None and not isinstance(self.substance_type, EnumCCDHSubstanceSubstanceType): - self.substance_type = EnumCCDHSubstanceSubstanceType(self.substance_type) - - if not isinstance(self.role, list): - self.role = [self.role] if self.role is not None else [] - self.role = [v if isinstance(v, EnumCCDHSubstanceRole) else EnumCCDHSubstanceRole(v) for v in self.role] - - if self.substance_quantity is not None and not isinstance(self.substance_quantity, Quantity): - self.substance_quantity = Quantity(**as_dict(self.substance_quantity)) - - super().__post_init__(**kwargs) - - -@dataclass -class TimePoint(Entity): - """ - A structured representation of a single point in time that allows direct/explicit declaration as a dateTime, or - specification in terms of offset from a defined index. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.TimePoint - class_class_curie: ClassVar[str] = "ccdh:TimePoint" - class_name: ClassVar[str] = "TimePoint" - class_model_uri: ClassVar[URIRef] = CCDH.TimePoint - - id: Optional[Union[str, CcdhString]] = None - dateTime: Optional[Union[str, CcdhDateTime]] = None - indexTimePoint: Optional[Union[dict, "TimePoint"]] = None - offsetFromIndex: Optional[Union[dict, Quantity]] = None - eventType: Optional[Union[Union[str, "EnumCCDHTimePointEventType"], List[Union[str, "EnumCCDHTimePointEventType"]]]] = empty_list() - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.dateTime is not None and not isinstance(self.dateTime, CcdhDateTime): - self.dateTime = CcdhDateTime(self.dateTime) - - if self.indexTimePoint is not None and not isinstance(self.indexTimePoint, TimePoint): - self.indexTimePoint = TimePoint(**as_dict(self.indexTimePoint)) - - if self.offsetFromIndex is not None and not isinstance(self.offsetFromIndex, Quantity): - self.offsetFromIndex = Quantity(**as_dict(self.offsetFromIndex)) - - if not isinstance(self.eventType, list): - self.eventType = [self.eventType] if self.eventType is not None else [] - self.eventType = [v if isinstance(v, EnumCCDHTimePointEventType) else EnumCCDHTimePointEventType(v) for v in self.eventType] - - super().__post_init__(**kwargs) - - -@dataclass -class TimePeriod(Entity): - """ - A period of time between a start and end time point. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.TimePeriod - class_class_curie: ClassVar[str] = "ccdh:TimePeriod" - class_name: ClassVar[str] = "TimePeriod" - class_model_uri: ClassVar[URIRef] = CCDH.TimePeriod - - periodStart_start: Optional[Union[dict, TimePoint]] = None - periodEnd_end: Optional[Union[dict, TimePoint]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.periodStart_start is not None and not isinstance(self.periodStart_start, TimePoint): - self.periodStart_start = TimePoint(**as_dict(self.periodStart_start)) - - if self.periodEnd_end is not None and not isinstance(self.periodEnd_end, TimePoint): - self.periodEnd_end = TimePoint(**as_dict(self.periodEnd_end)) - - super().__post_init__(**kwargs) - - -@dataclass -class TobaccoExposureObservation(Entity): - """ - A structured object that describes a single data item about an individual's exposure to tobacco, as generated - through a point-in-time observation, measurement, or interpretation. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.TobaccoExposureObservation - class_class_curie: ClassVar[str] = "ccdh:TobaccoExposureObservation" - class_name: ClassVar[str] = "TobaccoExposureObservation" - class_model_uri: ClassVar[URIRef] = CCDH.TobaccoExposureObservation - - observation_type: Union[str, "EnumCCDHTobaccoExposureObservationObservationType"] = None - id: Optional[Union[str, CcdhString]] = None - category: Optional[Union[str, "EnumCCDHTobaccoExposureObservationCategory"]] = None - method_type: Optional[Union[str, "EnumCCDHTobaccoExposureObservationMethodType"]] = None - focus: Optional[Union[dict, Entity]] = None - subject: Optional[Union[dict, Subject]] = None - performed_by: Optional[Union[dict, Organization]] = None - valueInteger: Optional[Union[int, CcdhInteger]] = None - valueCodeableConcept: Optional[Union[str, "EnumCCDHTobaccoExposureObservationValueCodeableConcept"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self._is_empty(self.observation_type): - self.MissingRequiredField("observation_type") - if not isinstance(self.observation_type, EnumCCDHTobaccoExposureObservationObservationType): - self.observation_type = EnumCCDHTobaccoExposureObservationObservationType(self.observation_type) - - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - if self.category is not None and not isinstance(self.category, EnumCCDHTobaccoExposureObservationCategory): - self.category = EnumCCDHTobaccoExposureObservationCategory(self.category) - - if self.method_type is not None and not isinstance(self.method_type, EnumCCDHTobaccoExposureObservationMethodType): - self.method_type = EnumCCDHTobaccoExposureObservationMethodType(self.method_type) - - if self.focus is not None and not isinstance(self.focus, Entity): - self.focus = Entity() - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.performed_by is not None and not isinstance(self.performed_by, Organization): - self.performed_by = Organization(**as_dict(self.performed_by)) - - if self.valueInteger is not None and not isinstance(self.valueInteger, CcdhInteger): - self.valueInteger = CcdhInteger(self.valueInteger) - - if self.valueCodeableConcept is not None and not isinstance(self.valueCodeableConcept, EnumCCDHTobaccoExposureObservationValueCodeableConcept): - self.valueCodeableConcept = EnumCCDHTobaccoExposureObservationValueCodeableConcept(self.valueCodeableConcept) - - super().__post_init__(**kwargs) - - -@dataclass -class Treatment(Entity): - """ - Represent medication administration or other treatment types. - """ - _inherited_slots: ClassVar[List[str]] = [] - - class_class_uri: ClassVar[URIRef] = CCDH.Treatment - class_class_curie: ClassVar[str] = "ccdh:Treatment" - class_name: ClassVar[str] = "Treatment" - class_model_uri: ClassVar[URIRef] = CCDH.Treatment - - id: Optional[Union[str, CcdhString]] = None - identifier: Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]] = empty_list() - treatment_for_diagnosis: Optional[Union[Union[dict, Diagnosis], List[Union[dict, Diagnosis]]]] = empty_list() - concurrent_treatment: Optional[Union[Union[dict, "Treatment"], List[Union[dict, "Treatment"]]]] = empty_list() - treatment_type: Optional[Union[str, "EnumCCDHTreatmentTreatmentType"]] = None - subject: Optional[Union[dict, Subject]] = None - date_started: Optional[Union[dict, TimePoint]] = None - date_ended: Optional[Union[dict, TimePoint]] = None - treatment_end_reason: Optional[Union[Union[str, "EnumCCDHTreatmentTreatmentEndReason"], List[Union[str, "EnumCCDHTreatmentTreatmentEndReason"]]]] = empty_list() - regimen: Optional[Union[str, "EnumCCDHTreatmentRegimen"]] = None - therapeutic_agent: Optional[Union[dict, Substance]] = None - number_of_cycles: Optional[Union[int, CcdhInteger]] = None - treatment_frequency: Optional[Union[str, "EnumCCDHTreatmentTreatmentFrequency"]] = None - treatment_anatomic_site: Optional[Union[dict, BodySite]] = None - treatment_intent: Optional[Union[str, "EnumCCDHTreatmentTreatmentIntent"]] = None - treatment_effect: Optional[Union[str, "EnumCCDHTreatmentTreatmentEffect"]] = None - treatment_outcome: Optional[Union[str, "EnumCCDHTreatmentTreatmentOutcome"]] = None - - def __post_init__(self, *_: List[str], **kwargs: Dict[str, Any]): - if self.id is not None and not isinstance(self.id, CcdhString): - self.id = CcdhString(self.id) - - self._normalize_inlined_as_list(slot_name="identifier", slot_type=Identifier, key_name="value", keyed=False) - - if not isinstance(self.treatment_for_diagnosis, list): - self.treatment_for_diagnosis = [self.treatment_for_diagnosis] if self.treatment_for_diagnosis is not None else [] - self.treatment_for_diagnosis = [v if isinstance(v, Diagnosis) else Diagnosis(**as_dict(v)) for v in self.treatment_for_diagnosis] - - if not isinstance(self.concurrent_treatment, list): - self.concurrent_treatment = [self.concurrent_treatment] if self.concurrent_treatment is not None else [] - self.concurrent_treatment = [v if isinstance(v, Treatment) else Treatment(**as_dict(v)) for v in self.concurrent_treatment] - - if self.treatment_type is not None and not isinstance(self.treatment_type, EnumCCDHTreatmentTreatmentType): - self.treatment_type = EnumCCDHTreatmentTreatmentType(self.treatment_type) - - if self.subject is not None and not isinstance(self.subject, Subject): - self.subject = Subject(**as_dict(self.subject)) - - if self.date_started is not None and not isinstance(self.date_started, TimePoint): - self.date_started = TimePoint(**as_dict(self.date_started)) - - if self.date_ended is not None and not isinstance(self.date_ended, TimePoint): - self.date_ended = TimePoint(**as_dict(self.date_ended)) - - if not isinstance(self.treatment_end_reason, list): - self.treatment_end_reason = [self.treatment_end_reason] if self.treatment_end_reason is not None else [] - self.treatment_end_reason = [v if isinstance(v, EnumCCDHTreatmentTreatmentEndReason) else EnumCCDHTreatmentTreatmentEndReason(v) for v in self.treatment_end_reason] - - if self.regimen is not None and not isinstance(self.regimen, EnumCCDHTreatmentRegimen): - self.regimen = EnumCCDHTreatmentRegimen(self.regimen) - - if self.therapeutic_agent is not None and not isinstance(self.therapeutic_agent, Substance): - self.therapeutic_agent = Substance(**as_dict(self.therapeutic_agent)) - - if self.number_of_cycles is not None and not isinstance(self.number_of_cycles, CcdhInteger): - self.number_of_cycles = CcdhInteger(self.number_of_cycles) - - if self.treatment_frequency is not None and not isinstance(self.treatment_frequency, EnumCCDHTreatmentTreatmentFrequency): - self.treatment_frequency = EnumCCDHTreatmentTreatmentFrequency(self.treatment_frequency) - - if self.treatment_anatomic_site is not None and not isinstance(self.treatment_anatomic_site, BodySite): - self.treatment_anatomic_site = BodySite(**as_dict(self.treatment_anatomic_site)) - - if self.treatment_intent is not None and not isinstance(self.treatment_intent, EnumCCDHTreatmentTreatmentIntent): - self.treatment_intent = EnumCCDHTreatmentTreatmentIntent(self.treatment_intent) - - if self.treatment_effect is not None and not isinstance(self.treatment_effect, EnumCCDHTreatmentTreatmentEffect): - self.treatment_effect = EnumCCDHTreatmentTreatmentEffect(self.treatment_effect) - - if self.treatment_outcome is not None and not isinstance(self.treatment_outcome, EnumCCDHTreatmentTreatmentOutcome): - self.treatment_outcome = EnumCCDHTreatmentTreatmentOutcome(self.treatment_outcome) - - super().__post_init__(**kwargs) - - -# Enumerations -class EnumCCDHAlcoholExposureObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H AlcoholExposureObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHAlcoholExposureObservationCategory", - description="Autogenerated Enumeration for CRDC-H AlcoholExposureObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:39.755084+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHAlcoholExposureObservationObservationType(EnumDefinitionImpl): - """ - Types of observations about a Subject's exposure to alcohol. - """ - alcohol_days_per_week = PermissibleValue(text="alcohol_days_per_week", - description="Numeric value used to describe the average number of days each week that a person consumes an alcoholic beverage.") - alcohol_drinks_per_day = PermissibleValue(text="alcohol_drinks_per_day", - description="Numeric value used to describe the average number of alcoholic beverages a person consumes per day.") - alcohol_history = PermissibleValue(text="alcohol_history", - description="A response to a question that asks whether the participant has consumed at least 12 drinks of any kind of alcoholic beverage in their lifetime.") - alcohol_intensity = PermissibleValue(text="alcohol_intensity", - description="Category to describe the patient's current level of alcohol use as self-reported by the patient.") - - _defn = EnumDefinition( - name="EnumCCDHAlcoholExposureObservationObservationType", - description="Types of observations about a Subject's exposure to alcohol.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHAlcoholExposureObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H AlcoholExposureObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHAlcoholExposureObservationMethodType", - description="Autogenerated Enumeration for CRDC-H AlcoholExposureObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:40.114759+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHAlcoholExposureObservationValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H AlcoholExposureObservation valueCodeableConcept - """ - Unknown = PermissibleValue(text="Unknown") - Drinker = PermissibleValue(text="Drinker") - No = PermissibleValue(text="No", - description="No") - Yes = PermissibleValue(text="Yes", - description="Yes") - - _defn = EnumDefinition( - name="EnumCCDHAlcoholExposureObservationValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H AlcoholExposureObservation valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:42:40.254647+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Heavy Drinker", - PermissibleValue(text="Heavy Drinker") ) - setattr(cls, "Occasional Drinker", - PermissibleValue(text="Occasional Drinker", - description="Occasional Drinker") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Lifelong Non-Drinker", - PermissibleValue(text="Lifelong Non-Drinker") ) - setattr(cls, "Non-Drinker", - PermissibleValue(text="Non-Drinker") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHBodySiteSite(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H BodySite site - """ - Brain = PermissibleValue(text="Brain", - description="Brain") - Unknown = PermissibleValue(text="Unknown") - Skin = PermissibleValue(text="Skin", - description="Skin") - Ureter = PermissibleValue(text="Ureter") - Gallbladder = PermissibleValue(text="Gallbladder") - Tonsil = PermissibleValue(text="Tonsil", - description="Tonsil") - Colon = PermissibleValue(text="Colon", - description="Colon") - Esophagus = PermissibleValue(text="Esophagus", - description="Esophagus") - Palate = PermissibleValue(text="Palate", - description="Palate") - Hypopharynx = PermissibleValue(text="Hypopharynx", - description="Hypopharynx (Laryngopharynx)") - Lip = PermissibleValue(text="Lip", - description="Lip") - Testis = PermissibleValue(text="Testis") - Nasopharynx = PermissibleValue(text="Nasopharynx", - description="Nasopharynx") - Meninges = PermissibleValue(text="Meninges", - description="Meninges") - Rectum = PermissibleValue(text="Rectum", - description="Rectum") - Bladder = PermissibleValue(text="Bladder", - description="Bladder") - Larynx = PermissibleValue(text="Larynx", - description="Larynx") - Vulva = PermissibleValue(text="Vulva", - description="Vulva") - Breast = PermissibleValue(text="Breast", - description="Breast") - Stomach = PermissibleValue(text="Stomach", - description="Stomach") - Kidney = PermissibleValue(text="Kidney", - description="Kidney") - Oropharynx = PermissibleValue(text="Oropharynx", - description="Oropharynx") - Trachea = PermissibleValue(text="Trachea") - Placenta = PermissibleValue(text="Placenta") - Thymus = PermissibleValue(text="Thymus", - description="Thymus") - Penis = PermissibleValue(text="Penis", - description="Penis") - Vagina = PermissibleValue(text="Vagina", - description="Vagina") - Gum = PermissibleValue(text="Gum", - description="Gingiva") - Pancreas = PermissibleValue(text="Pancreas", - description="Pancreas") - Ovary = PermissibleValue(text="Ovary") - Pylorus = PermissibleValue(text="Pylorus", - description="Pylorus") - Glottis = PermissibleValue(text="Glottis", - description="Glottis") - Endometrium = PermissibleValue(text="Endometrium") - Prepuce = PermissibleValue(text="Prepuce") - Retina = PermissibleValue(text="Retina", - description="Retina") - Subglottis = PermissibleValue(text="Subglottis", - description="Subglottis") - Liver = PermissibleValue(text="Liver", - description="Liver") - Myometrium = PermissibleValue(text="Myometrium") - Blood = PermissibleValue(text="Blood", - description="Blood") - Urachus = PermissibleValue(text="Urachus") - Cerebrum = PermissibleValue(text="Cerebrum", - description="Cerebral Hemisphere") - Supraglottis = PermissibleValue(text="Supraglottis", - description="Supraglottis") - Endocervix = PermissibleValue(text="Endocervix") - Epididymis = PermissibleValue(text="Epididymis", - description="Epididymis") - Clitoris = PermissibleValue(text="Clitoris", - description="Clitoris") - Retroperitoneum = PermissibleValue(text="Retroperitoneum", - description="Retroperitoneum") - Heart = PermissibleValue(text="Heart", - description="Heart") - Spleen = PermissibleValue(text="Spleen", - description="Spleen") - Vallecula = PermissibleValue(text="Vallecula") - Appendix = PermissibleValue(text="Appendix", - description="Appendix") - Eyelid = PermissibleValue(text="Eyelid") - Ileum = PermissibleValue(text="Ileum", - description="Ileum") - Cecum = PermissibleValue(text="Cecum", - description="Cecum") - Urethra = PermissibleValue(text="Urethra", - description="Urethra") - Nipple = PermissibleValue(text="Nipple") - Parametrium = PermissibleValue(text="Parametrium") - Duodenum = PermissibleValue(text="Duodenum", - description="Duodenum") - Choroid = PermissibleValue(text="Choroid") - Exocervix = PermissibleValue(text="Exocervix") - Mandible = PermissibleValue(text="Mandible", - description="Mandible") - Conjunctiva = PermissibleValue(text="Conjunctiva", - description="Conjunctiva") - Jejunum = PermissibleValue(text="Jejunum", - description="Jejunum") - Uvula = PermissibleValue(text="Uvula", - description="Uvula") - Thyroid = PermissibleValue(text="Thyroid") - Colorectal = PermissibleValue(text="Colorectal") - Cervix = PermissibleValue(text="Cervix", - description="Cervix") - Pleura = PermissibleValue(text="Pleura", - description="Pleura") - Bone = PermissibleValue(text="Bone", - description="Bone") - Eye = PermissibleValue(text="Eye", - description="Eye") - Prostate = PermissibleValue(text="Prostate", - description="Prostate") - Lung = PermissibleValue(text="Lung", - description="Lung") - Uterus = PermissibleValue(text="Uterus", - description="Uterus") - Scalp = PermissibleValue(text="Scalp", - description="Scalp") - Aorta = PermissibleValue(text="Aorta", - description="Aorta") - Thigh = PermissibleValue(text="Thigh", - description="Thigh") - Buttock = PermissibleValue(text="Buttock", - description="Buttock") - Nerve = PermissibleValue(text="Nerve", - description="nerve") - Bronchiole = PermissibleValue(text="Bronchiole", - description="Bronchiole") - Pericardium = PermissibleValue(text="Pericardium", - description="Pericardium") - Mediastinum = PermissibleValue(text="Mediastinum", - description="Mediastinum") - Ischium = PermissibleValue(text="Ischium", - description="Ischium") - Cartilage = PermissibleValue(text="Cartilage", - description="Cartilage") - Chest = PermissibleValue(text="Chest", - description="Chest") - Femur = PermissibleValue(text="Femur", - description="Femur") - Pelvis = PermissibleValue(text="Pelvis", - description="Pelvis") - Maxilla = PermissibleValue(text="Maxilla", - description="Maxilla") - Acetabulum = PermissibleValue(text="Acetabulum", - description="Acetabulum") - Ligament = PermissibleValue(text="Ligament", - description="Ligament") - Artery = PermissibleValue(text="Artery", - description="Artery") - Foot = PermissibleValue(text="Foot", - description="Foot") - Thorax = PermissibleValue(text="Thorax", - description="Thorax") - Joint = PermissibleValue(text="Joint") - Hippocampus = PermissibleValue(text="Hippocampus") - Bowel = PermissibleValue(text="Bowel", - description="Bowel") - Adrenal = PermissibleValue(text="Adrenal") - Chin = PermissibleValue(text="Chin", - description="Mentum") - Anorectum = PermissibleValue(text="Anorectum", - description="Anorectum") - Patella = PermissibleValue(text="Patella", - description="Patella") - Mesothelium = PermissibleValue(text="Mesothelium", - description="Mesothelium") - Bronchus = PermissibleValue(text="Bronchus", - description="Bronchus") - Adenoid = PermissibleValue(text="Adenoid", - description="Tonsillar Tissue") - Scapula = PermissibleValue(text="Scapula", - description="Scapula") - Peritoneum = PermissibleValue(text="Peritoneum", - description="Peritoneum") - Shoulder = PermissibleValue(text="Shoulder", - description="Shoulder Joint") - Parathyroid = PermissibleValue(text="Parathyroid", - description="Parathyroid Gland") - Capillary = PermissibleValue(text="Capillary", - description="Capillary") - Wrist = PermissibleValue(text="Wrist", - description="Wrist") - Humerus = PermissibleValue(text="Humerus", - description="Humerus") - Fibroblasts = PermissibleValue(text="Fibroblasts") - Throat = PermissibleValue(text="Throat", - description="Throat") - Thumb = PermissibleValue(text="Thumb") - Diaphragm = PermissibleValue(text="Diaphragm", - description="Diaphragm") - Pharynx = PermissibleValue(text="Pharynx", - description="Pharynx") - Brow = PermissibleValue(text="Brow", - description="Eyebrow") - Hip = PermissibleValue(text="Hip", - description="Hip") - Forehead = PermissibleValue(text="Forehead", - description="Forehead") - Forearm = PermissibleValue(text="Forearm", - description="Forearm") - Sternum = PermissibleValue(text="Sternum", - description="Sternum") - Fibula = PermissibleValue(text="Fibula", - description="Fibula") - Tibia = PermissibleValue(text="Tibia", - description="Tibia") - Vein = PermissibleValue(text="Vein", - description="Vein") - Elbow = PermissibleValue(text="Elbow", - description="Elbow Joint") - Skull = PermissibleValue(text="Skull", - description="Skull") - Clavicle = PermissibleValue(text="Clavicle", - description="Clavicle") - Knee = PermissibleValue(text="Knee", - description="Knee Joint") - Omentum = PermissibleValue(text="Omentum", - description="Omentum") - Other = PermissibleValue(text="Other", - description="Other") - Trunk = PermissibleValue(text="Trunk", - description="Trunk") - Synovium = PermissibleValue(text="Synovium", - description="Synovial Membrane") - Groin = PermissibleValue(text="Groin", - description="Inguinal Region") - Jaw = PermissibleValue(text="Jaw", - description="Jaw") - Effusion = PermissibleValue(text="Effusion", - description="Effusion") - Leptomeninges = PermissibleValue(text="Leptomeninges", - description="Leptomeninges") - Dermal = PermissibleValue(text="Dermal") - Scrotum = PermissibleValue(text="Scrotum", - description="Scrotum") - Mitochondria = PermissibleValue(text="Mitochondria") - Hepatic = PermissibleValue(text="Hepatic") - Muscle = PermissibleValue(text="Muscle", - description="Muscle") - Foreskin = PermissibleValue(text="Foreskin", - description="Male Prepuce") - Venous = PermissibleValue(text="Venous") - Mesentery = PermissibleValue(text="Mesentery", - description="Mesentery") - Pineal = PermissibleValue(text="Pineal") - Adipose = PermissibleValue(text="Adipose", - description="Adipose Tissue") - Ganglia = PermissibleValue(text="Ganglia", - description="Ganglion") - Ear = PermissibleValue(text="Ear", - description="Ear") - Arm = PermissibleValue(text="Arm", - description="Arm") - Laryngopharynx = PermissibleValue(text="Laryngopharynx", - description="Hypopharynx (Laryngopharynx)") - Sacrum = PermissibleValue(text="Sacrum", - description="Sacrum") - Back = PermissibleValue(text="Back", - description="Back") - Rib = PermissibleValue(text="Rib") - Ankle = PermissibleValue(text="Ankle", - description="Ankle") - Calf = PermissibleValue(text="Calf", - description="Calf") - Abdomen = PermissibleValue(text="Abdomen", - description="Abdominal Cavity") - Hand = PermissibleValue(text="Hand", - description="Hand") - Antrum = PermissibleValue(text="Antrum", - description="Antrum Pylori") - Anus = PermissibleValue(text="Anus", - description="Anus") - Tendon = PermissibleValue(text="Tendon", - description="Tendon") - Carina = PermissibleValue(text="Carina", - description="Carina") - Vertebra = PermissibleValue(text="Vertebra", - description="Vertebra") - Cerebellum = PermissibleValue(text="Cerebellum", - description="Cerebellum") - Nails = PermissibleValue(text="Nails", - description="Nail") - Sinus = PermissibleValue(text="Sinus") - Axilla = PermissibleValue(text="Axilla", - description="Axilla") - Cardia = PermissibleValue(text="Cardia", - description="Gastric Cardia") - Leg = PermissibleValue(text="Leg", - description="Leg") - Neck = PermissibleValue(text="Neck", - description="Neck") - Ilium = PermissibleValue(text="Ilium", - description="Ilium") - Tongue = PermissibleValue(text="Tongue", - description="Tongue") - Fluid = PermissibleValue(text="Fluid", - description="Body Fluid or Substance") - Finger = PermissibleValue(text="Finger", - description="Fingers (Phalanges)") - - _defn = EnumDefinition( - name="EnumCCDHBodySiteSite", - description="Autogenerated Enumeration for CRDC-H BodySite site", - code_set=None, - code_set_version="2021-07-21T20:42:40.409767+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Eye and adnexa", - PermissibleValue(text="Eye and adnexa", - description="Adnexa And Eye") ) - setattr(cls, "Rectosigmoid junction", - PermissibleValue(text="Rectosigmoid junction") ) - setattr(cls, "Other and ill-defined digestive organs", - PermissibleValue(text="Other and ill-defined digestive organs", - description="Other and ill-defined digestive organs") ) - setattr(cls, "Parotid gland", - PermissibleValue(text="Parotid gland") ) - setattr(cls, "Peripheral nerves and autonomic nervous system", - PermissibleValue(text="Peripheral nerves and autonomic nervous system", - description="Peripheral Nerve and Autonomic Nervous System") ) - setattr(cls, "Small intestine", - PermissibleValue(text="Small intestine", - description="Small Intestine") ) - setattr(cls, "Other and unspecified urinary organs", - PermissibleValue(text="Other and unspecified urinary organs", - description="Other and unspecified urinary organs") ) - setattr(cls, "Anus and anal canal", - PermissibleValue(text="Anus and anal canal", - description="Anus and Anal Canal") ) - setattr(cls, "Other and unspecified parts of mouth", - PermissibleValue(text="Other and unspecified parts of mouth", - description="Other and unspecified parts of mouth") ) - setattr(cls, "Prostate gland", - PermissibleValue(text="Prostate gland") ) - setattr(cls, "Other endocrine glands and related structures", - PermissibleValue(text="Other endocrine glands and related structures", - description="Other endocrine glands and related structures") ) - setattr(cls, "Spinal cord, cranial nerves, and other parts of central nervous system", - PermissibleValue(text="Spinal cord, cranial nerves, and other parts of central nervous system", - description="Spinal Cord Cranial Nerve and Other Central Nervous System") ) - setattr(cls, "Lymph nodes", - PermissibleValue(text="Lymph nodes", - description="Lymph Node") ) - setattr(cls, "Pyriform sinus", - PermissibleValue(text="Pyriform sinus") ) - setattr(cls, "Bronchus and lung", - PermissibleValue(text="Bronchus and lung", - description="Bronchus and Lung") ) - setattr(cls, "Other and unspecified female genital organs", - PermissibleValue(text="Other and unspecified female genital organs", - description="Other and unspecified female genital organs") ) - setattr(cls, "Uterus, NOS", - PermissibleValue(text="Uterus, NOS") ) - setattr(cls, "Bones, joints and articular cartilage of other and unspecified sites", - PermissibleValue(text="Bones, joints and articular cartilage of other and unspecified sites", - description="Bone, Joint ,Articular Cartilage of Other and Unspecified Anatomic Site") ) - setattr(cls, "Retroperitoneum and peritoneum", - PermissibleValue(text="Retroperitoneum and peritoneum", - description="Retroperitoneum and Peritoneum") ) - setattr(cls, "Accessory sinuses", - PermissibleValue(text="Accessory sinuses", - description="Paranasal Sinus") ) - setattr(cls, "Liver and intrahepatic bile ducts", - PermissibleValue(text="Liver and intrahepatic bile ducts", - description="Liver and Intrahepatic Bile Duct") ) - setattr(cls, "Cervix uteri", - PermissibleValue(text="Cervix uteri") ) - setattr(cls, "Adrenal gland", - PermissibleValue(text="Adrenal gland", - description="Adrenal Gland") ) - setattr(cls, "Floor of mouth", - PermissibleValue(text="Floor of mouth") ) - setattr(cls, "Other and unspecified male genital organs", - PermissibleValue(text="Other and unspecified male genital organs", - description="Other and unspecified male genital organs") ) - setattr(cls, "Nasal cavity and middle ear", - PermissibleValue(text="Nasal cavity and middle ear", - description="Nasal Cavity and Middle Ear") ) - setattr(cls, "Renal pelvis", - PermissibleValue(text="Renal pelvis") ) - setattr(cls, "Other and unspecified parts of tongue", - PermissibleValue(text="Other and unspecified parts of tongue", - description="Other and unspecified parts of tongue") ) - setattr(cls, "Other and ill-defined sites", - PermissibleValue(text="Other and ill-defined sites", - description="Other and ill-defined sites") ) - setattr(cls, "Thyroid gland", - PermissibleValue(text="Thyroid gland") ) - setattr(cls, "Corpus uteri", - PermissibleValue(text="Corpus uteri") ) - setattr(cls, "Hematopoietic and reticuloendothelial systems", - PermissibleValue(text="Hematopoietic and reticuloendothelial systems", - description="Hematopoietic and Reticuloendothelial System") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Other and unspecified major salivary glands", - PermissibleValue(text="Other and unspecified major salivary glands", - description="Other and unspecified major salivary glands") ) - setattr(cls, "Other and ill-defined sites within respiratory system and intrathoracic organs", - PermissibleValue(text="Other and ill-defined sites within respiratory system and intrathoracic organs", - description="Other and ill-defined sites within respiratory system and intrathoracic organs") ) - setattr(cls, "Other and ill-defined sites in lip, oral cavity and pharynx", - PermissibleValue(text="Other and ill-defined sites in lip, oral cavity and pharynx", - description="Other and ill-defined sites in lip, oral cavity and pharynx") ) - setattr(cls, "Connective, subcutaneous and other soft tissues", - PermissibleValue(text="Connective, subcutaneous and other soft tissues", - description="Connective, Subcutaneous and Other Soft Tissue") ) - setattr(cls, "Base of tongue", - PermissibleValue(text="Base of tongue", - description="Base of the Tongue") ) - setattr(cls, "Other and unspecified parts of biliary tract", - PermissibleValue(text="Other and unspecified parts of biliary tract", - description="Other and unspecified parts of biliary tract") ) - setattr(cls, "Heart, mediastinum, and pleura", - PermissibleValue(text="Heart, mediastinum, and pleura", - description="Heart, Mediastinum and Pleura") ) - setattr(cls, "Bones, joints and articular cartilage of limbs", - PermissibleValue(text="Bones, joints and articular cartilage of limbs", - description="Bone, Joint, Articular Cartilage of Limb") ) - setattr(cls, "Connective, subcutaneous and other soft tissues of thorax", - PermissibleValue(text="Connective, subcutaneous and other soft tissues of thorax") ) - setattr(cls, "External lip, NOS", - PermissibleValue(text="External lip, NOS") ) - setattr(cls, "Other ill-defined sites", - PermissibleValue(text="Other ill-defined sites") ) - setattr(cls, "Posterior wall of hypopharynx", - PermissibleValue(text="Posterior wall of hypopharynx") ) - setattr(cls, "Branchial cleft", - PermissibleValue(text="Branchial cleft") ) - setattr(cls, "Skin of trunk", - PermissibleValue(text="Skin of trunk") ) - setattr(cls, "Cortex of adrenal gland", - PermissibleValue(text="Cortex of adrenal gland") ) - setattr(cls, "Intrathoracic lymph nodes", - PermissibleValue(text="Intrathoracic lymph nodes") ) - setattr(cls, "Ampulla of Vater", - PermissibleValue(text="Ampulla of Vater") ) - setattr(cls, "Olfactory nerve", - PermissibleValue(text="Olfactory nerve") ) - setattr(cls, "Lateral wall of bladder", - PermissibleValue(text="Lateral wall of bladder") ) - setattr(cls, "Anterior 2/3 of tongue, NOS", - PermissibleValue(text="Anterior 2/3 of tongue, NOS") ) - setattr(cls, "Peripheral nerves and autonomic nervous system of upper limb and shoulder", - PermissibleValue(text="Peripheral nerves and autonomic nervous system of upper limb and shoulder") ) - setattr(cls, "Overlapping lesion of accessory sinuses", - PermissibleValue(text="Overlapping lesion of accessory sinuses") ) - setattr(cls, "Anterior mediastinum", - PermissibleValue(text="Anterior mediastinum") ) - setattr(cls, "Cardia, NOS", - PermissibleValue(text="Cardia, NOS") ) - setattr(cls, "Lymph nodes of multiple regions", - PermissibleValue(text="Lymph nodes of multiple regions") ) - setattr(cls, "Ethmoid sinus", - PermissibleValue(text="Ethmoid sinus") ) - setattr(cls, "Rectum, NOS", - PermissibleValue(text="Rectum, NOS") ) - setattr(cls, "Overlapping lesion of other and unspecified parts of mouth", - PermissibleValue(text="Overlapping lesion of other and unspecified parts of mouth") ) - setattr(cls, "Frontal lobe", - PermissibleValue(text="Frontal lobe") ) - setattr(cls, "Colon, NOS", - PermissibleValue(text="Colon, NOS") ) - setattr(cls, "Occipital lobe", - PermissibleValue(text="Occipital lobe") ) - setattr(cls, "Upper limb, NOS", - PermissibleValue(text="Upper limb, NOS") ) - setattr(cls, "Anus, NOS", - PermissibleValue(text="Anus, NOS") ) - setattr(cls, "Cornea, NOS", - PermissibleValue(text="Cornea, NOS") ) - setattr(cls, "Upper gum", - PermissibleValue(text="Upper gum") ) - setattr(cls, "Peripheral nerves and autonomic nervous system of pelvis", - PermissibleValue(text="Peripheral nerves and autonomic nervous system of pelvis") ) - setattr(cls, "Retromolar area", - PermissibleValue(text="Retromolar area") ) - setattr(cls, "Bladder, NOS", - PermissibleValue(text="Bladder, NOS") ) - setattr(cls, "Skin of upper limb and shoulder", - PermissibleValue(text="Skin of upper limb and shoulder") ) - setattr(cls, "Spermatic cord", - PermissibleValue(text="Spermatic cord") ) - setattr(cls, "Lateral floor of mouth", - PermissibleValue(text="Lateral floor of mouth") ) - setattr(cls, "Skin of lower limb and hip", - PermissibleValue(text="Skin of lower limb and hip") ) - setattr(cls, "Ascending colon", - PermissibleValue(text="Ascending colon") ) - setattr(cls, "Other specified parts of pancreas", - PermissibleValue(text="Other specified parts of pancreas") ) - setattr(cls, "Endocrine gland, NOS", - PermissibleValue(text="Endocrine gland, NOS") ) - setattr(cls, "Uterine adnexa", - PermissibleValue(text="Uterine adnexa") ) - setattr(cls, "Brain stem", - PermissibleValue(text="Brain stem") ) - setattr(cls, "Overlapping lesion of rectum, anus and anal canal", - PermissibleValue(text="Overlapping lesion of rectum, anus and anal canal") ) - setattr(cls, "Overlapping lesion of breast", - PermissibleValue(text="Overlapping lesion of breast") ) - setattr(cls, "Trigone of bladder", - PermissibleValue(text="Trigone of bladder") ) - setattr(cls, "Laryngeal cartilage", - PermissibleValue(text="Laryngeal cartilage") ) - setattr(cls, "Cauda equina", - PermissibleValue(text="Cauda equina") ) - setattr(cls, "Brain, NOS", - PermissibleValue(text="Brain, NOS") ) - setattr(cls, "Glans penis", - PermissibleValue(text="Glans penis") ) - setattr(cls, "Head of pancreas", - PermissibleValue(text="Head of pancreas") ) - setattr(cls, "Overlapping lesion of stomach", - PermissibleValue(text="Overlapping lesion of stomach") ) - setattr(cls, "Overlapping lesion of colon", - PermissibleValue(text="Overlapping lesion of colon") ) - setattr(cls, "Isthmus uteri", - PermissibleValue(text="Isthmus uteri") ) - setattr(cls, "Overlapping lesion of heart, mediastinum and pleura", - PermissibleValue(text="Overlapping lesion of heart, mediastinum and pleura") ) - setattr(cls, "External upper lip", - PermissibleValue(text="External upper lip") ) - setattr(cls, "Sphenoid sinus", - PermissibleValue(text="Sphenoid sinus") ) - setattr(cls, "Islets of Langerhans", - PermissibleValue(text="Islets of Langerhans") ) - setattr(cls, "Gastrointestinal tract, NOS", - PermissibleValue(text="Gastrointestinal tract, NOS") ) - setattr(cls, "Lower gum", - PermissibleValue(text="Lower gum") ) - setattr(cls, "Sigmoid colon", - PermissibleValue(text="Sigmoid colon") ) - setattr(cls, "Overlapping lesion of peripheral nerves and autonomic nervous system", - PermissibleValue(text="Overlapping lesion of peripheral nerves and autonomic nervous system") ) - setattr(cls, "Nervous system, NOS", - PermissibleValue(text="Nervous system, NOS") ) - setattr(cls, "Posterior mediastinum", - PermissibleValue(text="Posterior mediastinum") ) - setattr(cls, "Upper-outer quadrant of breast", - PermissibleValue(text="Upper-outer quadrant of breast") ) - setattr(cls, "Ciliary body", - PermissibleValue(text="Ciliary body") ) - setattr(cls, "Descended testis", - PermissibleValue(text="Descended testis") ) - setattr(cls, "Overlapping lesion of retroperitoneum and peritoneum", - PermissibleValue(text="Overlapping lesion of retroperitoneum and peritoneum") ) - setattr(cls, "Accessory sinus, NOS", - PermissibleValue(text="Accessory sinus, NOS") ) - setattr(cls, "Superior wall of nasopharynx", - PermissibleValue(text="Superior wall of nasopharynx") ) - setattr(cls, "Long bones of lower limb and associated joints", - PermissibleValue(text="Long bones of lower limb and associated joints") ) - setattr(cls, "Meninges, NOS", - PermissibleValue(text="Meninges, NOS") ) - setattr(cls, "Pineal gland", - PermissibleValue(text="Pineal gland") ) - setattr(cls, "Anterior wall of nasopharynx", - PermissibleValue(text="Anterior wall of nasopharynx") ) - setattr(cls, "Paraurethral gland", - PermissibleValue(text="Paraurethral gland") ) - setattr(cls, "Fundus of stomach", - PermissibleValue(text="Fundus of stomach") ) - setattr(cls, "Connective, subcutaneous and other soft tissues of trunk, NOS", - PermissibleValue(text="Connective, subcutaneous and other soft tissues of trunk, NOS") ) - setattr(cls, "Overlapping lesion of lip, oral cavity and pharynx", - PermissibleValue(text="Overlapping lesion of lip, oral cavity and pharynx") ) - setattr(cls, "Stomach, NOS", - PermissibleValue(text="Stomach, NOS") ) - setattr(cls, "Overlapping lesion of esophagus", - PermissibleValue(text="Overlapping lesion of esophagus") ) - setattr(cls, "Pharynx, NOS", - PermissibleValue(text="Pharynx, NOS") ) - setattr(cls, "Short bones of upper limb and associated joints", - PermissibleValue(text="Short bones of upper limb and associated joints") ) - setattr(cls, "Testis, NOS", - PermissibleValue(text="Testis, NOS") ) - setattr(cls, "Thoracic esophagus", - PermissibleValue(text="Thoracic esophagus") ) - setattr(cls, "Spinal cord", - PermissibleValue(text="Spinal cord") ) - setattr(cls, "Mouth, NOS", - PermissibleValue(text="Mouth, NOS") ) - setattr(cls, "Lip, NOS", - PermissibleValue(text="Lip, NOS") ) - setattr(cls, "Penis, NOS", - PermissibleValue(text="Penis, NOS") ) - setattr(cls, "Fallopian tube", - PermissibleValue(text="Fallopian tube") ) - setattr(cls, "Extrahepatic bile duct", - PermissibleValue(text="Extrahepatic bile duct") ) - setattr(cls, "Pelvic lymph nodes", - PermissibleValue(text="Pelvic lymph nodes") ) - setattr(cls, "Vertebral column", - PermissibleValue(text="Vertebral column") ) - setattr(cls, "Pancreas, NOS", - PermissibleValue(text="Pancreas, NOS") ) - setattr(cls, "Reticuloendothelial system, NOS", - PermissibleValue(text="Reticuloendothelial system, NOS") ) - setattr(cls, "Submandibular gland", - PermissibleValue(text="Submandibular gland") ) - setattr(cls, "Esophagus, NOS", - PermissibleValue(text="Esophagus, NOS") ) - setattr(cls, "Mucosa of lip, NOS", - PermissibleValue(text="Mucosa of lip, NOS") ) - setattr(cls, "Overlapping lesion of endocrine glands and related structures", - PermissibleValue(text="Overlapping lesion of endocrine glands and related structures") ) - setattr(cls, "Overlapping lesion of female genital organs", - PermissibleValue(text="Overlapping lesion of female genital organs") ) - setattr(cls, "Oropharynx, NOS", - PermissibleValue(text="Oropharynx, NOS") ) - setattr(cls, "Body of stomach", - PermissibleValue(text="Body of stomach") ) - setattr(cls, "Hard palate", - PermissibleValue(text="Hard palate") ) - setattr(cls, "Peripheral nerves and autonomic nervous system of thorax", - PermissibleValue(text="Peripheral nerves and autonomic nervous system of thorax") ) - setattr(cls, "Overlapping lesion of larynx", - PermissibleValue(text="Overlapping lesion of larynx") ) - setattr(cls, "Ill-defined sites within respiratory system", - PermissibleValue(text="Ill-defined sites within respiratory system") ) - setattr(cls, "Male genital organs, NOS", - PermissibleValue(text="Male genital organs, NOS") ) - setattr(cls, "Labium majus", - PermissibleValue(text="Labium majus") ) - setattr(cls, "Short bones of lower limb and associated joints", - PermissibleValue(text="Short bones of lower limb and associated joints") ) - setattr(cls, "Bone of limb, NOS", - PermissibleValue(text="Bone of limb, NOS") ) - setattr(cls, "Overlapping lesion of brain and central nervous system", - PermissibleValue(text="Overlapping lesion of brain and central nervous system") ) - setattr(cls, "Overlapping lesion of connective, subcutaneous and other soft tissues", - PermissibleValue(text="Overlapping lesion of connective, subcutaneous and other soft tissues") ) - setattr(cls, "Descending colon", - PermissibleValue(text="Descending colon") ) - setattr(cls, "Vestibule of mouth", - PermissibleValue(text="Vestibule of mouth") ) - setattr(cls, "Pleura, NOS", - PermissibleValue(text="Pleura, NOS") ) - setattr(cls, "Lymph nodes of axilla or arm", - PermissibleValue(text="Lymph nodes of axilla or arm") ) - setattr(cls, "Meckel diverticulum", - PermissibleValue(text="Meckel diverticulum") ) - setattr(cls, "Overlapping lesion of nasopharynx", - PermissibleValue(text="Overlapping lesion of nasopharynx") ) - setattr(cls, "Lymph nodes of head, face and neck", - PermissibleValue(text="Lymph nodes of head, face and neck") ) - setattr(cls, "External ear", - PermissibleValue(text="External ear") ) - setattr(cls, "Maxillary sinus", - PermissibleValue(text="Maxillary sinus") ) - setattr(cls, "Tonsillar fossa", - PermissibleValue(text="Tonsillar fossa") ) - setattr(cls, "Undescended testis", - PermissibleValue(text="Undescended testis") ) - setattr(cls, "Transverse colon", - PermissibleValue(text="Transverse colon") ) - setattr(cls, "Ventral surface of tongue, NOS", - PermissibleValue(text="Ventral surface of tongue, NOS") ) - setattr(cls, "Hypopharynx, NOS", - PermissibleValue(text="Hypopharynx, NOS") ) - setattr(cls, "Overlapping lesion of bladder", - PermissibleValue(text="Overlapping lesion of bladder") ) - setattr(cls, "Fundus uteri", - PermissibleValue(text="Fundus uteri") ) - setattr(cls, "Overlapping lesion of eye and adnexa", - PermissibleValue(text="Overlapping lesion of eye and adnexa") ) - setattr(cls, "Long bones of upper limb, scapula and associated joints", - PermissibleValue(text="Long bones of upper limb, scapula and associated joints") ) - setattr(cls, "Craniopharyngeal duct", - PermissibleValue(text="Craniopharyngeal duct") ) - setattr(cls, "Soft palate, NOS", - PermissibleValue(text="Soft palate, NOS") ) - setattr(cls, "Posterior wall of nasopharynx", - PermissibleValue(text="Posterior wall of nasopharynx") ) - setattr(cls, "Hepatic flexure of colon", - PermissibleValue(text="Hepatic flexure of colon") ) - setattr(cls, "Upper-inner quadrant of breast", - PermissibleValue(text="Upper-inner quadrant of breast") ) - setattr(cls, "Gum, NOS", - PermissibleValue(text="Gum, NOS") ) - setattr(cls, "Acoustic nerve", - PermissibleValue(text="Acoustic nerve") ) - setattr(cls, "Temporal lobe", - PermissibleValue(text="Temporal lobe") ) - setattr(cls, "Skin of scalp and neck", - PermissibleValue(text="Skin of scalp and neck") ) - setattr(cls, "Larynx, NOS", - PermissibleValue(text="Larynx, NOS") ) - setattr(cls, "Commissure of lip", - PermissibleValue(text="Commissure of lip") ) - setattr(cls, "Middle lobe, lung", - PermissibleValue(text="Middle lobe, lung") ) - setattr(cls, "Postcricoid region", - PermissibleValue(text="Postcricoid region") ) - setattr(cls, "Broad ligament", - PermissibleValue(text="Broad ligament") ) - setattr(cls, "Overlapping lesion of ill-defined sites", - PermissibleValue(text="Overlapping lesion of ill-defined sites") ) - setattr(cls, "Intestinal tract, NOS", - PermissibleValue(text="Intestinal tract, NOS") ) - setattr(cls, "Urinary system, NOS", - PermissibleValue(text="Urinary system, NOS") ) - setattr(cls, "Aortic body and other paraganglia", - PermissibleValue(text="Aortic body and other paraganglia") ) - setattr(cls, "Body of pancreas", - PermissibleValue(text="Body of pancreas") ) - setattr(cls, "Overlapping lesion of bones, joints and articular cartilage", - PermissibleValue(text="Overlapping lesion of bones, joints and articular cartilage") ) - setattr(cls, "Rib, sternum, clavicle and associated joints", - PermissibleValue(text="Rib, sternum, clavicle and associated joints") ) - setattr(cls, "Bones of skull and face and associated joints", - PermissibleValue(text="Bones of skull and face and associated joints") ) - setattr(cls, "Pancreatic duct", - PermissibleValue(text="Pancreatic duct") ) - setattr(cls, "Body of penis", - PermissibleValue(text="Body of penis") ) - setattr(cls, "Border of tongue", - PermissibleValue(text="Border of tongue") ) - setattr(cls, "Central portion of breast", - PermissibleValue(text="Central portion of breast") ) - setattr(cls, "Dorsal surface of tongue, NOS", - PermissibleValue(text="Dorsal surface of tongue, NOS") ) - setattr(cls, "Overlapping lesion of biliary tract", - PermissibleValue(text="Overlapping lesion of biliary tract") ) - setattr(cls, "Lesser curvature of stomach, NOS", - PermissibleValue(text="Lesser curvature of stomach, NOS") ) - setattr(cls, "Ventricle, NOS", - PermissibleValue(text="Ventricle, NOS") ) - setattr(cls, "Hypopharyngeal aspect of aryepiglottic fold", - PermissibleValue(text="Hypopharyngeal aspect of aryepiglottic fold") ) - setattr(cls, "Vulva, NOS", - PermissibleValue(text="Vulva, NOS") ) - setattr(cls, "Abdominal esophagus", - PermissibleValue(text="Abdominal esophagus") ) - setattr(cls, "Peripheral nerves and autonomic nervous system of lower limb and hip", - PermissibleValue(text="Peripheral nerves and autonomic nervous system of lower limb and hip") ) - setattr(cls, "Tonsillar pillar", - PermissibleValue(text="Tonsillar pillar") ) - setattr(cls, "Upper third of esophagus", - PermissibleValue(text="Upper third of esophagus") ) - setattr(cls, "Main bronchus", - PermissibleValue(text="Main bronchus") ) - setattr(cls, "Cerebellum, NOS", - PermissibleValue(text="Cerebellum, NOS") ) - setattr(cls, "Vagina, NOS", - PermissibleValue(text="Vagina, NOS") ) - setattr(cls, "Upper lobe, lung", - PermissibleValue(text="Upper lobe, lung") ) - setattr(cls, "Lacrimal gland", - PermissibleValue(text="Lacrimal gland") ) - setattr(cls, "Parietal lobe", - PermissibleValue(text="Parietal lobe") ) - setattr(cls, "Connective, subcutaneous and other soft tissues, NOS", - PermissibleValue(text="Connective, subcutaneous and other soft tissues, NOS") ) - setattr(cls, "Axillary tail of breast", - PermissibleValue(text="Axillary tail of breast") ) - setattr(cls, "Connective, subcutaneous and other soft tissues of abdomen", - PermissibleValue(text="Connective, subcutaneous and other soft tissues of abdomen") ) - setattr(cls, "Connective, subcutaneous and other soft tissues of pelvis", - PermissibleValue(text="Connective, subcutaneous and other soft tissues of pelvis") ) - setattr(cls, "Cheek mucosa", - PermissibleValue(text="Cheek mucosa") ) - setattr(cls, "Lateral wall of nasopharynx", - PermissibleValue(text="Lateral wall of nasopharynx") ) - setattr(cls, "Breast, NOS", - PermissibleValue(text="Breast, NOS") ) - setattr(cls, "Ureteric orifice", - PermissibleValue(text="Ureteric orifice") ) - setattr(cls, "Other specified parts of female genital organs", - PermissibleValue(text="Other specified parts of female genital organs") ) - setattr(cls, "Overlapping lesion of brain", - PermissibleValue(text="Overlapping lesion of brain") ) - setattr(cls, "Medulla of adrenal gland", - PermissibleValue(text="Medulla of adrenal gland") ) - setattr(cls, "Bladder neck", - PermissibleValue(text="Bladder neck") ) - setattr(cls, "Overlapping lesion of male genital organs", - PermissibleValue(text="Overlapping lesion of male genital organs") ) - setattr(cls, "Dome of bladder", - PermissibleValue(text="Dome of bladder") ) - setattr(cls, "Peripheral nerves and autonomic nervous system of trunk, NOS", - PermissibleValue(text="Peripheral nerves and autonomic nervous system of trunk, NOS") ) - setattr(cls, "Peripheral nerves and autonomic nervous system of head, face, and neck", - PermissibleValue(text="Peripheral nerves and autonomic nervous system of head, face, and neck") ) - setattr(cls, "Skin of lip, NOS", - PermissibleValue(text="Skin of lip, NOS") ) - setattr(cls, "Spinal meninges", - PermissibleValue(text="Spinal meninges") ) - setattr(cls, "Bone marrow", - PermissibleValue(text="Bone marrow") ) - setattr(cls, "Overlapping lesions of oropharynx", - PermissibleValue(text="Overlapping lesions of oropharynx") ) - setattr(cls, "Adrenal gland, NOS", - PermissibleValue(text="Adrenal gland, NOS") ) - setattr(cls, "Floor of mouth, NOS", - PermissibleValue(text="Floor of mouth, NOS") ) - setattr(cls, "Biliary tract, NOS", - PermissibleValue(text="Biliary tract, NOS") ) - setattr(cls, "Small intestine, NOS", - PermissibleValue(text="Small intestine, NOS") ) - setattr(cls, "Overlapping lesion of digestive system", - PermissibleValue(text="Overlapping lesion of digestive system") ) - setattr(cls, "Sublingual gland", - PermissibleValue(text="Sublingual gland") ) - setattr(cls, "Lymph node, NOS", - PermissibleValue(text="Lymph node, NOS") ) - setattr(cls, "Head, face or neck, NOS", - PermissibleValue(text="Head, face or neck, NOS") ) - setattr(cls, "Overlapping lesion of penis", - PermissibleValue(text="Overlapping lesion of penis") ) - setattr(cls, "Nasopharynx, NOS", - PermissibleValue(text="Nasopharynx, NOS") ) - setattr(cls, "Autonomic nervous system, NOS", - PermissibleValue(text="Autonomic nervous system, NOS") ) - setattr(cls, "Bone, NOS", - PermissibleValue(text="Bone, NOS") ) - setattr(cls, "Peritoneum, NOS", - PermissibleValue(text="Peritoneum, NOS") ) - setattr(cls, "Overlapping lesion of pancreas", - PermissibleValue(text="Overlapping lesion of pancreas") ) - setattr(cls, "Overlapping lesion of palate", - PermissibleValue(text="Overlapping lesion of palate") ) - setattr(cls, "Greater curvature of stomach, NOS", - PermissibleValue(text="Greater curvature of stomach, NOS") ) - setattr(cls, "Posterior wall of oropharynx", - PermissibleValue(text="Posterior wall of oropharynx") ) - setattr(cls, "Connective, subcutaneous and other soft tissues of head, face, and neck", - PermissibleValue(text="Connective, subcutaneous and other soft tissues of head, face, and neck") ) - setattr(cls, "Overlapping lesion of vulva", - PermissibleValue(text="Overlapping lesion of vulva") ) - setattr(cls, "Overlapping lesion of lung", - PermissibleValue(text="Overlapping lesion of lung") ) - setattr(cls, "Pelvic bones, sacrum, coccyx and associated joints", - PermissibleValue(text="Pelvic bones, sacrum, coccyx and associated joints") ) - setattr(cls, "Other specified parts of male genital organs", - PermissibleValue(text="Other specified parts of male genital organs") ) - setattr(cls, "Base of tongue, NOS", - PermissibleValue(text="Base of tongue, NOS") ) - setattr(cls, "Eye, NOS", - PermissibleValue(text="Eye, NOS") ) - setattr(cls, "Cerebral meninges", - PermissibleValue(text="Cerebral meninges") ) - setattr(cls, "Upper respiratory tract, NOS", - PermissibleValue(text="Upper respiratory tract, NOS") ) - setattr(cls, "Peripheral nerves and autonomic nervous system of abdomen", - PermissibleValue(text="Peripheral nerves and autonomic nervous system of abdomen") ) - setattr(cls, "Cranial nerve, NOS", - PermissibleValue(text="Cranial nerve, NOS") ) - setattr(cls, "Connective, subcutaneous and other soft tissues of lower limb and hip", - PermissibleValue(text="Connective, subcutaneous and other soft tissues of lower limb and hip") ) - setattr(cls, "Overlapping lesion of respiratory system and intrathoracic organs", - PermissibleValue(text="Overlapping lesion of respiratory system and intrathoracic organs") ) - setattr(cls, "Hematopoietic system, NOS", - PermissibleValue(text="Hematopoietic system, NOS") ) - setattr(cls, "Major salivary gland, NOS", - PermissibleValue(text="Major salivary gland, NOS") ) - setattr(cls, "Lower third of esophagus", - PermissibleValue(text="Lower third of esophagus") ) - setattr(cls, "Anterior surface of epiglottis", - PermissibleValue(text="Anterior surface of epiglottis") ) - setattr(cls, "Tonsil, NOS", - PermissibleValue(text="Tonsil, NOS") ) - setattr(cls, "Overlapping lesion of hypopharynx", - PermissibleValue(text="Overlapping lesion of hypopharynx") ) - setattr(cls, "Round ligament", - PermissibleValue(text="Round ligament") ) - setattr(cls, "Overlapping lesion of tongue", - PermissibleValue(text="Overlapping lesion of tongue") ) - setattr(cls, "Connective, subcutaneous and other soft tissues of upper limb and shoulder", - PermissibleValue(text="Connective, subcutaneous and other soft tissues of upper limb and shoulder") ) - setattr(cls, "Skin, NOS", - PermissibleValue(text="Skin, NOS") ) - setattr(cls, "Overlapping lesion of skin", - PermissibleValue(text="Overlapping lesion of skin") ) - setattr(cls, "Lung, NOS", - PermissibleValue(text="Lung, NOS") ) - setattr(cls, "Overlapping lesion of major salivary glands", - PermissibleValue(text="Overlapping lesion of major salivary glands") ) - setattr(cls, "Overlapping lesion of small intestine", - PermissibleValue(text="Overlapping lesion of small intestine") ) - setattr(cls, "External lower lip", - PermissibleValue(text="External lower lip") ) - setattr(cls, "Overlapping lesion of corpus uteri", - PermissibleValue(text="Overlapping lesion of corpus uteri") ) - setattr(cls, "Anal canal", - PermissibleValue(text="Anal canal") ) - setattr(cls, "Cloacogenic zone", - PermissibleValue(text="Cloacogenic zone") ) - setattr(cls, "Middle third of esophagus", - PermissibleValue(text="Middle third of esophagus") ) - setattr(cls, "Kidney, NOS", - PermissibleValue(text="Kidney, NOS") ) - setattr(cls, "Intra-abdominal lymph nodes", - PermissibleValue(text="Intra-abdominal lymph nodes") ) - setattr(cls, "Optic nerve", - PermissibleValue(text="Optic nerve") ) - setattr(cls, "Overlapping lesion of bones, joints and articular cartilage of limbs", - PermissibleValue(text="Overlapping lesion of bones, joints and articular cartilage of limbs") ) - setattr(cls, "Cervical esophagus", - PermissibleValue(text="Cervical esophagus") ) - setattr(cls, "Anterior wall of bladder", - PermissibleValue(text="Anterior wall of bladder") ) - setattr(cls, "Abdomen, NOS", - PermissibleValue(text="Abdomen, NOS") ) - setattr(cls, "Tongue, NOS", - PermissibleValue(text="Tongue, NOS") ) - setattr(cls, "Overlapping lesion of tonsil", - PermissibleValue(text="Overlapping lesion of tonsil") ) - setattr(cls, "Specified parts of peritoneum", - PermissibleValue(text="Specified parts of peritoneum") ) - setattr(cls, "Overlapping lesion of urinary organs", - PermissibleValue(text="Overlapping lesion of urinary organs") ) - setattr(cls, "Mucosa of upper lip", - PermissibleValue(text="Mucosa of upper lip") ) - setattr(cls, "Splenic flexure of colon", - PermissibleValue(text="Splenic flexure of colon") ) - setattr(cls, "Frontal sinus", - PermissibleValue(text="Frontal sinus") ) - setattr(cls, "Overlapping lesion of floor of mouth", - PermissibleValue(text="Overlapping lesion of floor of mouth") ) - setattr(cls, "Skin of other and unspecified parts of face", - PermissibleValue(text="Skin of other and unspecified parts of face") ) - setattr(cls, "Lower lobe, lung", - PermissibleValue(text="Lower lobe, lung") ) - setattr(cls, "Palate, NOS", - PermissibleValue(text="Palate, NOS") ) - setattr(cls, "Posterior wall of bladder", - PermissibleValue(text="Posterior wall of bladder") ) - setattr(cls, "Gastric antrum", - PermissibleValue(text="Gastric antrum") ) - setattr(cls, "Lower-outer quadrant of breast", - PermissibleValue(text="Lower-outer quadrant of breast") ) - setattr(cls, "Anterior floor of mouth", - PermissibleValue(text="Anterior floor of mouth") ) - setattr(cls, "Labium minus", - PermissibleValue(text="Labium minus") ) - setattr(cls, "Pelvis, NOS", - PermissibleValue(text="Pelvis, NOS") ) - setattr(cls, "Mediastinum, NOS", - PermissibleValue(text="Mediastinum, NOS") ) - setattr(cls, "Thorax, NOS", - PermissibleValue(text="Thorax, NOS") ) - setattr(cls, "Middle ear", - PermissibleValue(text="Middle ear") ) - setattr(cls, "Lower-inner quadrant of breast", - PermissibleValue(text="Lower-inner quadrant of breast") ) - setattr(cls, "Waldeyer ring", - PermissibleValue(text="Waldeyer ring") ) - setattr(cls, "Scrotum, NOS", - PermissibleValue(text="Scrotum, NOS") ) - setattr(cls, "Lymph nodes of inguinal region or leg", - PermissibleValue(text="Lymph nodes of inguinal region or leg") ) - setattr(cls, "Mucosa of lower lip", - PermissibleValue(text="Mucosa of lower lip") ) - setattr(cls, "Overlapping lesion of cervix uteri", - PermissibleValue(text="Overlapping lesion of cervix uteri") ) - setattr(cls, "Overlapping lesion of lip", - PermissibleValue(text="Overlapping lesion of lip") ) - setattr(cls, "Female genital tract, NOS", - PermissibleValue(text="Female genital tract, NOS") ) - setattr(cls, "Parathyroid gland", - PermissibleValue(text="Parathyroid gland") ) - setattr(cls, "Pituitary gland", - PermissibleValue(text="Pituitary gland") ) - setattr(cls, "Lateral wall of oropharynx", - PermissibleValue(text="Lateral wall of oropharynx") ) - setattr(cls, "Intrahepatic bile duct", - PermissibleValue(text="Intrahepatic bile duct") ) - setattr(cls, "Tail of pancreas", - PermissibleValue(text="Tail of pancreas") ) - setattr(cls, "Nasal cavity", - PermissibleValue(text="Nasal cavity") ) - setattr(cls, "Orbit, NOS", - PermissibleValue(text="Orbit, NOS") ) - setattr(cls, "Unknown primary site", - PermissibleValue(text="Unknown primary site") ) - setattr(cls, "Lingual tonsil", - PermissibleValue(text="Lingual tonsil") ) - setattr(cls, "Carotid body", - PermissibleValue(text="Carotid body") ) - setattr(cls, "Lower limb, NOS", - PermissibleValue(text="Lower limb, NOS") ) - setattr(cls, "Pancreatic neck", - PermissibleValue(text="Pancreatic neck") ) - setattr(cls, "Not Applicable", - PermissibleValue(text="Not Applicable") ) - setattr(cls, "Nervous System", - PermissibleValue(text="Nervous System") ) - setattr(cls, "Soft Tissue", - PermissibleValue(text="Soft Tissue", - description="Soft tissue") ) - setattr(cls, "Bile Duct", - PermissibleValue(text="Bile Duct") ) - setattr(cls, "Head and Neck", - PermissibleValue(text="Head and Neck") ) - setattr(cls, "Bone Marrow", - PermissibleValue(text="Bone Marrow") ) - setattr(cls, "Lymph Nodes", - PermissibleValue(text="Lymph Nodes") ) - setattr(cls, "Adrenal Gland", - PermissibleValue(text="Adrenal Gland") ) - setattr(cls, "Lymph Node(s) Axilla", - PermissibleValue(text="Lymph Node(s) Axilla", - description="Axillary Lymph Node") ) - setattr(cls, "Ascending Colon", - PermissibleValue(text="Ascending Colon") ) - setattr(cls, "Lymph Node", - PermissibleValue(text="Lymph Node") ) - setattr(cls, "Fallopian Tube", - PermissibleValue(text="Fallopian Tube") ) - setattr(cls, "Lymph Node(s) Inguinal", - PermissibleValue(text="Lymph Node(s) Inguinal", - description="Inguinal Lymph Node") ) - setattr(cls, "Lymph Node(s) Supraclavicular", - PermissibleValue(text="Lymph Node(s) Supraclavicular", - description="Supraclavicular Lymph Node") ) - setattr(cls, "Esophageal; Proximal", - PermissibleValue(text="Esophageal; Proximal", - description="Proximal Esophageal") ) - setattr(cls, "Temporal Cortex", - PermissibleValue(text="Temporal Cortex") ) - setattr(cls, "Femoral Vein", - PermissibleValue(text="Femoral Vein") ) - setattr(cls, "Tonsil (Pharyngeal)", - PermissibleValue(text="Tonsil (Pharyngeal)") ) - setattr(cls, "Lymph Node(s) Splenic", - PermissibleValue(text="Lymph Node(s) Splenic", - description="Splenic Lymph Node") ) - setattr(cls, "Lymph Node(s) Distant", - PermissibleValue(text="Lymph Node(s) Distant") ) - setattr(cls, "Hepatic Duct", - PermissibleValue(text="Hepatic Duct") ) - setattr(cls, "Paraspinal Ganglion", - PermissibleValue(text="Paraspinal Ganglion", - description="Spinal Ganglion") ) - setattr(cls, "Hepatic Flexure", - PermissibleValue(text="Hepatic Flexure", - description="Hepatic Flexure") ) - setattr(cls, "Esophageal; Mid", - PermissibleValue(text="Esophageal; Mid", - description="Middle Esophageal") ) - setattr(cls, "Auditory Canal", - PermissibleValue(text="Auditory Canal") ) - setattr(cls, "Epidural Space", - PermissibleValue(text="Epidural Space") ) - setattr(cls, "Subcutaneous Tissue", - PermissibleValue(text="Subcutaneous Tissue") ) - setattr(cls, "Alveolar Ridge", - PermissibleValue(text="Alveolar Ridge", - description="Alveolar Ridge") ) - setattr(cls, "Chest Wall", - PermissibleValue(text="Chest Wall") ) - setattr(cls, "Hard Palate", - PermissibleValue(text="Hard Palate") ) - setattr(cls, "Head & Neck", - PermissibleValue(text="Head & Neck") ) - setattr(cls, "Femoral Artery", - PermissibleValue(text="Femoral Artery") ) - setattr(cls, "Oral Cavity - Mucosa Only", - PermissibleValue(text="Oral Cavity - Mucosa Only") ) - setattr(cls, "Spinal Column", - PermissibleValue(text="Spinal Column") ) - setattr(cls, "Ocular Orbits", - PermissibleValue(text="Ocular Orbits", - description="Orbit") ) - setattr(cls, "White Blood Cells", - PermissibleValue(text="White Blood Cells") ) - setattr(cls, "Spinal Cord", - PermissibleValue(text="Spinal Cord", - description="Spinal Cord") ) - setattr(cls, "Sciatic Nerve", - PermissibleValue(text="Sciatic Nerve") ) - setattr(cls, "Index Finger", - PermissibleValue(text="Index Finger") ) - setattr(cls, "Lymph Node(s) Iliac-Common", - PermissibleValue(text="Lymph Node(s) Iliac-Common") ) - setattr(cls, "Buccal Mucosa", - PermissibleValue(text="Buccal Mucosa") ) - setattr(cls, "Lymph Node(s) Regional", - PermissibleValue(text="Lymph Node(s) Regional") ) - setattr(cls, "Mediastinal Soft Tissue", - PermissibleValue(text="Mediastinal Soft Tissue", - description="Mediastinal Soft Tissue") ) - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - setattr(cls, "Sinus(es), Maxillary", - PermissibleValue(text="Sinus(es), Maxillary", - description="Maxillary Sinus") ) - setattr(cls, "Aqueous Fluid", - PermissibleValue(text="Aqueous Fluid", - description="Aqueous Fluid") ) - setattr(cls, "Descending Colon", - PermissibleValue(text="Descending Colon") ) - setattr(cls, "Oral Cavity", - PermissibleValue(text="Oral Cavity") ) - setattr(cls, "Trachea / Major Bronchi", - PermissibleValue(text="Trachea / Major Bronchi") ) - setattr(cls, "Urinary Tract", - PermissibleValue(text="Urinary Tract") ) - setattr(cls, "Esophagogastric Junction", - PermissibleValue(text="Esophagogastric Junction") ) - setattr(cls, "Ear, Pinna (External)", - PermissibleValue(text="Ear, Pinna (External)", - description="External Ear") ) - setattr(cls, "Lymph Node(s) Retroperitoneal", - PermissibleValue(text="Lymph Node(s) Retroperitoneal", - description="Retroperitoneal Lymph Node") ) - setattr(cls, "Thoracic Spine", - PermissibleValue(text="Thoracic Spine") ) - setattr(cls, "Colon - Mucosa Only", - PermissibleValue(text="Colon - Mucosa Only") ) - setattr(cls, "Nerve(s) Cranial", - PermissibleValue(text="Nerve(s) Cranial", - description="Cranial Nerve") ) - setattr(cls, "Occipital Cortex", - PermissibleValue(text="Occipital Cortex") ) - setattr(cls, "Hepatic Vein", - PermissibleValue(text="Hepatic Vein") ) - setattr(cls, "Common Duct", - PermissibleValue(text="Common Duct") ) - setattr(cls, "Small Finger", - PermissibleValue(text="Small Finger") ) - setattr(cls, "Salivary Gland", - PermissibleValue(text="Salivary Gland") ) - setattr(cls, "Buccal Cavity", - PermissibleValue(text="Buccal Cavity") ) - setattr(cls, "Parotid Gland", - PermissibleValue(text="Parotid Gland") ) - setattr(cls, "Peritoneal Cavity", - PermissibleValue(text="Peritoneal Cavity") ) - setattr(cls, "Umbilical Cord", - PermissibleValue(text="Umbilical Cord", - description="Umbilical Cord") ) - setattr(cls, "Cervical Spine", - PermissibleValue(text="Cervical Spine") ) - setattr(cls, "Cerebrospinal Fluid", - PermissibleValue(text="Cerebrospinal Fluid") ) - setattr(cls, "Lymph Node(s) Occipital", - PermissibleValue(text="Lymph Node(s) Occipital", - description="Occipital Lymph Node") ) - setattr(cls, "Ampulla Of Vater", - PermissibleValue(text="Ampulla Of Vater") ) - setattr(cls, "Broad Ligament", - PermissibleValue(text="Broad Ligament") ) - setattr(cls, "Lymph Node(s) Mesenteric", - PermissibleValue(text="Lymph Node(s) Mesenteric", - description="Mesenteric Lymph Node") ) - setattr(cls, "Cerebral Cortex", - PermissibleValue(text="Cerebral Cortex") ) - setattr(cls, "Autonomic Nervous System", - PermissibleValue(text="Autonomic Nervous System") ) - setattr(cls, "Small Bowel - Mucosa Only", - PermissibleValue(text="Small Bowel - Mucosa Only") ) - setattr(cls, "Fundus Of Stomach", - PermissibleValue(text="Fundus Of Stomach") ) - setattr(cls, "Vas Deferens", - PermissibleValue(text="Vas Deferens", - description="Vas Deferens") ) - setattr(cls, "Retro-Orbital Region", - PermissibleValue(text="Retro-Orbital Region") ) - setattr(cls, "Lymph Node(s) Subclavicular", - PermissibleValue(text="Lymph Node(s) Subclavicular", - description="Infraclavicular Lymph Node") ) - setattr(cls, "Aortic Body", - PermissibleValue(text="Aortic Body", - description="Aortic Body") ) - setattr(cls, "Lymph Node(s) Scalene", - PermissibleValue(text="Lymph Node(s) Scalene") ) - setattr(cls, "Central Nervous System", - PermissibleValue(text="Central Nervous System") ) - setattr(cls, "Lymph Node(s) Internal Mammary", - PermissibleValue(text="Lymph Node(s) Internal Mammary") ) - setattr(cls, "Lymph Node(s) Popliteal", - PermissibleValue(text="Lymph Node(s) Popliteal", - description="Popliteal Lymph Node") ) - setattr(cls, "Skeletal Muscle", - PermissibleValue(text="Skeletal Muscle", - description="Skeletal Muscle Tissue") ) - setattr(cls, "Middle Finger", - PermissibleValue(text="Middle Finger") ) - setattr(cls, "Splenic Flexure", - PermissibleValue(text="Splenic Flexure", - description="Splenic Flexure") ) - setattr(cls, "Nasal Cavity", - PermissibleValue(text="Nasal Cavity", - description="Nasal Cavity") ) - setattr(cls, "Small Bowel", - PermissibleValue(text="Small Bowel") ) - setattr(cls, "Ascending Colon Hepatic Flexure", - PermissibleValue(text="Ascending Colon Hepatic Flexure", - description="Ascending Colon Hepatic Flexure") ) - setattr(cls, "Carotid Body", - PermissibleValue(text="Carotid Body") ) - setattr(cls, "Large Bowel", - PermissibleValue(text="Large Bowel") ) - setattr(cls, "Pineal Gland", - PermissibleValue(text="Pineal Gland", - description="Pineal Gland") ) - setattr(cls, "Gastroesophageal Junction", - PermissibleValue(text="Gastroesophageal Junction", - description="Gastroesophageal Junction") ) - setattr(cls, "Esophagus - Mucosa Only", - PermissibleValue(text="Esophagus - Mucosa Only") ) - setattr(cls, "Connective Tissue", - PermissibleValue(text="Connective Tissue") ) - setattr(cls, "Ring Finger", - PermissibleValue(text="Ring Finger") ) - setattr(cls, "Abdominal Wall", - PermissibleValue(text="Abdominal Wall") ) - setattr(cls, "Lymph Node(s) Submandibular", - PermissibleValue(text="Lymph Node(s) Submandibular", - description="Submandibular Lymph Node") ) - setattr(cls, "Lymph Nodes(s) Mediastinal", - PermissibleValue(text="Lymph Nodes(s) Mediastinal") ) - setattr(cls, "Rectosigmoid Junction", - PermissibleValue(text="Rectosigmoid Junction", - description="Rectosigmoid Region") ) - setattr(cls, "Round Ligament", - PermissibleValue(text="Round Ligament") ) - setattr(cls, "Endocrine Gland", - PermissibleValue(text="Endocrine Gland") ) - setattr(cls, "Lymph Node(s) Iliac-External", - PermissibleValue(text="Lymph Node(s) Iliac-External") ) - setattr(cls, "Esophageal; Distal", - PermissibleValue(text="Esophageal; Distal", - description="Distal Esophageal") ) - setattr(cls, "Popliteal Fossa", - PermissibleValue(text="Popliteal Fossa") ) - setattr(cls, "Transverse Colon", - PermissibleValue(text="Transverse Colon", - description="Transverse Colon") ) - setattr(cls, "Lumbar Spine", - PermissibleValue(text="Lumbar Spine") ) - setattr(cls, "Lacrimal Gland", - PermissibleValue(text="Lacrimal Gland", - description="Lacrimal Gland") ) - setattr(cls, "Blood Vessel", - PermissibleValue(text="Blood Vessel") ) - setattr(cls, "Antecubital Fossa", - PermissibleValue(text="Antecubital Fossa") ) - setattr(cls, "Cell-Line", - PermissibleValue(text="Cell-Line") ) - setattr(cls, "Pituitary Gland", - PermissibleValue(text="Pituitary Gland") ) - setattr(cls, "Seminal Vesicle", - PermissibleValue(text="Seminal Vesicle", - description="Seminal Vesicle") ) - setattr(cls, "Frontal Cortex", - PermissibleValue(text="Frontal Cortex") ) - setattr(cls, "Lymph Node(s) Mammary", - PermissibleValue(text="Lymph Node(s) Mammary", - description="Mammary Lymph Node") ) - setattr(cls, "Stomach - Mucosa Only", - PermissibleValue(text="Stomach - Mucosa Only") ) - setattr(cls, "Lymph Node(s) Femoral", - PermissibleValue(text="Lymph Node(s) Femoral", - description="Femoral Lymph Node") ) - setattr(cls, "Nasal Soft Tissue", - PermissibleValue(text="Nasal Soft Tissue", - description="Nasal Soft Tissue") ) - setattr(cls, "Anal Sphincter", - PermissibleValue(text="Anal Sphincter") ) - setattr(cls, "Frontal Lobe", - PermissibleValue(text="Frontal Lobe") ) - setattr(cls, "Head - Face Or Neck, Nos", - PermissibleValue(text="Head - Face Or Neck, Nos") ) - setattr(cls, "Lymph Node(s) Pelvic", - PermissibleValue(text="Lymph Node(s) Pelvic", - description="Pelvic Lymph Node") ) - setattr(cls, "Lymph Node(s) Parotid", - PermissibleValue(text="Lymph Node(s) Parotid", - description="Parotid Gland Lymph Node") ) - setattr(cls, "Gastrointestinal Tract", - PermissibleValue(text="Gastrointestinal Tract") ) - setattr(cls, "Periorbital Soft Tissue", - PermissibleValue(text="Periorbital Soft Tissue") ) - setattr(cls, "Sigmoid Colon", - PermissibleValue(text="Sigmoid Colon") ) - setattr(cls, "Amniotic Fluid", - PermissibleValue(text="Amniotic Fluid", - description="Amniotic Fluid") ) - setattr(cls, "Ear Canal", - PermissibleValue(text="Ear Canal") ) - setattr(cls, "Lymph Node(s) Cervical", - PermissibleValue(text="Lymph Node(s) Cervical", - description="Cervical Lymph Node") ) - setattr(cls, "Lymph Node(s) Paraaortic", - PermissibleValue(text="Lymph Node(s) Paraaortic") ) - setattr(cls, "Floor Of Mouth", - PermissibleValue(text="Floor Of Mouth") ) - setattr(cls, "Brain Stem", - PermissibleValue(text="Brain Stem") ) - setattr(cls, "Islet Cells", - PermissibleValue(text="Islet Cells") ) - setattr(cls, "Lymph Node(s) Epitrochlear", - PermissibleValue(text="Lymph Node(s) Epitrochlear", - description="Epitrochlear Lymph Node") ) - setattr(cls, "Lymph Node(s) Hilar", - PermissibleValue(text="Lymph Node(s) Hilar", - description="Hilar Lymph Node") ) - setattr(cls, "Carotid Artery", - PermissibleValue(text="Carotid Artery") ) - setattr(cls, "Sublingual Gland", - PermissibleValue(text="Sublingual Gland") ) - setattr(cls, "Paranasal Sinuses", - PermissibleValue(text="Paranasal Sinuses") ) - setattr(cls, "Submandibular Gland", - PermissibleValue(text="Submandibular Gland") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHBodySiteQualifier(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H BodySite qualifier - """ - Bilateral = PermissibleValue(text="Bilateral", - description="Bilateral") - Left = PermissibleValue(text="Left", - description="Left") - Unknown = PermissibleValue(text="Unknown") - Right = PermissibleValue(text="Right", - description="Right") - - _defn = EnumDefinition( - name="EnumCCDHBodySiteQualifier", - description="Autogenerated Enumeration for CRDC-H BodySite qualifier", - code_set=None, - code_set_version="2021-07-21T20:42:41.146306+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHBiologicProductProductType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H BiologicProduct product_type - """ - _defn = EnumDefinition( - name="EnumCCDHBiologicProductProductType", - description="Autogenerated Enumeration for CRDC-H BiologicProduct product_type", - code_set=None, - code_set_version="2021-07-21T20:42:41.302927+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerGradeObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerGradeObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHCancerGradeObservationCategory", - description="Autogenerated Enumeration for CRDC-H CancerGradeObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:41.448202+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerGradeObservationObservationType(EnumDefinitionImpl): - - enneking_msts_grade = PermissibleValue(text="enneking_msts_grade", - description="The text term used to describe the surgical grade of the musculoskeletal sarcoma, using the Enneking staging system approved by the Musculoskeletal Tumor Society (MSTS).") - esophageal_columnar_dysplasia_degree = PermissibleValue(text="esophageal_columnar_dysplasia_degree", - description="Text term to describe the amount of dysplasia found within the benign esophageal columnar mucosa.") - inpc_grade = PermissibleValue(text="inpc_grade", - description="Text term used to describe the classification of neuroblastic differentiation within neuroblastoma tumors, as defined by the International Neuroblastoma Pathology Classification (INPC).") - gleason_grade_group = PermissibleValue(text="gleason_grade_group", - description="The text term used to describe the overall grouping of grades defined by the Gleason grading classification, which is used to determine the aggressiveness of prostate cancer. Note that this grade describes the entire prostatectomy specimen and is not specific to the sample used for sequencing.") - primary_gleason_grade = PermissibleValue(text="primary_gleason_grade", - description="The text term used to describe the primary Gleason score, which describes the pattern of cells making up the largest area of the tumor. The primary and secondary Gleason pattern grades are combined to determine the patient's Gleason grade group, which is used to determine the aggressiveness of prostate cancer. Note that this grade describes the entire prostatectomy specimen and is not specific to the sample used for sequencing.") - secondary_gleason_grade = PermissibleValue(text="secondary_gleason_grade", - description="The text term used to describe the secondary Gleason score, which describes the pattern of cells making up the second largest area of the tumor. The primary and secondary Gleason pattern grades are combined to determine the patient's Gleason grade group, which is used to determine the aggressiveness of prostate cancer. Note that this grade describes the entire prostatectomy specimen and is not specific to the sample used for sequencing.") - tumor_grade = PermissibleValue(text="tumor_grade", - description="Text value to express the degree of abnormality of cancer cells, a measure of differentiation and aggressiveness.") - - _defn = EnumDefinition( - name="EnumCCDHCancerGradeObservationObservationType", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerGradeObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerGradeObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHCancerGradeObservationMethodType", - description="Autogenerated Enumeration for CRDC-H CancerGradeObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:41.748299+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerGradeObservationValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerGradeObservation valueCodeableConcept - """ - Unknown = PermissibleValue(text="Unknown") - GX = PermissibleValue(text="GX", - description="Grade Cannot be Assessed") - G1 = PermissibleValue(text="G1", - description="Well Differentiated") - G2 = PermissibleValue(text="G2", - description="Moderately Differentiated") - G3 = PermissibleValue(text="G3", - description="Poorly Differentiated") - G4 = PermissibleValue(text="G4", - description="Undifferentiated Histology") - GB = PermissibleValue(text="GB", - description="Borderline Histologic Grade") - Differentiating = PermissibleValue(text="Differentiating", - description="Differentiating Neuroblastoma") - Undifferentiated = PermissibleValue(text="Undifferentiated", - description="Undifferentiated Neuroblastoma") - - _defn = EnumDefinition( - name="EnumCCDHCancerGradeObservationValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H CancerGradeObservation valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:42:41.897574+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Pattern 1", - PermissibleValue(text="Pattern 1") ) - setattr(cls, "Pattern 4", - PermissibleValue(text="Pattern 4") ) - setattr(cls, "Pattern 5", - PermissibleValue(text="Pattern 5") ) - setattr(cls, "Pattern 3", - PermissibleValue(text="Pattern 3") ) - setattr(cls, "Pattern 2", - PermissibleValue(text="Pattern 2") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Low Grade (G1)", - PermissibleValue(text="Low Grade (G1)", - description="Enneking Low Surgical Grade") ) - setattr(cls, "High Grade (G2)", - PermissibleValue(text="High Grade (G2)", - description="Enneking High Surgical Grade") ) - setattr(cls, "Low Grade", - PermissibleValue(text="Low Grade", - description="Low Grade") ) - setattr(cls, "High Grade", - PermissibleValue(text="High Grade", - description="High Grade") ) - setattr(cls, "Intermediate Grade", - PermissibleValue(text="Intermediate Grade", - description="Intermediate Grade") ) - setattr(cls, "not reported", - PermissibleValue(text="not reported") ) - setattr(cls, "High Grade Dysplasia", - PermissibleValue(text="High Grade Dysplasia") ) - setattr(cls, "Indefinite for Dysplasia", - PermissibleValue(text="Indefinite for Dysplasia") ) - setattr(cls, "Low Grade Dysplasia", - PermissibleValue(text="Low Grade Dysplasia") ) - setattr(cls, "Negative/ No Dysplasia", - PermissibleValue(text="Negative/ No Dysplasia") ) - setattr(cls, "Group 1", - PermissibleValue(text="Group 1") ) - setattr(cls, "Group 3", - PermissibleValue(text="Group 3") ) - setattr(cls, "Group 5", - PermissibleValue(text="Group 5") ) - setattr(cls, "Group 4", - PermissibleValue(text="Group 4") ) - setattr(cls, "Group 2", - PermissibleValue(text="Group 2") ) - setattr(cls, "Poorly Differentiated", - PermissibleValue(text="Poorly Differentiated", - description="Poorly Differentiated Neuroblastoma") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerGradeObservationSetCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerGradeObservationSet category - """ - _defn = EnumDefinition( - name="EnumCCDHCancerGradeObservationSetCategory", - description="Autogenerated Enumeration for CRDC-H CancerGradeObservationSet category", - code_set=None, - code_set_version="2021-07-21T20:42:42.080174+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerGradeObservationSetMethodType(EnumDefinitionImpl): - """ - A morphologic classification system of malignant tumors, usually relating to disease progression and clinical - outcome. It is based upon the presence or absence of several morphologic parameters, including tumor cell - necrosis, cytologic atypia, nuclear pleomorphism and mitotic figures, the architectural infiltrating patterns, and - the degree of tumor cell differentiation. Malignant tumors usually are graded I-III - """ - Gleason = PermissibleValue(text="Gleason", - description="A grading system for prostatic carcinoma based on the microscopic glandular architectural patterns of the malignant epithelial cells. Nuclear atypia is not evaluated. It defines five patterns or grades which reflect decreasing differentiation.") - INPC = PermissibleValue(text="INPC") - - _defn = EnumDefinition( - name="EnumCCDHCancerGradeObservationSetMethodType", - description="A morphologic classification system of malignant tumors, usually relating to disease progression and clinical outcome. It is based upon the presence or absence of several morphologic parameters, including tumor cell necrosis, cytologic atypia, nuclear pleomorphism and mitotic figures, the architectural infiltrating patterns, and the degree of tumor cell differentiation. Malignant tumors usually are graded I-III", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Unspecified grading system", - PermissibleValue(text="Unspecified grading system") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerStageObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerStageObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHCancerStageObservationCategory", - description="Autogenerated Enumeration for CRDC-H CancerStageObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:42.377812+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerStageObservationObservationType(EnumDefinitionImpl): - """ - Types of observations or components of a cancer staging assessment. - """ - Overall = PermissibleValue(text="Overall", - description="The overall stage of the disease") - - _defn = EnumDefinition( - name="EnumCCDHCancerStageObservationObservationType", - description="Types of observations or components of a cancer staging assessment.", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Tumor (T)", - PermissibleValue(text="Tumor (T)", - description="T classifies the size or direct extent of the primary tumor") ) - setattr(cls, "Node (N)", - PermissibleValue(text="Node (N)", - description="N classifies the degree of spread to regional lymph nodes") ) - setattr(cls, "Metastasis (M)", - PermissibleValue(text="Metastasis (M)", - description="M classifies the presence of distant metastasis") ) - setattr(cls, "Clinical Overall", - PermissibleValue(text="Clinical Overall", - description="The overall stage of the disease; clinical stage is determined from evidence acquired before treatment (including clinical examination, imaging, endoscopy, biopsy, surgical exploration)") ) - setattr(cls, "Clinical Tumor (T)", - PermissibleValue(text="Clinical Tumor (T)", - description="T classifies the size or direct extent of the primary tumor; clinical stage is determined from evidence acquired before treatment (including clinical examination, imaging, endoscopy, biopsy, surgical exploration)") ) - setattr(cls, "Clinical Node (N)", - PermissibleValue(text="Clinical Node (N)", - description="N classifies the degree of spread to regional lymph nodes; clinical stage is determined from evidence acquired before treatment (including clinical examination, imaging, endoscopy, biopsy, surgical exploration)") ) - setattr(cls, "Clinical Metastasis (M)", - PermissibleValue(text="Clinical Metastasis (M)", - description="M classifies the presence of distant metastasis; clinical stage is determined from evidence acquired before treatment (including clinical examination, imaging, endoscopy, biopsy, surgical exploration)") ) - setattr(cls, "Pathological Overall", - PermissibleValue(text="Pathological Overall", - description="The overall stage of the disease; stage given by histopathologic examination of a surgical specimen") ) - setattr(cls, "Pathological Tumor (T)", - PermissibleValue(text="Pathological Tumor (T)", - description="T classifies the size or direct extent of the primary tumor; stage given by histopathologic examination of a surgical specimen") ) - setattr(cls, "Pathological Node (N)", - PermissibleValue(text="Pathological Node (N)", - description="N classifies the degree of spread to regional lymph nodes; stage given by histopathologic examination of a surgical specimen") ) - setattr(cls, "Pathological Metastasis (M)", - PermissibleValue(text="Pathological Metastasis (M)", - description="M classifies the presence of distant metastasis; stage given by histopathologic examination of a surgical specimen") ) - setattr(cls, "Ann Arbor Substage Modifier", - PermissibleValue(text="Ann Arbor Substage Modifier", - description="The substage classification modifiers amend each stage based on distinct features.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerStageObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerStageObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHCancerStageObservationMethodType", - description="Autogenerated Enumeration for CRDC-H CancerStageObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:42.670201+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerStageObservationValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerStageObservation valueCodeableConcept - """ - N2 = PermissibleValue(text="N2", - description="N2 Stage Finding") - N3 = PermissibleValue(text="N3", - description="N3 Stage Finding") - N3b = PermissibleValue(text="N3b", - description="N3b Stage Finding") - NX = PermissibleValue(text="NX", - description="NX Stage Finding") - N1bIII = PermissibleValue(text="N1bIII", - description="N1bIII Stage Finding") - N1bII = PermissibleValue(text="N1bII", - description="N1bII Stage Finding") - N1c = PermissibleValue(text="N1c", - description="N1c Stage Finding") - N1b = PermissibleValue(text="N1b", - description="N1b Stage Finding") - N1bIV = PermissibleValue(text="N1bIV", - description="N1bIV Stage Finding") - N1 = PermissibleValue(text="N1", - description="N1 Stage Finding") - N4 = PermissibleValue(text="N4", - description="N4 Stage Finding") - N2b = PermissibleValue(text="N2b", - description="N2b Stage Finding") - N0 = PermissibleValue(text="N0", - description="N0 Stage Finding") - N3a = PermissibleValue(text="N3a", - description="N3a Stage Finding") - N1a = PermissibleValue(text="N1a", - description="N1a Stage Finding") - N2c = PermissibleValue(text="N2c", - description="N2c Stage Finding") - N2a = PermissibleValue(text="N2a", - description="N2a Stage Finding") - N1mi = PermissibleValue(text="N1mi", - description="N1mi Stage Finding") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - N1bI = PermissibleValue(text="N1bI", - description="N1bI Stage Finding") - N3c = PermissibleValue(text="N3c", - description="N3c Stage Finding") - Yes = PermissibleValue(text="Yes", - description="Yes") - No = PermissibleValue(text="No", - description="No") - Ta = PermissibleValue(text="Ta", - description="Ta Stage Finding") - T3 = PermissibleValue(text="T3", - description="T3 Stage Finding") - T2b = PermissibleValue(text="T2b", - description="T2b Stage Finding") - T2a2 = PermissibleValue(text="T2a2", - description="Stage T2a2 Finding") - T1a = PermissibleValue(text="T1a", - description="T1a Stage Finding") - T3d = PermissibleValue(text="T3d", - description="T3d Stage Finding") - T4 = PermissibleValue(text="T4", - description="T4 Stage Finding") - T4a = PermissibleValue(text="T4a", - description="T4a Stage Finding") - Tis = PermissibleValue(text="Tis", - description="Tis Stage Finding") - T3a = PermissibleValue(text="T3a", - description="T3a Stage Finding") - T2c = PermissibleValue(text="T2c", - description="T2c Stage Finding") - T1b2 = PermissibleValue(text="T1b2", - description="T1b2 Stage Finding") - T0 = PermissibleValue(text="T0", - description="T0 Stage Finding") - T2a = PermissibleValue(text="T2a", - description="T2a Stage Finding") - T1mi = PermissibleValue(text="T1mi", - description="T1mi Stage Finding") - T4b = PermissibleValue(text="T4b", - description="T4b Stage Finding") - T1a1 = PermissibleValue(text="T1a1", - description="Stage T1a1 Finding") - T1b1 = PermissibleValue(text="T1b1", - description="T1b1 Stage Finding") - TX = PermissibleValue(text="TX", - description="TX Stage Finding") - T2d = PermissibleValue(text="T2d", - description="T2d Stage Finding") - T4d = PermissibleValue(text="T4d", - description="T4d Stage Finding") - T2a1 = PermissibleValue(text="T2a1", - description="Stage T2a1 Finding") - T2 = PermissibleValue(text="T2", - description="T2 Stage Finding") - T4e = PermissibleValue(text="T4e", - description="T4e Stage Finding") - T3c = PermissibleValue(text="T3c", - description="T3c Stage Finding") - T1 = PermissibleValue(text="T1", - description="T1 Stage Finding") - T1a2 = PermissibleValue(text="T1a2", - description="Stage T1a2 Finding") - T3b = PermissibleValue(text="T3b", - description="T3b Stage Finding") - T4c = PermissibleValue(text="T4c", - description="T4c Stage Finding") - T1b = PermissibleValue(text="T1b", - description="T1b Stage Finding") - T1c = PermissibleValue(text="T1c", - description="T1c Stage Finding") - M1d = PermissibleValue(text="M1d") - M1a = PermissibleValue(text="M1a", - description="M1a Stage Finding") - M1 = PermissibleValue(text="M1", - description="M1 Stage Finding") - MX = PermissibleValue(text="MX", - description="MX Stage Finding") - M1c = PermissibleValue(text="M1c", - description="M1c Stage Finding") - M2 = PermissibleValue(text="M2", - description="M2 Stage Finding") - M0 = PermissibleValue(text="M0", - description="M0 Stage Finding") - M1b = PermissibleValue(text="M1b", - description="M1b Stage Finding") - II = PermissibleValue(text="II", - description="II") - III = PermissibleValue(text="III", - description="III") - I = PermissibleValue(text="I", - description="I") - L1 = PermissibleValue(text="L1", - description="INRG Stage L1") - Ms = PermissibleValue(text="Ms", - description="INRG Stage MS") - M = PermissibleValue(text="M", - description="INRG Stage M") - L2 = PermissibleValue(text="L2", - description="INRG Stage L2") - - _defn = EnumDefinition( - name="EnumCCDHCancerStageObservationValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H CancerStageObservation valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:42:42.819552+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "N0 (i-)", - PermissibleValue(text="N0 (i-)", - description="N0 (i-) Stage Finding") ) - setattr(cls, "N0 (mol+)", - PermissibleValue(text="N0 (mol+)", - description="N0 (mol+) Stage Finding") ) - setattr(cls, "N0 (mol-)", - PermissibleValue(text="N0 (mol-)", - description="N0 (mol-) Stage Finding") ) - setattr(cls, "N0 (i+)", - PermissibleValue(text="N0 (i+)", - description="N0 (i+) Stage Finding") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported", - description="Not Reported") ) - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - setattr(cls, "Stage IVB", - PermissibleValue(text="Stage IVB", - description="FIGO Stage IVB") ) - setattr(cls, "Stage II", - PermissibleValue(text="Stage II", - description="SIOP/COG/NWTSG Stage II") ) - setattr(cls, "Stage IIA", - PermissibleValue(text="Stage IIA", - description="Enneking Stage IIA") ) - setattr(cls, "Stage 0", - PermissibleValue(text="Stage 0", - description="FIGO Stage 0") ) - setattr(cls, "Stage IIID", - PermissibleValue(text="Stage IIID") ) - setattr(cls, "Stage IV", - PermissibleValue(text="Stage IV", - description="SIOP/COG/NWTSG Stage IV") ) - setattr(cls, "Stage IIIA", - PermissibleValue(text="Stage IIIA", - description="FIGO Stage IIIA") ) - setattr(cls, "Stage III", - PermissibleValue(text="Stage III", - description="SIOP/COG/NWTSG Stage III") ) - setattr(cls, "Stage IVC", - PermissibleValue(text="Stage IVC", - description="Stage IVC") ) - setattr(cls, "Stage Tis", - PermissibleValue(text="Stage Tis", - description="Tis Stage Finding") ) - setattr(cls, "Stage IVA", - PermissibleValue(text="Stage IVA", - description="FIGO Stage IVA") ) - setattr(cls, "Stage IS", - PermissibleValue(text="Stage IS", - description="Stage Is") ) - setattr(cls, "Stage IA2", - PermissibleValue(text="Stage IA2", - description="FIGO Stage IA2") ) - setattr(cls, "Stage IB", - PermissibleValue(text="Stage IB", - description="Enneking Stage IB") ) - setattr(cls, "Stage 0a", - PermissibleValue(text="Stage 0a", - description="Stage 0a") ) - setattr(cls, "Stage IIIB", - PermissibleValue(text="Stage IIIB", - description="FIGO Stage IIIB") ) - setattr(cls, "Stage IIC", - PermissibleValue(text="Stage IIC") ) - setattr(cls, "Stage IC", - PermissibleValue(text="Stage IC", - description="FIGO Stage IC") ) - setattr(cls, "Stage IB2", - PermissibleValue(text="Stage IB2", - description="FIGO Stage IB2") ) - setattr(cls, "Stage IIIC", - PermissibleValue(text="Stage IIIC", - description="FIGO Stage IIIC") ) - setattr(cls, "Stage IIA1", - PermissibleValue(text="Stage IIA1", - description="Stage IIA1 Cervical Cancer") ) - setattr(cls, "Stage IB1", - PermissibleValue(text="Stage IB1", - description="FIGO Stage IB1") ) - setattr(cls, "Stage IIIC1", - PermissibleValue(text="Stage IIIC1", - description="FIGO Stage IIIC1") ) - setattr(cls, "Stage IA", - PermissibleValue(text="Stage IA", - description="Enneking Stage IA") ) - setattr(cls, "Stage IA3", - PermissibleValue(text="Stage IA3") ) - setattr(cls, "Stage IIA2", - PermissibleValue(text="Stage IIA2", - description="Stage IIA2 Cervical Cancer") ) - setattr(cls, "Stage IIB", - PermissibleValue(text="Stage IIB", - description="Enneking Stage IIB") ) - setattr(cls, "Stage IIIC2", - PermissibleValue(text="Stage IIIC2", - description="FIGO Stage IIIC2") ) - setattr(cls, "Stage I", - PermissibleValue(text="Stage I", - description="SIOP/COG/NWTSG Stage I") ) - setattr(cls, "Stage X", - PermissibleValue(text="Stage X", - description="Stage X") ) - setattr(cls, "Stage 0is", - PermissibleValue(text="Stage 0is", - description="Stage 0is") ) - setattr(cls, "Stage IA1", - PermissibleValue(text="Stage IA1", - description="FIGO Stage IA1") ) - setattr(cls, "Tis (LCIS)", - PermissibleValue(text="Tis (LCIS)", - description="Tis Stage Finding Lobular Breast Carcinoma In Situ") ) - setattr(cls, "Tis (DCIS)", - PermissibleValue(text="Tis (DCIS)", - description="Tis Stage Finding Ductal Breast Carcinoma In Situ") ) - setattr(cls, "Tis (Paget's)", - PermissibleValue(text="Tis (Paget's)", - description="Tis Stage Finding Paget Disease of the Breast without Invasive Carcinoma") ) - setattr(cls, "cM0 (i+)", - PermissibleValue(text="cM0 (i+)", - description="cM0 (i+) Stage Finding") ) - setattr(cls, "Stage 4S", - PermissibleValue(text="Stage 4S", - description="INSS Stage 4S") ) - setattr(cls, "Stage 3", - PermissibleValue(text="Stage 3", - description="INSS Stage 3") ) - setattr(cls, "Stage 4", - PermissibleValue(text="Stage 4", - description="INSS Stage 4") ) - setattr(cls, "Stage 2A", - PermissibleValue(text="Stage 2A", - description="INSS Stage 2A") ) - setattr(cls, "Stage 1", - PermissibleValue(text="Stage 1", - description="INSS Stage 1") ) - setattr(cls, "Stage 2B", - PermissibleValue(text="Stage 2B", - description="INSS Stage 2B") ) - setattr(cls, "4", - PermissibleValue(text="4", - description="Metastatic disease") ) - setattr(cls, "2", - PermissibleValue(text="2", - description="Unfavorable site, <= 5 cm, no regional node involvement") ) - setattr(cls, "1", - PermissibleValue(text="1", - description="Favorable Site") ) - setattr(cls, "3", - PermissibleValue(text="3", - description="Unfavorable site, >5cm, and/or regional node involvement") ) - setattr(cls, "Stage IVb", - PermissibleValue(text="Stage IVb") ) - setattr(cls, "Stage IVa", - PermissibleValue(text="Stage IVa") ) - setattr(cls, "Stage IIa", - PermissibleValue(text="Stage IIa") ) - setattr(cls, "Stage IIb", - PermissibleValue(text="Stage IIb") ) - setattr(cls, "No Metastasis (M0)", - PermissibleValue(text="No Metastasis (M0)") ) - setattr(cls, "Regional or Distant Metastasis (M1)", - PermissibleValue(text="Regional or Distant Metastasis (M1)") ) - setattr(cls, "Stage II Cervix", - PermissibleValue(text="Stage II Cervix", - description="Stage II Cervix") ) - setattr(cls, "Stage IB Cervix", - PermissibleValue(text="Stage IB Cervix", - description="Stage IB Cervix") ) - setattr(cls, "Stage IIC1", - PermissibleValue(text="Stage IIC1") ) - setattr(cls, "Stage IIA Cervix", - PermissibleValue(text="Stage IIA Cervix", - description="Stage IIA Cervix") ) - setattr(cls, "3rd", - PermissibleValue(text="3rd", - description="Third Edition (published 1988)") ) - setattr(cls, "2nd", - PermissibleValue(text="2nd", - description="Second Edition (published 1983)") ) - setattr(cls, "5th", - PermissibleValue(text="5th", - description="Fifth Edition (published 1997)") ) - setattr(cls, "8th", - PermissibleValue(text="8th", - description="Eighth Edition") ) - setattr(cls, "4th", - PermissibleValue(text="4th", - description="Fourth Edition (published 1992)") ) - setattr(cls, "6th", - PermissibleValue(text="6th", - description="Sixth Edition (published 2002)") ) - setattr(cls, "1st", - PermissibleValue(text="1st", - description="First Edition") ) - setattr(cls, "7th", - PermissibleValue(text="7th", - description="Seventh Edition") ) - setattr(cls, "Extracompartmental (T2)", - PermissibleValue(text="Extracompartmental (T2)", - description="Extracompartmental Tumor") ) - setattr(cls, "Intracompartmental (T1)", - PermissibleValue(text="Intracompartmental (T1)", - description="Intracompartmental Tumor") ) - setattr(cls, "Good Prognosis", - PermissibleValue(text="Good Prognosis") ) - setattr(cls, "Poor Prognosis", - PermissibleValue(text="Poor Prognosis") ) - setattr(cls, "Intermediate Prognosis", - PermissibleValue(text="Intermediate Prognosis") ) - setattr(cls, "Stage IC2", - PermissibleValue(text="Stage IC2") ) - setattr(cls, "Stage IC1", - PermissibleValue(text="Stage IC1") ) - setattr(cls, "Stage IIIA1", - PermissibleValue(text="Stage IIIA1") ) - setattr(cls, "Stage IIIAii", - PermissibleValue(text="Stage IIIAii") ) - setattr(cls, "Stage IC3", - PermissibleValue(text="Stage IC3") ) - setattr(cls, "Stage IIIAi", - PermissibleValue(text="Stage IIIAi") ) - setattr(cls, "Stage IIIA2", - PermissibleValue(text="Stage IIIA2") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerStageObservationSetCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H CancerStageObservationSet category - """ - _defn = EnumDefinition( - name="EnumCCDHCancerStageObservationSetCategory", - description="Autogenerated Enumeration for CRDC-H CancerStageObservationSet category", - code_set=None, - code_set_version="2021-07-21T20:42:43.167268+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHCancerStageObservationSetMethodType(EnumDefinitionImpl): - """ - Classification systems used for defining the point in the natural history of a malignant disease a patient is when - a diagnosis is made - """ - _defn = EnumDefinition( - name="EnumCCDHCancerStageObservationSetMethodType", - description="Classification systems used for defining the point in the natural history of a malignant disease a patient is when a diagnosis is made", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "AJCC staging system 1st edition", - PermissibleValue(text="AJCC staging system 1st edition", - description="The 1st edition of the criteria developed by the American Joint Committee on Cancer (AJCC) used for the classification and staging of neoplastic diseases.") ) - setattr(cls, "AJCC staging system 2nd edition", - PermissibleValue(text="AJCC staging system 2nd edition", - description="The 2nd edition of the criteria developed by the American Joint Committee on Cancer (AJCC) used for the classification and staging of neoplastic diseases.") ) - setattr(cls, "AJCC staging system 3rd edition", - PermissibleValue(text="AJCC staging system 3rd edition", - description="The 3rd edition of the criteria developed by the American Joint Committee on Cancer (AJCC) used for the classification and staging of neoplastic diseases.") ) - setattr(cls, "AJCC staging system 4th edition", - PermissibleValue(text="AJCC staging system 4th edition", - description="The 4th edition of the criteria developed by the American Joint Committee on Cancer (AJCC) used for the classification and staging of neoplastic diseases.") ) - setattr(cls, "AJCC staging system 5th edition", - PermissibleValue(text="AJCC staging system 5th edition", - description="The 5th edition of the criteria developed by the American Joint Committee on Cancer (AJCC) used for the classification and staging of neoplastic diseases.") ) - setattr(cls, "AJCC staging system 6th edition", - PermissibleValue(text="AJCC staging system 6th edition", - description="The 6th edition of the criteria developed by the American Joint Committee on Cancer (AJCC) used for the classification and staging of neoplastic diseases.") ) - setattr(cls, "AJCC staging system 7th edition", - PermissibleValue(text="AJCC staging system 7th edition", - description="The 7th edition of the criteria developed by the American Joint Committee on Cancer (AJCC) in 2010, used for the classification and staging of neoplastic diseases.") ) - setattr(cls, "AJCC staging system 8th edition", - PermissibleValue(text="AJCC staging system 8th edition", - description="The 8th edition of the criteria developed by the American Joint Committee on Cancer (AJCC), implemented in 2018, used for the classification and staging of neoplastic diseases") ) - setattr(cls, "Ann Arbor staging system", - PermissibleValue(text="Ann Arbor staging system", - description="The Ann Arbor Staging guidelines used in the staging of lymphomas") ) - setattr(cls, "COG Liver staging system", - PermissibleValue(text="COG Liver staging system", - description="A staging system developed by Children's Oncology Group (COG) that categorizes liver tumors based on the size and extent of the tumor.") ) - setattr(cls, "COG Renal staging system", - PermissibleValue(text="COG Renal staging system", - description="A staging system developed by Children's Oncology Group (COG) that categorizes renal tumors, often Wilms tumor, based on the size and extent of the tumor.") ) - setattr(cls, "Enneking MSTS staging system", - PermissibleValue(text="Enneking MSTS staging system", - description="A staging system for malignant mesenchymal tumors that takes into account the surgical grade, local extent, and presence or absence of metastasis.") ) - setattr(cls, "FIGO staging system", - PermissibleValue(text="FIGO staging system", - description="A set of staging terms for carcinoma developed by the International Federation of Gynecology and Obstetrics (FIGO).") ) - setattr(cls, "IGCCCG staging system", - PermissibleValue(text="IGCCCG staging system") ) - setattr(cls, "INRG staging system", - PermissibleValue(text="INRG staging system", - description="A clinical staging system for neuroblastoma based on preoperative imaging and determined prior to any treatment, including surgery. It includes two stages of localized disease (L1 and L2) and two stages of metastatic disease (M and MS).") ) - setattr(cls, "INSS staging system", - PermissibleValue(text="INSS staging system", - description="A surgicopathological staging system for neuroblastoma, based on the Evans staging system.") ) - setattr(cls, "IRS staging system", - PermissibleValue(text="IRS staging system", - description="A system developed by the Intergroup Rhabdomyosarcoma Studies (IRS) group for staging rhabdomyosarcomas based on a modified TNM staging system.") ) - setattr(cls, "ISS staging system", - PermissibleValue(text="ISS staging system", - description="A plasma cell myeloma stage defined according to the international staging system.") ) - setattr(cls, "Masaoka staging system", - PermissibleValue(text="Masaoka staging system", - description="A thymoma stage defined according to the Masaoka-Koga staging criteria.") ) - setattr(cls, "Unspecified staging system", - PermissibleValue(text="Unspecified staging system", - description="For use when a data contributor has a cancer staging value, but no clearly specified staging system under which that value falls.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDiagnosisCondition(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Diagnosis condition - """ - Ecchondrosis = PermissibleValue(text="Ecchondrosis") - SETTLE = PermissibleValue(text="SETTLE") - Chromaffinoma = PermissibleValue(text="Chromaffinoma") - Neurilemosarcoma = PermissibleValue(text="Neurilemosarcoma") - Chloroma = PermissibleValue(text="Chloroma") - CPNET = PermissibleValue(text="CPNET") - Osteochondrosarcoma = PermissibleValue(text="Osteochondrosarcoma") - Angioendotheliomatosis = PermissibleValue(text="Angioendotheliomatosis") - Reninoma = PermissibleValue(text="Reninoma") - Medullocytoma = PermissibleValue(text="Medullocytoma") - RARS = PermissibleValue(text="RARS") - Myofibromatosis = PermissibleValue(text="Myofibromatosis") - Masculinovoblastoma = PermissibleValue(text="Masculinovoblastoma") - Myxolipoma = PermissibleValue(text="Myxolipoma") - Lipoblastoma = PermissibleValue(text="Lipoblastoma") - Oligodendroblastoma = PermissibleValue(text="Oligodendroblastoma") - Lymphoblastoma = PermissibleValue(text="Lymphoblastoma") - Pinealoma = PermissibleValue(text="Pinealoma") - MANEC = PermissibleValue(text="MANEC") - Myoepithelioma = PermissibleValue(text="Myoepithelioma") - Myxoliposarcoma = PermissibleValue(text="Myxoliposarcoma") - Gonocytoma = PermissibleValue(text="Gonocytoma") - Xanthofibroma = PermissibleValue(text="Xanthofibroma") - Adenomyoepithelioma = PermissibleValue(text="Adenomyoepithelioma") - Myelomatosis = PermissibleValue(text="Myelomatosis") - Trichofolliculoma = PermissibleValue(text="Trichofolliculoma") - Adenosarcoma = PermissibleValue(text="Adenosarcoma", - description="Adenosarcoma") - Chorionepithelioma = PermissibleValue(text="Chorionepithelioma") - Myofibroma = PermissibleValue(text="Myofibroma") - Lymphangiosarcoma = PermissibleValue(text="Lymphangiosarcoma") - Esthesioneurocytoma = PermissibleValue(text="Esthesioneurocytoma") - Spongioneuroblastoma = PermissibleValue(text="Spongioneuroblastoma") - Carcinomatosis = PermissibleValue(text="Carcinomatosis") - Elastofibroma = PermissibleValue(text="Elastofibroma") - Pituicytoma = PermissibleValue(text="Pituicytoma") - Lymphangiomyomatosis = PermissibleValue(text="Lymphangiomyomatosis") - Trichoepithelioma = PermissibleValue(text="Trichoepithelioma") - Adenoacanthoma = PermissibleValue(text="Adenoacanthoma") - Fibroliposarcoma = PermissibleValue(text="Fibroliposarcoma") - Angiosarcoma = PermissibleValue(text="Angiosarcoma") - Myxosarcoma = PermissibleValue(text="Myxosarcoma") - Craniopharyngioma = PermissibleValue(text="Craniopharyngioma") - Ecchondroma = PermissibleValue(text="Ecchondroma") - M6A = PermissibleValue(text="M6A") - Parachordoma = PermissibleValue(text="Parachordoma") - Ganglioneuromatosis = PermissibleValue(text="Ganglioneuromatosis") - Medullomyoblastoma = PermissibleValue(text="Medullomyoblastoma") - Chemodectoma = PermissibleValue(text="Chemodectoma") - Reticulohistiocytoma = PermissibleValue(text="Reticulohistiocytoma") - Angioblastoma = PermissibleValue(text="Angioblastoma") - Trichilemmocarcinoma = PermissibleValue(text="Trichilemmocarcinoma") - Gynandroblastoma = PermissibleValue(text="Gynandroblastoma") - Adenolymphoma = PermissibleValue(text="Adenolymphoma") - Pneumoblastoma = PermissibleValue(text="Pneumoblastoma") - Myosarcoma = PermissibleValue(text="Myosarcoma") - Fibrolipoma = PermissibleValue(text="Fibrolipoma") - Myofibroblastoma = PermissibleValue(text="Myofibroblastoma") - Neurosarcoma = PermissibleValue(text="Neurosarcoma") - Prolactinoma = PermissibleValue(text="Prolactinoma") - Carcinofibroma = PermissibleValue(text="Carcinofibroma") - Ectomesenchymoma = PermissibleValue(text="Ectomesenchymoma") - Chorioadenoma = PermissibleValue(text="Chorioadenoma") - Leiomyofibroma = PermissibleValue(text="Leiomyofibroma") - Angiomyosarcoma = PermissibleValue(text="Angiomyosarcoma") - Fibrofolliculoma = PermissibleValue(text="Fibrofolliculoma") - Pineoblastoma = PermissibleValue(text="Pineoblastoma") - Gliofibroma = PermissibleValue(text="Gliofibroma") - Haemangiosarcoma = PermissibleValue(text="Haemangiosarcoma") - Lipoadenoma = PermissibleValue(text="Lipoadenoma") - Germinoma = PermissibleValue(text="Germinoma") - Glomangioma = PermissibleValue(text="Glomangioma") - Neurinoma = PermissibleValue(text="Neurinoma") - Subependymoma = PermissibleValue(text="Subependymoma") - PPNET = PermissibleValue(text="PPNET") - Neurinomatosis = PermissibleValue(text="Neurinomatosis") - MGUS = PermissibleValue(text="MGUS") - Angiomyofibroblastoma = PermissibleValue(text="Angiomyofibroblastoma") - Gliosarcoma = PermissibleValue(text="Gliosarcoma") - Microglioma = PermissibleValue(text="Microglioma") - Osteochondroma = PermissibleValue(text="Osteochondroma") - Neuronevus = PermissibleValue(text="Neuronevus") - Neurothekeoma = PermissibleValue(text="Neurothekeoma") - Pheochromoblastoma = PermissibleValue(text="Pheochromoblastoma") - Glioblastoma = PermissibleValue(text="Glioblastoma") - Adenoameloblastoma = PermissibleValue(text="Adenoameloblastoma") - Gangliocytoma = PermissibleValue(text="Gangliocytoma") - Cholangioma = PermissibleValue(text="Cholangioma") - RAEB = PermissibleValue(text="RAEB") - Glomangiomyoma = PermissibleValue(text="Glomangiomyoma") - Trichilemmoma = PermissibleValue(text="Trichilemmoma") - Glioneuroma = PermissibleValue(text="Glioneuroma") - Angioendothelioma = PermissibleValue(text="Angioendothelioma") - Esthesioneuroepithelioma = PermissibleValue(text="Esthesioneuroepithelioma") - CASTLE = PermissibleValue(text="CASTLE") - Fibromyxoma = PermissibleValue(text="Fibromyxoma") - Lipoleiomyoma = PermissibleValue(text="Lipoleiomyoma") - Myoma = PermissibleValue(text="Myoma") - M6B = PermissibleValue(text="M6B") - Pineocytoma = PermissibleValue(text="Pineocytoma") - Oligoastrocytoma = PermissibleValue(text="Oligoastrocytoma", - description="Oligoastrocytoma") - Leiomyoblastoma = PermissibleValue(text="Leiomyoblastoma") - Myelolipoma = PermissibleValue(text="Myelolipoma") - Fibromyoma = PermissibleValue(text="Fibromyoma") - Dysgerminoma = PermissibleValue(text="Dysgerminoma", - description="Ovarian Dysgerminoma") - Rhabdosarcoma = PermissibleValue(text="Rhabdosarcoma") - Haemangioblastoma = PermissibleValue(text="Haemangioblastoma") - Syringofibroadenoma = PermissibleValue(text="Syringofibroadenoma") - Hypernephroma = PermissibleValue(text="Hypernephroma") - Hepatocarcinoma = PermissibleValue(text="Hepatocarcinoma") - Lymphoepithelioma = PermissibleValue(text="Lymphoepithelioma") - Preleukemia = PermissibleValue(text="Preleukemia") - Nesidioblastoma = PermissibleValue(text="Nesidioblastoma") - Spermatocytoma = PermissibleValue(text="Spermatocytoma") - Fibromyxolipoma = PermissibleValue(text="Fibromyxolipoma") - Neurocytoma = PermissibleValue(text="Neurocytoma") - Angiomyxoma = PermissibleValue(text="Angiomyxoma") - Pancreatoblastoma = PermissibleValue(text="Pancreatoblastoma", - description="Pancreatoblastoma") - Sympathicoblastoma = PermissibleValue(text="Sympathicoblastoma") - Luteinoma = PermissibleValue(text="Luteinoma") - Malignancy = PermissibleValue(text="Malignancy") - Fibrochondrosarcoma = PermissibleValue(text="Fibrochondrosarcoma") - Astroblastoma = PermissibleValue(text="Astroblastoma") - Adenomyoma = PermissibleValue(text="Adenomyoma") - Trichodiscoma = PermissibleValue(text="Trichodiscoma") - Lipoblastomatosis = PermissibleValue(text="Lipoblastomatosis") - Glomangiosarcoma = PermissibleValue(text="Glomangiosarcoma") - Hemolymphangioma = PermissibleValue(text="Hemolymphangioma") - Enchondroma = PermissibleValue(text="Enchondroma") - Esthesioneuroblastoma = PermissibleValue(text="Esthesioneuroblastoma") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - Neurolipocytoma = PermissibleValue(text="Neurolipocytoma") - Hidradenocarcinoma = PermissibleValue(text="Hidradenocarcinoma") - Oncocytoma = PermissibleValue(text="Oncocytoma") - Immunocytoma = PermissibleValue(text="Immunocytoma") - Gemistocytoma = PermissibleValue(text="Gemistocytoma") - Erythroleukemia = PermissibleValue(text="Erythroleukemia") - Lymphangioleiomyomatosis = PermissibleValue(text="Lymphangioleiomyomatosis") - Odontoameloblastoma = PermissibleValue(text="Odontoameloblastoma") - Osteofibroma = PermissibleValue(text="Osteofibroma") - Fibromyxosarcoma = PermissibleValue(text="Fibromyxosarcoma") - Hibernoma = PermissibleValue(text="Hibernoma") - Porocarcinoma = PermissibleValue(text="Porocarcinoma") - Apudoma = PermissibleValue(text="Apudoma") - Orchioblastoma = PermissibleValue(text="Orchioblastoma") - Angiokeratoma = PermissibleValue(text="Angiokeratoma") - Angiomyolipoma = PermissibleValue(text="Angiomyolipoma") - Neuroastrocytoma = PermissibleValue(text="Neuroastrocytoma") - Ependymoblastoma = PermissibleValue(text="Ependymoblastoma") - Teratocarcinoma = PermissibleValue(text="Teratocarcinoma") - Angioleiomyoma = PermissibleValue(text="Angioleiomyoma") - Neurofibrosarcoma = PermissibleValue(text="Neurofibrosarcoma") - Chorioangioma = PermissibleValue(text="Chorioangioma") - Hidrocystoma = PermissibleValue(text="Hidrocystoma") - Osteofibrosarcoma = PermissibleValue(text="Osteofibrosarcoma") - Hepatocholangiocarcinoma = PermissibleValue(text="Hepatocholangiocarcinoma") - Hepatoblastoma = PermissibleValue(text="Hepatoblastoma") - Cancer = PermissibleValue(text="Cancer") - Adenolipoma = PermissibleValue(text="Adenolipoma") - Lymphangiomyoma = PermissibleValue(text="Lymphangiomyoma") - Cholangiocarcinoma = PermissibleValue(text="Cholangiocarcinoma", - description="Cholangiocarcinoma") - Gonadoblastoma = PermissibleValue(text="Gonadoblastoma") - Retinocytoma = PermissibleValue(text="Retinocytoma") - Melanoameloblastoma = PermissibleValue(text="Melanoameloblastoma") - Angiomyoma = PermissibleValue(text="Angiomyoma") - Ganglioneuroblastoma = PermissibleValue(text="Ganglioneuroblastoma") - Polyembryoma = PermissibleValue(text="Polyembryoma") - Chorioepithelioma = PermissibleValue(text="Chorioepithelioma") - GANT = PermissibleValue(text="GANT") - Astroglioma = PermissibleValue(text="Astroglioma") - Dentinoma = PermissibleValue(text="Dentinoma") - Ganglioneuroma = PermissibleValue(text="Ganglioneuroma") - Sialoblastoma = PermissibleValue(text="Sialoblastoma") - - _defn = EnumDefinition( - name="EnumCCDHDiagnosisCondition", - description="Autogenerated Enumeration for CRDC-H Diagnosis condition", - code_set=None, - code_set_version="2021-07-21T20:42:43.476409+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Von Recklinghausen disease", - PermissibleValue(text="Von Recklinghausen disease") ) - setattr(cls, "Choroid plexus papilloma, anaplastic", - PermissibleValue(text="Choroid plexus papilloma, anaplastic") ) - setattr(cls, "Calcifying epithelial odontogenic tumor", - PermissibleValue(text="Calcifying epithelial odontogenic tumor") ) - setattr(cls, "Dermoid cyst with malignant transformation", - PermissibleValue(text="Dermoid cyst with malignant transformation") ) - setattr(cls, "Metastatic signet ring cell carcinoma", - PermissibleValue(text="Metastatic signet ring cell carcinoma") ) - setattr(cls, "Anaplastic large cell lymphoma, T cell and Null cell type", - PermissibleValue(text="Anaplastic large cell lymphoma, T cell and Null cell type") ) - setattr(cls, "Mucinous tubular and spindle cell carcinoma", - PermissibleValue(text="Mucinous tubular and spindle cell carcinoma") ) - setattr(cls, "Abdominal desmoid", - PermissibleValue(text="Abdominal desmoid") ) - setattr(cls, "Solid and cystic tumor", - PermissibleValue(text="Solid and cystic tumor") ) - setattr(cls, "Pancreatic peptide and pancreatic peptide-like peptide within terminal tyrosine amide producing tumor", - PermissibleValue(text="Pancreatic peptide and pancreatic peptide-like peptide within terminal tyrosine amide producing tumor") ) - setattr(cls, "Proliferative polycythemia", - PermissibleValue(text="Proliferative polycythemia") ) - setattr(cls, "Olfactory neuroblastoma", - PermissibleValue(text="Olfactory neuroblastoma") ) - setattr(cls, "Liver cell adenoma", - PermissibleValue(text="Liver cell adenoma") ) - setattr(cls, "Mucinous adenoma", - PermissibleValue(text="Mucinous adenoma") ) - setattr(cls, "Basosquamous carcinoma", - PermissibleValue(text="Basosquamous carcinoma") ) - setattr(cls, "Spindle cell melanoma, type B", - PermissibleValue(text="Spindle cell melanoma, type B") ) - setattr(cls, "Eccrine cystadenoma", - PermissibleValue(text="Eccrine cystadenoma") ) - setattr(cls, "Combined small cell-large carcinoma", - PermissibleValue(text="Combined small cell-large carcinoma") ) - setattr(cls, "Serous carcinoma, NOS", - PermissibleValue(text="Serous carcinoma, NOS") ) - setattr(cls, "Liver cell carcinoma", - PermissibleValue(text="Liver cell carcinoma") ) - setattr(cls, "Medullary adenocarcinoma", - PermissibleValue(text="Medullary adenocarcinoma") ) - setattr(cls, "Apocrine adenocarcinoma", - PermissibleValue(text="Apocrine adenocarcinoma") ) - setattr(cls, "Thymoma, lymphocyte-rich, NOS", - PermissibleValue(text="Thymoma, lymphocyte-rich, NOS") ) - setattr(cls, "Gliomatosis cerebri", - PermissibleValue(text="Gliomatosis cerebri") ) - setattr(cls, "Subcutaneous panniculitis-like T-cell lymphoma", - PermissibleValue(text="Subcutaneous panniculitis-like T-cell lymphoma") ) - setattr(cls, "Oligodendroglioma, IDH-mutant and 1p/19q-codeleted", - PermissibleValue(text="Oligodendroglioma, IDH-mutant and 1p/19q-codeleted") ) - setattr(cls, "Diffuse cutaneous mastocytosis", - PermissibleValue(text="Diffuse cutaneous mastocytosis") ) - setattr(cls, "Glomus tumor, NOS", - PermissibleValue(text="Glomus tumor, NOS") ) - setattr(cls, "Cystadenofibroma, NOS", - PermissibleValue(text="Cystadenofibroma, NOS") ) - setattr(cls, "Cylindroma of skin", - PermissibleValue(text="Cylindroma of skin") ) - setattr(cls, "Adenocarcinoma, intestinal type", - PermissibleValue(text="Adenocarcinoma, intestinal type", - description="Intestinal-Type Adenocarcinoma") ) - setattr(cls, "Fetal adenocarcinoma", - PermissibleValue(text="Fetal adenocarcinoma") ) - setattr(cls, "Adenocarcinoma with osseous metaplasia", - PermissibleValue(text="Adenocarcinoma with osseous metaplasia") ) - setattr(cls, "Trophoblastic tumor, epithelioid", - PermissibleValue(text="Trophoblastic tumor, epithelioid") ) - setattr(cls, "Enterochromaffin-like cell carcinoid, NOS", - PermissibleValue(text="Enterochromaffin-like cell carcinoid, NOS") ) - setattr(cls, "Central osteosarcoma", - PermissibleValue(text="Central osteosarcoma") ) - setattr(cls, "Chronic myelomonocytic leukemia, Type II", - PermissibleValue(text="Chronic myelomonocytic leukemia, Type II") ) - setattr(cls, "Small cell sarcoma", - PermissibleValue(text="Small cell sarcoma") ) - setattr(cls, "Medulloblastoma, WNT-activated", - PermissibleValue(text="Medulloblastoma, WNT-activated") ) - setattr(cls, "Low-grade central osteosarcoma", - PermissibleValue(text="Low-grade central osteosarcoma") ) - setattr(cls, "Myeloproliferative disease, NOS", - PermissibleValue(text="Myeloproliferative disease, NOS") ) - setattr(cls, "Myofibroblastic sarcoma", - PermissibleValue(text="Myofibroblastic sarcoma") ) - setattr(cls, "Chronic monocytic leukemia", - PermissibleValue(text="Chronic monocytic leukemia") ) - setattr(cls, "Peripheral T-cell lymphoma, large cell", - PermissibleValue(text="Peripheral T-cell lymphoma, large cell") ) - setattr(cls, "Acute myeloid leukemia, t(16;16)(p 13;q 11)", - PermissibleValue(text="Acute myeloid leukemia, t(16;16)(p 13;q 11)") ) - setattr(cls, "Arrhenoblastoma, NOS", - PermissibleValue(text="Arrhenoblastoma, NOS") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma with t(v;11q23); MLL rearranged", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma with t(v;11q23); MLL rearranged") ) - setattr(cls, "Giant pigmented nevus, NOS", - PermissibleValue(text="Giant pigmented nevus, NOS") ) - setattr(cls, "Endometrial stromal nodule", - PermissibleValue(text="Endometrial stromal nodule") ) - setattr(cls, "Mullerian adenosarcoma", - PermissibleValue(text="Mullerian adenosarcoma") ) - setattr(cls, "Medulloepithelioma, NOS", - PermissibleValue(text="Medulloepithelioma, NOS") ) - setattr(cls, "Intraductal papillary-mucinous tumor with intermediate dysplasia", - PermissibleValue(text="Intraductal papillary-mucinous tumor with intermediate dysplasia") ) - setattr(cls, "Spindle epithelial tumor with thymus-like element", - PermissibleValue(text="Spindle epithelial tumor with thymus-like element") ) - setattr(cls, "Dermal nevus", - PermissibleValue(text="Dermal nevus") ) - setattr(cls, "Periosteal fibrosarcoma", - PermissibleValue(text="Periosteal fibrosarcoma") ) - setattr(cls, "Cystosarcoma phyllodes, NOS", - PermissibleValue(text="Cystosarcoma phyllodes, NOS") ) - setattr(cls, "Chronic myelogenous leukemia, BCR-ABL positive", - PermissibleValue(text="Chronic myelogenous leukemia, BCR-ABL positive") ) - setattr(cls, "Mammary carcinoma, in situ", - PermissibleValue(text="Mammary carcinoma, in situ") ) - setattr(cls, "Argentaffinoma, NOS", - PermissibleValue(text="Argentaffinoma, NOS") ) - setattr(cls, "Calcifying odontogenic cyst", - PermissibleValue(text="Calcifying odontogenic cyst") ) - setattr(cls, "Intraductal carcinoma and lobular carcinoma in situ", - PermissibleValue(text="Intraductal carcinoma and lobular carcinoma in situ") ) - setattr(cls, "Ductal carcinoma, cribriform type", - PermissibleValue(text="Ductal carcinoma, cribriform type") ) - setattr(cls, "Microcystic adnexal carcinoma", - PermissibleValue(text="Microcystic adnexal carcinoma") ) - setattr(cls, "Adenoid basal carcinoma", - PermissibleValue(text="Adenoid basal carcinoma") ) - setattr(cls, "Epithelioid mesothelioma, benign", - PermissibleValue(text="Epithelioid mesothelioma, benign") ) - setattr(cls, "Thymoma, NOS", - PermissibleValue(text="Thymoma, NOS") ) - setattr(cls, "Malignant lymphomatous polyposis", - PermissibleValue(text="Malignant lymphomatous polyposis") ) - setattr(cls, "Acute myeloid leukemia with abnormal marrow eosinophils (includes all variants)", - PermissibleValue(text="Acute myeloid leukemia with abnormal marrow eosinophils (includes all variants)") ) - setattr(cls, "Odontogenic myxoma", - PermissibleValue(text="Odontogenic myxoma") ) - setattr(cls, "Ameloblastic fibrodentinoma", - PermissibleValue(text="Ameloblastic fibrodentinoma") ) - setattr(cls, "Di Guglielmo disease", - PermissibleValue(text="Di Guglielmo disease") ) - setattr(cls, "Malignant mastocytoma", - PermissibleValue(text="Malignant mastocytoma") ) - setattr(cls, "Cartilaginous exostosis", - PermissibleValue(text="Cartilaginous exostosis") ) - setattr(cls, "Sweat gland tumor, NOS", - PermissibleValue(text="Sweat gland tumor, NOS") ) - setattr(cls, "Papillary mucinous cystadenoma, NOS", - PermissibleValue(text="Papillary mucinous cystadenoma, NOS") ) - setattr(cls, "Angiomatoid fibrous histiocytoma", - PermissibleValue(text="Angiomatoid fibrous histiocytoma") ) - setattr(cls, "Infiltrating lobular carcinoma, NOS", - PermissibleValue(text="Infiltrating lobular carcinoma, NOS") ) - setattr(cls, "Bronchio-alveolar carcinoma, mucinous", - PermissibleValue(text="Bronchio-alveolar carcinoma, mucinous") ) - setattr(cls, "Endolymphatic stromal myosis", - PermissibleValue(text="Endolymphatic stromal myosis") ) - setattr(cls, "Intracystic papillary adenoma", - PermissibleValue(text="Intracystic papillary adenoma") ) - setattr(cls, "Follicular fibroma", - PermissibleValue(text="Follicular fibroma") ) - setattr(cls, "Mucin-secreting adenocarcinoma", - PermissibleValue(text="Mucin-secreting adenocarcinoma") ) - setattr(cls, "Acidophil adenocarcinoma", - PermissibleValue(text="Acidophil adenocarcinoma") ) - setattr(cls, "Chondromyxoid fibroma", - PermissibleValue(text="Chondromyxoid fibroma") ) - setattr(cls, "Trabecular carcinoma", - PermissibleValue(text="Trabecular carcinoma") ) - setattr(cls, "Myeloproliferative neoplasm, NOS", - PermissibleValue(text="Myeloproliferative neoplasm, NOS") ) - setattr(cls, "Plexiform schwannoma", - PermissibleValue(text="Plexiform schwannoma") ) - setattr(cls, "Invasive fibroma", - PermissibleValue(text="Invasive fibroma") ) - setattr(cls, "Mixed acinar-endocrine-ductal carcinoma", - PermissibleValue(text="Mixed acinar-endocrine-ductal carcinoma") ) - setattr(cls, "Acute myeloid leukemia with t(6;9)(p23;q34); DEK-NUP214", - PermissibleValue(text="Acute myeloid leukemia with t(6;9)(p23;q34); DEK-NUP214") ) - setattr(cls, "Solid adenocarcinoma with mucin formation", - PermissibleValue(text="Solid adenocarcinoma with mucin formation") ) - setattr(cls, "Neuroblastoma, NOS", - PermissibleValue(text="Neuroblastoma, NOS") ) - setattr(cls, "Hemangioma, NOS", - PermissibleValue(text="Hemangioma, NOS") ) - setattr(cls, "Infiltrating ductular carcinoma", - PermissibleValue(text="Infiltrating ductular carcinoma") ) - setattr(cls, "Small cell carcinoma, intermediate cell", - PermissibleValue(text="Small cell carcinoma, intermediate cell") ) - setattr(cls, "Endometrioid cystadenofibroma, borderline malignancy", - PermissibleValue(text="Endometrioid cystadenofibroma, borderline malignancy") ) - setattr(cls, "Extra-adrenal paraganglioma, malignant", - PermissibleValue(text="Extra-adrenal paraganglioma, malignant") ) - setattr(cls, "Kaposi sarcoma", - PermissibleValue(text="Kaposi sarcoma") ) - setattr(cls, "Non-invasive EFVPTC", - PermissibleValue(text="Non-invasive EFVPTC") ) - setattr(cls, "Hodgkin disease, nodular sclerosis, lymphocyte depletion", - PermissibleValue(text="Hodgkin disease, nodular sclerosis, lymphocyte depletion") ) - setattr(cls, "Non-lymphocytic leukemia, NOS", - PermissibleValue(text="Non-lymphocytic leukemia, NOS") ) - setattr(cls, "Intracystic papillary tumor with high grade intraepithelial neoplasia", - PermissibleValue(text="Intracystic papillary tumor with high grade intraepithelial neoplasia") ) - setattr(cls, "Myxoid liposarcoma", - PermissibleValue(text="Myxoid liposarcoma") ) - setattr(cls, "Papillocystic adenocarcinoma", - PermissibleValue(text="Papillocystic adenocarcinoma") ) - setattr(cls, "Neuroendocrine carcinoma, low grade", - PermissibleValue(text="Neuroendocrine carcinoma, low grade") ) - setattr(cls, "Precursor T-cell lymphoblastic leukemia", - PermissibleValue(text="Precursor T-cell lymphoblastic leukemia") ) - setattr(cls, "Invasive lobular carcinoma", - PermissibleValue(text="Invasive lobular carcinoma") ) - setattr(cls, "Basal cell carcinoma, fibroepithelial", - PermissibleValue(text="Basal cell carcinoma, fibroepithelial") ) - setattr(cls, "Epithelioid hemangioendothelioma, malignant", - PermissibleValue(text="Epithelioid hemangioendothelioma, malignant") ) - setattr(cls, "Intraductal papillary-mucinous tumor with low grade dysplasia", - PermissibleValue(text="Intraductal papillary-mucinous tumor with low grade dysplasia") ) - setattr(cls, "Carcinosarcoma, NOS", - PermissibleValue(text="Carcinosarcoma, NOS") ) - setattr(cls, "Bronchiolar adenocarcinoma", - PermissibleValue(text="Bronchiolar adenocarcinoma") ) - setattr(cls, "Fibroid uterus", - PermissibleValue(text="Fibroid uterus") ) - setattr(cls, "Stromal myosis, NOS", - PermissibleValue(text="Stromal myosis, NOS") ) - setattr(cls, "Papillary tumor of the pineal region", - PermissibleValue(text="Papillary tumor of the pineal region") ) - setattr(cls, "Serous cystadenofibroma, NOS", - PermissibleValue(text="Serous cystadenofibroma, NOS") ) - setattr(cls, "Thymic carcinoma, NOS", - PermissibleValue(text="Thymic carcinoma, NOS") ) - setattr(cls, "Hairy cell leukemia", - PermissibleValue(text="Hairy cell leukemia") ) - setattr(cls, "Histiocytoid hemangioma", - PermissibleValue(text="Histiocytoid hemangioma") ) - setattr(cls, "Ceruminous carcinoma", - PermissibleValue(text="Ceruminous carcinoma") ) - setattr(cls, "Adenomyoepithelioma with carcinoma", - PermissibleValue(text="Adenomyoepithelioma with carcinoma") ) - setattr(cls, "Mucin-secreting carcinoma", - PermissibleValue(text="Mucin-secreting carcinoma") ) - setattr(cls, "Pulmonary adenomatosis", - PermissibleValue(text="Pulmonary adenomatosis") ) - setattr(cls, "Central neuroblastoma", - PermissibleValue(text="Central neuroblastoma") ) - setattr(cls, "Peripheral odontogenic fibroma", - PermissibleValue(text="Peripheral odontogenic fibroma") ) - setattr(cls, "Acute myeloid leukemia with t(8;21)(q22;q22); RUNX1-RUNX1T1", - PermissibleValue(text="Acute myeloid leukemia with t(8;21)(q22;q22); RUNX1-RUNX1T1") ) - setattr(cls, "Infantile myofibromatosis", - PermissibleValue(text="Infantile myofibromatosis") ) - setattr(cls, "Mixed tumor, malignant, NOS", - PermissibleValue(text="Mixed tumor, malignant, NOS") ) - setattr(cls, "Fibroadenoma, NOS", - PermissibleValue(text="Fibroadenoma, NOS") ) - setattr(cls, "Mixed phenotype acute leukemia, T/myeloid, NOS", - PermissibleValue(text="Mixed phenotype acute leukemia, T/myeloid, NOS") ) - setattr(cls, "Junctional nevus, NOS", - PermissibleValue(text="Junctional nevus, NOS") ) - setattr(cls, "Neuroendocrine tumor, well differentiated", - PermissibleValue(text="Neuroendocrine tumor, well differentiated") ) - setattr(cls, "Acute myeloid leukemia with prior myelodysplastic syndrome", - PermissibleValue(text="Acute myeloid leukemia with prior myelodysplastic syndrome") ) - setattr(cls, "Acral lentiginous melanoma, malignant", - PermissibleValue(text="Acral lentiginous melanoma, malignant") ) - setattr(cls, "Subacute lymphatic leukemia", - PermissibleValue(text="Subacute lymphatic leukemia") ) - setattr(cls, "Systemic light chain disease", - PermissibleValue(text="Systemic light chain disease") ) - setattr(cls, "Carcinoma with apocrine metaplasia", - PermissibleValue(text="Carcinoma with apocrine metaplasia") ) - setattr(cls, "Endovascular papillary angioendothelioma", - PermissibleValue(text="Endovascular papillary angioendothelioma") ) - setattr(cls, "Squamotransitional cell carcinoma", - PermissibleValue(text="Squamotransitional cell carcinoma") ) - setattr(cls, "Myeloid leukemia associated with Down Syndrome", - PermissibleValue(text="Myeloid leukemia associated with Down Syndrome") ) - setattr(cls, "Papillary adenoma, NOS", - PermissibleValue(text="Papillary adenoma, NOS") ) - setattr(cls, "Mixed teratoma and seminoma", - PermissibleValue(text="Mixed teratoma and seminoma") ) - setattr(cls, "Infiltrating and papillary adenocarcinoma", - PermissibleValue(text="Infiltrating and papillary adenocarcinoma") ) - setattr(cls, "Squamous intraepithelial neoplasia, grade II", - PermissibleValue(text="Squamous intraepithelial neoplasia, grade II") ) - setattr(cls, "Fibroepithelioma of Pinkus type", - PermissibleValue(text="Fibroepithelioma of Pinkus type") ) - setattr(cls, "Acute erythremic myelosis", - PermissibleValue(text="Acute erythremic myelosis") ) - setattr(cls, "Intestinal-type adenocarcinoma", - PermissibleValue(text="Intestinal-type adenocarcinoma") ) - setattr(cls, "Hygroma, NOS", - PermissibleValue(text="Hygroma, NOS") ) - setattr(cls, "Neurogenic sarcoma", - PermissibleValue(text="Neurogenic sarcoma") ) - setattr(cls, "Adult cystic teratoma", - PermissibleValue(text="Adult cystic teratoma") ) - setattr(cls, "Infiltrating basal cell carcinoma, sclerosing", - PermissibleValue(text="Infiltrating basal cell carcinoma, sclerosing") ) - setattr(cls, "Primitive polar spongioblastoma", - PermissibleValue(text="Primitive polar spongioblastoma") ) - setattr(cls, "Parosteal osteosarcoma", - PermissibleValue(text="Parosteal osteosarcoma") ) - setattr(cls, "Histiocytosis X, NOS", - PermissibleValue(text="Histiocytosis X, NOS") ) - setattr(cls, "Ameloblastic fibrosarcoma", - PermissibleValue(text="Ameloblastic fibrosarcoma") ) - setattr(cls, "Clear cell ependymoma", - PermissibleValue(text="Clear cell ependymoma") ) - setattr(cls, "Composite carcinoid", - PermissibleValue(text="Composite carcinoid") ) - setattr(cls, "Metanephric adenoma", - PermissibleValue(text="Metanephric adenoma") ) - setattr(cls, "Refractory neutropenia", - PermissibleValue(text="Refractory neutropenia") ) - setattr(cls, "G cell tumor, NOS", - PermissibleValue(text="G cell tumor, NOS") ) - setattr(cls, "Sarcomatoid carcinoma", - PermissibleValue(text="Sarcomatoid carcinoma") ) - setattr(cls, "Thymoma, type B3, NOS", - PermissibleValue(text="Thymoma, type B3, NOS") ) - setattr(cls, "Precursor B-cell lymphoblastic lymphoma", - PermissibleValue(text="Precursor B-cell lymphoblastic lymphoma") ) - setattr(cls, "Gastrinoma, NOS", - PermissibleValue(text="Gastrinoma, NOS") ) - setattr(cls, "Mastocytoma, NOS", - PermissibleValue(text="Mastocytoma, NOS") ) - setattr(cls, "Granulocytic leukemia, NOS", - PermissibleValue(text="Granulocytic leukemia, NOS") ) - setattr(cls, "Hodgkin lymphoma, lymphocyte predominance, nodular", - PermissibleValue(text="Hodgkin lymphoma, lymphocyte predominance, nodular") ) - setattr(cls, "Basal cell adenocarcinoma", - PermissibleValue(text="Basal cell adenocarcinoma", - description="Salivary Gland Basal Cell Adenocarcinoma") ) - setattr(cls, "Epidermoid carcinoma, keratinizing", - PermissibleValue(text="Epidermoid carcinoma, keratinizing") ) - setattr(cls, "Hemangiopericytoma, benign", - PermissibleValue(text="Hemangiopericytoma, benign") ) - setattr(cls, "Squamous cell papilloma, NOS", - PermissibleValue(text="Squamous cell papilloma, NOS") ) - setattr(cls, "Primary myelofibrosis", - PermissibleValue(text="Primary myelofibrosis") ) - setattr(cls, "Angiotropic lymphoma", - PermissibleValue(text="Angiotropic lymphoma") ) - setattr(cls, "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos)", - PermissibleValue(text="Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos)") ) - setattr(cls, "Polypoid adenoma", - PermissibleValue(text="Polypoid adenoma") ) - setattr(cls, "Alveolar cell carcinoma", - PermissibleValue(text="Alveolar cell carcinoma") ) - setattr(cls, "Mixed hepatocellular and bile duct carcinoma", - PermissibleValue(text="Mixed hepatocellular and bile duct carcinoma") ) - setattr(cls, "Renomedullary interstitial cell tumor", - PermissibleValue(text="Renomedullary interstitial cell tumor") ) - setattr(cls, "Burkitt lymphoma, NOS (Includes all variants)", - PermissibleValue(text="Burkitt lymphoma, NOS (Includes all variants)") ) - setattr(cls, "Merkel cell carcinoma", - PermissibleValue(text="Merkel cell carcinoma") ) - setattr(cls, "Malignant lymphoma, NOS", - PermissibleValue(text="Malignant lymphoma, NOS") ) - setattr(cls, "Duct cell carcinoma", - PermissibleValue(text="Duct cell carcinoma") ) - setattr(cls, "Malignant lymphoma, mixed lymphocytic-histiocytic, nodular", - PermissibleValue(text="Malignant lymphoma, mixed lymphocytic-histiocytic, nodular") ) - setattr(cls, "Capillary hemangioma", - PermissibleValue(text="Capillary hemangioma") ) - setattr(cls, "Papillary syringocystadenoma", - PermissibleValue(text="Papillary syringocystadenoma") ) - setattr(cls, "Acute promyelocytic leukaemia, t(15;17)(q22;q11-12)", - PermissibleValue(text="Acute promyelocytic leukaemia, t(15;17)(q22;q11-12)") ) - setattr(cls, "Malignant mast cell tumor", - PermissibleValue(text="Malignant mast cell tumor") ) - setattr(cls, "Malignant mucinous adenofibroma", - PermissibleValue(text="Malignant mucinous adenofibroma") ) - setattr(cls, "Follicular dendritic cell tumor", - PermissibleValue(text="Follicular dendritic cell tumor") ) - setattr(cls, "Villoglandular carcinoma", - PermissibleValue(text="Villoglandular carcinoma") ) - setattr(cls, "Epidermoid carcinoma, NOS", - PermissibleValue(text="Epidermoid carcinoma, NOS") ) - setattr(cls, "Polyvesicular vitelline tumor", - PermissibleValue(text="Polyvesicular vitelline tumor") ) - setattr(cls, "MPNST, NOS", - PermissibleValue(text="MPNST, NOS") ) - setattr(cls, "Mixed adenoneuroendocrine carcinoma", - PermissibleValue(text="Mixed adenoneuroendocrine carcinoma", - description="Digestive System Mixed Adenoneuroendocrine Carcinoma") ) - setattr(cls, "Mucosal-associated lymphoid tissue lymphoma", - PermissibleValue(text="Mucosal-associated lymphoid tissue lymphoma") ) - setattr(cls, "Choroid plexus carcinoma", - PermissibleValue(text="Choroid plexus carcinoma") ) - setattr(cls, "Solitary fibrous tumor, malignant", - PermissibleValue(text="Solitary fibrous tumor, malignant") ) - setattr(cls, "Cystic mesothelioma, NOS", - PermissibleValue(text="Cystic mesothelioma, NOS") ) - setattr(cls, "Mucinous cystic neoplasm with low-grade dysplasia", - PermissibleValue(text="Mucinous cystic neoplasm with low-grade dysplasia") ) - setattr(cls, "Myelofibrosis with myeloid metaplasia", - PermissibleValue(text="Myelofibrosis with myeloid metaplasia") ) - setattr(cls, "Pleomorphic cell sarcoma", - PermissibleValue(text="Pleomorphic cell sarcoma") ) - setattr(cls, "Serous cystadenocarcinofibroma", - PermissibleValue(text="Serous cystadenocarcinofibroma") ) - setattr(cls, "Androblastoma, malignant", - PermissibleValue(text="Androblastoma, malignant") ) - setattr(cls, "Granulosa cell-theca cell tumor", - PermissibleValue(text="Granulosa cell-theca cell tumor") ) - setattr(cls, "Perivascular epithelioid cell tumor, malignant", - PermissibleValue(text="Perivascular epithelioid cell tumor, malignant") ) - setattr(cls, "Inflammatory adenocarcinoma", - PermissibleValue(text="Inflammatory adenocarcinoma") ) - setattr(cls, "Hodgkin disease, nodular sclerosis, mixed cellularity", - PermissibleValue(text="Hodgkin disease, nodular sclerosis, mixed cellularity") ) - setattr(cls, "Langerhans cell histiocytosis, generalized", - PermissibleValue(text="Langerhans cell histiocytosis, generalized") ) - setattr(cls, "Germ cell tumors with associated hematological malignancy", - PermissibleValue(text="Germ cell tumors with associated hematological malignancy") ) - setattr(cls, "Giant cell tumor of bone, malignant", - PermissibleValue(text="Giant cell tumor of bone, malignant") ) - setattr(cls, "Embryonal adenocarcinoma", - PermissibleValue(text="Embryonal adenocarcinoma") ) - setattr(cls, "Cystic hygroma", - PermissibleValue(text="Cystic hygroma") ) - setattr(cls, "Tumor, benign", - PermissibleValue(text="Tumor, benign") ) - setattr(cls, "Beta cell tumor, malignant", - PermissibleValue(text="Beta cell tumor, malignant") ) - setattr(cls, "Hepatocellular carcinoma, fibrolamellar", - PermissibleValue(text="Hepatocellular carcinoma, fibrolamellar") ) - setattr(cls, "Alpha heavy chain disease", - PermissibleValue(text="Alpha heavy chain disease") ) - setattr(cls, "Adult T-cell lymphoma/leukemia", - PermissibleValue(text="Adult T-cell lymphoma/leukemia") ) - setattr(cls, "Sclerosing stromal tumor", - PermissibleValue(text="Sclerosing stromal tumor") ) - setattr(cls, "Non-invasive FTP", - PermissibleValue(text="Non-invasive FTP") ) - setattr(cls, "Spongioblastoma, NOS", - PermissibleValue(text="Spongioblastoma, NOS") ) - setattr(cls, "Adenocarcinoma in situ in tubular adenoma", - PermissibleValue(text="Adenocarcinoma in situ in tubular adenoma") ) - setattr(cls, "Seromucinous carcinoma", - PermissibleValue(text="Seromucinous carcinoma", - description="Ovarian Seromucinous Carcinoma") ) - setattr(cls, "Myeloid neoplasms with PDGFRB rearrangement", - PermissibleValue(text="Myeloid neoplasms with PDGFRB rearrangement") ) - setattr(cls, "Transitional pineal tumor", - PermissibleValue(text="Transitional pineal tumor") ) - setattr(cls, "Folliculome lipidique", - PermissibleValue(text="Folliculome lipidique") ) - setattr(cls, "Multiple endocrine adenomas", - PermissibleValue(text="Multiple endocrine adenomas") ) - setattr(cls, "Intraductal papillary-mucinous adenoma", - PermissibleValue(text="Intraductal papillary-mucinous adenoma") ) - setattr(cls, "Hodgkin lymphoma, lymphocyte depletion, reticular", - PermissibleValue(text="Hodgkin lymphoma, lymphocyte depletion, reticular") ) - setattr(cls, "Choriocarcinoma, NOS", - PermissibleValue(text="Choriocarcinoma, NOS") ) - setattr(cls, "Ossifying fibromyxoid tumor", - PermissibleValue(text="Ossifying fibromyxoid tumor") ) - setattr(cls, "Spindle cell melanoma, type A", - PermissibleValue(text="Spindle cell melanoma, type A") ) - setattr(cls, "Infiltrating basal cell carcinoma, non-sclerosing", - PermissibleValue(text="Infiltrating basal cell carcinoma, non-sclerosing") ) - setattr(cls, "Adrenal cortical carcinoma", - PermissibleValue(text="Adrenal cortical carcinoma") ) - setattr(cls, "Malignant lymphoma, small cell diffuse", - PermissibleValue(text="Malignant lymphoma, small cell diffuse") ) - setattr(cls, "Thymoma, atypical, NOS", - PermissibleValue(text="Thymoma, atypical, NOS") ) - setattr(cls, "Acinar carcinoma", - PermissibleValue(text="Acinar carcinoma") ) - setattr(cls, "Polymorphic reticulosis", - PermissibleValue(text="Polymorphic reticulosis") ) - setattr(cls, "Synovial sarcoma, spindle cell", - PermissibleValue(text="Synovial sarcoma, spindle cell") ) - setattr(cls, "Adult T-cell leukemia", - PermissibleValue(text="Adult T-cell leukemia") ) - setattr(cls, "Oxyphilic adenocarcinoma", - PermissibleValue(text="Oxyphilic adenocarcinoma") ) - setattr(cls, "Venous hemangioma", - PermissibleValue(text="Venous hemangioma") ) - setattr(cls, "Malignant lymphoma, mixed small and large cell, diffuse", - PermissibleValue(text="Malignant lymphoma, mixed small and large cell, diffuse") ) - setattr(cls, "Pancreatobiliary neoplasm, non-invasive", - PermissibleValue(text="Pancreatobiliary neoplasm, non-invasive") ) - setattr(cls, "Therapy related myeloid neoplasm", - PermissibleValue(text="Therapy related myeloid neoplasm") ) - setattr(cls, "Lymphangioendothelioma, malignant", - PermissibleValue(text="Lymphangioendothelioma, malignant") ) - setattr(cls, "Cystosarcoma phyllodes, benign", - PermissibleValue(text="Cystosarcoma phyllodes, benign") ) - setattr(cls, "Hepatocellular carcinoma, sarcomatoid", - PermissibleValue(text="Hepatocellular carcinoma, sarcomatoid") ) - setattr(cls, "Immunoproliferative small intestinal disease", - PermissibleValue(text="Immunoproliferative small intestinal disease") ) - setattr(cls, "Myeloid sarcoma", - PermissibleValue(text="Myeloid sarcoma") ) - setattr(cls, "RAEB-T", - PermissibleValue(text="RAEB-T") ) - setattr(cls, "Transitional cell carcinoma, sarcomatoid", - PermissibleValue(text="Transitional cell carcinoma, sarcomatoid") ) - setattr(cls, "Chronic myeloproliferative disorder", - PermissibleValue(text="Chronic myeloproliferative disorder") ) - setattr(cls, "Malignant tumor, small cell type", - PermissibleValue(text="Malignant tumor, small cell type") ) - setattr(cls, "Pleomorphic lobular carcinoma in situ", - PermissibleValue(text="Pleomorphic lobular carcinoma in situ") ) - setattr(cls, "Thymoma, mixed type, NOS", - PermissibleValue(text="Thymoma, mixed type, NOS") ) - setattr(cls, "Hodgkin lymphoma, lymphocyte depletion, NOS", - PermissibleValue(text="Hodgkin lymphoma, lymphocyte depletion, NOS") ) - setattr(cls, "Solitary mastocytoma of skin", - PermissibleValue(text="Solitary mastocytoma of skin") ) - setattr(cls, "Malignant reticulosis, NOS", - PermissibleValue(text="Malignant reticulosis, NOS") ) - setattr(cls, "Testicular stromal tumor", - PermissibleValue(text="Testicular stromal tumor") ) - setattr(cls, "Acute myeloid leukemia, inv(16)(p13;q22)", - PermissibleValue(text="Acute myeloid leukemia, inv(16)(p13;q22)") ) - setattr(cls, "Ancient schwannoma", - PermissibleValue(text="Ancient schwannoma") ) - setattr(cls, "Mixed pineal tumor", - PermissibleValue(text="Mixed pineal tumor") ) - setattr(cls, "Acute myeloid leukemia without prior myelodysplastic syndrome", - PermissibleValue(text="Acute myeloid leukemia without prior myelodysplastic syndrome") ) - setattr(cls, "Mucinous cystadenocarcinofibroma", - PermissibleValue(text="Mucinous cystadenocarcinofibroma") ) - setattr(cls, "Mesonephroma, malignant", - PermissibleValue(text="Mesonephroma, malignant") ) - setattr(cls, "Undifferentiated high-grade pleomorphic sarcoma", - PermissibleValue(text="Undifferentiated high-grade pleomorphic sarcoma") ) - setattr(cls, "Lipid-rich carcinoma", - PermissibleValue(text="Lipid-rich carcinoma") ) - setattr(cls, "Precursor B-cell lymphoblastic leukemia", - PermissibleValue(text="Precursor B-cell lymphoblastic leukemia") ) - setattr(cls, "Hepatocellular carcinoma, NOS", - PermissibleValue(text="Hepatocellular carcinoma, NOS") ) - setattr(cls, "Cystoma, NOS", - PermissibleValue(text="Cystoma, NOS") ) - setattr(cls, "Chondroid chordoma", - PermissibleValue(text="Chondroid chordoma") ) - setattr(cls, "Wolffian duct carcinoma", - PermissibleValue(text="Wolffian duct carcinoma") ) - setattr(cls, "Pheochromocytoma, NOS", - PermissibleValue(text="Pheochromocytoma, NOS") ) - setattr(cls, "Neoplasm, benign", - PermissibleValue(text="Neoplasm, benign") ) - setattr(cls, "L-cell tumor", - PermissibleValue(text="L-cell tumor") ) - setattr(cls, "Malignant tumor, clear cell type", - PermissibleValue(text="Malignant tumor, clear cell type") ) - setattr(cls, "Hydatidiform mole, NOS", - PermissibleValue(text="Hydatidiform mole, NOS") ) - setattr(cls, "Cerebellar sarcoma, NOS", - PermissibleValue(text="Cerebellar sarcoma, NOS") ) - setattr(cls, "Germ cell tumor, NOS", - PermissibleValue(text="Germ cell tumor, NOS") ) - setattr(cls, "Sclerosing rhabdomyosarcoma", - PermissibleValue(text="Sclerosing rhabdomyosarcoma") ) - setattr(cls, "Juxtacortical chondrosarcoma", - PermissibleValue(text="Juxtacortical chondrosarcoma") ) - setattr(cls, "Epithelioid cell nevus", - PermissibleValue(text="Epithelioid cell nevus") ) - setattr(cls, "Inflammatory carcinoma", - PermissibleValue(text="Inflammatory carcinoma") ) - setattr(cls, "Small cell carcinoma, hypercalcemic type", - PermissibleValue(text="Small cell carcinoma, hypercalcemic type", - description="Ovarian Small Cell Carcinoma, Hypercalcemic Type") ) - setattr(cls, "Degenerated schwannoma", - PermissibleValue(text="Degenerated schwannoma") ) - setattr(cls, "Solid carcinoma, NOS", - PermissibleValue(text="Solid carcinoma, NOS") ) - setattr(cls, "Hepatoid yolk sac tumor", - PermissibleValue(text="Hepatoid yolk sac tumor") ) - setattr(cls, "Acute myelogenous leukemia", - PermissibleValue(text="Acute myelogenous leukemia") ) - setattr(cls, "Carcinoma with productive fibrosis", - PermissibleValue(text="Carcinoma with productive fibrosis") ) - setattr(cls, "Chondroblastoma, NOS", - PermissibleValue(text="Chondroblastoma, NOS") ) - setattr(cls, "Desmoplastic melanoma, malignant", - PermissibleValue(text="Desmoplastic melanoma, malignant") ) - setattr(cls, "Goblet cell carcinoid", - PermissibleValue(text="Goblet cell carcinoid") ) - setattr(cls, "Parietal cell adenocarcinoma", - PermissibleValue(text="Parietal cell adenocarcinoma") ) - setattr(cls, "Desmoplastic melanoma, amelanotic", - PermissibleValue(text="Desmoplastic melanoma, amelanotic") ) - setattr(cls, "Cellular ependymoma", - PermissibleValue(text="Cellular ependymoma") ) - setattr(cls, "Bile duct cystadenoma", - PermissibleValue(text="Bile duct cystadenoma") ) - setattr(cls, "Intraductal tubular-papillary neoplasm, high grade", - PermissibleValue(text="Intraductal tubular-papillary neoplasm, high grade") ) - setattr(cls, "Ductal carcinoma in situ, NOS", - PermissibleValue(text="Ductal carcinoma in situ, NOS") ) - setattr(cls, "Osteosarcoma in Paget disease of bone", - PermissibleValue(text="Osteosarcoma in Paget disease of bone") ) - setattr(cls, "Multiple meningiomas", - PermissibleValue(text="Multiple meningiomas") ) - setattr(cls, "Medulloblastoma, SHH-activated and TP53-wildtype", - PermissibleValue(text="Medulloblastoma, SHH-activated and TP53-wildtype") ) - setattr(cls, "Queyrat erythroplasia", - PermissibleValue(text="Queyrat erythroplasia") ) - setattr(cls, "Paraganglioma, malignant", - PermissibleValue(text="Paraganglioma, malignant") ) - setattr(cls, "Serous surface papilloma", - PermissibleValue(text="Serous surface papilloma") ) - setattr(cls, "Localized fibrous tumor", - PermissibleValue(text="Localized fibrous tumor") ) - setattr(cls, "Malignant lymphoma, large B-cell, diffuse, NOS", - PermissibleValue(text="Malignant lymphoma, large B-cell, diffuse, NOS") ) - setattr(cls, "Glucagonoma, malignant", - PermissibleValue(text="Glucagonoma, malignant") ) - setattr(cls, "Epithelioid sarcoma", - PermissibleValue(text="Epithelioid sarcoma") ) - setattr(cls, "Teratoid medulloepithelioma", - PermissibleValue(text="Teratoid medulloepithelioma") ) - setattr(cls, "Subependymal astrocytoma, NOS", - PermissibleValue(text="Subependymal astrocytoma, NOS") ) - setattr(cls, "Alveolar adenoma", - PermissibleValue(text="Alveolar adenoma") ) - setattr(cls, "Schwannoma, NOS", - PermissibleValue(text="Schwannoma, NOS") ) - setattr(cls, "Acute myeloid leukemia with inv(3)(q21q26.2) or t(3;3)(q21;q26.2); RPN1-EVI1", - PermissibleValue(text="Acute myeloid leukemia with inv(3)(q21q26.2) or t(3;3)(q21;q26.2); RPN1-EVI1") ) - setattr(cls, "Ossifying fibroma", - PermissibleValue(text="Ossifying fibroma") ) - setattr(cls, "Adenocarcinoma, cribriform comedo-type", - PermissibleValue(text="Adenocarcinoma, cribriform comedo-type") ) - setattr(cls, "Adamantinoma, malignant", - PermissibleValue(text="Adamantinoma, malignant") ) - setattr(cls, "Squamous intraepithelial neoplasia, high grade", - PermissibleValue(text="Squamous intraepithelial neoplasia, high grade") ) - setattr(cls, "Monomorphic adenoma", - PermissibleValue(text="Monomorphic adenoma") ) - setattr(cls, "FAB M2, AML1(CBF-alpha)/ETO", - PermissibleValue(text="FAB M2, AML1(CBF-alpha)/ETO") ) - setattr(cls, "Pigmented spindle cell nevus of Reed", - PermissibleValue(text="Pigmented spindle cell nevus of Reed") ) - setattr(cls, "Malignant lymphoma, nodular, NOS", - PermissibleValue(text="Malignant lymphoma, nodular, NOS") ) - setattr(cls, "Sweat gland adenoma", - PermissibleValue(text="Sweat gland adenoma") ) - setattr(cls, "Adenofibroma, NOS", - PermissibleValue(text="Adenofibroma, NOS") ) - setattr(cls, "Traditional sessile serrated adenoma", - PermissibleValue(text="Traditional sessile serrated adenoma") ) - setattr(cls, "Basal cell carcinoma, nodular", - PermissibleValue(text="Basal cell carcinoma, nodular") ) - setattr(cls, "Melanoma, malignant, of soft parts", - PermissibleValue(text="Melanoma, malignant, of soft parts") ) - setattr(cls, "Sertoli cell adenoma", - PermissibleValue(text="Sertoli cell adenoma") ) - setattr(cls, "Acute megakaryoblastic leukaemia", - PermissibleValue(text="Acute megakaryoblastic leukaemia") ) - setattr(cls, "Precursor cell lymphoblastic leukemia, not phenotyped", - PermissibleValue(text="Precursor cell lymphoblastic leukemia, not phenotyped") ) - setattr(cls, "Choroid plexus papilloma, NOS", - PermissibleValue(text="Choroid plexus papilloma, NOS") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma, NOS", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma, NOS") ) - setattr(cls, "RAEB II", - PermissibleValue(text="RAEB II") ) - setattr(cls, "Unclassified tumor, borderline malignancy", - PermissibleValue(text="Unclassified tumor, borderline malignancy") ) - setattr(cls, "Pilomatricoma, NOS", - PermissibleValue(text="Pilomatricoma, NOS") ) - setattr(cls, "Primary cutaneous follicle centre lymphoma", - PermissibleValue(text="Primary cutaneous follicle centre lymphoma") ) - setattr(cls, "Granular cell carcinoma", - PermissibleValue(text="Granular cell carcinoma") ) - setattr(cls, "Pituitary adenoma, NOS", - PermissibleValue(text="Pituitary adenoma, NOS") ) - setattr(cls, "Mature teratoma", - PermissibleValue(text="Mature teratoma") ) - setattr(cls, "Pleomorphic xanthoastrocytoma", - PermissibleValue(text="Pleomorphic xanthoastrocytoma") ) - setattr(cls, "Hemangioendothelioma, benign", - PermissibleValue(text="Hemangioendothelioma, benign") ) - setattr(cls, "Islet cell adenomatosis", - PermissibleValue(text="Islet cell adenomatosis") ) - setattr(cls, "Mixed tumor, NOS", - PermissibleValue(text="Mixed tumor, NOS") ) - setattr(cls, "Papillary carcinoma, tall cell", - PermissibleValue(text="Papillary carcinoma, tall cell") ) - setattr(cls, "Giant cell tumor of tendon sheath", - PermissibleValue(text="Giant cell tumor of tendon sheath") ) - setattr(cls, "Proliferating trichilemmal tumor", - PermissibleValue(text="Proliferating trichilemmal tumor") ) - setattr(cls, "Papillary serous cystadenoma, NOS", - PermissibleValue(text="Papillary serous cystadenoma, NOS") ) - setattr(cls, "Melanocytoma, NOS", - PermissibleValue(text="Melanocytoma, NOS") ) - setattr(cls, "Follicular lymphoma, grade 2", - PermissibleValue(text="Follicular lymphoma, grade 2") ) - setattr(cls, "Ossifying fibromyxoid tumor, malignant", - PermissibleValue(text="Ossifying fibromyxoid tumor, malignant") ) - setattr(cls, "Megakaryocytic myelosclerosis", - PermissibleValue(text="Megakaryocytic myelosclerosis") ) - setattr(cls, "Sebaceous carcinoma", - PermissibleValue(text="Sebaceous carcinoma") ) - setattr(cls, "Invasive carcinoma of no special type", - PermissibleValue(text="Invasive carcinoma of no special type") ) - setattr(cls, "Nodular hidradenoma", - PermissibleValue(text="Nodular hidradenoma") ) - setattr(cls, "Thymoma, type AB, malignant", - PermissibleValue(text="Thymoma, type AB, malignant") ) - setattr(cls, "Blastic plasmacytoid dendritic cell neoplasm", - PermissibleValue(text="Blastic plasmacytoid dendritic cell neoplasm") ) - setattr(cls, "Low grade adenosquamous carcinoma", - PermissibleValue(text="Low grade adenosquamous carcinoma") ) - setattr(cls, "Nevus, NOS", - PermissibleValue(text="Nevus, NOS") ) - setattr(cls, "Follicular dendritic cell sarcoma", - PermissibleValue(text="Follicular dendritic cell sarcoma") ) - setattr(cls, "Acute lymphoblastic leukemia, precursor cell type", - PermissibleValue(text="Acute lymphoblastic leukemia, precursor cell type") ) - setattr(cls, "Alveolar adenocarcinoma", - PermissibleValue(text="Alveolar adenocarcinoma") ) - setattr(cls, "Infiltrating papillary adenocarcinoma", - PermissibleValue(text="Infiltrating papillary adenocarcinoma") ) - setattr(cls, "Mixed embryonal carcinoma and teratoma", - PermissibleValue(text="Mixed embryonal carcinoma and teratoma") ) - setattr(cls, "Comedocarcinoma, noninfiltrating", - PermissibleValue(text="Comedocarcinoma, noninfiltrating") ) - setattr(cls, "Diffuse astrocytoma", - PermissibleValue(text="Diffuse astrocytoma") ) - setattr(cls, "Testicular adenoma", - PermissibleValue(text="Testicular adenoma") ) - setattr(cls, "Papillary meningioma", - PermissibleValue(text="Papillary meningioma") ) - setattr(cls, "Juvenile astrocytoma", - PermissibleValue(text="Juvenile astrocytoma") ) - setattr(cls, "Schneiderian carcinoma", - PermissibleValue(text="Schneiderian carcinoma") ) - setattr(cls, "Epithelioma, benign", - PermissibleValue(text="Epithelioma, benign") ) - setattr(cls, "Diffuse leptomeningeal glioneuronal tumor", - PermissibleValue(text="Diffuse leptomeningeal glioneuronal tumor") ) - setattr(cls, "Adrenal cortical adenoma, mixed cell", - PermissibleValue(text="Adrenal cortical adenoma, mixed cell") ) - setattr(cls, "Enteroglucagonoma, malignant", - PermissibleValue(text="Enteroglucagonoma, malignant") ) - setattr(cls, "Mucinous cystic neoplasm with an associated invasive carcinoma", - PermissibleValue(text="Mucinous cystic neoplasm with an associated invasive carcinoma", - description="Bile Duct Cystadenocarcinoma") ) - setattr(cls, "Fascial fibroma", - PermissibleValue(text="Fascial fibroma") ) - setattr(cls, "Malignant lymphoma, lymphocytic, poorly differentiated, diffuse", - PermissibleValue(text="Malignant lymphoma, lymphocytic, poorly differentiated, diffuse") ) - setattr(cls, "Somatostatin cell tumor, malignant", - PermissibleValue(text="Somatostatin cell tumor, malignant") ) - setattr(cls, "Endometrial stromal sarcoma, NOS", - PermissibleValue(text="Endometrial stromal sarcoma, NOS") ) - setattr(cls, "Malignant lymphoma, large cell, noncleaved, diffuse", - PermissibleValue(text="Malignant lymphoma, large cell, noncleaved, diffuse") ) - setattr(cls, "Papillary cystadenoma, borderline malignancy", - PermissibleValue(text="Papillary cystadenoma, borderline malignancy") ) - setattr(cls, "Amelanotic melanoma", - PermissibleValue(text="Amelanotic melanoma") ) - setattr(cls, "Langerhans cell granulomatosis, unifocal", - PermissibleValue(text="Langerhans cell granulomatosis, unifocal") ) - setattr(cls, "Epithelioid leiomyosarcoma", - PermissibleValue(text="Epithelioid leiomyosarcoma") ) - setattr(cls, "Peripheral T-cell lymphoma, pleomorphic medium and large cell", - PermissibleValue(text="Peripheral T-cell lymphoma, pleomorphic medium and large cell") ) - setattr(cls, "Myelodysplastic syndrome with 5q deletion (5q-) syndrome", - PermissibleValue(text="Myelodysplastic syndrome with 5q deletion (5q-) syndrome") ) - setattr(cls, "Endometrioid adenofibroma, borderline malignancy", - PermissibleValue(text="Endometrioid adenofibroma, borderline malignancy") ) - setattr(cls, "Desmoplastic infantile astrocytoma", - PermissibleValue(text="Desmoplastic infantile astrocytoma") ) - setattr(cls, "Serous surface papillary tumor of borderline malignancy", - PermissibleValue(text="Serous surface papillary tumor of borderline malignancy") ) - setattr(cls, "Paget disease and infiltrating duct carcinoma of breast", - PermissibleValue(text="Paget disease and infiltrating duct carcinoma of breast") ) - setattr(cls, "Malignant myoepithelioma", - PermissibleValue(text="Malignant myoepithelioma") ) - setattr(cls, "Sertoli cell tumor with lipid storage", - PermissibleValue(text="Sertoli cell tumor with lipid storage") ) - setattr(cls, "Fibroxanthoma, malignant", - PermissibleValue(text="Fibroxanthoma, malignant") ) - setattr(cls, "Mucoepidermoid carcinoma", - PermissibleValue(text="Mucoepidermoid carcinoma", - description="Mucoepidermoid Carcinoma") ) - setattr(cls, "Invasive mucinous adenocarcinoma", - PermissibleValue(text="Invasive mucinous adenocarcinoma") ) - setattr(cls, "Epithelioid hemangioma", - PermissibleValue(text="Epithelioid hemangioma") ) - setattr(cls, "Dermoid, NOS", - PermissibleValue(text="Dermoid, NOS") ) - setattr(cls, "Seminoma, anaplastic", - PermissibleValue(text="Seminoma, anaplastic") ) - setattr(cls, "Mucocarcinoid tumor", - PermissibleValue(text="Mucocarcinoid tumor") ) - setattr(cls, "Hodgkin lymphoma, nodular sclerosis, NOS", - PermissibleValue(text="Hodgkin lymphoma, nodular sclerosis, NOS") ) - setattr(cls, "Mixed small cell carcinoma", - PermissibleValue(text="Mixed small cell carcinoma") ) - setattr(cls, "Transitional cell papilloma, NOS", - PermissibleValue(text="Transitional cell papilloma, NOS") ) - setattr(cls, "Smooth muscle tumor of uncertain malignant potential", - PermissibleValue(text="Smooth muscle tumor of uncertain malignant potential") ) - setattr(cls, "Malignant giant cell tumor of soft parts", - PermissibleValue(text="Malignant giant cell tumor of soft parts") ) - setattr(cls, "Partial hydatidiform mole", - PermissibleValue(text="Partial hydatidiform mole") ) - setattr(cls, "Squamous intraepithelial neoplasia, grade III", - PermissibleValue(text="Squamous intraepithelial neoplasia, grade III") ) - setattr(cls, "Malignant lymphoma, noncleaved, NOS", - PermissibleValue(text="Malignant lymphoma, noncleaved, NOS") ) - setattr(cls, "Conventional central osteosarcoma", - PermissibleValue(text="Conventional central osteosarcoma") ) - setattr(cls, "Retinoblastoma, spontaneously regressed", - PermissibleValue(text="Retinoblastoma, spontaneously regressed") ) - setattr(cls, "Neuroendocrine carcinoma, well-differentiated", - PermissibleValue(text="Neuroendocrine carcinoma, well-differentiated") ) - setattr(cls, "Primary amyloidosis", - PermissibleValue(text="Primary amyloidosis") ) - setattr(cls, "Serous adenofibroma, NOS", - PermissibleValue(text="Serous adenofibroma, NOS") ) - setattr(cls, "Epithelioid mesothelioma, NOS", - PermissibleValue(text="Epithelioid mesothelioma, NOS") ) - setattr(cls, "T-cell rich large B-cell lymphoma", - PermissibleValue(text="T-cell rich large B-cell lymphoma") ) - setattr(cls, "Myelodysplastic/myeloproliferative neoplasm, unclassifiable", - PermissibleValue(text="Myelodysplastic/myeloproliferative neoplasm, unclassifiable") ) - setattr(cls, "Mucinous cystadenofibroma of borderline malignancy", - PermissibleValue(text="Mucinous cystadenofibroma of borderline malignancy") ) - setattr(cls, "Bronchiolo-alveolar carcinoma, Clara cell", - PermissibleValue(text="Bronchiolo-alveolar carcinoma, Clara cell") ) - setattr(cls, "Mixed acidophil-basophil adenoma", - PermissibleValue(text="Mixed acidophil-basophil adenoma") ) - setattr(cls, "Colloid adenocarcinoma", - PermissibleValue(text="Colloid adenocarcinoma", - description="Lung Mucinous Adenocarcinoma") ) - setattr(cls, "Malignant lymphoma, small cleaved cell, NOS", - PermissibleValue(text="Malignant lymphoma, small cleaved cell, NOS") ) - setattr(cls, "Lentigo maligna melanoma", - PermissibleValue(text="Lentigo maligna melanoma", - description="Lentigo Maligna Melanoma") ) - setattr(cls, "c-ALL", - PermissibleValue(text="c-ALL") ) - setattr(cls, "Neuroendocrine carcinoma, poorly differentiated", - PermissibleValue(text="Neuroendocrine carcinoma, poorly differentiated") ) - setattr(cls, "Idiopathic thrombocythemia", - PermissibleValue(text="Idiopathic thrombocythemia") ) - setattr(cls, "Giant cell sarcoma of bone", - PermissibleValue(text="Giant cell sarcoma of bone") ) - setattr(cls, "Acinar cell carcinoma", - PermissibleValue(text="Acinar cell carcinoma", - description="Acinar Cell Carcinoma") ) - setattr(cls, "Carotid body tumor", - PermissibleValue(text="Carotid body tumor") ) - setattr(cls, "Papillary syringadenoma", - PermissibleValue(text="Papillary syringadenoma") ) - setattr(cls, "Squamous cell carcinoma, large cell, keratinizing", - PermissibleValue(text="Squamous cell carcinoma, large cell, keratinizing") ) - setattr(cls, "Signet ring cell carcinoma", - PermissibleValue(text="Signet ring cell carcinoma") ) - setattr(cls, "Papilloma, NOS", - PermissibleValue(text="Papilloma, NOS") ) - setattr(cls, "Lipoma-like liposarcoma", - PermissibleValue(text="Lipoma-like liposarcoma") ) - setattr(cls, "Chondromatosis, NOS", - PermissibleValue(text="Chondromatosis, NOS") ) - setattr(cls, "Basal cell adenoma", - PermissibleValue(text="Basal cell adenoma") ) - setattr(cls, "Hairy nevus", - PermissibleValue(text="Hairy nevus") ) - setattr(cls, "Perineurioma, NOS", - PermissibleValue(text="Perineurioma, NOS") ) - setattr(cls, "Giant cell tumor of tendon sheath, malignant", - PermissibleValue(text="Giant cell tumor of tendon sheath, malignant") ) - setattr(cls, "Atypical proliferating serous tumor", - PermissibleValue(text="Atypical proliferating serous tumor") ) - setattr(cls, "Rodent ulcer", - PermissibleValue(text="Rodent ulcer") ) - setattr(cls, "Primary cutaneous neuroendocrine carcinoma", - PermissibleValue(text="Primary cutaneous neuroendocrine carcinoma") ) - setattr(cls, "Neuroendocrine carcinoma, moderately differentiated", - PermissibleValue(text="Neuroendocrine carcinoma, moderately differentiated") ) - setattr(cls, "Carcinoid tumor, argentaffin, NOS", - PermissibleValue(text="Carcinoid tumor, argentaffin, NOS") ) - setattr(cls, "Basophil carcinoma", - PermissibleValue(text="Basophil carcinoma") ) - setattr(cls, "Chondroblastoma, malignant", - PermissibleValue(text="Chondroblastoma, malignant") ) - setattr(cls, "Adenocarcinoma in tubular adenoma", - PermissibleValue(text="Adenocarcinoma in tubular adenoma") ) - setattr(cls, "Achromic nevus", - PermissibleValue(text="Achromic nevus") ) - setattr(cls, "Intraductal and lobular carcinoma", - PermissibleValue(text="Intraductal and lobular carcinoma") ) - setattr(cls, "Hodgkin disease, lymphocyte predominance, NOS", - PermissibleValue(text="Hodgkin disease, lymphocyte predominance, NOS") ) - setattr(cls, "Diffuse melanocytosis", - PermissibleValue(text="Diffuse melanocytosis") ) - setattr(cls, "Renal cell adenocarcinoma", - PermissibleValue(text="Renal cell adenocarcinoma") ) - setattr(cls, "Squamous cell carcinoma, microinvasive", - PermissibleValue(text="Squamous cell carcinoma, microinvasive") ) - setattr(cls, "Mucin-producing adenocarcinoma", - PermissibleValue(text="Mucin-producing adenocarcinoma") ) - setattr(cls, "Scirrhous carcinoma", - PermissibleValue(text="Scirrhous carcinoma") ) - setattr(cls, "Mesothelioma, malignant", - PermissibleValue(text="Mesothelioma, malignant") ) - setattr(cls, "Carcinoid tumor, NOS", - PermissibleValue(text="Carcinoid tumor, NOS") ) - setattr(cls, "Gastrointestinal autonomic nerve tumor", - PermissibleValue(text="Gastrointestinal autonomic nerve tumor") ) - setattr(cls, "Mixed pancreatic endocrine and exocrine tumor, malignant", - PermissibleValue(text="Mixed pancreatic endocrine and exocrine tumor, malignant") ) - setattr(cls, "Olfactory neurocytoma", - PermissibleValue(text="Olfactory neurocytoma") ) - setattr(cls, "Pleomorphic adenoma", - PermissibleValue(text="Pleomorphic adenoma") ) - setattr(cls, "Enteric adenocarcinoma", - PermissibleValue(text="Enteric adenocarcinoma", - description="Lung Enteric Adenocarcinoma") ) - setattr(cls, "Melanotic psammomatous MPNST", - PermissibleValue(text="Melanotic psammomatous MPNST") ) - setattr(cls, "Olfactory neurogenic tumor", - PermissibleValue(text="Olfactory neurogenic tumor") ) - setattr(cls, "Thymoma, benign", - PermissibleValue(text="Thymoma, benign") ) - setattr(cls, "Malignant lymphoma, noncleaved, diffuse, NOS", - PermissibleValue(text="Malignant lymphoma, noncleaved, diffuse, NOS") ) - setattr(cls, "Solitary plasmacytoma", - PermissibleValue(text="Solitary plasmacytoma") ) - setattr(cls, "Jugulotympanic paraganglioma", - PermissibleValue(text="Jugulotympanic paraganglioma") ) - setattr(cls, "Androblastoma, NOS", - PermissibleValue(text="Androblastoma, NOS") ) - setattr(cls, "Adenocarcinoma with cartilaginous metaplasia", - PermissibleValue(text="Adenocarcinoma with cartilaginous metaplasia") ) - setattr(cls, "Junction nevus", - PermissibleValue(text="Junction nevus") ) - setattr(cls, "Mesenchymoma, malignant", - PermissibleValue(text="Mesenchymoma, malignant") ) - setattr(cls, "Urothelial carcinoma with trophoblastic differentiation", - PermissibleValue(text="Urothelial carcinoma with trophoblastic differentiation") ) - setattr(cls, "Metaplastic carcinoma with chondroid differentiation", - PermissibleValue(text="Metaplastic carcinoma with chondroid differentiation") ) - setattr(cls, "Papillary urothelial carcinoma", - PermissibleValue(text="Papillary urothelial carcinoma") ) - setattr(cls, "Melanotic neuroectodermal tumor", - PermissibleValue(text="Melanotic neuroectodermal tumor") ) - setattr(cls, "Nonpigmented nevus", - PermissibleValue(text="Nonpigmented nevus") ) - setattr(cls, "Seminoma, NOS", - PermissibleValue(text="Seminoma, NOS") ) - setattr(cls, "Intraepidermal carcinoma, NOS", - PermissibleValue(text="Intraepidermal carcinoma, NOS") ) - setattr(cls, "Lymphangioma, NOS", - PermissibleValue(text="Lymphangioma, NOS") ) - setattr(cls, "Carcinoma, anaplastic, NOS", - PermissibleValue(text="Carcinoma, anaplastic, NOS") ) - setattr(cls, "Classical Hodgkin lymphoma, nodular sclerosis, grade 2", - PermissibleValue(text="Classical Hodgkin lymphoma, nodular sclerosis, grade 2") ) - setattr(cls, "LCIS, NOS", - PermissibleValue(text="LCIS, NOS") ) - setattr(cls, "Biphenotypic sinonasal sarcoma", - PermissibleValue(text="Biphenotypic sinonasal sarcoma", - description="Biphenotypic Sinonasal Sarcoma") ) - setattr(cls, "Meningothelial sarcoma", - PermissibleValue(text="Meningothelial sarcoma") ) - setattr(cls, "Hurthle cell adenocarcinoma", - PermissibleValue(text="Hurthle cell adenocarcinoma") ) - setattr(cls, "Pancreatic microadenoma", - PermissibleValue(text="Pancreatic microadenoma") ) - setattr(cls, "Carcinoma in adenomatous polyp", - PermissibleValue(text="Carcinoma in adenomatous polyp") ) - setattr(cls, "Basaloid carcinoma", - PermissibleValue(text="Basaloid carcinoma") ) - setattr(cls, "Squamous cell carcinoma, large cell, nonkeratinizing, NOS", - PermissibleValue(text="Squamous cell carcinoma, large cell, nonkeratinizing, NOS") ) - setattr(cls, "Ameloblastoma, malignant", - PermissibleValue(text="Ameloblastoma, malignant") ) - setattr(cls, "Synovioma, malignant", - PermissibleValue(text="Synovioma, malignant") ) - setattr(cls, "Monocytic leukemia, NOS", - PermissibleValue(text="Monocytic leukemia, NOS") ) - setattr(cls, "Acute myeloid leukemia, t(15:17)(g22;q11-12)", - PermissibleValue(text="Acute myeloid leukemia, t(15:17)(g22;q11-12)") ) - setattr(cls, "Fascial fibrosarcoma", - PermissibleValue(text="Fascial fibrosarcoma") ) - setattr(cls, "Adenocarcinoma of rete ovarii", - PermissibleValue(text="Adenocarcinoma of rete ovarii") ) - setattr(cls, "Sertoli-Leydig cell tumor, well differentiated", - PermissibleValue(text="Sertoli-Leydig cell tumor, well differentiated") ) - setattr(cls, "AIN III", - PermissibleValue(text="AIN III") ) - setattr(cls, "Small cell carcinoma, fusiform cell", - PermissibleValue(text="Small cell carcinoma, fusiform cell") ) - setattr(cls, "Thymoma, lymphocytic, NOS", - PermissibleValue(text="Thymoma, lymphocytic, NOS") ) - setattr(cls, "Malignant teratoma, anaplastic", - PermissibleValue(text="Malignant teratoma, anaplastic") ) - setattr(cls, "Granulosa cell tumor, NOS", - PermissibleValue(text="Granulosa cell tumor, NOS") ) - setattr(cls, "Acute myelosclerosis, NOS", - PermissibleValue(text="Acute myelosclerosis, NOS") ) - setattr(cls, "Thymoma, organoid, NOS", - PermissibleValue(text="Thymoma, organoid, NOS") ) - setattr(cls, "Splenic marginal zone B-cell lymphoma", - PermissibleValue(text="Splenic marginal zone B-cell lymphoma") ) - setattr(cls, "Bednar tumor", - PermissibleValue(text="Bednar tumor") ) - setattr(cls, "Intermediate and giant congenital nevus", - PermissibleValue(text="Intermediate and giant congenital nevus") ) - setattr(cls, "Minimally invasive adenocarcinoma, non-mucinous", - PermissibleValue(text="Minimally invasive adenocarcinoma, non-mucinous") ) - setattr(cls, "Adenocarcinoma in situ, non-mucinous", - PermissibleValue(text="Adenocarcinoma in situ, non-mucinous") ) - setattr(cls, "Primary cutaneous CD30+ large T-cell lymphoma", - PermissibleValue(text="Primary cutaneous CD30+ large T-cell lymphoma") ) - setattr(cls, "Gastrin cell tumor", - PermissibleValue(text="Gastrin cell tumor") ) - setattr(cls, "Urothelial carcinoma, NOS", - PermissibleValue(text="Urothelial carcinoma, NOS") ) - setattr(cls, "Hepatocellular carcinoma, scirrhous", - PermissibleValue(text="Hepatocellular carcinoma, scirrhous") ) - setattr(cls, "Serous cystadenoma, NOS", - PermissibleValue(text="Serous cystadenoma, NOS") ) - setattr(cls, "Fibroepithelioma, NOS", - PermissibleValue(text="Fibroepithelioma, NOS") ) - setattr(cls, "Atypical meningioma", - PermissibleValue(text="Atypical meningioma") ) - setattr(cls, "Reticulosarcoma, NOS", - PermissibleValue(text="Reticulosarcoma, NOS") ) - setattr(cls, "Cutaneous T-cell lymphoma, NOS", - PermissibleValue(text="Cutaneous T-cell lymphoma, NOS") ) - setattr(cls, "Grawitz tumor", - PermissibleValue(text="Grawitz tumor") ) - setattr(cls, "Metaplastic carcinoma, NOS", - PermissibleValue(text="Metaplastic carcinoma, NOS") ) - setattr(cls, "Malignant lymphoma, large cell, follicular, NOS", - PermissibleValue(text="Malignant lymphoma, large cell, follicular, NOS") ) - setattr(cls, "Sertoli-Leydig cell tumor, sarcomatoid", - PermissibleValue(text="Sertoli-Leydig cell tumor, sarcomatoid") ) - setattr(cls, "Cavernous lymphangioma", - PermissibleValue(text="Cavernous lymphangioma") ) - setattr(cls, "Malignant mucinous cystadenofibroma", - PermissibleValue(text="Malignant mucinous cystadenofibroma") ) - setattr(cls, "Malignant lymphoma, centroblasticcentrocytic, follicular", - PermissibleValue(text="Malignant lymphoma, centroblasticcentrocytic, follicular") ) - setattr(cls, "Adnexal tumor, benign", - PermissibleValue(text="Adnexal tumor, benign") ) - setattr(cls, "Malignant schwannoma with rhabdomyoblastic differentiation", - PermissibleValue(text="Malignant schwannoma with rhabdomyoblastic differentiation") ) - setattr(cls, "Meningioma, anaplastic", - PermissibleValue(text="Meningioma, anaplastic") ) - setattr(cls, "Chronic granulocytic leukemia, BCR/ABL", - PermissibleValue(text="Chronic granulocytic leukemia, BCR/ABL") ) - setattr(cls, "Mucinous cystic tumor with high-grade dysplasia", - PermissibleValue(text="Mucinous cystic tumor with high-grade dysplasia") ) - setattr(cls, "Eccrine dermal cylindroma", - PermissibleValue(text="Eccrine dermal cylindroma") ) - setattr(cls, "Granular cell tumor, malignant", - PermissibleValue(text="Granular cell tumor, malignant") ) - setattr(cls, "Sarcomatosis, NOS", - PermissibleValue(text="Sarcomatosis, NOS") ) - setattr(cls, "Thymoma, mixed type, malignant", - PermissibleValue(text="Thymoma, mixed type, malignant") ) - setattr(cls, "Intraductal carcinoma, noninfiltrating, NOS", - PermissibleValue(text="Intraductal carcinoma, noninfiltrating, NOS") ) - setattr(cls, "Atypical medullary carcinoma", - PermissibleValue(text="Atypical medullary carcinoma") ) - setattr(cls, "Chronic idiopathic myelofibrosis", - PermissibleValue(text="Chronic idiopathic myelofibrosis") ) - setattr(cls, "Secondary carcinoma", - PermissibleValue(text="Secondary carcinoma") ) - setattr(cls, "Serous cystadenoma, borderline malignancy", - PermissibleValue(text="Serous cystadenoma, borderline malignancy") ) - setattr(cls, "Primary diffuse large B-cell lymphoma of the CNS", - PermissibleValue(text="Primary diffuse large B-cell lymphoma of the CNS") ) - setattr(cls, "Malignant lymphoma, lymphocytic, intermediate differentiation, diffuse", - PermissibleValue(text="Malignant lymphoma, lymphocytic, intermediate differentiation, diffuse") ) - setattr(cls, "Acinic cell adenoma", - PermissibleValue(text="Acinic cell adenoma") ) - setattr(cls, "Struma ovarii, NOS", - PermissibleValue(text="Struma ovarii, NOS") ) - setattr(cls, "Mycosis fungoides", - PermissibleValue(text="Mycosis fungoides") ) - setattr(cls, "Endometrioid tumor of low malignant potential", - PermissibleValue(text="Endometrioid tumor of low malignant potential") ) - setattr(cls, "Chronic myeloid leukemia, NOS", - PermissibleValue(text="Chronic myeloid leukemia, NOS") ) - setattr(cls, "Primary cutaneous CD30+ T-cell lymphoproliferative disorder", - PermissibleValue(text="Primary cutaneous CD30+ T-cell lymphoproliferative disorder") ) - setattr(cls, "Cellular fibroma", - PermissibleValue(text="Cellular fibroma") ) - setattr(cls, "Thymoma, type C", - PermissibleValue(text="Thymoma, type C") ) - setattr(cls, "FAB M7", - PermissibleValue(text="FAB M7") ) - setattr(cls, "Meningioma, malignant", - PermissibleValue(text="Meningioma, malignant") ) - setattr(cls, "Large cell calcifying Sertoli cell tumor", - PermissibleValue(text="Large cell calcifying Sertoli cell tumor") ) - setattr(cls, "Kaposiform hemangioendothelioma", - PermissibleValue(text="Kaposiform hemangioendothelioma") ) - setattr(cls, "Clear cell cystadenofibroma of borderline malignancy", - PermissibleValue(text="Clear cell cystadenofibroma of borderline malignancy") ) - setattr(cls, "NUT carcinoma", - PermissibleValue(text="NUT carcinoma", - description="NUT Carcinoma") ) - setattr(cls, "Cystic mesothelioma, benign", - PermissibleValue(text="Cystic mesothelioma, benign") ) - setattr(cls, "Papillary mucinous cystadenoma, borderline malignancy", - PermissibleValue(text="Papillary mucinous cystadenoma, borderline malignancy") ) - setattr(cls, "Malignant rhabdoid tumor", - PermissibleValue(text="Malignant rhabdoid tumor") ) - setattr(cls, "Malignant lymphoma, follicle center, follicular", - PermissibleValue(text="Malignant lymphoma, follicle center, follicular") ) - setattr(cls, "Serous adenocarcinofibroma", - PermissibleValue(text="Serous adenocarcinofibroma") ) - setattr(cls, "Non-Hodgkin lymphoma, NOS", - PermissibleValue(text="Non-Hodgkin lymphoma, NOS") ) - setattr(cls, "Fetal lipoma, NOS", - PermissibleValue(text="Fetal lipoma, NOS") ) - setattr(cls, "Papillotubular adenocarcinoma", - PermissibleValue(text="Papillotubular adenocarcinoma") ) - setattr(cls, "Combined carcinoid and adenocarcinoma", - PermissibleValue(text="Combined carcinoid and adenocarcinoma") ) - setattr(cls, "Malignant melanoma in junctional nevus", - PermissibleValue(text="Malignant melanoma in junctional nevus") ) - setattr(cls, "Langerhans cell histiocytosis, unifocal", - PermissibleValue(text="Langerhans cell histiocytosis, unifocal") ) - setattr(cls, "Squamous cell carcinoma, adenoid", - PermissibleValue(text="Squamous cell carcinoma, adenoid") ) - setattr(cls, "Renal carcinoma, collecting duct type", - PermissibleValue(text="Renal carcinoma, collecting duct type") ) - setattr(cls, "Islet cell tumor, benign", - PermissibleValue(text="Islet cell tumor, benign") ) - setattr(cls, "Ovarian stromal tumor", - PermissibleValue(text="Ovarian stromal tumor") ) - setattr(cls, "BALT lymphoma", - PermissibleValue(text="BALT lymphoma") ) - setattr(cls, "Retinoblastoma, diffuse", - PermissibleValue(text="Retinoblastoma, diffuse") ) - setattr(cls, "Transitional papilloma, inverted, benign", - PermissibleValue(text="Transitional papilloma, inverted, benign") ) - setattr(cls, "Urachal carcinoma", - PermissibleValue(text="Urachal carcinoma") ) - setattr(cls, "Mesothelioma, benign", - PermissibleValue(text="Mesothelioma, benign") ) - setattr(cls, "Epidermoid carcinoma in situ with questionable stromal invasion", - PermissibleValue(text="Epidermoid carcinoma in situ with questionable stromal invasion") ) - setattr(cls, "Verrucous carcinoma, NOS", - PermissibleValue(text="Verrucous carcinoma, NOS") ) - setattr(cls, "Leydig cell tumor, benign", - PermissibleValue(text="Leydig cell tumor, benign") ) - setattr(cls, "Thymoma, epithelial, malignant", - PermissibleValue(text="Thymoma, epithelial, malignant") ) - setattr(cls, "Mucous adenocarcinoma", - PermissibleValue(text="Mucous adenocarcinoma") ) - setattr(cls, "Epithelioid cell sarcoma", - PermissibleValue(text="Epithelioid cell sarcoma") ) - setattr(cls, "Leydig cell tumor, malignant", - PermissibleValue(text="Leydig cell tumor, malignant") ) - setattr(cls, "Sclerosing hepatic carcinoma", - PermissibleValue(text="Sclerosing hepatic carcinoma") ) - setattr(cls, "Urothelial carcinoma with squamous differentiation", - PermissibleValue(text="Urothelial carcinoma with squamous differentiation") ) - setattr(cls, "Perineurioma, malignant", - PermissibleValue(text="Perineurioma, malignant") ) - setattr(cls, "Plexiform hemangioma", - PermissibleValue(text="Plexiform hemangioma") ) - setattr(cls, "Olfactory neuroepithelioma", - PermissibleValue(text="Olfactory neuroepithelioma") ) - setattr(cls, "Intracystic papillary neoplasm with high grade intraepithelial neoplasia", - PermissibleValue(text="Intracystic papillary neoplasm with high grade intraepithelial neoplasia") ) - setattr(cls, "Melanotic MPNST", - PermissibleValue(text="Melanotic MPNST") ) - setattr(cls, "Mixed endocrine and exocrine adenocarcinoma", - PermissibleValue(text="Mixed endocrine and exocrine adenocarcinoma") ) - setattr(cls, "Pilomatrixoma, NOS", - PermissibleValue(text="Pilomatrixoma, NOS") ) - setattr(cls, "Colloid adenoma", - PermissibleValue(text="Colloid adenoma") ) - setattr(cls, "Mixed invasive mucinous and non-mucinous adenocarcinoma", - PermissibleValue(text="Mixed invasive mucinous and non-mucinous adenocarcinoma") ) - setattr(cls, "Pulmonary artery intimal sarcoma", - PermissibleValue(text="Pulmonary artery intimal sarcoma") ) - setattr(cls, "Intramuscular hemangioma", - PermissibleValue(text="Intramuscular hemangioma") ) - setattr(cls, "Lipid-rich urothelial carcinoma", - PermissibleValue(text="Lipid-rich urothelial carcinoma") ) - setattr(cls, "Mixed germ cell tumor", - PermissibleValue(text="Mixed germ cell tumor") ) - setattr(cls, "Psammomatous schwannoma", - PermissibleValue(text="Psammomatous schwannoma") ) - setattr(cls, "Synovioma, benign", - PermissibleValue(text="Synovioma, benign") ) - setattr(cls, "High-grade serous carcinoma", - PermissibleValue(text="High-grade serous carcinoma") ) - setattr(cls, "Bronchiolo-alveolar carcinoma, NOS", - PermissibleValue(text="Bronchiolo-alveolar carcinoma, NOS") ) - setattr(cls, "Triton tumor, malignant", - PermissibleValue(text="Triton tumor, malignant") ) - setattr(cls, "Malignant histiocytosis", - PermissibleValue(text="Malignant histiocytosis") ) - setattr(cls, "B cell lymphoma, NOS", - PermissibleValue(text="B cell lymphoma, NOS") ) - setattr(cls, "Papillary epidermoid carcinoma", - PermissibleValue(text="Papillary epidermoid carcinoma") ) - setattr(cls, "Embryonal carcinoma, NOS", - PermissibleValue(text="Embryonal carcinoma, NOS") ) - setattr(cls, "Plasma cell myeloma", - PermissibleValue(text="Plasma cell myeloma") ) - setattr(cls, "Fibromatosis-like metaplastic carcinoma", - PermissibleValue(text="Fibromatosis-like metaplastic carcinoma") ) - setattr(cls, "Multiple neurofibromatosis", - PermissibleValue(text="Multiple neurofibromatosis") ) - setattr(cls, "Round cell carcinoma", - PermissibleValue(text="Round cell carcinoma") ) - setattr(cls, "Aleukemic lymphocytic leukemia", - PermissibleValue(text="Aleukemic lymphocytic leukemia") ) - setattr(cls, "Jadassohn blue nevus", - PermissibleValue(text="Jadassohn blue nevus") ) - setattr(cls, "Infiltrating duct and mucinous carcinoma", - PermissibleValue(text="Infiltrating duct and mucinous carcinoma") ) - setattr(cls, "Turban tumor", - PermissibleValue(text="Turban tumor") ) - setattr(cls, "Adult rhabdomyoma", - PermissibleValue(text="Adult rhabdomyoma") ) - setattr(cls, "Lymphoid leukemia, NOS", - PermissibleValue(text="Lymphoid leukemia, NOS") ) - setattr(cls, "B-cell lymphoma, unclassifiable, with features intermediate between diffuse large B-cell lymphoma and classical Hodgkin lymphoma", - PermissibleValue(text="B-cell lymphoma, unclassifiable, with features intermediate between diffuse large B-cell lymphoma and classical Hodgkin lymphoma") ) - setattr(cls, "Multicentric basal cell carcinoma", - PermissibleValue(text="Multicentric basal cell carcinoma") ) - setattr(cls, "Mixed phenotype acute leukemia with t(9;22)(q34;q11.2); BCR-ABL1", - PermissibleValue(text="Mixed phenotype acute leukemia with t(9;22)(q34;q11.2); BCR-ABL1") ) - setattr(cls, "Duct carcinoma, desmoplastic type", - PermissibleValue(text="Duct carcinoma, desmoplastic type") ) - setattr(cls, "Langerhans cell histiocytosis, mono-ostotic", - PermissibleValue(text="Langerhans cell histiocytosis, mono-ostotic") ) - setattr(cls, "Malignant lymphoma, small lymphocytic, NOS", - PermissibleValue(text="Malignant lymphoma, small lymphocytic, NOS") ) - setattr(cls, "Adenocarcinoid tumor", - PermissibleValue(text="Adenocarcinoid tumor") ) - setattr(cls, "Small cell neuroendocrine carcinoma", - PermissibleValue(text="Small cell neuroendocrine carcinoma", - description="Colorectal Small Cell Neuroendocrine Carcinoma") ) - setattr(cls, "Cylindrical cell carcinoma", - PermissibleValue(text="Cylindrical cell carcinoma") ) - setattr(cls, "Adenocarcinoma, endocervical type", - PermissibleValue(text="Adenocarcinoma, endocervical type") ) - setattr(cls, "Odontogenic myxofibroma", - PermissibleValue(text="Odontogenic myxofibroma") ) - setattr(cls, "Apocrine adenoma", - PermissibleValue(text="Apocrine adenoma") ) - setattr(cls, "Acute leukemia, Burkitt type", - PermissibleValue(text="Acute leukemia, Burkitt type") ) - setattr(cls, "Common precursor B ALL", - PermissibleValue(text="Common precursor B ALL") ) - setattr(cls, "Mixed phenotype acute leukemia, B/myeloid, NOS", - PermissibleValue(text="Mixed phenotype acute leukemia, B/myeloid, NOS") ) - setattr(cls, "Basal cell carcinoma, desmoplastic type", - PermissibleValue(text="Basal cell carcinoma, desmoplastic type") ) - setattr(cls, "Telangiectatic osteosarcoma", - PermissibleValue(text="Telangiectatic osteosarcoma") ) - setattr(cls, "Mucinous cystic tumor with an associated invasive carcinoma", - PermissibleValue(text="Mucinous cystic tumor with an associated invasive carcinoma") ) - setattr(cls, "Subacute leukemia, NOS", - PermissibleValue(text="Subacute leukemia, NOS") ) - setattr(cls, "Differentiated-type vulvar intraepithelial neoplasia", - PermissibleValue(text="Differentiated-type vulvar intraepithelial neoplasia") ) - setattr(cls, "Adenomatoid tumor, NOS", - PermissibleValue(text="Adenomatoid tumor, NOS") ) - setattr(cls, "Fibrous astrocytoma", - PermissibleValue(text="Fibrous astrocytoma") ) - setattr(cls, "Central odontogenic fibroma", - PermissibleValue(text="Central odontogenic fibroma") ) - setattr(cls, "Thymoma, type AB, NOS", - PermissibleValue(text="Thymoma, type AB, NOS") ) - setattr(cls, "Periductal stromal tumor, low grade", - PermissibleValue(text="Periductal stromal tumor, low grade") ) - setattr(cls, "Glucagonoma, NOS", - PermissibleValue(text="Glucagonoma, NOS") ) - setattr(cls, "Fibroma, NOS", - PermissibleValue(text="Fibroma, NOS") ) - setattr(cls, "Serrated adenoma", - PermissibleValue(text="Serrated adenoma") ) - setattr(cls, "Water-clear cell adenocarcinoma", - PermissibleValue(text="Water-clear cell adenocarcinoma") ) - setattr(cls, "Cystic hypersecretory carcinoma", - PermissibleValue(text="Cystic hypersecretory carcinoma") ) - setattr(cls, "Ductal carcinoma in situ, comedo type", - PermissibleValue(text="Ductal carcinoma in situ, comedo type") ) - setattr(cls, "Combined small cell-adenocarcinoma", - PermissibleValue(text="Combined small cell-adenocarcinoma") ) - setattr(cls, "Leptomeningeal sarcoma", - PermissibleValue(text="Leptomeningeal sarcoma") ) - setattr(cls, "Perineural MPNST", - PermissibleValue(text="Perineural MPNST") ) - setattr(cls, "Tumor, NOS", - PermissibleValue(text="Tumor, NOS") ) - setattr(cls, "MPNST with glandular differentiation", - PermissibleValue(text="MPNST with glandular differentiation") ) - setattr(cls, "Dermoid cyst, NOS", - PermissibleValue(text="Dermoid cyst, NOS") ) - setattr(cls, "Giant cell sarcoma", - PermissibleValue(text="Giant cell sarcoma") ) - setattr(cls, "Urothelial carcinoma with divergent differentiation", - PermissibleValue(text="Urothelial carcinoma with divergent differentiation") ) - setattr(cls, "Juvenile chronic myelomonocytic leukemia", - PermissibleValue(text="Juvenile chronic myelomonocytic leukemia") ) - setattr(cls, "Hodgkin lymphoma, nodular lymphocyte predominance", - PermissibleValue(text="Hodgkin lymphoma, nodular lymphocyte predominance") ) - setattr(cls, "Adenocarcinoma in multiple adenomatous polyps", - PermissibleValue(text="Adenocarcinoma in multiple adenomatous polyps") ) - setattr(cls, "Chromaffin tumor", - PermissibleValue(text="Chromaffin tumor") ) - setattr(cls, "Carcinoma showing thymus-like element", - PermissibleValue(text="Carcinoma showing thymus-like element") ) - setattr(cls, "Glandular intraepithelial neoplasia, high grade", - PermissibleValue(text="Glandular intraepithelial neoplasia, high grade") ) - setattr(cls, "Verrucous papilloma", - PermissibleValue(text="Verrucous papilloma") ) - setattr(cls, "Brooke tumor", - PermissibleValue(text="Brooke tumor") ) - setattr(cls, "Therapy-related acute myeloid leukemia, alkylating agent related", - PermissibleValue(text="Therapy-related acute myeloid leukemia, alkylating agent related") ) - setattr(cls, "Adenocarcinoma combined with other types of carcinoma", - PermissibleValue(text="Adenocarcinoma combined with other types of carcinoma") ) - setattr(cls, "Osteoid osteoma, NOS", - PermissibleValue(text="Osteoid osteoma, NOS") ) - setattr(cls, "Minimally invasive adenocarcinoma, mucinous", - PermissibleValue(text="Minimally invasive adenocarcinoma, mucinous", - description="Mucinous Bronchioloalveolar Carcinoma") ) - setattr(cls, "Stromal endometriosis", - PermissibleValue(text="Stromal endometriosis") ) - setattr(cls, "Chromaffin paraganglioma", - PermissibleValue(text="Chromaffin paraganglioma") ) - setattr(cls, "FAB M2, NOS", - PermissibleValue(text="FAB M2, NOS") ) - setattr(cls, "Hypereosinophilic syndrome", - PermissibleValue(text="Hypereosinophilic syndrome") ) - setattr(cls, "Polymorphic post transplant lymphoproliferative disorder", - PermissibleValue(text="Polymorphic post transplant lymphoproliferative disorder") ) - setattr(cls, "Leukemic reticuloendotheliosis", - PermissibleValue(text="Leukemic reticuloendotheliosis") ) - setattr(cls, "Rhabdoid tumor, NOS", - PermissibleValue(text="Rhabdoid tumor, NOS") ) - setattr(cls, "Plexiform leiomyoma", - PermissibleValue(text="Plexiform leiomyoma") ) - setattr(cls, "Hodgkin disease, nodular sclerosis, syncytial variant", - PermissibleValue(text="Hodgkin disease, nodular sclerosis, syncytial variant") ) - setattr(cls, "Adult T-cell lymphoma", - PermissibleValue(text="Adult T-cell lymphoma") ) - setattr(cls, "Granular cell adenocarcinoma", - PermissibleValue(text="Granular cell adenocarcinoma") ) - setattr(cls, "Papillary serous cystadenoma, borderline malignancy", - PermissibleValue(text="Papillary serous cystadenoma, borderline malignancy") ) - setattr(cls, "Undifferentiated leukaemia", - PermissibleValue(text="Undifferentiated leukaemia") ) - setattr(cls, "Cervical intraepithelial neoplasia, grade III", - PermissibleValue(text="Cervical intraepithelial neoplasia, grade III") ) - setattr(cls, "Intestinal T-cell lymphoma", - PermissibleValue(text="Intestinal T-cell lymphoma") ) - setattr(cls, "Intraosseous low grade osteosarcoma", - PermissibleValue(text="Intraosseous low grade osteosarcoma") ) - setattr(cls, "Acute myeloid leukemia, NOS", - PermissibleValue(text="Acute myeloid leukemia, NOS") ) - setattr(cls, "Malignant lymphoma, diffuse, NOS", - PermissibleValue(text="Malignant lymphoma, diffuse, NOS") ) - setattr(cls, "Myelomonocytic leukemia, NOS", - PermissibleValue(text="Myelomonocytic leukemia, NOS") ) - setattr(cls, "Mixed type rhabdomyosarcoma", - PermissibleValue(text="Mixed type rhabdomyosarcoma") ) - setattr(cls, "Classical Hodgkin lymphoma, lymphocyte depletion, reticular", - PermissibleValue(text="Classical Hodgkin lymphoma, lymphocyte depletion, reticular") ) - setattr(cls, "Pacinian tumor", - PermissibleValue(text="Pacinian tumor") ) - setattr(cls, "Chorioadenoma destruens", - PermissibleValue(text="Chorioadenoma destruens") ) - setattr(cls, "Dermoid cyst with secondary tumor", - PermissibleValue(text="Dermoid cyst with secondary tumor") ) - setattr(cls, "Canalicular adenoma", - PermissibleValue(text="Canalicular adenoma") ) - setattr(cls, "Post transplant lymphoproliferative disorder, NOS", - PermissibleValue(text="Post transplant lymphoproliferative disorder, NOS") ) - setattr(cls, "Myelofibrosis as a result of myeloproliferative disease", - PermissibleValue(text="Myelofibrosis as a result of myeloproliferative disease") ) - setattr(cls, "Struma ovarii and carcinoid", - PermissibleValue(text="Struma ovarii and carcinoid") ) - setattr(cls, "Reticulum cell sarcoma, diffuse", - PermissibleValue(text="Reticulum cell sarcoma, diffuse") ) - setattr(cls, "Refractory cytopenia of childhood", - PermissibleValue(text="Refractory cytopenia of childhood") ) - setattr(cls, "Tubular adenocarcinoma", - PermissibleValue(text="Tubular adenocarcinoma") ) - setattr(cls, "Neoplasm, malignant", - PermissibleValue(text="Neoplasm, malignant") ) - setattr(cls, "Atypical proliferative endometrioid tumor", - PermissibleValue(text="Atypical proliferative endometrioid tumor") ) - setattr(cls, "Malignant hydatidiform mole", - PermissibleValue(text="Malignant hydatidiform mole") ) - setattr(cls, "Extraosseous plasmacytoma", - PermissibleValue(text="Extraosseous plasmacytoma") ) - setattr(cls, "Papillary transitional cell carcinoma", - PermissibleValue(text="Papillary transitional cell carcinoma") ) - setattr(cls, "Chordoid glioma", - PermissibleValue(text="Chordoid glioma") ) - setattr(cls, "FAB MO", - PermissibleValue(text="FAB MO") ) - setattr(cls, "Acute progressive histiocytosis X", - PermissibleValue(text="Acute progressive histiocytosis X") ) - setattr(cls, "Somatostatin cell tumor, NOS", - PermissibleValue(text="Somatostatin cell tumor, NOS") ) - setattr(cls, "Malignant lymphoma, mixed small cleaved and large cell, follicular", - PermissibleValue(text="Malignant lymphoma, mixed small cleaved and large cell, follicular") ) - setattr(cls, "Sebaceous adenoma", - PermissibleValue(text="Sebaceous adenoma") ) - setattr(cls, "Sclerosing sweat duct carcinoma", - PermissibleValue(text="Sclerosing sweat duct carcinoma") ) - setattr(cls, "Hepatosplenic T-cell lymphoma", - PermissibleValue(text="Hepatosplenic T-cell lymphoma") ) - setattr(cls, "Adrenal cortical adenoma, compact cell", - PermissibleValue(text="Adrenal cortical adenoma, compact cell") ) - setattr(cls, "Hemangioendothelioma, NOS", - PermissibleValue(text="Hemangioendothelioma, NOS") ) - setattr(cls, "Lepidic adenocarcinoma", - PermissibleValue(text="Lepidic adenocarcinoma") ) - setattr(cls, "Large cell neuroendocrine carcinoma", - PermissibleValue(text="Large cell neuroendocrine carcinoma") ) - setattr(cls, "Leiomyomatosis, NOS", - PermissibleValue(text="Leiomyomatosis, NOS") ) - setattr(cls, "Fibrosarcomatous dermatofibrosarcoma protuberans", - PermissibleValue(text="Fibrosarcomatous dermatofibrosarcoma protuberans") ) - setattr(cls, "Clear cell odontogenic carcinoma", - PermissibleValue(text="Clear cell odontogenic carcinoma") ) - setattr(cls, "Squamous cell carcinoma, spindle cell", - PermissibleValue(text="Squamous cell carcinoma, spindle cell") ) - setattr(cls, "Classical Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis", - PermissibleValue(text="Classical Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis") ) - setattr(cls, "Alpha cell tumor, NOS", - PermissibleValue(text="Alpha cell tumor, NOS") ) - setattr(cls, "Well differentiated papillary mesothelioma, benign", - PermissibleValue(text="Well differentiated papillary mesothelioma, benign") ) - setattr(cls, "Basophil adenocarcinoma", - PermissibleValue(text="Basophil adenocarcinoma") ) - setattr(cls, "NK/T-cell lymphoma, nasal and nasal-type", - PermissibleValue(text="NK/T-cell lymphoma, nasal and nasal-type") ) - setattr(cls, "Granulosa cell tumor, juvenile", - PermissibleValue(text="Granulosa cell tumor, juvenile") ) - setattr(cls, "Primary serous papillary carcinoma of peritoneum", - PermissibleValue(text="Primary serous papillary carcinoma of peritoneum") ) - setattr(cls, "Gastrinoma, malignant", - PermissibleValue(text="Gastrinoma, malignant") ) - setattr(cls, "Cylindroma, NOS", - PermissibleValue(text="Cylindroma, NOS") ) - setattr(cls, "Myelocytic leukemia, NOS", - PermissibleValue(text="Myelocytic leukemia, NOS") ) - setattr(cls, "Combined small cell carcinoma", - PermissibleValue(text="Combined small cell carcinoma") ) - setattr(cls, "Granulosa cell tumor, adult type", - PermissibleValue(text="Granulosa cell tumor, adult type", - description="Adult Type Ovarian Granulosa Cell Tumor") ) - setattr(cls, "Malignant lymphoma, centroblastic, follicular", - PermissibleValue(text="Malignant lymphoma, centroblastic, follicular") ) - setattr(cls, "Hidradenoma, NOS", - PermissibleValue(text="Hidradenoma, NOS") ) - setattr(cls, "Adenomatous polyp, NOS", - PermissibleValue(text="Adenomatous polyp, NOS") ) - setattr(cls, "Juvenile nevus", - PermissibleValue(text="Juvenile nevus") ) - setattr(cls, "Enterochromaffin-like cell tumor, malignant", - PermissibleValue(text="Enterochromaffin-like cell tumor, malignant") ) - setattr(cls, "Atypical proliferative papillary serous tumor", - PermissibleValue(text="Atypical proliferative papillary serous tumor") ) - setattr(cls, "Pigmented adenoma", - PermissibleValue(text="Pigmented adenoma") ) - setattr(cls, "Acquired cystic disease-associated renal cell carcinoma (RCC)", - PermissibleValue(text="Acquired cystic disease-associated renal cell carcinoma (RCC)") ) - setattr(cls, "Epithelial ependymoma", - PermissibleValue(text="Epithelial ependymoma") ) - setattr(cls, "Bronchiolo-alveolar carcinoma, Clara cell and goblet cell type", - PermissibleValue(text="Bronchiolo-alveolar carcinoma, Clara cell and goblet cell type") ) - setattr(cls, "Giant cell carcinoma", - PermissibleValue(text="Giant cell carcinoma") ) - setattr(cls, "Gelatinous carcinoma", - PermissibleValue(text="Gelatinous carcinoma") ) - setattr(cls, "Pilocytic astrocytoma", - PermissibleValue(text="Pilocytic astrocytoma") ) - setattr(cls, "Immunoblastic sarcoma", - PermissibleValue(text="Immunoblastic sarcoma") ) - setattr(cls, "Benign fibrous histiocytoma", - PermissibleValue(text="Benign fibrous histiocytoma") ) - setattr(cls, "Verrucous squamous cell carcinoma", - PermissibleValue(text="Verrucous squamous cell carcinoma") ) - setattr(cls, "Rhabdomyosarcoma with ganglionic differentiation", - PermissibleValue(text="Rhabdomyosarcoma with ganglionic differentiation") ) - setattr(cls, "Hemangiopericytoma, NOS", - PermissibleValue(text="Hemangiopericytoma, NOS") ) - setattr(cls, "Tumor cells, uncertain whether benign or malignant", - PermissibleValue(text="Tumor cells, uncertain whether benign or malignant") ) - setattr(cls, "Glioma, NOS", - PermissibleValue(text="Glioma, NOS") ) - setattr(cls, "Invasive mole, NOS", - PermissibleValue(text="Invasive mole, NOS") ) - setattr(cls, "Malignant lymphoma, follicular, NOS", - PermissibleValue(text="Malignant lymphoma, follicular, NOS") ) - setattr(cls, "Glioblastoma with sarcomatous component", - PermissibleValue(text="Glioblastoma with sarcomatous component") ) - setattr(cls, "Lymphoproliferative disease, NOS", - PermissibleValue(text="Lymphoproliferative disease, NOS") ) - setattr(cls, "Solitary fibrous tumor/hemangiopericytoma Grade 3 (CNS)", - PermissibleValue(text="Solitary fibrous tumor/hemangiopericytoma Grade 3 (CNS)") ) - setattr(cls, "Lennert lymphoma", - PermissibleValue(text="Lennert lymphoma") ) - setattr(cls, "Infiltrating duct and cribriform carcinoma", - PermissibleValue(text="Infiltrating duct and cribriform carcinoma") ) - setattr(cls, "Refractory anemia with sideroblasts", - PermissibleValue(text="Refractory anemia with sideroblasts") ) - setattr(cls, "Signet ring cell adenocarcinoma", - PermissibleValue(text="Signet ring cell adenocarcinoma") ) - setattr(cls, "Bronchiolo-alveolar carcinoma; type II pneumocyte", - PermissibleValue(text="Bronchiolo-alveolar carcinoma; type II pneumocyte") ) - setattr(cls, "Acute myeloid leukemia with t(9;11)(p22;q23); MLLT3-MLL", - PermissibleValue(text="Acute myeloid leukemia with t(9;11)(p22;q23); MLLT3-MLL") ) - setattr(cls, "Mixed epithelioid and spindle cell melanoma", - PermissibleValue(text="Mixed epithelioid and spindle cell melanoma") ) - setattr(cls, "Malignant tenosynovial giant cell tumor", - PermissibleValue(text="Malignant tenosynovial giant cell tumor") ) - setattr(cls, "Gelatinous adenocarcinoma", - PermissibleValue(text="Gelatinous adenocarcinoma") ) - setattr(cls, "Columnar cell papilloma", - PermissibleValue(text="Columnar cell papilloma") ) - setattr(cls, "Malignant eccrine spiradenoma", - PermissibleValue(text="Malignant eccrine spiradenoma") ) - setattr(cls, "Insular carcinoma", - PermissibleValue(text="Insular carcinoma") ) - setattr(cls, "Low-grade myofibroblastic sarcoma", - PermissibleValue(text="Low-grade myofibroblastic sarcoma") ) - setattr(cls, "Chronic myelomonocytic leukemia, NOS", - PermissibleValue(text="Chronic myelomonocytic leukemia, NOS") ) - setattr(cls, "Intratubular germ cell neoplasia", - PermissibleValue(text="Intratubular germ cell neoplasia") ) - setattr(cls, "T-cell large granular lymphocytosis", - PermissibleValue(text="T-cell large granular lymphocytosis") ) - setattr(cls, "Mucinous cystadenofibroma, NOS", - PermissibleValue(text="Mucinous cystadenofibroma, NOS") ) - setattr(cls, "Interstitial cell tumor, malignant", - PermissibleValue(text="Interstitial cell tumor, malignant") ) - setattr(cls, "Acute myeloid leukemia, MLL", - PermissibleValue(text="Acute myeloid leukemia, MLL") ) - setattr(cls, "Solid papillary carcinoma in situ", - PermissibleValue(text="Solid papillary carcinoma in situ") ) - setattr(cls, "Intraepithelial squamous cell carcinoma", - PermissibleValue(text="Intraepithelial squamous cell carcinoma") ) - setattr(cls, "Astrocytoma, low grade", - PermissibleValue(text="Astrocytoma, low grade") ) - setattr(cls, "Infiltrating duct and lobular carcinoma", - PermissibleValue(text="Infiltrating duct and lobular carcinoma") ) - setattr(cls, "Plexiform neurofibroma", - PermissibleValue(text="Plexiform neurofibroma") ) - setattr(cls, "Myxoinflammatory fibroblastic sarcoma (MIFS)", - PermissibleValue(text="Myxoinflammatory fibroblastic sarcoma (MIFS)") ) - setattr(cls, "Skin appendage carcinoma", - PermissibleValue(text="Skin appendage carcinoma") ) - setattr(cls, "Periosteal fibroma", - PermissibleValue(text="Periosteal fibroma") ) - setattr(cls, "Verrucous keratotic hemangioma", - PermissibleValue(text="Verrucous keratotic hemangioma") ) - setattr(cls, "Mast cell leukaemia", - PermissibleValue(text="Mast cell leukaemia") ) - setattr(cls, "Tubulovillous adenoma, NOS", - PermissibleValue(text="Tubulovillous adenoma, NOS") ) - setattr(cls, "Intracanalicular fibroadenoma", - PermissibleValue(text="Intracanalicular fibroadenoma") ) - setattr(cls, "Mucinous cystadenocarcinoma, NOS", - PermissibleValue(text="Mucinous cystadenocarcinoma, NOS") ) - setattr(cls, "Ductal carcinoma in situ, micropapillary", - PermissibleValue(text="Ductal carcinoma in situ, micropapillary") ) - setattr(cls, "Sinonasal papilloma, fungiform", - PermissibleValue(text="Sinonasal papilloma, fungiform") ) - setattr(cls, "Small cell carcinoma, NOS", - PermissibleValue(text="Small cell carcinoma, NOS") ) - setattr(cls, "Carcinoma, NOS", - PermissibleValue(text="Carcinoma, NOS") ) - setattr(cls, "Precursor cell lymphoblastic lymphoma, NOS", - PermissibleValue(text="Precursor cell lymphoblastic lymphoma, NOS") ) - setattr(cls, "DIN 3", - PermissibleValue(text="DIN 3") ) - setattr(cls, "Retinoblastoma, NOS", - PermissibleValue(text="Retinoblastoma, NOS") ) - setattr(cls, "Serous surface papillary carcinoma", - PermissibleValue(text="Serous surface papillary carcinoma") ) - setattr(cls, "Endometrioid carcinoma with squamous differentiation", - PermissibleValue(text="Endometrioid carcinoma with squamous differentiation", - description="Endometrial Squamous Cell Carcinoma") ) - setattr(cls, "Syncytial meningioma", - PermissibleValue(text="Syncytial meningioma") ) - setattr(cls, "Mucinous adenofibroma, NOS", - PermissibleValue(text="Mucinous adenofibroma, NOS") ) - setattr(cls, "Mucinous cystic neoplasm with high-grade dysplasia", - PermissibleValue(text="Mucinous cystic neoplasm with high-grade dysplasia") ) - setattr(cls, "Malignant lymphoma, lymphocytic, nodular, NOS", - PermissibleValue(text="Malignant lymphoma, lymphocytic, nodular, NOS") ) - setattr(cls, "Duct adenoma, NOS", - PermissibleValue(text="Duct adenoma, NOS") ) - setattr(cls, "Intracystic papillary tumor with high grade dysplasia", - PermissibleValue(text="Intracystic papillary tumor with high grade dysplasia") ) - setattr(cls, "Adenocarcinoma in situ in tubulovillous adenoma", - PermissibleValue(text="Adenocarcinoma in situ in tubulovillous adenoma") ) - setattr(cls, "Cystadenoma, NOS", - PermissibleValue(text="Cystadenoma, NOS") ) - setattr(cls, "Follicular lymphoma, grade 3A", - PermissibleValue(text="Follicular lymphoma, grade 3A") ) - setattr(cls, "Cemento-ossifying fibroma", - PermissibleValue(text="Cemento-ossifying fibroma") ) - setattr(cls, "Aortic body paraganglioma", - PermissibleValue(text="Aortic body paraganglioma") ) - setattr(cls, "Mixed ductal-endocrine carcinoma", - PermissibleValue(text="Mixed ductal-endocrine carcinoma") ) - setattr(cls, "Intraductal papillary carcinoma", - PermissibleValue(text="Intraductal papillary carcinoma") ) - setattr(cls, "Intraductal papillary-mucinous neoplasm with moderate dysplasia", - PermissibleValue(text="Intraductal papillary-mucinous neoplasm with moderate dysplasia") ) - setattr(cls, "Glandular intraepithelial neoplasia, grade II", - PermissibleValue(text="Glandular intraepithelial neoplasia, grade II") ) - setattr(cls, "Minimally invasive adenocarcinoma, NOS", - PermissibleValue(text="Minimally invasive adenocarcinoma, NOS") ) - setattr(cls, "Mucinous adenofibroma of borderline malignancy", - PermissibleValue(text="Mucinous adenofibroma of borderline malignancy") ) - setattr(cls, "Sarcoma botryoides", - PermissibleValue(text="Sarcoma botryoides") ) - setattr(cls, "Subacute myelogenous leukemia", - PermissibleValue(text="Subacute myelogenous leukemia") ) - setattr(cls, "Aggressive digital papillary adenoma", - PermissibleValue(text="Aggressive digital papillary adenoma") ) - setattr(cls, "Juvenile myelomonocytic leukemia", - PermissibleValue(text="Juvenile myelomonocytic leukemia") ) - setattr(cls, "Myofibroblastic tumor, peribronchial", - PermissibleValue(text="Myofibroblastic tumor, peribronchial") ) - setattr(cls, "Reticulosarcoma, diffuse", - PermissibleValue(text="Reticulosarcoma, diffuse") ) - setattr(cls, "Tumor cells, NOS", - PermissibleValue(text="Tumor cells, NOS") ) - setattr(cls, "Spindle cell oncocytoma", - PermissibleValue(text="Spindle cell oncocytoma") ) - setattr(cls, "Embryonal rhabdomyosarcoma, NOS", - PermissibleValue(text="Embryonal rhabdomyosarcoma, NOS") ) - setattr(cls, "Proliferative dermal lesion in congenital nevus", - PermissibleValue(text="Proliferative dermal lesion in congenital nevus") ) - setattr(cls, "Malignant lymphoma, lymphocytic, well differentiated, diffuse", - PermissibleValue(text="Malignant lymphoma, lymphocytic, well differentiated, diffuse") ) - setattr(cls, "Hydatid mole", - PermissibleValue(text="Hydatid mole") ) - setattr(cls, "Acinic cell tumor", - PermissibleValue(text="Acinic cell tumor") ) - setattr(cls, "Malignant lymphoma, mixed cell type, follicular", - PermissibleValue(text="Malignant lymphoma, mixed cell type, follicular") ) - setattr(cls, "Clear cell meningioma", - PermissibleValue(text="Clear cell meningioma") ) - setattr(cls, "G cell tumor, malignant", - PermissibleValue(text="G cell tumor, malignant") ) - setattr(cls, "Eccrine adenocarcinoma", - PermissibleValue(text="Eccrine adenocarcinoma") ) - setattr(cls, "Chondromatous giant cell tumor", - PermissibleValue(text="Chondromatous giant cell tumor") ) - setattr(cls, "Pigmented nevus, NOS", - PermissibleValue(text="Pigmented nevus, NOS") ) - setattr(cls, "Adenomatosis, NOS", - PermissibleValue(text="Adenomatosis, NOS") ) - setattr(cls, "Esophageal glandular dysplasia (intraepithelial neoplasia), low grade", - PermissibleValue(text="Esophageal glandular dysplasia (intraepithelial neoplasia), low grade") ) - setattr(cls, "Lymphoplasmacyte-rich meningioma", - PermissibleValue(text="Lymphoplasmacyte-rich meningioma") ) - setattr(cls, "Medullary carcinoma with lymphoid stroma", - PermissibleValue(text="Medullary carcinoma with lymphoid stroma") ) - setattr(cls, "Langerhans cell histiocytosis, NOS", - PermissibleValue(text="Langerhans cell histiocytosis, NOS") ) - setattr(cls, "Teratoma, benign", - PermissibleValue(text="Teratoma, benign") ) - setattr(cls, "Peripheral T-cell lymphoma, NOS", - PermissibleValue(text="Peripheral T-cell lymphoma, NOS") ) - setattr(cls, "Smooth muscle tumor, NOS", - PermissibleValue(text="Smooth muscle tumor, NOS") ) - setattr(cls, "Adenocarcinoma in tubolovillous adenoma", - PermissibleValue(text="Adenocarcinoma in tubolovillous adenoma") ) - setattr(cls, "Lipid cell tumor of ovary", - PermissibleValue(text="Lipid cell tumor of ovary") ) - setattr(cls, "Adrenal rest tumor", - PermissibleValue(text="Adrenal rest tumor") ) - setattr(cls, "Mesonephric adenoma", - PermissibleValue(text="Mesonephric adenoma") ) - setattr(cls, "Mixed embryonal rhabdomyosarcoma and alveolar rhabdomyosarcoma", - PermissibleValue(text="Mixed embryonal rhabdomyosarcoma and alveolar rhabdomyosarcoma") ) - setattr(cls, "Aleukemic lymphoid leukemia", - PermissibleValue(text="Aleukemic lymphoid leukemia") ) - setattr(cls, "Carcinoid tumor, NOS, of appendix", - PermissibleValue(text="Carcinoid tumor, NOS, of appendix") ) - setattr(cls, "FAB Ll", - PermissibleValue(text="FAB Ll") ) - setattr(cls, "Clear cell sarcoma of kidney", - PermissibleValue(text="Clear cell sarcoma of kidney") ) - setattr(cls, "Serous cystadenofibroma of borderline malignancy", - PermissibleValue(text="Serous cystadenofibroma of borderline malignancy") ) - setattr(cls, "Therapy-related myelodysplastic syndrome, NOS", - PermissibleValue(text="Therapy-related myelodysplastic syndrome, NOS") ) - setattr(cls, "Granular cell myoblastoma, malignant", - PermissibleValue(text="Granular cell myoblastoma, malignant") ) - setattr(cls, "Mucinous adenocarcinoma, endocervical type", - PermissibleValue(text="Mucinous adenocarcinoma, endocervical type") ) - setattr(cls, "Tumor cells, malignant", - PermissibleValue(text="Tumor cells, malignant") ) - setattr(cls, "Chronic lymphatic leukemia", - PermissibleValue(text="Chronic lymphatic leukemia") ) - setattr(cls, "Embryonal rhabdomyosarcoma, pleomorphic", - PermissibleValue(text="Embryonal rhabdomyosarcoma, pleomorphic") ) - setattr(cls, "Langerhans cell granulomatosis", - PermissibleValue(text="Langerhans cell granulomatosis") ) - setattr(cls, "Intraductal papillary mucinous neoplasm with high grade dysplasia", - PermissibleValue(text="Intraductal papillary mucinous neoplasm with high grade dysplasia") ) - setattr(cls, "Melanocytic nevus", - PermissibleValue(text="Melanocytic nevus") ) - setattr(cls, "MiT family translocation renal cell carcinoma", - PermissibleValue(text="MiT family translocation renal cell carcinoma", - description="MiT Family Translocation-Associated Renal Cell Carcinoma") ) - setattr(cls, "Ductal carcinoma in situ, papillary", - PermissibleValue(text="Ductal carcinoma in situ, papillary") ) - setattr(cls, "Lymphosarcoma cell leukemia", - PermissibleValue(text="Lymphosarcoma cell leukemia") ) - setattr(cls, "Fibroblastic reticular cell tumor", - PermissibleValue(text="Fibroblastic reticular cell tumor") ) - setattr(cls, "Angiocentric T-cell lymphoma", - PermissibleValue(text="Angiocentric T-cell lymphoma") ) - setattr(cls, "Mesonephroma, benign", - PermissibleValue(text="Mesonephroma, benign") ) - setattr(cls, "Invasive mammary carcinoma", - PermissibleValue(text="Invasive mammary carcinoma") ) - setattr(cls, "Neuroendocrine tumor, grade 2", - PermissibleValue(text="Neuroendocrine tumor, grade 2") ) - setattr(cls, "Acute myeloid leukemia with multilineage dysplasia", - PermissibleValue(text="Acute myeloid leukemia with multilineage dysplasia") ) - setattr(cls, "Anaplastic large cell lymphoma, ALK positive", - PermissibleValue(text="Anaplastic large cell lymphoma, ALK positive") ) - setattr(cls, "Adult granulosa cell tumor", - PermissibleValue(text="Adult granulosa cell tumor") ) - setattr(cls, "Mast cell sarcoma", - PermissibleValue(text="Mast cell sarcoma") ) - setattr(cls, "Transitional carcinoma", - PermissibleValue(text="Transitional carcinoma") ) - setattr(cls, "Chronic myelogenous leukemia, t(9;22)(q34;q11)", - PermissibleValue(text="Chronic myelogenous leukemia, t(9;22)(q34;q11)") ) - setattr(cls, "Adnexal carcinoma", - PermissibleValue(text="Adnexal carcinoma") ) - setattr(cls, "Combined small cell-squamous cell carcinoma", - PermissibleValue(text="Combined small cell-squamous cell carcinoma") ) - setattr(cls, "Refractory cytopenia with multilineage dysplasia", - PermissibleValue(text="Refractory cytopenia with multilineage dysplasia") ) - setattr(cls, "Giant cell angiofibroma", - PermissibleValue(text="Giant cell angiofibroma") ) - setattr(cls, "Anaplastic astrocytoma, IDH-mutant", - PermissibleValue(text="Anaplastic astrocytoma, IDH-mutant") ) - setattr(cls, "Acinic cell adenocarcinoma", - PermissibleValue(text="Acinic cell adenocarcinoma") ) - setattr(cls, "Mucinous cystic neoplasm with intermediate-grade intraepithelial neoplasia", - PermissibleValue(text="Mucinous cystic neoplasm with intermediate-grade intraepithelial neoplasia") ) - setattr(cls, "Malignant teratoma, undifferentiated", - PermissibleValue(text="Malignant teratoma, undifferentiated") ) - setattr(cls, "Pre-T ALL", - PermissibleValue(text="Pre-T ALL") ) - setattr(cls, "Sex cord-gonadal stromal tumor, NOS", - PermissibleValue(text="Sex cord-gonadal stromal tumor, NOS") ) - setattr(cls, "Small congenital nevus", - PermissibleValue(text="Small congenital nevus") ) - setattr(cls, "Chondroblastic osteosarcoma", - PermissibleValue(text="Chondroblastic osteosarcoma") ) - setattr(cls, "Gastrointestinal pacemaker cell tumor", - PermissibleValue(text="Gastrointestinal pacemaker cell tumor") ) - setattr(cls, "Sympathetic paraganglioma", - PermissibleValue(text="Sympathetic paraganglioma") ) - setattr(cls, "Noninvasive pancreatobiliary papillary neoplasm with low grade intraepithelial neoplasia", - PermissibleValue(text="Noninvasive pancreatobiliary papillary neoplasm with low grade intraepithelial neoplasia") ) - setattr(cls, "Germ cell tumor, nonseminomatous", - PermissibleValue(text="Germ cell tumor, nonseminomatous") ) - setattr(cls, "Follicular carcinoma, encapsulated", - PermissibleValue(text="Follicular carcinoma, encapsulated") ) - setattr(cls, "Giant osteoid osteoma", - PermissibleValue(text="Giant osteoid osteoma") ) - setattr(cls, "Sweat gland tumor, benign", - PermissibleValue(text="Sweat gland tumor, benign") ) - setattr(cls, "Periapical cemento-osseous dysplasia", - PermissibleValue(text="Periapical cemento-osseous dysplasia") ) - setattr(cls, "Intracystic papilloma", - PermissibleValue(text="Intracystic papilloma") ) - setattr(cls, "Thecoma, malignant", - PermissibleValue(text="Thecoma, malignant") ) - setattr(cls, "Papillotubular adenoma", - PermissibleValue(text="Papillotubular adenoma") ) - setattr(cls, "Renal cell carcinoma, NOS", - PermissibleValue(text="Renal cell carcinoma, NOS") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1)", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1)") ) - setattr(cls, "Fibrous papule of nose", - PermissibleValue(text="Fibrous papule of nose") ) - setattr(cls, "Intraductal papillary-mucinous tumor with moderate dysplasia", - PermissibleValue(text="Intraductal papillary-mucinous tumor with moderate dysplasia") ) - setattr(cls, "Diffuse large B-cell lymphoma associated with chronic inflammation", - PermissibleValue(text="Diffuse large B-cell lymphoma associated with chronic inflammation") ) - setattr(cls, "Low-grade serous carcinoma", - PermissibleValue(text="Low-grade serous carcinoma") ) - setattr(cls, "Myeloid leukemia, NOS", - PermissibleValue(text="Myeloid leukemia, NOS") ) - setattr(cls, "PTLD, NOS", - PermissibleValue(text="PTLD, NOS") ) - setattr(cls, "Malignant chondroid syringoma", - PermissibleValue(text="Malignant chondroid syringoma") ) - setattr(cls, "Halo nevus", - PermissibleValue(text="Halo nevus") ) - setattr(cls, "Thymoma, medullary, malignant", - PermissibleValue(text="Thymoma, medullary, malignant") ) - setattr(cls, "Carcinoid, NOS", - PermissibleValue(text="Carcinoid, NOS") ) - setattr(cls, "Polar spongioblastoma", - PermissibleValue(text="Polar spongioblastoma") ) - setattr(cls, "Meningeal melanocytoma", - PermissibleValue(text="Meningeal melanocytoma") ) - setattr(cls, "Alveolar rhabdomyosarcoma", - PermissibleValue(text="Alveolar rhabdomyosarcoma") ) - setattr(cls, "Teratoma, differentiated", - PermissibleValue(text="Teratoma, differentiated") ) - setattr(cls, "Spiradenoma, NOS", - PermissibleValue(text="Spiradenoma, NOS") ) - setattr(cls, "Acute bilineal leukemia", - PermissibleValue(text="Acute bilineal leukemia") ) - setattr(cls, "Follicular adenoma", - PermissibleValue(text="Follicular adenoma") ) - setattr(cls, "Serous borderline tumor-micropapillary variant", - PermissibleValue(text="Serous borderline tumor-micropapillary variant") ) - setattr(cls, "Gemistocytic astrocytoma", - PermissibleValue(text="Gemistocytic astrocytoma") ) - setattr(cls, "Squamous papilloma", - PermissibleValue(text="Squamous papilloma") ) - setattr(cls, "Infiltrating duct and lobular carcinoma in situ", - PermissibleValue(text="Infiltrating duct and lobular carcinoma in situ") ) - setattr(cls, "Fibrosarcoma, NOS", - PermissibleValue(text="Fibrosarcoma, NOS") ) - setattr(cls, "Malignant lymphoma, large cell, noncleaved, follicular", - PermissibleValue(text="Malignant lymphoma, large cell, noncleaved, follicular") ) - setattr(cls, "Angiofibroma, NOS", - PermissibleValue(text="Angiofibroma, NOS") ) - setattr(cls, "Placental site trophoblastic tumor", - PermissibleValue(text="Placental site trophoblastic tumor") ) - setattr(cls, "Cerebellar liponeurocytoma", - PermissibleValue(text="Cerebellar liponeurocytoma") ) - setattr(cls, "Theca cell tumor", - PermissibleValue(text="Theca cell tumor") ) - setattr(cls, "Bizarre leiomyoma", - PermissibleValue(text="Bizarre leiomyoma") ) - setattr(cls, "Cementifying fibroma", - PermissibleValue(text="Cementifying fibroma") ) - setattr(cls, "Squamous odontogenic tumor", - PermissibleValue(text="Squamous odontogenic tumor") ) - setattr(cls, "Osteoblastic sarcoma", - PermissibleValue(text="Osteoblastic sarcoma") ) - setattr(cls, "Endometrioid adenoma, NOS", - PermissibleValue(text="Endometrioid adenoma, NOS") ) - setattr(cls, "Marginal zone lymphoma, NOS", - PermissibleValue(text="Marginal zone lymphoma, NOS", - description="Marginal Zone Lymphoma Not Otherwise Specified") ) - setattr(cls, "Oat cell carcinoma", - PermissibleValue(text="Oat cell carcinoma") ) - setattr(cls, "Extracutaneous mastocytoma", - PermissibleValue(text="Extracutaneous mastocytoma") ) - setattr(cls, "Chronic leukemia, NOS", - PermissibleValue(text="Chronic leukemia, NOS") ) - setattr(cls, "Malignant lymphoma, Hodgkin", - PermissibleValue(text="Malignant lymphoma, Hodgkin") ) - setattr(cls, "Thymoma, organoid, malignant", - PermissibleValue(text="Thymoma, organoid, malignant") ) - setattr(cls, "Meningeal sarcoma", - PermissibleValue(text="Meningeal sarcoma") ) - setattr(cls, "Adenomatoid odontogenic tumor", - PermissibleValue(text="Adenomatoid odontogenic tumor") ) - setattr(cls, "Parafollicular cell carcinoma", - PermissibleValue(text="Parafollicular cell carcinoma") ) - setattr(cls, "Nonencapsulated sclerosing tumor", - PermissibleValue(text="Nonencapsulated sclerosing tumor") ) - setattr(cls, "Malignant tumor, fusiform cell type", - PermissibleValue(text="Malignant tumor, fusiform cell type") ) - setattr(cls, "Thymoma, malignant, NOS", - PermissibleValue(text="Thymoma, malignant, NOS") ) - setattr(cls, "Adrenal cortical adenocarcinoma", - PermissibleValue(text="Adrenal cortical adenocarcinoma") ) - setattr(cls, "Solitary fibrous tumor/hemangiopericytoma Grade 2 (CNS)", - PermissibleValue(text="Solitary fibrous tumor/hemangiopericytoma Grade 2 (CNS)") ) - setattr(cls, "Cystic teratoma, NOS", - PermissibleValue(text="Cystic teratoma, NOS") ) - setattr(cls, "Atypical adenoma", - PermissibleValue(text="Atypical adenoma") ) - setattr(cls, "Retinoblastoma, differentiated", - PermissibleValue(text="Retinoblastoma, differentiated") ) - setattr(cls, "Pilomatricoma, malignant", - PermissibleValue(text="Pilomatricoma, malignant") ) - setattr(cls, "Thymoma, predominantly cortical, NOS", - PermissibleValue(text="Thymoma, predominantly cortical, NOS") ) - setattr(cls, "Myeloma, NOS", - PermissibleValue(text="Myeloma, NOS") ) - setattr(cls, "Adenocarcinoma in adenomatous polyp", - PermissibleValue(text="Adenocarcinoma in adenomatous polyp") ) - setattr(cls, "Myelodysplastic syndrome, unclassifiable", - PermissibleValue(text="Myelodysplastic syndrome, unclassifiable") ) - setattr(cls, "Acute myeloid leukemia without maturation", - PermissibleValue(text="Acute myeloid leukemia without maturation") ) - setattr(cls, "Intraductal adenocarcinoma, noninfiltrating, NOS", - PermissibleValue(text="Intraductal adenocarcinoma, noninfiltrating, NOS") ) - setattr(cls, "Intraosseous well differentiated osteosarcoma", - PermissibleValue(text="Intraosseous well differentiated osteosarcoma") ) - setattr(cls, "Paraganglioma, benign", - PermissibleValue(text="Paraganglioma, benign") ) - setattr(cls, "Papillary carcinoma, diffuse sclerosing", - PermissibleValue(text="Papillary carcinoma, diffuse sclerosing") ) - setattr(cls, "Soft tissue tumor, malignant", - PermissibleValue(text="Soft tissue tumor, malignant") ) - setattr(cls, "Osteocartilaginous exostosis", - PermissibleValue(text="Osteocartilaginous exostosis") ) - setattr(cls, "Mucinous cystadenoma, borderline malignancy", - PermissibleValue(text="Mucinous cystadenoma, borderline malignancy") ) - setattr(cls, "Dedifferentiated chondrosarcoma", - PermissibleValue(text="Dedifferentiated chondrosarcoma") ) - setattr(cls, "Mediterranean lymphoma", - PermissibleValue(text="Mediterranean lymphoma") ) - setattr(cls, "Plasmacytoma of bone", - PermissibleValue(text="Plasmacytoma of bone") ) - setattr(cls, "Diffuse astrocytoma, IDH-wildtype", - PermissibleValue(text="Diffuse astrocytoma, IDH-wildtype") ) - setattr(cls, "Megakaryocytic leukemia", - PermissibleValue(text="Megakaryocytic leukemia") ) - setattr(cls, "Hairy cell leukaemia variant", - PermissibleValue(text="Hairy cell leukaemia variant") ) - setattr(cls, "Melanoma in situ", - PermissibleValue(text="Melanoma in situ") ) - setattr(cls, "Thecoma, luteinized", - PermissibleValue(text="Thecoma, luteinized") ) - setattr(cls, "Lymphoproliferative disorder, NOS", - PermissibleValue(text="Lymphoproliferative disorder, NOS") ) - setattr(cls, "Digital papillary adenocarcinoma", - PermissibleValue(text="Digital papillary adenocarcinoma") ) - setattr(cls, "Serous tubal intraepithelial carcinoma", - PermissibleValue(text="Serous tubal intraepithelial carcinoma") ) - setattr(cls, "Eccrine spiradenoma", - PermissibleValue(text="Eccrine spiradenoma") ) - setattr(cls, "Refractory thrombocytopenia", - PermissibleValue(text="Refractory thrombocytopenia") ) - setattr(cls, "Eccrine poroma, malignant", - PermissibleValue(text="Eccrine poroma, malignant") ) - setattr(cls, "PEComa, malignant", - PermissibleValue(text="PEComa, malignant") ) - setattr(cls, "Pseudomucinous cystadenocarcinoma, NOS", - PermissibleValue(text="Pseudomucinous cystadenocarcinoma, NOS") ) - setattr(cls, "Beta cell adenoma", - PermissibleValue(text="Beta cell adenoma") ) - setattr(cls, "Endometrial stromal sarcoma, high grade", - PermissibleValue(text="Endometrial stromal sarcoma, high grade") ) - setattr(cls, "Aleukemic monocytic leukemia", - PermissibleValue(text="Aleukemic monocytic leukemia") ) - setattr(cls, "Hemangioblastic meningioma", - PermissibleValue(text="Hemangioblastic meningioma") ) - setattr(cls, "Odontogenic tumor, NOS", - PermissibleValue(text="Odontogenic tumor, NOS") ) - setattr(cls, "Pindborg tumor", - PermissibleValue(text="Pindborg tumor") ) - setattr(cls, "Primary cutaneous DLBCL, leg type", - PermissibleValue(text="Primary cutaneous DLBCL, leg type") ) - setattr(cls, "Plasma cell leukemia", - PermissibleValue(text="Plasma cell leukemia") ) - setattr(cls, "Endometrial stromatosis", - PermissibleValue(text="Endometrial stromatosis") ) - setattr(cls, "Mixed basal-squamous cell carcinoma", - PermissibleValue(text="Mixed basal-squamous cell carcinoma") ) - setattr(cls, "Phyllodes tumor, borderline", - PermissibleValue(text="Phyllodes tumor, borderline") ) - setattr(cls, "Choriocarcinoma combined with embryonal carcinoma", - PermissibleValue(text="Choriocarcinoma combined with embryonal carcinoma") ) - setattr(cls, "Mesothelioma, NOS", - PermissibleValue(text="Mesothelioma, NOS") ) - setattr(cls, "Yolk sac tumor", - PermissibleValue(text="Yolk sac tumor") ) - setattr(cls, "Hodgkin lymphoma, lymphocyte-rich", - PermissibleValue(text="Hodgkin lymphoma, lymphocyte-rich") ) - setattr(cls, "Pseudomyxoma peritonei with unknown primary site", - PermissibleValue(text="Pseudomyxoma peritonei with unknown primary site") ) - setattr(cls, "Cloacogenic carcinoma", - PermissibleValue(text="Cloacogenic carcinoma") ) - setattr(cls, "Acute myeloblastic leukemia", - PermissibleValue(text="Acute myeloblastic leukemia") ) - setattr(cls, "Nodal marginal zone lymphoma", - PermissibleValue(text="Nodal marginal zone lymphoma") ) - setattr(cls, "Solid papillary carcinoma with invasion", - PermissibleValue(text="Solid papillary carcinoma with invasion") ) - setattr(cls, "Malignant lymphoma, non-cleaved cell, NOS", - PermissibleValue(text="Malignant lymphoma, non-cleaved cell, NOS") ) - setattr(cls, "Chronic lymphocytic leukemia, B-cell type (includes all variants of BCLL)", - PermissibleValue(text="Chronic lymphocytic leukemia, B-cell type (includes all variants of BCLL)") ) - setattr(cls, "Intraductal papillary mucinous neoplasm with an associated invasive carcinoma", - PermissibleValue(text="Intraductal papillary mucinous neoplasm with an associated invasive carcinoma") ) - setattr(cls, "Tubular androblastoma, NOS", - PermissibleValue(text="Tubular androblastoma, NOS") ) - setattr(cls, "Atypical fibroxanthoma", - PermissibleValue(text="Atypical fibroxanthoma") ) - setattr(cls, "Odontogenic carcinosarcoma", - PermissibleValue(text="Odontogenic carcinosarcoma") ) - setattr(cls, "Serous endometrial intraepithelial carcinoma", - PermissibleValue(text="Serous endometrial intraepithelial carcinoma", - description="Serous Endometrial Intraepithelial Carcinoma") ) - setattr(cls, "Follicular adenocarcinoma, trabecular", - PermissibleValue(text="Follicular adenocarcinoma, trabecular") ) - setattr(cls, "Acute lymphatic leukemia", - PermissibleValue(text="Acute lymphatic leukemia") ) - setattr(cls, "Atypical hyperplasia/Endometrioid intraepithelial neoplasm", - PermissibleValue(text="Atypical hyperplasia/Endometrioid intraepithelial neoplasm") ) - setattr(cls, "Solid teratoma", - PermissibleValue(text="Solid teratoma") ) - setattr(cls, "Eccrine papillary adenocarcinoma", - PermissibleValue(text="Eccrine papillary adenocarcinoma") ) - setattr(cls, "Transitional cell papilloma, benign", - PermissibleValue(text="Transitional cell papilloma, benign") ) - setattr(cls, "Melanotic medulloblastoma", - PermissibleValue(text="Melanotic medulloblastoma") ) - setattr(cls, "Atypical follicular adenoma", - PermissibleValue(text="Atypical follicular adenoma") ) - setattr(cls, "Magnocellular nevus", - PermissibleValue(text="Magnocellular nevus") ) - setattr(cls, "Sertoli-Leydig cell tumor, retiform, with heterologous elements", - PermissibleValue(text="Sertoli-Leydig cell tumor, retiform, with heterologous elements") ) - setattr(cls, "Non-invasive mammary carcinoma", - PermissibleValue(text="Non-invasive mammary carcinoma") ) - setattr(cls, "Squamous cell carcinoma, clear cell type", - PermissibleValue(text="Squamous cell carcinoma, clear cell type") ) - setattr(cls, "Malignant lymphoma, histiocytic, diffuse", - PermissibleValue(text="Malignant lymphoma, histiocytic, diffuse") ) - setattr(cls, "Endodermal sinus tumor", - PermissibleValue(text="Endodermal sinus tumor") ) - setattr(cls, "Astrocytoma, anaplastic", - PermissibleValue(text="Astrocytoma, anaplastic") ) - setattr(cls, "Mixed medullary-follicular carcinoma", - PermissibleValue(text="Mixed medullary-follicular carcinoma") ) - setattr(cls, "Oligodendroglioma, anaplastic", - PermissibleValue(text="Oligodendroglioma, anaplastic") ) - setattr(cls, "Central primitive neuroectodermal tumor, NOS", - PermissibleValue(text="Central primitive neuroectodermal tumor, NOS") ) - setattr(cls, "Dermal and epidermal nevus", - PermissibleValue(text="Dermal and epidermal nevus") ) - setattr(cls, "Malignant lymphoma, large cell, NOS", - PermissibleValue(text="Malignant lymphoma, large cell, NOS") ) - setattr(cls, "Papillary carcinoma, encapsulated", - PermissibleValue(text="Papillary carcinoma, encapsulated") ) - setattr(cls, "Carcinoma, diffuse type", - PermissibleValue(text="Carcinoma, diffuse type") ) - setattr(cls, "Acute myelofibrosis", - PermissibleValue(text="Acute myelofibrosis") ) - setattr(cls, "Desmoid, NOS", - PermissibleValue(text="Desmoid, NOS") ) - setattr(cls, "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS", - PermissibleValue(text="Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS") ) - setattr(cls, "NK-cell large granular lymphocytic leukemia", - PermissibleValue(text="NK-cell large granular lymphocytic leukemia") ) - setattr(cls, "Mucinous adenocarcinoma", - PermissibleValue(text="Mucinous adenocarcinoma") ) - setattr(cls, "Acute promyelocytic leukaemia, PML-RAR-alpha", - PermissibleValue(text="Acute promyelocytic leukaemia, PML-RAR-alpha") ) - setattr(cls, "Myxopapillary ependymoma", - PermissibleValue(text="Myxopapillary ependymoma") ) - setattr(cls, "Hepatoblastoma, mixed epithelial-mesenchymal", - PermissibleValue(text="Hepatoblastoma, mixed epithelial-mesenchymal") ) - setattr(cls, "Liposarcoma, differentiated", - PermissibleValue(text="Liposarcoma, differentiated") ) - setattr(cls, "Malignant lymphoma, large cell, immunoblastic", - PermissibleValue(text="Malignant lymphoma, large cell, immunoblastic") ) - setattr(cls, "Bronchiolo-alveolar adenocarcinoma, NOS", - PermissibleValue(text="Bronchiolo-alveolar adenocarcinoma, NOS") ) - setattr(cls, "Lipomatous medulloblastoma", - PermissibleValue(text="Lipomatous medulloblastoma") ) - setattr(cls, "Papillary carcinoma, NOS", - PermissibleValue(text="Papillary carcinoma, NOS") ) - setattr(cls, "Nephroblastoma, NOS", - PermissibleValue(text="Nephroblastoma, NOS") ) - setattr(cls, "Hemangiopericytoma, malignant", - PermissibleValue(text="Hemangiopericytoma, malignant") ) - setattr(cls, "Pulmonary blastoma", - PermissibleValue(text="Pulmonary blastoma") ) - setattr(cls, "Desmoplastic infantile ganglioglioma", - PermissibleValue(text="Desmoplastic infantile ganglioglioma") ) - setattr(cls, "Acute myeloid leukemia with mutated NPM1", - PermissibleValue(text="Acute myeloid leukemia with mutated NPM1") ) - setattr(cls, "Myoepithelial carcinoma", - PermissibleValue(text="Myoepithelial carcinoma", - description="Malignant Myoepithelioma") ) - setattr(cls, "Calcifying nested epithelial stromal tumor", - PermissibleValue(text="Calcifying nested epithelial stromal tumor") ) - setattr(cls, "Spindle cell lipoma", - PermissibleValue(text="Spindle cell lipoma") ) - setattr(cls, "Dysembryoplastic neuroepithelial tumor", - PermissibleValue(text="Dysembryoplastic neuroepithelial tumor") ) - setattr(cls, "Refractory anemia with ring sideroblasts associated with marked thrombocytosis", - PermissibleValue(text="Refractory anemia with ring sideroblasts associated with marked thrombocytosis") ) - setattr(cls, "Thymoma, type A, malignant", - PermissibleValue(text="Thymoma, type A, malignant") ) - setattr(cls, "Chronic neutrophilic leukemia", - PermissibleValue(text="Chronic neutrophilic leukemia") ) - setattr(cls, "Adenocarcinoma with neuroendocrine differentiation", - PermissibleValue(text="Adenocarcinoma with neuroendocrine differentiation") ) - setattr(cls, "Eccrine acrospiroma", - PermissibleValue(text="Eccrine acrospiroma") ) - setattr(cls, "Undifferentiated epithelioid sarcoma", - PermissibleValue(text="Undifferentiated epithelioid sarcoma") ) - setattr(cls, "Thymoma, epithelial, NOS", - PermissibleValue(text="Thymoma, epithelial, NOS") ) - setattr(cls, "Mediastinal (thymic) large B-cell lymphoma", - PermissibleValue(text="Mediastinal (thymic) large B-cell lymphoma") ) - setattr(cls, "Hurthle cell carcinoma", - PermissibleValue(text="Hurthle cell carcinoma") ) - setattr(cls, "Mucinous carcinoma, intestinal type", - PermissibleValue(text="Mucinous carcinoma, intestinal type") ) - setattr(cls, "Pleomorphic leiomyoma", - PermissibleValue(text="Pleomorphic leiomyoma") ) - setattr(cls, "Mixed phenotype acute leukemia with t(v;11q23); MLL rearranged", - PermissibleValue(text="Mixed phenotype acute leukemia with t(v;11q23); MLL rearranged") ) - setattr(cls, "Intraductal carcinoma, solid type", - PermissibleValue(text="Intraductal carcinoma, solid type") ) - setattr(cls, "Hemangioendothelioma, malignant", - PermissibleValue(text="Hemangioendothelioma, malignant") ) - setattr(cls, "Thymoma, type B2, malignant", - PermissibleValue(text="Thymoma, type B2, malignant") ) - setattr(cls, "Papillary serous tumor of low malignant potential", - PermissibleValue(text="Papillary serous tumor of low malignant potential") ) - setattr(cls, "Papillary transitional cell carcinoma, non-invasive", - PermissibleValue(text="Papillary transitional cell carcinoma, non-invasive") ) - setattr(cls, "Aleukemic lymphatic leukemia", - PermissibleValue(text="Aleukemic lymphatic leukemia") ) - setattr(cls, "Clear cell sarcoma, NOS", - PermissibleValue(text="Clear cell sarcoma, NOS") ) - setattr(cls, "Retinal anlage tumor", - PermissibleValue(text="Retinal anlage tumor") ) - setattr(cls, "Hurthle cell tumor", - PermissibleValue(text="Hurthle cell tumor") ) - setattr(cls, "Hemangioendothelial sarcoma", - PermissibleValue(text="Hemangioendothelial sarcoma") ) - setattr(cls, "Malignant lymphoma, lymphoblastic, NOS", - PermissibleValue(text="Malignant lymphoma, lymphoblastic, NOS") ) - setattr(cls, "Polycythemia vera", - PermissibleValue(text="Polycythemia vera") ) - setattr(cls, "Fibro-osteoma", - PermissibleValue(text="Fibro-osteoma") ) - setattr(cls, "Preleukemic syndrome", - PermissibleValue(text="Preleukemic syndrome") ) - setattr(cls, "Wilms tumor", - PermissibleValue(text="Wilms tumor") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma with t(9;22)(q34;q11.2); BCR-ABL1", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma with t(9;22)(q34;q11.2); BCR-ABL1") ) - setattr(cls, "Epidermoid carcinoma, spindle cell", - PermissibleValue(text="Epidermoid carcinoma, spindle cell") ) - setattr(cls, "Precursor T-cell lymphoblastic lymphoma", - PermissibleValue(text="Precursor T-cell lymphoblastic lymphoma") ) - setattr(cls, "Spitz nevus", - PermissibleValue(text="Spitz nevus") ) - setattr(cls, "High-grade neuroendocrine carcinoma", - PermissibleValue(text="High-grade neuroendocrine carcinoma") ) - setattr(cls, "Essential hemorrhagic thrombocythaemia", - PermissibleValue(text="Essential hemorrhagic thrombocythaemia") ) - setattr(cls, "Desmoplastic mesothelioma", - PermissibleValue(text="Desmoplastic mesothelioma", - description="Desmoplastic Mesothelioma") ) - setattr(cls, "Ameloblastic carcinoma", - PermissibleValue(text="Ameloblastic carcinoma") ) - setattr(cls, "Nonlipid reticuloendotheliosis", - PermissibleValue(text="Nonlipid reticuloendotheliosis") ) - setattr(cls, "Therapy-related acute myeloid leukemia, NOS", - PermissibleValue(text="Therapy-related acute myeloid leukemia, NOS") ) - setattr(cls, "Angiomatous meningioma", - PermissibleValue(text="Angiomatous meningioma") ) - setattr(cls, "Medulloblastoma, non-WNT/non-SHH", - PermissibleValue(text="Medulloblastoma, non-WNT/non-SHH") ) - setattr(cls, "Clear cell adenoma", - PermissibleValue(text="Clear cell adenoma") ) - setattr(cls, "Cavernous hemangioma", - PermissibleValue(text="Cavernous hemangioma") ) - setattr(cls, "Hodgkin lymphoma, nodular sclerosis, grade 1", - PermissibleValue(text="Hodgkin lymphoma, nodular sclerosis, grade 1") ) - setattr(cls, "Idiopathic hemorrhagic thrombocythaemia", - PermissibleValue(text="Idiopathic hemorrhagic thrombocythaemia") ) - setattr(cls, "Granulosa cell carcinoma", - PermissibleValue(text="Granulosa cell carcinoma") ) - setattr(cls, "Gastrointestinal stromal tumor, NOS", - PermissibleValue(text="Gastrointestinal stromal tumor, NOS") ) - setattr(cls, "Thymoma, type B1, malignant", - PermissibleValue(text="Thymoma, type B1, malignant") ) - setattr(cls, "Follicular carcinoma, moderately differentiated", - PermissibleValue(text="Follicular carcinoma, moderately differentiated") ) - setattr(cls, "Dermatofibrosarcoma protuberans, NOS", - PermissibleValue(text="Dermatofibrosarcoma protuberans, NOS") ) - setattr(cls, "Mucinous cystadenocarcinoma, non-invasive", - PermissibleValue(text="Mucinous cystadenocarcinoma, non-invasive") ) - setattr(cls, "Squamous cell carcinoma, acantholytic", - PermissibleValue(text="Squamous cell carcinoma, acantholytic") ) - setattr(cls, "Tubulocystic renal cell carcinoma", - PermissibleValue(text="Tubulocystic renal cell carcinoma", - description="Tubulocystic Renal Cell Carcinoma") ) - setattr(cls, "Myelogenous leukemia, NOS", - PermissibleValue(text="Myelogenous leukemia, NOS") ) - setattr(cls, "Glioblastoma multiforme", - PermissibleValue(text="Glioblastoma multiforme") ) - setattr(cls, "Thymoma, cortical, NOS", - PermissibleValue(text="Thymoma, cortical, NOS") ) - setattr(cls, "Primary cutaneous CD4-positive small/medium T-cell lymphoma", - PermissibleValue(text="Primary cutaneous CD4-positive small/medium T-cell lymphoma") ) - setattr(cls, "Atypical proliferating clear cell tumor", - PermissibleValue(text="Atypical proliferating clear cell tumor") ) - setattr(cls, "Duct carcinoma, NOS", - PermissibleValue(text="Duct carcinoma, NOS") ) - setattr(cls, "Squamous cell carcinoma, NOS", - PermissibleValue(text="Squamous cell carcinoma, NOS") ) - setattr(cls, "Hepatoblastoma, epithelioid", - PermissibleValue(text="Hepatoblastoma, epithelioid") ) - setattr(cls, "Meningothelial meningioma", - PermissibleValue(text="Meningothelial meningioma") ) - setattr(cls, "Carcinoma in situ, NOS", - PermissibleValue(text="Carcinoma in situ, NOS") ) - setattr(cls, "Desmoplastic medulloblastoma", - PermissibleValue(text="Desmoplastic medulloblastoma") ) - setattr(cls, "Mucoid adenocarcinoma", - PermissibleValue(text="Mucoid adenocarcinoma") ) - setattr(cls, "Adenomatous polyposis coli", - PermissibleValue(text="Adenomatous polyposis coli") ) - setattr(cls, "Compound odontoma", - PermissibleValue(text="Compound odontoma") ) - setattr(cls, "Syringomatous carcinoma", - PermissibleValue(text="Syringomatous carcinoma") ) - setattr(cls, "Gastrin cell tumor, malignant", - PermissibleValue(text="Gastrin cell tumor, malignant") ) - setattr(cls, "Malignant teratoma, intermediate", - PermissibleValue(text="Malignant teratoma, intermediate") ) - setattr(cls, "Langerhans cell sarcoma", - PermissibleValue(text="Langerhans cell sarcoma") ) - setattr(cls, "Adrenal cortical adenoma, pigmented", - PermissibleValue(text="Adrenal cortical adenoma, pigmented") ) - setattr(cls, "Enteropathy type intestinal T-cell lymphoma", - PermissibleValue(text="Enteropathy type intestinal T-cell lymphoma") ) - setattr(cls, "Parasympathetic paraganglioma", - PermissibleValue(text="Parasympathetic paraganglioma") ) - setattr(cls, "Malignant myelosclerosis", - PermissibleValue(text="Malignant myelosclerosis") ) - setattr(cls, "Acute panmyelosis, NOS", - PermissibleValue(text="Acute panmyelosis, NOS") ) - setattr(cls, "Congenital generalized fibromatosis", - PermissibleValue(text="Congenital generalized fibromatosis") ) - setattr(cls, "Soft tissue sarcoma", - PermissibleValue(text="Soft tissue sarcoma") ) - setattr(cls, "Melanotic neurofibroma", - PermissibleValue(text="Melanotic neurofibroma") ) - setattr(cls, "Chromophobe carcinoma", - PermissibleValue(text="Chromophobe carcinoma") ) - setattr(cls, "Duct adenocarcinoma, NOS", - PermissibleValue(text="Duct adenocarcinoma, NOS") ) - setattr(cls, "Matrical carcinoma", - PermissibleValue(text="Matrical carcinoma") ) - setattr(cls, "Giant cell glioblastoma", - PermissibleValue(text="Giant cell glioblastoma") ) - setattr(cls, "Ceruminous adenoma", - PermissibleValue(text="Ceruminous adenoma") ) - setattr(cls, "Mesothelioma, biphasic, malignant", - PermissibleValue(text="Mesothelioma, biphasic, malignant") ) - setattr(cls, "Sweat gland tumor, malignant", - PermissibleValue(text="Sweat gland tumor, malignant") ) - setattr(cls, "PNET, NOS", - PermissibleValue(text="PNET, NOS") ) - setattr(cls, "Neuroectodermal tumor, NOS", - PermissibleValue(text="Neuroectodermal tumor, NOS") ) - setattr(cls, "Extra-adrenal paraganglioma, NOS", - PermissibleValue(text="Extra-adrenal paraganglioma, NOS") ) - setattr(cls, "Medulloblastoma, SHH-activated and TP53-mutant", - PermissibleValue(text="Medulloblastoma, SHH-activated and TP53-mutant") ) - setattr(cls, "Eccrine papillary adenoma", - PermissibleValue(text="Eccrine papillary adenoma") ) - setattr(cls, "Alveolar carcinoma", - PermissibleValue(text="Alveolar carcinoma") ) - setattr(cls, "Wolffian duct tumor", - PermissibleValue(text="Wolffian duct tumor") ) - setattr(cls, "Ewing sarcoma", - PermissibleValue(text="Ewing sarcoma") ) - setattr(cls, "Angioma, NOS", - PermissibleValue(text="Angioma, NOS") ) - setattr(cls, "Fibrous meningioma", - PermissibleValue(text="Fibrous meningioma") ) - setattr(cls, "Mesenteric fibromatosis", - PermissibleValue(text="Mesenteric fibromatosis") ) - setattr(cls, "Mucinous carcinoid", - PermissibleValue(text="Mucinous carcinoid") ) - setattr(cls, "Craniopharyngioma, papillary", - PermissibleValue(text="Craniopharyngioma, papillary") ) - setattr(cls, "Aggressive NK-cell leukaemia", - PermissibleValue(text="Aggressive NK-cell leukaemia") ) - setattr(cls, "Subacute lymphocytic leukemia", - PermissibleValue(text="Subacute lymphocytic leukemia") ) - setattr(cls, "Carcinoma showing thymus-like differentiation", - PermissibleValue(text="Carcinoma showing thymus-like differentiation") ) - setattr(cls, "Thymoma, type A, NOS", - PermissibleValue(text="Thymoma, type A, NOS") ) - setattr(cls, "Neoplasm, NOS", - PermissibleValue(text="Neoplasm, NOS") ) - setattr(cls, "Lobular and ductal carcinoma", - PermissibleValue(text="Lobular and ductal carcinoma") ) - setattr(cls, "Adult T-cell leukemia/lymphoma (HTLV-1 positive) (includes all variants)", - PermissibleValue(text="Adult T-cell leukemia/lymphoma (HTLV-1 positive) (includes all variants)") ) - setattr(cls, "Fibrillary astrocytoma", - PermissibleValue(text="Fibrillary astrocytoma") ) - setattr(cls, "EBV positive diffuse large B-cell lymphoma of the elderly", - PermissibleValue(text="EBV positive diffuse large B-cell lymphoma of the elderly") ) - setattr(cls, "Erythremic myelosis, NOS", - PermissibleValue(text="Erythremic myelosis, NOS") ) - setattr(cls, "Mixed tumor, salivary gland type, malignant", - PermissibleValue(text="Mixed tumor, salivary gland type, malignant") ) - setattr(cls, "Papillary and follicular carcinoma", - PermissibleValue(text="Papillary and follicular carcinoma") ) - setattr(cls, "Noninvasive pancreatobiliary papillary neoplasm with low grade dysplasia", - PermissibleValue(text="Noninvasive pancreatobiliary papillary neoplasm with low grade dysplasia") ) - setattr(cls, "Papillary urothelial carcinoma, non-invasive", - PermissibleValue(text="Papillary urothelial carcinoma, non-invasive") ) - setattr(cls, "Intraductal papilloma with lobular carcinoma in situ", - PermissibleValue(text="Intraductal papilloma with lobular carcinoma in situ") ) - setattr(cls, "Hodgkin sarcoma", - PermissibleValue(text="Hodgkin sarcoma") ) - setattr(cls, "Tibial adamantinoma", - PermissibleValue(text="Tibial adamantinoma") ) - setattr(cls, "Deep histiocytoma", - PermissibleValue(text="Deep histiocytoma") ) - setattr(cls, "Adenocarcinoma in villous adenoma", - PermissibleValue(text="Adenocarcinoma in villous adenoma") ) - setattr(cls, "Pseudomucinous cystadenoma, borderline malignancy", - PermissibleValue(text="Pseudomucinous cystadenoma, borderline malignancy") ) - setattr(cls, "Argentaffinoma, malignant", - PermissibleValue(text="Argentaffinoma, malignant") ) - setattr(cls, "Therapy-related myelodysplastic syndrome, epipodophyllotoxin-related", - PermissibleValue(text="Therapy-related myelodysplastic syndrome, epipodophyllotoxin-related") ) - setattr(cls, "Serotonin producing carcinoid", - PermissibleValue(text="Serotonin producing carcinoid") ) - setattr(cls, "Noninfiltrating intraductal papillary carcinoma", - PermissibleValue(text="Noninfiltrating intraductal papillary carcinoma") ) - setattr(cls, "Syringocystadenoma papilliferum", - PermissibleValue(text="Syringocystadenoma papilliferum") ) - setattr(cls, "Classical Hodgkin lymphoma, nodular sclerosis, cellular phase", - PermissibleValue(text="Classical Hodgkin lymphoma, nodular sclerosis, cellular phase") ) - setattr(cls, "Kupffer cell sarcoma", - PermissibleValue(text="Kupffer cell sarcoma") ) - setattr(cls, "Neuroepithelioma, NOS", - PermissibleValue(text="Neuroepithelioma, NOS") ) - setattr(cls, "Malignant tumor, giant cell type", - PermissibleValue(text="Malignant tumor, giant cell type") ) - setattr(cls, "Neurofibroma, NOS", - PermissibleValue(text="Neurofibroma, NOS") ) - setattr(cls, "Hodgkin lymphoma, NOS", - PermissibleValue(text="Hodgkin lymphoma, NOS") ) - setattr(cls, "Neurotropic melanoma, malignant", - PermissibleValue(text="Neurotropic melanoma, malignant") ) - setattr(cls, "Therapy-related myelodysplastic syndrome, alkylating agent related", - PermissibleValue(text="Therapy-related myelodysplastic syndrome, alkylating agent related") ) - setattr(cls, "Pleomorphic rhabdomyosarcoma, adult type", - PermissibleValue(text="Pleomorphic rhabdomyosarcoma, adult type") ) - setattr(cls, "Soft tissue tumor, benign", - PermissibleValue(text="Soft tissue tumor, benign") ) - setattr(cls, "Metaplastic carcinoma with other types mesenchymal differentiation", - PermissibleValue(text="Metaplastic carcinoma with other types mesenchymal differentiation") ) - setattr(cls, "Spindle cell melanoma, NOS", - PermissibleValue(text="Spindle cell melanoma, NOS") ) - setattr(cls, "Struma ovarii, malignant", - PermissibleValue(text="Struma ovarii, malignant") ) - setattr(cls, "Sclerosing hemangioma", - PermissibleValue(text="Sclerosing hemangioma") ) - setattr(cls, "Dabska tumor", - PermissibleValue(text="Dabska tumor") ) - setattr(cls, "Ductal carcinoma, NOS", - PermissibleValue(text="Ductal carcinoma, NOS") ) - setattr(cls, "Chronic lymphoid leukemia", - PermissibleValue(text="Chronic lymphoid leukemia") ) - setattr(cls, "Intraglandular papillary neoplasm with low grade intraepithelial neoplasia", - PermissibleValue(text="Intraglandular papillary neoplasm with low grade intraepithelial neoplasia") ) - setattr(cls, "Osteogenic sarcoma, NOS", - PermissibleValue(text="Osteogenic sarcoma, NOS") ) - setattr(cls, "Adenocarcinoma in situ in adenomatous polyp", - PermissibleValue(text="Adenocarcinoma in situ in adenomatous polyp") ) - setattr(cls, "Fetal lipomatosis", - PermissibleValue(text="Fetal lipomatosis") ) - setattr(cls, "Melanoma, NOS", - PermissibleValue(text="Melanoma, NOS", - description="Not Otherwise Specified Melanoma") ) - setattr(cls, "Basal cell tumor", - PermissibleValue(text="Basal cell tumor") ) - setattr(cls, "Blue nevus, NOS", - PermissibleValue(text="Blue nevus, NOS") ) - setattr(cls, "Classical Hodgkin lymphoma, lymphocyte depletion, NOS", - PermissibleValue(text="Classical Hodgkin lymphoma, lymphocyte depletion, NOS") ) - setattr(cls, "Hilar cell tumor", - PermissibleValue(text="Hilar cell tumor") ) - setattr(cls, "MPNST with mesenchymal differentiation", - PermissibleValue(text="MPNST with mesenchymal differentiation") ) - setattr(cls, "Ameloblastic sarcoma", - PermissibleValue(text="Ameloblastic sarcoma") ) - setattr(cls, "Thymoma, medullary, NOS", - PermissibleValue(text="Thymoma, medullary, NOS") ) - setattr(cls, "Eccrine poroma", - PermissibleValue(text="Eccrine poroma") ) - setattr(cls, "Ductal papilloma", - PermissibleValue(text="Ductal papilloma") ) - setattr(cls, "Biliary papillomatosis", - PermissibleValue(text="Biliary papillomatosis") ) - setattr(cls, "Lymphosarcoma, NOS", - PermissibleValue(text="Lymphosarcoma, NOS") ) - setattr(cls, "Astrocytoma, NOS", - PermissibleValue(text="Astrocytoma, NOS") ) - setattr(cls, "Nodular melanoma", - PermissibleValue(text="Nodular melanoma", - description="Nodular Melanoma") ) - setattr(cls, "Eosinophilic leukemia", - PermissibleValue(text="Eosinophilic leukemia") ) - setattr(cls, "Acute myeloid leukemia, AML1(CBF-alpha)/ETO", - PermissibleValue(text="Acute myeloid leukemia, AML1(CBF-alpha)/ETO") ) - setattr(cls, "Gigantiform cementoma", - PermissibleValue(text="Gigantiform cementoma") ) - setattr(cls, "Oncocytic carcinoma", - PermissibleValue(text="Oncocytic carcinoma", - description="Oxyphilic Adenocarcinoma") ) - setattr(cls, "Odontogenic fibrosarcoma", - PermissibleValue(text="Odontogenic fibrosarcoma") ) - setattr(cls, "Verrucous epidermoid carcinoma", - PermissibleValue(text="Verrucous epidermoid carcinoma") ) - setattr(cls, "Flat intraepithelial glandular neoplasia, high grade", - PermissibleValue(text="Flat intraepithelial glandular neoplasia, high grade") ) - setattr(cls, "Malignant melanoma in congenital melanocytic nevus", - PermissibleValue(text="Malignant melanoma in congenital melanocytic nevus") ) - setattr(cls, "Aleukemic granulocytic leukemia", - PermissibleValue(text="Aleukemic granulocytic leukemia") ) - setattr(cls, "Oncocytic adenoma", - PermissibleValue(text="Oncocytic adenoma") ) - setattr(cls, "Adenocarcinoma of anal glands", - PermissibleValue(text="Adenocarcinoma of anal glands") ) - setattr(cls, "FAB M1", - PermissibleValue(text="FAB M1") ) - setattr(cls, "Pigmented dermatofibrosarcoma protuberans", - PermissibleValue(text="Pigmented dermatofibrosarcoma protuberans") ) - setattr(cls, "Metatypical carcinoma", - PermissibleValue(text="Metatypical carcinoma") ) - setattr(cls, "Cribriform comedo-type carcinoma", - PermissibleValue(text="Cribriform comedo-type carcinoma") ) - setattr(cls, "T-zone lymphoma", - PermissibleValue(text="T-zone lymphoma") ) - setattr(cls, "Hyalinizing trabecular adenoma", - PermissibleValue(text="Hyalinizing trabecular adenoma") ) - setattr(cls, "Endometrial stromal sarcoma, low grade", - PermissibleValue(text="Endometrial stromal sarcoma, low grade") ) - setattr(cls, "Retinoblastoma, undifferentiated", - PermissibleValue(text="Retinoblastoma, undifferentiated") ) - setattr(cls, "Transitional cell papilloma, inverted, benign", - PermissibleValue(text="Transitional cell papilloma, inverted, benign") ) - setattr(cls, "Classical Hodgkin lymphoma, nodular sclerosis, grade 1", - PermissibleValue(text="Classical Hodgkin lymphoma, nodular sclerosis, grade 1") ) - setattr(cls, "Acute lymphoid leukemia", - PermissibleValue(text="Acute lymphoid leukemia") ) - setattr(cls, "Biliary intraepithelial neoplasia, grade 3", - PermissibleValue(text="Biliary intraepithelial neoplasia, grade 3") ) - setattr(cls, "Follicular thyroid carcinoma (FTC), encapsulated angioinvasive", - PermissibleValue(text="Follicular thyroid carcinoma (FTC), encapsulated angioinvasive") ) - setattr(cls, "Mantle cell lymphoma (Includes all variants blastic, pleomorphic, small cell)", - PermissibleValue(text="Mantle cell lymphoma (Includes all variants blastic, pleomorphic, small cell)") ) - setattr(cls, "Intraductal papillary tumor with high grade dysplasia", - PermissibleValue(text="Intraductal papillary tumor with high grade dysplasia") ) - setattr(cls, "Malignant fibrous histiocytoma (MFH) of bone", - PermissibleValue(text="Malignant fibrous histiocytoma (MFH) of bone") ) - setattr(cls, "Pilomyxoid astrocytoma", - PermissibleValue(text="Pilomyxoid astrocytoma") ) - setattr(cls, "Mucinous cystoma", - PermissibleValue(text="Mucinous cystoma") ) - setattr(cls, "Pre-pre-B ALL", - PermissibleValue(text="Pre-pre-B ALL") ) - setattr(cls, "Odontoma, NOS", - PermissibleValue(text="Odontoma, NOS") ) - setattr(cls, "Rosette-forming glioneuronal tumor", - PermissibleValue(text="Rosette-forming glioneuronal tumor") ) - setattr(cls, "Meningeal melanomatosis", - PermissibleValue(text="Meningeal melanomatosis") ) - setattr(cls, "Intraneural perineurioma", - PermissibleValue(text="Intraneural perineurioma") ) - setattr(cls, "Esophageal squamous intraepithelial neoplasia (dysplasia), low grade", - PermissibleValue(text="Esophageal squamous intraepithelial neoplasia (dysplasia), low grade") ) - setattr(cls, "GIST, NOS", - PermissibleValue(text="GIST, NOS") ) - setattr(cls, "Mucinous cystic tumor with intermediate dysplasia", - PermissibleValue(text="Mucinous cystic tumor with intermediate dysplasia") ) - setattr(cls, "Reserve cell carcinoma", - PermissibleValue(text="Reserve cell carcinoma") ) - setattr(cls, "Pulmonary myxoid sarcoma with EWSR1-CREB1 translocation", - PermissibleValue(text="Pulmonary myxoid sarcoma with EWSR1-CREB1 translocation") ) - setattr(cls, "Epithelial-myoepithelial carcinoma", - PermissibleValue(text="Epithelial-myoepithelial carcinoma", - description="Epithelial-Myoepithelial Carcinoma") ) - setattr(cls, "Adenocarcinoma of anal ducts", - PermissibleValue(text="Adenocarcinoma of anal ducts") ) - setattr(cls, "Intraductal tubular-papillary neoplasm, low grade", - PermissibleValue(text="Intraductal tubular-papillary neoplasm, low grade") ) - setattr(cls, "Involuting nevus", - PermissibleValue(text="Involuting nevus") ) - setattr(cls, "Thymoma, spindle cell, malignant", - PermissibleValue(text="Thymoma, spindle cell, malignant") ) - setattr(cls, "Intimal sarcoma", - PermissibleValue(text="Intimal sarcoma") ) - setattr(cls, "Intracystic papillary neoplasm with intermediate grade intraepithelial neoplasia", - PermissibleValue(text="Intracystic papillary neoplasm with intermediate grade intraepithelial neoplasia") ) - setattr(cls, "Papillomatosis, NOS", - PermissibleValue(text="Papillomatosis, NOS") ) - setattr(cls, "Follicular carcinoma, minimally invasive", - PermissibleValue(text="Follicular carcinoma, minimally invasive") ) - setattr(cls, "Compound nevus", - PermissibleValue(text="Compound nevus") ) - setattr(cls, "Thymoma, spindle cell, NOS", - PermissibleValue(text="Thymoma, spindle cell, NOS") ) - setattr(cls, "Mixed pineocytoma-pineoblastoma", - PermissibleValue(text="Mixed pineocytoma-pineoblastoma") ) - setattr(cls, "Salivary duct carcinoma", - PermissibleValue(text="Salivary duct carcinoma", - description="Salivary Duct Carcinoma") ) - setattr(cls, "Vipoma, malignant", - PermissibleValue(text="Vipoma, malignant") ) - setattr(cls, "Carcinoid tumor, argentaffin, malignant", - PermissibleValue(text="Carcinoid tumor, argentaffin, malignant") ) - setattr(cls, "Glandular intraepithelial neoplasia, grade III", - PermissibleValue(text="Glandular intraepithelial neoplasia, grade III") ) - setattr(cls, "Meningiomatosis, NOS", - PermissibleValue(text="Meningiomatosis, NOS") ) - setattr(cls, "Carcinoma with osteoclast-like giant cells", - PermissibleValue(text="Carcinoma with osteoclast-like giant cells") ) - setattr(cls, "Malignant lymphoma, small noncleaved, Burkitt type", - PermissibleValue(text="Malignant lymphoma, small noncleaved, Burkitt type") ) - setattr(cls, "Squamous papillomatosis", - PermissibleValue(text="Squamous papillomatosis") ) - setattr(cls, "Papillary carcinoma of thyroid", - PermissibleValue(text="Papillary carcinoma of thyroid") ) - setattr(cls, "Intracystic papillary neoplasm with associated invasive carcinoma", - PermissibleValue(text="Intracystic papillary neoplasm with associated invasive carcinoma") ) - setattr(cls, "Squamous cell carcinoma in situ with questionable stromal invasion", - PermissibleValue(text="Squamous cell carcinoma in situ with questionable stromal invasion") ) - setattr(cls, "Desmoplastic small round cell tumor", - PermissibleValue(text="Desmoplastic small round cell tumor") ) - setattr(cls, "Low grade appendiceal mucinous neoplasm", - PermissibleValue(text="Low grade appendiceal mucinous neoplasm") ) - setattr(cls, "Fetal fat cell lipoma", - PermissibleValue(text="Fetal fat cell lipoma") ) - setattr(cls, "Aortic body tumor", - PermissibleValue(text="Aortic body tumor") ) - setattr(cls, "Low-grade fibromyxoid sarcoma", - PermissibleValue(text="Low-grade fibromyxoid sarcoma") ) - setattr(cls, "Lymphangioendothelioma, NOS", - PermissibleValue(text="Lymphangioendothelioma, NOS") ) - setattr(cls, "Epidermoid carcinoma, small cell, nonkeratinizing", - PermissibleValue(text="Epidermoid carcinoma, small cell, nonkeratinizing") ) - setattr(cls, "Adenosquamous carcinoma", - PermissibleValue(text="Adenosquamous carcinoma") ) - setattr(cls, "Precursor cell lymphoblastic leukemia, NOS", - PermissibleValue(text="Precursor cell lymphoblastic leukemia, NOS") ) - setattr(cls, "Liposarcoma, well differentiated", - PermissibleValue(text="Liposarcoma, well differentiated") ) - setattr(cls, "Endometrioid adenofibroma, NOS", - PermissibleValue(text="Endometrioid adenofibroma, NOS") ) - setattr(cls, "Fibroepithelial basal cell carcinoma, Pinkus type", - PermissibleValue(text="Fibroepithelial basal cell carcinoma, Pinkus type") ) - setattr(cls, "Splenic marginal zone lymphoma, NOS", - PermissibleValue(text="Splenic marginal zone lymphoma, NOS") ) - setattr(cls, "Atypical chronic myeloid leukemia, Philadelphia chromosome (Ph1) negative", - PermissibleValue(text="Atypical chronic myeloid leukemia, Philadelphia chromosome (Ph1) negative") ) - setattr(cls, "Agnogenic myeloid metaplasia", - PermissibleValue(text="Agnogenic myeloid metaplasia") ) - setattr(cls, "Angioimmunoblastic lymphoma", - PermissibleValue(text="Angioimmunoblastic lymphoma") ) - setattr(cls, "Serrated adenocarcinoma", - PermissibleValue(text="Serrated adenocarcinoma") ) - setattr(cls, "Classical Hodgkin lymphoma, mixed cellularity, NOS", - PermissibleValue(text="Classical Hodgkin lymphoma, mixed cellularity, NOS") ) - setattr(cls, "Infiltrating lobular carcinoma and ductal carcinoma in situ", - PermissibleValue(text="Infiltrating lobular carcinoma and ductal carcinoma in situ") ) - setattr(cls, "FAB M3 (includes all variants)", - PermissibleValue(text="FAB M3 (includes all variants)") ) - setattr(cls, "Keratotoc papilloma", - PermissibleValue(text="Keratotoc papilloma") ) - setattr(cls, "Juvenile hemangioma", - PermissibleValue(text="Juvenile hemangioma") ) - setattr(cls, "Malignant lymphoma, centroblastic, diffuse", - PermissibleValue(text="Malignant lymphoma, centroblastic, diffuse") ) - setattr(cls, "Adrenal cortical adenoma, glomerulosa cell", - PermissibleValue(text="Adrenal cortical adenoma, glomerulosa cell") ) - setattr(cls, "Adenocarcinoma in situ in a polyp, NOS", - PermissibleValue(text="Adenocarcinoma in situ in a polyp, NOS") ) - setattr(cls, "Malignant lymphoma, non-Hodgkin, NOS", - PermissibleValue(text="Malignant lymphoma, non-Hodgkin, NOS") ) - setattr(cls, "Cystosarcoma phyllodes, malignant", - PermissibleValue(text="Cystosarcoma phyllodes, malignant") ) - setattr(cls, "Malignant lymphoma, plasmacytoid", - PermissibleValue(text="Malignant lymphoma, plasmacytoid") ) - setattr(cls, "Hepatosplenic gamma-delta cell lymphoma", - PermissibleValue(text="Hepatosplenic gamma-delta cell lymphoma") ) - setattr(cls, "Low grade cribriform cystadenocarcinoma (LGCCC)", - PermissibleValue(text="Low grade cribriform cystadenocarcinoma (LGCCC)") ) - setattr(cls, "Bronchiolo-alveolar carcinoma, non-mucinous", - PermissibleValue(text="Bronchiolo-alveolar carcinoma, non-mucinous") ) - setattr(cls, "Endometrioid adenoma, borderline malignancy", - PermissibleValue(text="Endometrioid adenoma, borderline malignancy") ) - setattr(cls, "Craniopharyngioma, adamantinomatous", - PermissibleValue(text="Craniopharyngioma, adamantinomatous") ) - setattr(cls, "Vascular leiomyoma", - PermissibleValue(text="Vascular leiomyoma") ) - setattr(cls, "Epithelial tumor, malignant", - PermissibleValue(text="Epithelial tumor, malignant") ) - setattr(cls, "Diffuse intraductal papillomatosis", - PermissibleValue(text="Diffuse intraductal papillomatosis") ) - setattr(cls, "Large granular lymphocytosis, NOS", - PermissibleValue(text="Large granular lymphocytosis, NOS") ) - setattr(cls, "Warthin tumor", - PermissibleValue(text="Warthin tumor") ) - setattr(cls, "Splenic lymphoma with villous lymphocytes", - PermissibleValue(text="Splenic lymphoma with villous lymphocytes") ) - setattr(cls, "Histiocytic sarcoma", - PermissibleValue(text="Histiocytic sarcoma") ) - setattr(cls, "Embryonal hepatoma", - PermissibleValue(text="Embryonal hepatoma") ) - setattr(cls, "Malignant lymphoma, mixed cell type, nodular", - PermissibleValue(text="Malignant lymphoma, mixed cell type, nodular") ) - setattr(cls, "Mixed adenomatous and hyperplastic polyp", - PermissibleValue(text="Mixed adenomatous and hyperplastic polyp") ) - setattr(cls, "DCIS, NOS", - PermissibleValue(text="DCIS, NOS") ) - setattr(cls, "Malignant lymphoma, small cell, noncleaved, diffuse", - PermissibleValue(text="Malignant lymphoma, small cell, noncleaved, diffuse") ) - setattr(cls, "Malignant lymphoma, lymphocytic, NOS", - PermissibleValue(text="Malignant lymphoma, lymphocytic, NOS") ) - setattr(cls, "Granular cell tumor of the sellar region", - PermissibleValue(text="Granular cell tumor of the sellar region") ) - setattr(cls, "Lymphangioendothelial sarcoma", - PermissibleValue(text="Lymphangioendothelial sarcoma") ) - setattr(cls, "Prolymphocytic leukemia, B-cell type", - PermissibleValue(text="Prolymphocytic leukemia, B-cell type") ) - setattr(cls, "Composite Hodgkin and non-Hodgkin lymphoma", - PermissibleValue(text="Composite Hodgkin and non-Hodgkin lymphoma") ) - setattr(cls, "High grade surface osteosarcoma", - PermissibleValue(text="High grade surface osteosarcoma") ) - setattr(cls, "Ameloblastic fibroma", - PermissibleValue(text="Ameloblastic fibroma") ) - setattr(cls, "Renal cell carcinoma, spindle cell", - PermissibleValue(text="Renal cell carcinoma, spindle cell") ) - setattr(cls, "Flat adenoma", - PermissibleValue(text="Flat adenoma") ) - setattr(cls, "Medullary carcinoma, NOS", - PermissibleValue(text="Medullary carcinoma, NOS") ) - setattr(cls, "Mesothelial papilloma", - PermissibleValue(text="Mesothelial papilloma") ) - setattr(cls, "Adenoma of nipple", - PermissibleValue(text="Adenoma of nipple") ) - setattr(cls, "Acute lymphocytic leukemia", - PermissibleValue(text="Acute lymphocytic leukemia") ) - setattr(cls, "Primary cutaneous anaplastic large cell lymphoma", - PermissibleValue(text="Primary cutaneous anaplastic large cell lymphoma") ) - setattr(cls, "Acute monoblastic leukemia", - PermissibleValue(text="Acute monoblastic leukemia") ) - setattr(cls, "Glycogen-rich carcinoma", - PermissibleValue(text="Glycogen-rich carcinoma") ) - setattr(cls, "Adenocystic carcinoma", - PermissibleValue(text="Adenocystic carcinoma") ) - setattr(cls, "Rhabdomyoma, NOS", - PermissibleValue(text="Rhabdomyoma, NOS") ) - setattr(cls, "Brenner tumor, borderline malignancy", - PermissibleValue(text="Brenner tumor, borderline malignancy") ) - setattr(cls, "FAB M4", - PermissibleValue(text="FAB M4") ) - setattr(cls, "Sertoli-Leydig cell tumor of intermediate differentiation", - PermissibleValue(text="Sertoli-Leydig cell tumor of intermediate differentiation") ) - setattr(cls, "Sezary syndrome", - PermissibleValue(text="Sezary syndrome") ) - setattr(cls, "Infiltrating lipoma", - PermissibleValue(text="Infiltrating lipoma") ) - setattr(cls, "Lentigo maligna", - PermissibleValue(text="Lentigo maligna") ) - setattr(cls, "Eosinophil adenocarcinoma", - PermissibleValue(text="Eosinophil adenocarcinoma") ) - setattr(cls, "Odontogenic carcinoma", - PermissibleValue(text="Odontogenic carcinoma") ) - setattr(cls, "Brenner tumor, proliferating", - PermissibleValue(text="Brenner tumor, proliferating") ) - setattr(cls, "Clear cell adenocarcinoma, NOS", - PermissibleValue(text="Clear cell adenocarcinoma, NOS") ) - setattr(cls, "Carcinoma in pleomorphic adenoma", - PermissibleValue(text="Carcinoma in pleomorphic adenoma") ) - setattr(cls, "Serous cystoma", - PermissibleValue(text="Serous cystoma") ) - setattr(cls, "Bronchiolo-alveolar carcinoma, type II pneumocyte and goblet cell type", - PermissibleValue(text="Bronchiolo-alveolar carcinoma, type II pneumocyte and goblet cell type") ) - setattr(cls, "Follicular adenocarcinoma, moderately differentiated", - PermissibleValue(text="Follicular adenocarcinoma, moderately differentiated") ) - setattr(cls, "Urothelial papilloma, NOS", - PermissibleValue(text="Urothelial papilloma, NOS") ) - setattr(cls, "Solitary fibrous tumor", - PermissibleValue(text="Solitary fibrous tumor") ) - setattr(cls, "Enteroglucagonoma, NOS", - PermissibleValue(text="Enteroglucagonoma, NOS") ) - setattr(cls, "Carcinoma, intestinal type", - PermissibleValue(text="Carcinoma, intestinal type") ) - setattr(cls, "Tanycytic ependymoma", - PermissibleValue(text="Tanycytic ependymoma") ) - setattr(cls, "Papillary squamous cell carcinoma in situ", - PermissibleValue(text="Papillary squamous cell carcinoma in situ") ) - setattr(cls, "Acute myeloid leukemia, CBF-beta/MYH11", - PermissibleValue(text="Acute myeloid leukemia, CBF-beta/MYH11") ) - setattr(cls, "VIN III", - PermissibleValue(text="VIN III") ) - setattr(cls, "Squamous cell carcinoma, nonkeratinizing, NOS", - PermissibleValue(text="Squamous cell carcinoma, nonkeratinizing, NOS") ) - setattr(cls, "B-ALL", - PermissibleValue(text="B-ALL") ) - setattr(cls, "Unclassified tumor, malignant, uncertain whether primary or metastatic", - PermissibleValue(text="Unclassified tumor, malignant, uncertain whether primary or metastatic") ) - setattr(cls, "Askin tumor", - PermissibleValue(text="Askin tumor") ) - setattr(cls, "Mesenchymal chondrosarcoma", - PermissibleValue(text="Mesenchymal chondrosarcoma") ) - setattr(cls, "Villoglandular adenoma", - PermissibleValue(text="Villoglandular adenoma") ) - setattr(cls, "Flat intraepithelial neoplasia, high grade", - PermissibleValue(text="Flat intraepithelial neoplasia, high grade") ) - setattr(cls, "Papillary carcinoma, columnar cell", - PermissibleValue(text="Papillary carcinoma, columnar cell") ) - setattr(cls, "Small cell carcinoma pulmonary type", - PermissibleValue(text="Small cell carcinoma pulmonary type") ) - setattr(cls, "Synovial sarcoma, epithelioid cell", - PermissibleValue(text="Synovial sarcoma, epithelioid cell") ) - setattr(cls, "Villous papilloma", - PermissibleValue(text="Villous papilloma") ) - setattr(cls, "Mixed adenocarcinoma and squamous cell carcinoma", - PermissibleValue(text="Mixed adenocarcinoma and squamous cell carcinoma") ) - setattr(cls, "Carcinoma in situ in a polyp, NOS", - PermissibleValue(text="Carcinoma in situ in a polyp, NOS") ) - setattr(cls, "Acute lymphoblastic leukemia-lymphoma, NOS", - PermissibleValue(text="Acute lymphoblastic leukemia-lymphoma, NOS") ) - setattr(cls, "Intracystic carcinoma, NOS", - PermissibleValue(text="Intracystic carcinoma, NOS") ) - setattr(cls, "Squamous carcinoma", - PermissibleValue(text="Squamous carcinoma") ) - setattr(cls, "Endometrioid adenocarcinoma, villoglandular", - PermissibleValue(text="Endometrioid adenocarcinoma, villoglandular") ) - setattr(cls, "Anaplastic medulloblastoma", - PermissibleValue(text="Anaplastic medulloblastoma") ) - setattr(cls, "Monocytoid B-cell lymphoma", - PermissibleValue(text="Monocytoid B-cell lymphoma") ) - setattr(cls, "Refractory anemia", - PermissibleValue(text="Refractory anemia") ) - setattr(cls, "Teratoma, malignant, NOS", - PermissibleValue(text="Teratoma, malignant, NOS") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Malignant lymphoma, lymphocytic, diffuse, NOS", - PermissibleValue(text="Malignant lymphoma, lymphocytic, diffuse, NOS") ) - setattr(cls, "Trabecular adenocarcinoma", - PermissibleValue(text="Trabecular adenocarcinoma") ) - setattr(cls, "Clear cell adenocarcinofibroma", - PermissibleValue(text="Clear cell adenocarcinofibroma") ) - setattr(cls, "Carcinoma in situ in adenomatous polyp", - PermissibleValue(text="Carcinoma in situ in adenomatous polyp") ) - setattr(cls, "Acute myelomonocytic leukemia", - PermissibleValue(text="Acute myelomonocytic leukemia") ) - setattr(cls, "Endocervical adenocarcinoma usual type", - PermissibleValue(text="Endocervical adenocarcinoma usual type") ) - setattr(cls, "Lymphoblastic leukemia, NOS", - PermissibleValue(text="Lymphoblastic leukemia, NOS") ) - setattr(cls, "Invasive carcinoma, NST", - PermissibleValue(text="Invasive carcinoma, NST") ) - setattr(cls, "Malignant lymphoma, centroblasticcentrocytic, diffuse", - PermissibleValue(text="Malignant lymphoma, centroblasticcentrocytic, diffuse") ) - setattr(cls, "Cystic partially differentiated nephroblastoma", - PermissibleValue(text="Cystic partially differentiated nephroblastoma") ) - setattr(cls, "Superficial spreading adenocarcinoma", - PermissibleValue(text="Superficial spreading adenocarcinoma") ) - setattr(cls, "Acinar cell cystadenocarcinoma", - PermissibleValue(text="Acinar cell cystadenocarcinoma", - description="Pancreatic Acinar Cell Cystadenocarcinoma") ) - setattr(cls, "Teratoma, NOS", - PermissibleValue(text="Teratoma, NOS") ) - setattr(cls, "Parietal cell carcinoma", - PermissibleValue(text="Parietal cell carcinoma") ) - setattr(cls, "Hepatoma, NOS", - PermissibleValue(text="Hepatoma, NOS") ) - setattr(cls, "Sebaceous epithelioma", - PermissibleValue(text="Sebaceous epithelioma") ) - setattr(cls, "Adenocarcinoma in situ in villous adenoma", - PermissibleValue(text="Adenocarcinoma in situ in villous adenoma") ) - setattr(cls, "Hodgkin disease, NOS", - PermissibleValue(text="Hodgkin disease, NOS") ) - setattr(cls, "Endometrioid cystadenoma, borderline malignancy", - PermissibleValue(text="Endometrioid cystadenoma, borderline malignancy") ) - setattr(cls, "Hepatocellular carcinoma, clear cell type", - PermissibleValue(text="Hepatocellular carcinoma, clear cell type") ) - setattr(cls, "Infiltrating duct and tubular carcinoma", - PermissibleValue(text="Infiltrating duct and tubular carcinoma") ) - setattr(cls, "Round cell osteosarcoma", - PermissibleValue(text="Round cell osteosarcoma") ) - setattr(cls, "Rathke pouch tumor", - PermissibleValue(text="Rathke pouch tumor") ) - setattr(cls, "Subependymal giant cell astrocytoma", - PermissibleValue(text="Subependymal giant cell astrocytoma") ) - setattr(cls, "Sertoli-Leydig cell tumor, poorly differentiated", - PermissibleValue(text="Sertoli-Leydig cell tumor, poorly differentiated") ) - setattr(cls, "Squamous cell papilloma, inverted", - PermissibleValue(text="Squamous cell papilloma, inverted") ) - setattr(cls, "Sarcoma, NOS", - PermissibleValue(text="Sarcoma, NOS") ) - setattr(cls, "Subacute myeloid leukemia", - PermissibleValue(text="Subacute myeloid leukemia") ) - setattr(cls, "Intraepithelial carcinoma, NOS", - PermissibleValue(text="Intraepithelial carcinoma, NOS") ) - setattr(cls, "Comedocarcinoma, NOS", - PermissibleValue(text="Comedocarcinoma, NOS") ) - setattr(cls, "Adenocarcinoma in situ, NOS", - PermissibleValue(text="Adenocarcinoma in situ, NOS") ) - setattr(cls, "Hodgkin lymphoma, mixed cellularity, NOS", - PermissibleValue(text="Hodgkin lymphoma, mixed cellularity, NOS") ) - setattr(cls, "Hepatoma, benign", - PermissibleValue(text="Hepatoma, benign") ) - setattr(cls, "Pilar tumor", - PermissibleValue(text="Pilar tumor") ) - setattr(cls, "Synovial sarcoma, NOS", - PermissibleValue(text="Synovial sarcoma, NOS") ) - setattr(cls, "Thecoma, NOS", - PermissibleValue(text="Thecoma, NOS") ) - setattr(cls, "Serous microcystic adenoma", - PermissibleValue(text="Serous microcystic adenoma") ) - setattr(cls, "Acinar cell adenoma", - PermissibleValue(text="Acinar cell adenoma") ) - setattr(cls, "Glioblastoma, IDH-mutant", - PermissibleValue(text="Glioblastoma, IDH-mutant") ) - setattr(cls, "Diffuse astrocytoma, IDH-mutant", - PermissibleValue(text="Diffuse astrocytoma, IDH-mutant") ) - setattr(cls, "Condylomatous carcinoma", - PermissibleValue(text="Condylomatous carcinoma") ) - setattr(cls, "Follicular carcinoma, trabecular", - PermissibleValue(text="Follicular carcinoma, trabecular") ) - setattr(cls, "Malignant lymphoma, lymphoplasmacytic", - PermissibleValue(text="Malignant lymphoma, lymphoplasmacytic") ) - setattr(cls, "Solid and papillary epithelial neoplasm", - PermissibleValue(text="Solid and papillary epithelial neoplasm") ) - setattr(cls, "Mullerian mixed tumor", - PermissibleValue(text="Mullerian mixed tumor") ) - setattr(cls, "Papillary microcarcinoma", - PermissibleValue(text="Papillary microcarcinoma") ) - setattr(cls, "Melanotic progonoma", - PermissibleValue(text="Melanotic progonoma") ) - setattr(cls, "Melanotic schwannoma", - PermissibleValue(text="Melanotic schwannoma") ) - setattr(cls, "Ductal intraepithelial neoplasia 3", - PermissibleValue(text="Ductal intraepithelial neoplasia 3") ) - setattr(cls, "Juvenile melanoma", - PermissibleValue(text="Juvenile melanoma") ) - setattr(cls, "Malignant serous adenofibroma", - PermissibleValue(text="Malignant serous adenofibroma") ) - setattr(cls, "Intraductal papilloma with ductal carcinoma in situ", - PermissibleValue(text="Intraductal papilloma with ductal carcinoma in situ") ) - setattr(cls, "Non-invasive follicular thyroid neoplasm with papillary-like nuclear features (NIFTP)", - PermissibleValue(text="Non-invasive follicular thyroid neoplasm with papillary-like nuclear features (NIFTP)") ) - setattr(cls, "Periapical cemental dysplasia", - PermissibleValue(text="Periapical cemental dysplasia") ) - setattr(cls, "Paget disease, mammary", - PermissibleValue(text="Paget disease, mammary") ) - setattr(cls, "Schneiderian papilloma, inverted", - PermissibleValue(text="Schneiderian papilloma, inverted") ) - setattr(cls, "Sinonasal papilloma, NOS", - PermissibleValue(text="Sinonasal papilloma, NOS") ) - setattr(cls, "Alpha cell tumor, malignant", - PermissibleValue(text="Alpha cell tumor, malignant") ) - setattr(cls, "Infiltrating lobular mixed with other types of carcinoma", - PermissibleValue(text="Infiltrating lobular mixed with other types of carcinoma") ) - setattr(cls, "Proliferating trichilemmal cyst", - PermissibleValue(text="Proliferating trichilemmal cyst") ) - setattr(cls, "Well differentiated thymic carcinoma", - PermissibleValue(text="Well differentiated thymic carcinoma") ) - setattr(cls, "Diktyoma, malignant", - PermissibleValue(text="Diktyoma, malignant") ) - setattr(cls, "Periosteal chondrosarcoma", - PermissibleValue(text="Periosteal chondrosarcoma") ) - setattr(cls, "Atypical fibrous histiocytoma", - PermissibleValue(text="Atypical fibrous histiocytoma") ) - setattr(cls, "Mucinous adenocarcinofibroma", - PermissibleValue(text="Mucinous adenocarcinofibroma") ) - setattr(cls, "Mixed cell adenocarcinoma", - PermissibleValue(text="Mixed cell adenocarcinoma") ) - setattr(cls, "Large cell medulloblastoma", - PermissibleValue(text="Large cell medulloblastoma") ) - setattr(cls, "Chronic myelomonocytic leukemia in transformation", - PermissibleValue(text="Chronic myelomonocytic leukemia in transformation") ) - setattr(cls, "Tubulolobular carcinoma", - PermissibleValue(text="Tubulolobular carcinoma") ) - setattr(cls, "Subependymal glioma", - PermissibleValue(text="Subependymal glioma") ) - setattr(cls, "Hodgkin lymphoma, nodular sclerosis, cellular phase", - PermissibleValue(text="Hodgkin lymphoma, nodular sclerosis, cellular phase") ) - setattr(cls, "Adenocarcinoma in a polyp, NOS", - PermissibleValue(text="Adenocarcinoma in a polyp, NOS") ) - setattr(cls, "Pro-B ALL", - PermissibleValue(text="Pro-B ALL") ) - setattr(cls, "Adenocarcinoma, pancreatobiliary type", - PermissibleValue(text="Adenocarcinoma, pancreatobiliary type") ) - setattr(cls, "Tubulopapillary adenocarcinoma", - PermissibleValue(text="Tubulopapillary adenocarcinoma") ) - setattr(cls, "Diffuse large B-cell lymphoma, NOS", - PermissibleValue(text="Diffuse large B-cell lymphoma, NOS") ) - setattr(cls, "Interdigitating dendritic cell sarcoma", - PermissibleValue(text="Interdigitating dendritic cell sarcoma") ) - setattr(cls, "Large B-cell lymphoma arising in HHV8-associated multicentric Castleman disease", - PermissibleValue(text="Large B-cell lymphoma arising in HHV8-associated multicentric Castleman disease") ) - setattr(cls, "Squamous intraepithelial neoplasia, grade I", - PermissibleValue(text="Squamous intraepithelial neoplasia, grade I") ) - setattr(cls, "Ganglioglioma, anaplastic", - PermissibleValue(text="Ganglioglioma, anaplastic") ) - setattr(cls, "Eosinophil carcinoma", - PermissibleValue(text="Eosinophil carcinoma") ) - setattr(cls, "Papilloma of bladder", - PermissibleValue(text="Papilloma of bladder") ) - setattr(cls, "Warty carcinoma", - PermissibleValue(text="Warty carcinoma") ) - setattr(cls, "Malignant lymphoma, mixed cell type, diffuse", - PermissibleValue(text="Malignant lymphoma, mixed cell type, diffuse") ) - setattr(cls, "Mixed tumor, salivary gland type, NOS", - PermissibleValue(text="Mixed tumor, salivary gland type, NOS") ) - setattr(cls, "Myeloid and lymphoid neoplasms with PDGFRA rearrangement", - PermissibleValue(text="Myeloid and lymphoid neoplasms with PDGFRA rearrangement") ) - setattr(cls, "Mucoepidermoid tumor", - PermissibleValue(text="Mucoepidermoid tumor") ) - setattr(cls, "Hodgkin granuloma", - PermissibleValue(text="Hodgkin granuloma") ) - setattr(cls, "Metaplastic carcinoma with osseous differentiation", - PermissibleValue(text="Metaplastic carcinoma with osseous differentiation") ) - setattr(cls, "Blastic NK cell lymphoma", - PermissibleValue(text="Blastic NK cell lymphoma") ) - setattr(cls, "Intraductal micropapillary carcinoma", - PermissibleValue(text="Intraductal micropapillary carcinoma") ) - setattr(cls, "Granular cell tumor, NOS", - PermissibleValue(text="Granular cell tumor, NOS") ) - setattr(cls, "Letterer-Siwe disease", - PermissibleValue(text="Letterer-Siwe disease") ) - setattr(cls, "Epithelioma, malignant", - PermissibleValue(text="Epithelioma, malignant") ) - setattr(cls, "Clear cell adenofibroma", - PermissibleValue(text="Clear cell adenofibroma") ) - setattr(cls, "Biliary intraepithelial neoplasia, high grade", - PermissibleValue(text="Biliary intraepithelial neoplasia, high grade") ) - setattr(cls, "Endometrial sarcoma, NOS", - PermissibleValue(text="Endometrial sarcoma, NOS") ) - setattr(cls, "Indeterminate dendritic cell tumor", - PermissibleValue(text="Indeterminate dendritic cell tumor") ) - setattr(cls, "Cellular leiomyoma", - PermissibleValue(text="Cellular leiomyoma") ) - setattr(cls, "Mixed cell adenoma", - PermissibleValue(text="Mixed cell adenoma") ) - setattr(cls, "Theca cell-granulosa cell tumor", - PermissibleValue(text="Theca cell-granulosa cell tumor") ) - setattr(cls, "Carcinoma, undifferentiated, NOS", - PermissibleValue(text="Carcinoma, undifferentiated, NOS") ) - setattr(cls, "Gastrointestinal stromal tumor, benign", - PermissibleValue(text="Gastrointestinal stromal tumor, benign") ) - setattr(cls, "Ectopic hamartomatous thymoma", - PermissibleValue(text="Ectopic hamartomatous thymoma") ) - setattr(cls, "Subacute monocytic leukemia", - PermissibleValue(text="Subacute monocytic leukemia") ) - setattr(cls, "Non-invasive encapsulated follicular variant of papillary thyroid carcinoma (non-invasive EFVPTC)", - PermissibleValue(text="Non-invasive encapsulated follicular variant of papillary thyroid carcinoma (non-invasive EFVPTC)") ) - setattr(cls, "True histiocytic lymphoma", - PermissibleValue(text="True histiocytic lymphoma") ) - setattr(cls, "Plexiform fibrohistiocytic tumor", - PermissibleValue(text="Plexiform fibrohistiocytic tumor") ) - setattr(cls, "Intramuscular lipoma", - PermissibleValue(text="Intramuscular lipoma") ) - setattr(cls, "Malignant mastocytosis", - PermissibleValue(text="Malignant mastocytosis") ) - setattr(cls, "Pseudomucinous cystadenoma, NOS", - PermissibleValue(text="Pseudomucinous cystadenoma, NOS") ) - setattr(cls, "Carcinoid tumor of uncertain malignant potential", - PermissibleValue(text="Carcinoid tumor of uncertain malignant potential") ) - setattr(cls, "Brown fat tumor", - PermissibleValue(text="Brown fat tumor") ) - setattr(cls, "Lipoma, NOS", - PermissibleValue(text="Lipoma, NOS") ) - setattr(cls, "Sinonasal papilloma, exophytic", - PermissibleValue(text="Sinonasal papilloma, exophytic") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma with hypodiploidy (Hypodiploid ALL)", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma with hypodiploidy (Hypodiploid ALL)") ) - setattr(cls, "Mesonephric tumor, NOS", - PermissibleValue(text="Mesonephric tumor, NOS") ) - setattr(cls, "Malignant lymphoma, large cell, cleaved and noncleaved", - PermissibleValue(text="Malignant lymphoma, large cell, cleaved and noncleaved") ) - setattr(cls, "Adenocarcinoma with spindle cell metaplasia", - PermissibleValue(text="Adenocarcinoma with spindle cell metaplasia") ) - setattr(cls, "Mucinous carcinoma", - PermissibleValue(text="Mucinous carcinoma") ) - setattr(cls, "Mesonephric adenocarcinoma", - PermissibleValue(text="Mesonephric adenocarcinoma") ) - setattr(cls, "Heavy chain disease, NOS", - PermissibleValue(text="Heavy chain disease, NOS") ) - setattr(cls, "Tumor embolus", - PermissibleValue(text="Tumor embolus") ) - setattr(cls, "Epidermoid carcinoma in situ, NOS", - PermissibleValue(text="Epidermoid carcinoma in situ, NOS") ) - setattr(cls, "Plasmablastic lymphoma", - PermissibleValue(text="Plasmablastic lymphoma") ) - setattr(cls, "Biliary intraepithelial neoplasia, low grade", - PermissibleValue(text="Biliary intraepithelial neoplasia, low grade") ) - setattr(cls, "Astrocytic glioma", - PermissibleValue(text="Astrocytic glioma") ) - setattr(cls, "Malignant fibrous histiocytoma", - PermissibleValue(text="Malignant fibrous histiocytoma") ) - setattr(cls, "Inflammatory liposarcoma", - PermissibleValue(text="Inflammatory liposarcoma") ) - setattr(cls, "Tumorlet, NOS", - PermissibleValue(text="Tumorlet, NOS") ) - setattr(cls, "Intraductal papillary-mucinous carcinoma, invasive", - PermissibleValue(text="Intraductal papillary-mucinous carcinoma, invasive") ) - setattr(cls, "Metaplastic carcinoma of no special type", - PermissibleValue(text="Metaplastic carcinoma of no special type") ) - setattr(cls, "Cystic tumor of atrio-ventricular node", - PermissibleValue(text="Cystic tumor of atrio-ventricular node") ) - setattr(cls, "Bronchiolo-alveolar carcinoma, goblet cell type", - PermissibleValue(text="Bronchiolo-alveolar carcinoma, goblet cell type") ) - setattr(cls, "Monoblastic leukemia, NOS", - PermissibleValue(text="Monoblastic leukemia, NOS") ) - setattr(cls, "Mast cell tumor, NOS", - PermissibleValue(text="Mast cell tumor, NOS") ) - setattr(cls, "Papillary and follicular adenocarcinoma", - PermissibleValue(text="Papillary and follicular adenocarcinoma") ) - setattr(cls, "Plasmacytic lymphoma", - PermissibleValue(text="Plasmacytic lymphoma") ) - setattr(cls, "Common ALL", - PermissibleValue(text="Common ALL") ) - setattr(cls, "Endometrioid adenocarcinoma, secretory variant", - PermissibleValue(text="Endometrioid adenocarcinoma, secretory variant") ) - setattr(cls, "AML M6", - PermissibleValue(text="AML M6") ) - setattr(cls, "Invasive lobular carcinoma, solid type", - PermissibleValue(text="Invasive lobular carcinoma, solid type") ) - setattr(cls, "Water-clear cell carcinoma", - PermissibleValue(text="Water-clear cell carcinoma") ) - setattr(cls, "Secretory meningioma", - PermissibleValue(text="Secretory meningioma") ) - setattr(cls, "Ewing tumor", - PermissibleValue(text="Ewing tumor") ) - setattr(cls, "Malignant lymphoma, centrocytic", - PermissibleValue(text="Malignant lymphoma, centrocytic") ) - setattr(cls, "Hereditary leiomyomatosis & RCC-associated renal cell carcinoma", - PermissibleValue(text="Hereditary leiomyomatosis & RCC-associated renal cell carcinoma") ) - setattr(cls, "Acute myloid leukemia, 11q23 abnormalities", - PermissibleValue(text="Acute myloid leukemia, 11q23 abnormalities") ) - setattr(cls, "Refractory anemia with excess blasts in transformation", - PermissibleValue(text="Refractory anemia with excess blasts in transformation") ) - setattr(cls, "Malignant lymphoma, lymphocytic, well differentiated, nodular", - PermissibleValue(text="Malignant lymphoma, lymphocytic, well differentiated, nodular") ) - setattr(cls, "Meningioma, NOS", - PermissibleValue(text="Meningioma, NOS") ) - setattr(cls, "Microcystic meningioma", - PermissibleValue(text="Microcystic meningioma") ) - setattr(cls, "Micropapillary carcinoma, NOS", - PermissibleValue(text="Micropapillary carcinoma, NOS") ) - setattr(cls, "Carcinoma simplex", - PermissibleValue(text="Carcinoma simplex") ) - setattr(cls, "Mixed subependymoma-ependymoma", - PermissibleValue(text="Mixed subependymoma-ependymoma") ) - setattr(cls, "Adenocarcinoma in situ in polypoid adenoma", - PermissibleValue(text="Adenocarcinoma in situ in polypoid adenoma") ) - setattr(cls, "Langerhans cell histiocytosis, disseminated", - PermissibleValue(text="Langerhans cell histiocytosis, disseminated") ) - setattr(cls, "Embryonal tumor with rhabdoid features", - PermissibleValue(text="Embryonal tumor with rhabdoid features") ) - setattr(cls, "Skin appendage adenoma", - PermissibleValue(text="Skin appendage adenoma") ) - setattr(cls, "Primary cutaneous CD8-positive aggressive epidermotropic cytotoxic T-cell lymphoma", - PermissibleValue(text="Primary cutaneous CD8-positive aggressive epidermotropic cytotoxic T-cell lymphoma") ) - setattr(cls, "Rhabdoid meningioma", - PermissibleValue(text="Rhabdoid meningioma") ) - setattr(cls, "Immunoglobulin deposition disease", - PermissibleValue(text="Immunoglobulin deposition disease") ) - setattr(cls, "Intraductal carcinoma, clinging", - PermissibleValue(text="Intraductal carcinoma, clinging") ) - setattr(cls, "Follicular carcinoma, NOS", - PermissibleValue(text="Follicular carcinoma, NOS") ) - setattr(cls, "Malignant lymphoma, small cleaved cell, diffuse", - PermissibleValue(text="Malignant lymphoma, small cleaved cell, diffuse") ) - setattr(cls, "Refractory anemia with excess blasts", - PermissibleValue(text="Refractory anemia with excess blasts") ) - setattr(cls, "Papillary cystadenocarcinoma, NOS", - PermissibleValue(text="Papillary cystadenocarcinoma, NOS") ) - setattr(cls, "Medulloepithelioma, benign", - PermissibleValue(text="Medulloepithelioma, benign") ) - setattr(cls, "Osteochondromatosis, NOS", - PermissibleValue(text="Osteochondromatosis, NOS") ) - setattr(cls, "Mixed medullary-papillary carcinoma", - PermissibleValue(text="Mixed medullary-papillary carcinoma") ) - setattr(cls, "Subacute granulocytic leukemia", - PermissibleValue(text="Subacute granulocytic leukemia") ) - setattr(cls, "Large cell carcinoma, NOS", - PermissibleValue(text="Large cell carcinoma, NOS") ) - setattr(cls, "Spindled mesothelioma", - PermissibleValue(text="Spindled mesothelioma") ) - setattr(cls, "Fetal rhabdomyoma", - PermissibleValue(text="Fetal rhabdomyoma") ) - setattr(cls, "Malignant lymphoma, lymphocytic, intermediate differentiation, nodular", - PermissibleValue(text="Malignant lymphoma, lymphocytic, intermediate differentiation, nodular") ) - setattr(cls, "Angioimmunoblastic T-cell lymphoma", - PermissibleValue(text="Angioimmunoblastic T-cell lymphoma") ) - setattr(cls, "Transitional cell papilloma, inverted, NOS", - PermissibleValue(text="Transitional cell papilloma, inverted, NOS") ) - setattr(cls, "Refractory anemia with ringed sideroblasts", - PermissibleValue(text="Refractory anemia with ringed sideroblasts") ) - setattr(cls, "Giant cell fibroblastoma", - PermissibleValue(text="Giant cell fibroblastoma") ) - setattr(cls, "Burkitt-like lymphoma", - PermissibleValue(text="Burkitt-like lymphoma") ) - setattr(cls, "Spongioblastoma multiforme", - PermissibleValue(text="Spongioblastoma multiforme") ) - setattr(cls, "Mixed squamous cell and glandular papilloma", - PermissibleValue(text="Mixed squamous cell and glandular papilloma") ) - setattr(cls, "Cutaneous histiocytoma, NOS", - PermissibleValue(text="Cutaneous histiocytoma, NOS") ) - setattr(cls, "Immature teratoma, malignant", - PermissibleValue(text="Immature teratoma, malignant") ) - setattr(cls, "Mucinous cystic tumor with moderate dysplasia", - PermissibleValue(text="Mucinous cystic tumor with moderate dysplasia") ) - setattr(cls, "GIST, malignant", - PermissibleValue(text="GIST, malignant") ) - setattr(cls, "Myxoma, NOS", - PermissibleValue(text="Myxoma, NOS") ) - setattr(cls, "Papillary neoplasm, pancreatobiliary-type, with high grade intraepithelial neoplasia", - PermissibleValue(text="Papillary neoplasm, pancreatobiliary-type, with high grade intraepithelial neoplasia") ) - setattr(cls, "NUT midline carcinoma", - PermissibleValue(text="NUT midline carcinoma") ) - setattr(cls, "Codman tumor", - PermissibleValue(text="Codman tumor") ) - setattr(cls, "Primitive neuroectodermal tumor, NOS", - PermissibleValue(text="Primitive neuroectodermal tumor, NOS") ) - setattr(cls, "Ganglioglioma, NOS", - PermissibleValue(text="Ganglioglioma, NOS") ) - setattr(cls, "Luteoma, NOS", - PermissibleValue(text="Luteoma, NOS") ) - setattr(cls, "Acute myeloid leukemia, PML/RAR-alpha", - PermissibleValue(text="Acute myeloid leukemia, PML/RAR-alpha") ) - setattr(cls, "Adenoma, NOS", - PermissibleValue(text="Adenoma, NOS") ) - setattr(cls, "Transitional cell carcinoma, spindle cell", - PermissibleValue(text="Transitional cell carcinoma, spindle cell") ) - setattr(cls, "Intracystic papillary tumor with high grade entraepithelial neoplasia", - PermissibleValue(text="Intracystic papillary tumor with high grade entraepithelial neoplasia") ) - setattr(cls, "Malignant lymphoma, large cell, cleaved, NOS", - PermissibleValue(text="Malignant lymphoma, large cell, cleaved, NOS") ) - setattr(cls, "Lipid-rich Sertoli cell tumor", - PermissibleValue(text="Lipid-rich Sertoli cell tumor") ) - setattr(cls, "Bronchiolo-alveolar carcinoma, indeterminate type", - PermissibleValue(text="Bronchiolo-alveolar carcinoma, indeterminate type") ) - setattr(cls, "Intraductal papillary adenocarcinoma, NOS", - PermissibleValue(text="Intraductal papillary adenocarcinoma, NOS") ) - setattr(cls, "Ependymoma, NOS", - PermissibleValue(text="Ependymoma, NOS") ) - setattr(cls, "Abdominal fibromatosis", - PermissibleValue(text="Abdominal fibromatosis") ) - setattr(cls, "Hepatoid carcinoma", - PermissibleValue(text="Hepatoid carcinoma") ) - setattr(cls, "Squamous cell carcinoma, HPV-negative", - PermissibleValue(text="Squamous cell carcinoma, HPV-negative") ) - setattr(cls, "Unclassified tumor, malignant", - PermissibleValue(text="Unclassified tumor, malignant") ) - setattr(cls, "Follicular lymphoma, NOS", - PermissibleValue(text="Follicular lymphoma, NOS") ) - setattr(cls, "Paget disease of breast", - PermissibleValue(text="Paget disease of breast") ) - setattr(cls, "Malignant lymphoma, convoluted cell", - PermissibleValue(text="Malignant lymphoma, convoluted cell") ) - setattr(cls, "Botryoid sarcoma", - PermissibleValue(text="Botryoid sarcoma") ) - setattr(cls, "Hodgkin disease, nodular sclerosis, lymphocyte predominance", - PermissibleValue(text="Hodgkin disease, nodular sclerosis, lymphocyte predominance") ) - setattr(cls, "Ossifying renal tumor", - PermissibleValue(text="Ossifying renal tumor") ) - setattr(cls, "Fetal adenoma", - PermissibleValue(text="Fetal adenoma") ) - setattr(cls, "Follicular carcinoma, oxyphilic cell", - PermissibleValue(text="Follicular carcinoma, oxyphilic cell") ) - setattr(cls, "Angioimmunoblastic lymphadenopathy", - PermissibleValue(text="Angioimmunoblastic lymphadenopathy") ) - setattr(cls, "Marginal zone B-cell lymphoma, NOS", - PermissibleValue(text="Marginal zone B-cell lymphoma, NOS") ) - setattr(cls, "Granulocytic sarcoma", - PermissibleValue(text="Granulocytic sarcoma") ) - setattr(cls, "Medulloblastoma, NOS", - PermissibleValue(text="Medulloblastoma, NOS") ) - setattr(cls, "Oncocytic Schneiderian papilloma", - PermissibleValue(text="Oncocytic Schneiderian papilloma") ) - setattr(cls, "Squamous cell carcinoma, small cell, nonkeratinizing", - PermissibleValue(text="Squamous cell carcinoma, small cell, nonkeratinizing") ) - setattr(cls, "Cribriform carcinoma in situ", - PermissibleValue(text="Cribriform carcinoma in situ") ) - setattr(cls, "Clear cell sarcoma, of tendons and aponeuroses", - PermissibleValue(text="Clear cell sarcoma, of tendons and aponeuroses") ) - setattr(cls, "ECL cell carcinoid, malignant", - PermissibleValue(text="ECL cell carcinoid, malignant") ) - setattr(cls, "Tumorlet, benign", - PermissibleValue(text="Tumorlet, benign") ) - setattr(cls, "Schmincke tumor", - PermissibleValue(text="Schmincke tumor") ) - setattr(cls, "B-cell lymphocytic leukemia/small lymphocytic lymphoma", - PermissibleValue(text="B-cell lymphocytic leukemia/small lymphocytic lymphoma") ) - setattr(cls, "Adenocarcinoma, diffuse type", - PermissibleValue(text="Adenocarcinoma, diffuse type") ) - setattr(cls, "Periosteal sarcoma, NOS", - PermissibleValue(text="Periosteal sarcoma, NOS") ) - setattr(cls, "Lymphosarcoma, diffuse", - PermissibleValue(text="Lymphosarcoma, diffuse") ) - setattr(cls, "Hodgkin disease, lymphocytic-histiocytic predominance", - PermissibleValue(text="Hodgkin disease, lymphocytic-histiocytic predominance") ) - setattr(cls, "Invasive micropapillary carcinoma", - PermissibleValue(text="Invasive micropapillary carcinoma") ) - setattr(cls, "Sarcomatoid mesothelioma", - PermissibleValue(text="Sarcomatoid mesothelioma", - description="Sarcomatoid Mesothelioma") ) - setattr(cls, "Burkitt cell leukemia", - PermissibleValue(text="Burkitt cell leukemia") ) - setattr(cls, "Aggressive fibromatosis", - PermissibleValue(text="Aggressive fibromatosis") ) - setattr(cls, "Metaplastic meningioma", - PermissibleValue(text="Metaplastic meningioma") ) - setattr(cls, "Poorly cohesive carcinoma", - PermissibleValue(text="Poorly cohesive carcinoma") ) - setattr(cls, "Adrenal cortical adenoma, NOS", - PermissibleValue(text="Adrenal cortical adenoma, NOS") ) - setattr(cls, "Multiple myeloma", - PermissibleValue(text="Multiple myeloma") ) - setattr(cls, "Pituitary carcinoma, NOS", - PermissibleValue(text="Pituitary carcinoma, NOS") ) - setattr(cls, "Malignant lymphoma, centroblasticcentrocytic, NOS", - PermissibleValue(text="Malignant lymphoma, centroblasticcentrocytic, NOS") ) - setattr(cls, "Neuroma, NOS", - PermissibleValue(text="Neuroma, NOS") ) - setattr(cls, "Somatostatinoma, malignant", - PermissibleValue(text="Somatostatinoma, malignant") ) - setattr(cls, "Papillary cystic tumor", - PermissibleValue(text="Papillary cystic tumor") ) - setattr(cls, "Secretory carcinoma of breast", - PermissibleValue(text="Secretory carcinoma of breast") ) - setattr(cls, "Angiocentric immunoproliferative lesion", - PermissibleValue(text="Angiocentric immunoproliferative lesion") ) - setattr(cls, "Sex cord-gonadal stromal tumor, mixed forms", - PermissibleValue(text="Sex cord-gonadal stromal tumor, mixed forms") ) - setattr(cls, "Chondroid lipoma", - PermissibleValue(text="Chondroid lipoma") ) - setattr(cls, "Hodgkin paragranuloma, NOS", - PermissibleValue(text="Hodgkin paragranuloma, NOS") ) - setattr(cls, "Combined large cell neuroendocrine carcinoma", - PermissibleValue(text="Combined large cell neuroendocrine carcinoma") ) - setattr(cls, "EC cell carcinoid", - PermissibleValue(text="EC cell carcinoid") ) - setattr(cls, "Nested urothelial carcinoma", - PermissibleValue(text="Nested urothelial carcinoma") ) - setattr(cls, "Hypernephroid tumor", - PermissibleValue(text="Hypernephroid tumor") ) - setattr(cls, "Genital rhabdomyoma", - PermissibleValue(text="Genital rhabdomyoma") ) - setattr(cls, "Cylindrical cell papilloma", - PermissibleValue(text="Cylindrical cell papilloma") ) - setattr(cls, "Epithelioid glioblastoma", - PermissibleValue(text="Epithelioid glioblastoma") ) - setattr(cls, "Transitional cell carcinoma", - PermissibleValue(text="Transitional cell carcinoma", - description="Ovarian Transitional Cell Carcinoma") ) - setattr(cls, "Pleomorphic lobular carcinoma", - PermissibleValue(text="Pleomorphic lobular carcinoma") ) - setattr(cls, "Lobular adenocarcinoma", - PermissibleValue(text="Lobular adenocarcinoma") ) - setattr(cls, "Nephrogenic adenofibroma", - PermissibleValue(text="Nephrogenic adenofibroma") ) - setattr(cls, "Histiocyte-rich large B-cell lymphoma", - PermissibleValue(text="Histiocyte-rich large B-cell lymphoma") ) - setattr(cls, "Glioma, malignant", - PermissibleValue(text="Glioma, malignant") ) - setattr(cls, "Villous adenocarcinoma", - PermissibleValue(text="Villous adenocarcinoma") ) - setattr(cls, "Intracystic papillary adenocarcinoma", - PermissibleValue(text="Intracystic papillary adenocarcinoma") ) - setattr(cls, "Encapsulated papillary carcinoma with invasion", - PermissibleValue(text="Encapsulated papillary carcinoma with invasion") ) - setattr(cls, "Juvenile histiocytoma", - PermissibleValue(text="Juvenile histiocytoma") ) - setattr(cls, "Mesodermal mixed tumor", - PermissibleValue(text="Mesodermal mixed tumor") ) - setattr(cls, "Ameloblastic odontosarcoma", - PermissibleValue(text="Ameloblastic odontosarcoma") ) - setattr(cls, "Glandular papilloma", - PermissibleValue(text="Glandular papilloma") ) - setattr(cls, "Capillary lymphangioma", - PermissibleValue(text="Capillary lymphangioma") ) - setattr(cls, "Pick tubular adenoma", - PermissibleValue(text="Pick tubular adenoma") ) - setattr(cls, "Tubular carcinoma", - PermissibleValue(text="Tubular carcinoma") ) - setattr(cls, "Dedifferentiated chordoma", - PermissibleValue(text="Dedifferentiated chordoma") ) - setattr(cls, "FAB L2", - PermissibleValue(text="FAB L2") ) - setattr(cls, "Tumor, metastatic", - PermissibleValue(text="Tumor, metastatic") ) - setattr(cls, "DCIS, comedo type", - PermissibleValue(text="DCIS, comedo type") ) - setattr(cls, "Extra-abdominal desmoid", - PermissibleValue(text="Extra-abdominal desmoid") ) - setattr(cls, "Interdigitating cell sarcoma", - PermissibleValue(text="Interdigitating cell sarcoma") ) - setattr(cls, "Cortical T ALL", - PermissibleValue(text="Cortical T ALL") ) - setattr(cls, "Congenital fibrosarcoma", - PermissibleValue(text="Congenital fibrosarcoma") ) - setattr(cls, "Spindle cell rhabdomyosarcoma", - PermissibleValue(text="Spindle cell rhabdomyosarcoma") ) - setattr(cls, "Intraductal papillary adenocarcinoma with invasion", - PermissibleValue(text="Intraductal papillary adenocarcinoma with invasion") ) - setattr(cls, "Strumal carcinoid", - PermissibleValue(text="Strumal carcinoid") ) - setattr(cls, "Papillomatosis, glandular", - PermissibleValue(text="Papillomatosis, glandular") ) - setattr(cls, "Oncocytic adenocarcinoma", - PermissibleValue(text="Oncocytic adenocarcinoma") ) - setattr(cls, "Racemose hemangioma", - PermissibleValue(text="Racemose hemangioma") ) - setattr(cls, "Osteoma, NOS", - PermissibleValue(text="Osteoma, NOS") ) - setattr(cls, "Clear cell tumor, NOS", - PermissibleValue(text="Clear cell tumor, NOS") ) - setattr(cls, "Prostatic intraepithelial neoplasia, grade III", - PermissibleValue(text="Prostatic intraepithelial neoplasia, grade III") ) - setattr(cls, "Clear cell cystadenofibroma", - PermissibleValue(text="Clear cell cystadenofibroma") ) - setattr(cls, "Thymoma, type B2, NOS", - PermissibleValue(text="Thymoma, type B2, NOS") ) - setattr(cls, "Basal cell carcinoma, micronodular", - PermissibleValue(text="Basal cell carcinoma, micronodular") ) - setattr(cls, "Differentiated penile intraepithelial neoplasia", - PermissibleValue(text="Differentiated penile intraepithelial neoplasia") ) - setattr(cls, "Ependymoma, anaplastic", - PermissibleValue(text="Ependymoma, anaplastic") ) - setattr(cls, "Follicular lymphoma, grade 3", - PermissibleValue(text="Follicular lymphoma, grade 3") ) - setattr(cls, "Infiltrating angiolipoma", - PermissibleValue(text="Infiltrating angiolipoma") ) - setattr(cls, "Arteriovenous hemangioma", - PermissibleValue(text="Arteriovenous hemangioma") ) - setattr(cls, "Infiltrating duct adenocarcinoma", - PermissibleValue(text="Infiltrating duct adenocarcinoma") ) - setattr(cls, "Infantile hemangioma", - PermissibleValue(text="Infantile hemangioma") ) - setattr(cls, "Papillary mucinous tumor of low malignant potential", - PermissibleValue(text="Papillary mucinous tumor of low malignant potential") ) - setattr(cls, "Pericanalicular fibroadenoma", - PermissibleValue(text="Pericanalicular fibroadenoma") ) - setattr(cls, "Chronic lymphocytic leukemia", - PermissibleValue(text="Chronic lymphocytic leukemia") ) - setattr(cls, "Thymoma, lymphocyte-rich, malignant", - PermissibleValue(text="Thymoma, lymphocyte-rich, malignant") ) - setattr(cls, "Mucinous tumor, NOS, of low malignant potential", - PermissibleValue(text="Mucinous tumor, NOS, of low malignant potential") ) - setattr(cls, "Nephroma, NOS", - PermissibleValue(text="Nephroma, NOS") ) - setattr(cls, "Cystic astrocytoma", - PermissibleValue(text="Cystic astrocytoma") ) - setattr(cls, "Malignant lymphoma, undifferentiated, Burkitt type", - PermissibleValue(text="Malignant lymphoma, undifferentiated, Burkitt type") ) - setattr(cls, "Carotid body paraganglioma", - PermissibleValue(text="Carotid body paraganglioma") ) - setattr(cls, "Pheochromocytoma, malignant", - PermissibleValue(text="Pheochromocytoma, malignant") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma with t(12;21)(p13;q22); TEL-AML1 (ETV6-RUNX1)", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma with t(12;21)(p13;q22); TEL-AML1 (ETV6-RUNX1)") ) - setattr(cls, "Granulosa cell tumor, sarcomatoid", - PermissibleValue(text="Granulosa cell tumor, sarcomatoid") ) - setattr(cls, "Transitional meningioma", - PermissibleValue(text="Transitional meningioma") ) - setattr(cls, "Systemic tissue mast cell disease", - PermissibleValue(text="Systemic tissue mast cell disease") ) - setattr(cls, "Complex odontoma", - PermissibleValue(text="Complex odontoma") ) - setattr(cls, "Adenocarcinoma with mixed subtypes", - PermissibleValue(text="Adenocarcinoma with mixed subtypes") ) - setattr(cls, "Complete hydatidiform mole", - PermissibleValue(text="Complete hydatidiform mole") ) - setattr(cls, "Malignant lymphoma, noncleaved cell, follicular, NOS", - PermissibleValue(text="Malignant lymphoma, noncleaved cell, follicular, NOS") ) - setattr(cls, "Chronic lymphoproliferative disorder of NK cells", - PermissibleValue(text="Chronic lymphoproliferative disorder of NK cells") ) - setattr(cls, "Chondrosarcoma grade 2/3", - PermissibleValue(text="Chondrosarcoma grade 2/3") ) - setattr(cls, "Synovioma, NOS", - PermissibleValue(text="Synovioma, NOS") ) - setattr(cls, "Cribriform carcinoma, NOS", - PermissibleValue(text="Cribriform carcinoma, NOS") ) - setattr(cls, "Acute myeloid leukaemia, t(8;21)(q22;q22)", - PermissibleValue(text="Acute myeloid leukaemia, t(8;21)(q22;q22)") ) - setattr(cls, "Intraductal papillary neoplasm with high grade dysplasia", - PermissibleValue(text="Intraductal papillary neoplasm with high grade dysplasia") ) - setattr(cls, "Adrenal cortical tumor, malignant", - PermissibleValue(text="Adrenal cortical tumor, malignant") ) - setattr(cls, "Adenocarcinoma with squamous metaplasia", - PermissibleValue(text="Adenocarcinoma with squamous metaplasia") ) - setattr(cls, "Trichilemmal carcinoma", - PermissibleValue(text="Trichilemmal carcinoma") ) - setattr(cls, "Papillary glioneuronal tumor", - PermissibleValue(text="Papillary glioneuronal tumor") ) - setattr(cls, "Adamantinoma, NOS", - PermissibleValue(text="Adamantinoma, NOS") ) - setattr(cls, "Microcystic adenoma", - PermissibleValue(text="Microcystic adenoma") ) - setattr(cls, "Pigmented basal cell carcinoma", - PermissibleValue(text="Pigmented basal cell carcinoma") ) - setattr(cls, "Embryonal carcinoma, polyembryonal type", - PermissibleValue(text="Embryonal carcinoma, polyembryonal type") ) - setattr(cls, "Polymorphous low grade adenocarcinoma", - PermissibleValue(text="Polymorphous low grade adenocarcinoma") ) - setattr(cls, "Adenocarcinoma, NOS", - PermissibleValue(text="Adenocarcinoma, NOS") ) - setattr(cls, "Acidophil adenoma", - PermissibleValue(text="Acidophil adenoma") ) - setattr(cls, "Stromal sarcoma, NOS", - PermissibleValue(text="Stromal sarcoma, NOS") ) - setattr(cls, "Pre-B ALL", - PermissibleValue(text="Pre-B ALL") ) - setattr(cls, "FAB M5 (includes all variants)", - PermissibleValue(text="FAB M5 (includes all variants)") ) - setattr(cls, "Steroid cell tumor, NOS", - PermissibleValue(text="Steroid cell tumor, NOS") ) - setattr(cls, "Regressing nevus", - PermissibleValue(text="Regressing nevus") ) - setattr(cls, "Follicular lymphoma, grade 1", - PermissibleValue(text="Follicular lymphoma, grade 1") ) - setattr(cls, "Giant cell and spindle cell carcinoma", - PermissibleValue(text="Giant cell and spindle cell carcinoma") ) - setattr(cls, "Clear cell adenocarcinoma, mesonephroid", - PermissibleValue(text="Clear cell adenocarcinoma, mesonephroid") ) - setattr(cls, "Sex cord tumor with annular tubules", - PermissibleValue(text="Sex cord tumor with annular tubules") ) - setattr(cls, "Odontogenic fibroma, NOS", - PermissibleValue(text="Odontogenic fibroma, NOS") ) - setattr(cls, "Black adenoma", - PermissibleValue(text="Black adenoma") ) - setattr(cls, "Sezary disease", - PermissibleValue(text="Sezary disease") ) - setattr(cls, "Serous adenofibroma of borderline malignancy", - PermissibleValue(text="Serous adenofibroma of borderline malignancy") ) - setattr(cls, "Leukemia, NOS", - PermissibleValue(text="Leukemia, NOS") ) - setattr(cls, "Plexiform neuroma", - PermissibleValue(text="Plexiform neuroma") ) - setattr(cls, "Papillary squamous cell carcinoma, non-invasive", - PermissibleValue(text="Papillary squamous cell carcinoma, non-invasive") ) - setattr(cls, "Clear cell cystadenoma", - PermissibleValue(text="Clear cell cystadenoma") ) - setattr(cls, "Malignant lymphoma, small B lymphocytic, NOS", - PermissibleValue(text="Malignant lymphoma, small B lymphocytic, NOS") ) - setattr(cls, "Anal intraepithelial neoplasia, grade III", - PermissibleValue(text="Anal intraepithelial neoplasia, grade III") ) - setattr(cls, "Lepidic predominant adenocarcinoma", - PermissibleValue(text="Lepidic predominant adenocarcinoma", - description="Lepidic Predominant Adenocarcinoma") ) - setattr(cls, "Malignant midline reticulosis", - PermissibleValue(text="Malignant midline reticulosis") ) - setattr(cls, "Atypical proliferative mucinous tumor", - PermissibleValue(text="Atypical proliferative mucinous tumor") ) - setattr(cls, "Mesenchymal tumor, malignant", - PermissibleValue(text="Mesenchymal tumor, malignant") ) - setattr(cls, "Follicular lymphoma, small cleaved cell", - PermissibleValue(text="Follicular lymphoma, small cleaved cell") ) - setattr(cls, "Aorticopulmonary paraganglioma", - PermissibleValue(text="Aorticopulmonary paraganglioma") ) - setattr(cls, "Sessile serrated adenoma", - PermissibleValue(text="Sessile serrated adenoma") ) - setattr(cls, "Aggressive angiomyxoma", - PermissibleValue(text="Aggressive angiomyxoma") ) - setattr(cls, "Micropapillary adenocarcinoma", - PermissibleValue(text="Micropapillary adenocarcinoma") ) - setattr(cls, "Carcinosarcoma, embryonal", - PermissibleValue(text="Carcinosarcoma, embryonal") ) - setattr(cls, "Acute myeloid leukemia with mutated CEBPA", - PermissibleValue(text="Acute myeloid leukemia with mutated CEBPA") ) - setattr(cls, "Primary effusion lymphoma", - PermissibleValue(text="Primary effusion lymphoma") ) - setattr(cls, "Myelosclerosis with myeloid metaplasia", - PermissibleValue(text="Myelosclerosis with myeloid metaplasia") ) - setattr(cls, "Splenic B-cell lymphoma/leukemia, unclassifiable", - PermissibleValue(text="Splenic B-cell lymphoma/leukemia, unclassifiable") ) - setattr(cls, "Juvenile carcinoma of breast", - PermissibleValue(text="Juvenile carcinoma of breast") ) - setattr(cls, "Aleukemic leukemia, NOS", - PermissibleValue(text="Aleukemic leukemia, NOS") ) - setattr(cls, "Choroid plexus papilloma, malignant", - PermissibleValue(text="Choroid plexus papilloma, malignant") ) - setattr(cls, "Lobular carcinoma, noninfiltrating", - PermissibleValue(text="Lobular carcinoma, noninfiltrating") ) - setattr(cls, "Papillary squamous cell carcinoma", - PermissibleValue(text="Papillary squamous cell carcinoma") ) - setattr(cls, "Malignant lymphoma, mixed lymphocytic-histiocytic, diffuse", - PermissibleValue(text="Malignant lymphoma, mixed lymphocytic-histiocytic, diffuse") ) - setattr(cls, "Islet cell adenoma", - PermissibleValue(text="Islet cell adenoma") ) - setattr(cls, "Schneiderian papilloma, NOS", - PermissibleValue(text="Schneiderian papilloma, NOS") ) - setattr(cls, "Malignant lymphoma, cleaved cell, NOS", - PermissibleValue(text="Malignant lymphoma, cleaved cell, NOS") ) - setattr(cls, "Hepatocellular carcinoma, spindle cell variant", - PermissibleValue(text="Hepatocellular carcinoma, spindle cell variant") ) - setattr(cls, "Teratoblastoma, malignant", - PermissibleValue(text="Teratoblastoma, malignant") ) - setattr(cls, "Intraductal papillomatosis, NOS", - PermissibleValue(text="Intraductal papillomatosis, NOS") ) - setattr(cls, "Phosphaturic mesenchymal tumor, malignant", - PermissibleValue(text="Phosphaturic mesenchymal tumor, malignant") ) - setattr(cls, "Squamous cell carcinoma in situ, NOS", - PermissibleValue(text="Squamous cell carcinoma in situ, NOS") ) - setattr(cls, "Anal intraepithelial neoplasia, low grade", - PermissibleValue(text="Anal intraepithelial neoplasia, low grade") ) - setattr(cls, "Urticaria pigmentosa", - PermissibleValue(text="Urticaria pigmentosa") ) - setattr(cls, "Chronic eosinophilic leukemia, NOS", - PermissibleValue(text="Chronic eosinophilic leukemia, NOS") ) - setattr(cls, "Mucinous cystic neoplasm with intermediate-grade dysplasia", - PermissibleValue(text="Mucinous cystic neoplasm with intermediate-grade dysplasia") ) - setattr(cls, "Diffuse meningiomatosis", - PermissibleValue(text="Diffuse meningiomatosis") ) - setattr(cls, "Hemangioma simplex", - PermissibleValue(text="Hemangioma simplex") ) - setattr(cls, "Cutaneous lymphoma, NOS", - PermissibleValue(text="Cutaneous lymphoma, NOS") ) - setattr(cls, "Dysplastic nevus", - PermissibleValue(text="Dysplastic nevus") ) - setattr(cls, "Plasmacytic leukemia", - PermissibleValue(text="Plasmacytic leukemia") ) - setattr(cls, "CIN III with severe dysplasia", - PermissibleValue(text="CIN III with severe dysplasia") ) - setattr(cls, "Intraductal carcinoma, NOS", - PermissibleValue(text="Intraductal carcinoma, NOS") ) - setattr(cls, "Esophageal glandular dysplasia (intraepithelial neoplasia), high grade", - PermissibleValue(text="Esophageal glandular dysplasia (intraepithelial neoplasia), high grade") ) - setattr(cls, "Giant fibroadenoma", - PermissibleValue(text="Giant fibroadenoma") ) - setattr(cls, "Papillary adenofibroma", - PermissibleValue(text="Papillary adenofibroma") ) - setattr(cls, "Anaplastic oligodendroglioma, IDH-mutant and 1p/19q-codeleted", - PermissibleValue(text="Anaplastic oligodendroglioma, IDH-mutant and 1p/19q-codeleted") ) - setattr(cls, "Ameloblastoma, NOS", - PermissibleValue(text="Ameloblastoma, NOS") ) - setattr(cls, "Round cell liposarcoma", - PermissibleValue(text="Round cell liposarcoma") ) - setattr(cls, "Typical carcinoid", - PermissibleValue(text="Typical carcinoid") ) - setattr(cls, "Acquired tufted hemangioma", - PermissibleValue(text="Acquired tufted hemangioma") ) - setattr(cls, "Plexiform fibromyxoma", - PermissibleValue(text="Plexiform fibromyxoma") ) - setattr(cls, "Juxtacortical osteosarcoma", - PermissibleValue(text="Juxtacortical osteosarcoma") ) - setattr(cls, "Lymphomatoid papulosis", - PermissibleValue(text="Lymphomatoid papulosis") ) - setattr(cls, "Spermatocytic seminoma", - PermissibleValue(text="Spermatocytic seminoma") ) - setattr(cls, "Hodgkin paragranuloma, nodular", - PermissibleValue(text="Hodgkin paragranuloma, nodular") ) - setattr(cls, "Malignant lymphoma, undifferentiated cell, non-Burkitt", - PermissibleValue(text="Malignant lymphoma, undifferentiated cell, non-Burkitt") ) - setattr(cls, "Primary cutaneous gamma-delta T-cell lymphoma", - PermissibleValue(text="Primary cutaneous gamma-delta T-cell lymphoma") ) - setattr(cls, "Mixed acidophil-basophil carcinoma", - PermissibleValue(text="Mixed acidophil-basophil carcinoma") ) - setattr(cls, "Retroperitoneal fibromatosis", - PermissibleValue(text="Retroperitoneal fibromatosis") ) - setattr(cls, "Unclassified tumor, benign", - PermissibleValue(text="Unclassified tumor, benign") ) - setattr(cls, "Multicystic mesothelioma, benign", - PermissibleValue(text="Multicystic mesothelioma, benign") ) - setattr(cls, "Spindle cell sarcoma", - PermissibleValue(text="Spindle cell sarcoma") ) - setattr(cls, "Juvenile angiofibroma", - PermissibleValue(text="Juvenile angiofibroma") ) - setattr(cls, "Malignant lymphoma, follicle center, NOS", - PermissibleValue(text="Malignant lymphoma, follicle center, NOS") ) - setattr(cls, "Chief cell adenoma", - PermissibleValue(text="Chief cell adenoma") ) - setattr(cls, "Fibroblastic osteosarcoma", - PermissibleValue(text="Fibroblastic osteosarcoma") ) - setattr(cls, "Intraductal papillary neoplasm with low grade intraepithelial neoplasia", - PermissibleValue(text="Intraductal papillary neoplasm with low grade intraepithelial neoplasia") ) - setattr(cls, "Acute myelomonocytic leukemia with abnormal eosinophils", - PermissibleValue(text="Acute myelomonocytic leukemia with abnormal eosinophils") ) - setattr(cls, "Mesenchymoma, benign", - PermissibleValue(text="Mesenchymoma, benign") ) - setattr(cls, "Papillary pseudomucinous cystadenoma, NOS", - PermissibleValue(text="Papillary pseudomucinous cystadenoma, NOS") ) - setattr(cls, "Desmoplastic nodular medulloblastoma", - PermissibleValue(text="Desmoplastic nodular medulloblastoma") ) - setattr(cls, "Choriocarcinoma combined with teratorna", - PermissibleValue(text="Choriocarcinoma combined with teratorna") ) - setattr(cls, "Subacute lymphoid leukemia", - PermissibleValue(text="Subacute lymphoid leukemia") ) - setattr(cls, "Intraductal papillary mucinous neoplasm (IPMN) with an associated invasive carcinoma", - PermissibleValue(text="Intraductal papillary mucinous neoplasm (IPMN) with an associated invasive carcinoma") ) - setattr(cls, "Nonencapsulated sclerosing carcinoma", - PermissibleValue(text="Nonencapsulated sclerosing carcinoma") ) - setattr(cls, "Bile duct adenocarcinoma", - PermissibleValue(text="Bile duct adenocarcinoma") ) - setattr(cls, "Epithelioma adenoides cysticum", - PermissibleValue(text="Epithelioma adenoides cysticum") ) - setattr(cls, "Papillary carcinoma in situ", - PermissibleValue(text="Papillary carcinoma in situ") ) - setattr(cls, "Fibroblastic meningioma", - PermissibleValue(text="Fibroblastic meningioma") ) - setattr(cls, "Mucinous cystic tumor with low grade dysplasia", - PermissibleValue(text="Mucinous cystic tumor with low grade dysplasia") ) - setattr(cls, "Squamous cell carcinoma with horn formation", - PermissibleValue(text="Squamous cell carcinoma with horn formation") ) - setattr(cls, "Sex cord tumor, NOS", - PermissibleValue(text="Sex cord tumor, NOS") ) - setattr(cls, "Odontogenic tumor, malignant", - PermissibleValue(text="Odontogenic tumor, malignant") ) - setattr(cls, "Krukenberg tumor", - PermissibleValue(text="Krukenberg tumor") ) - setattr(cls, "Piloid astrocytoma", - PermissibleValue(text="Piloid astrocytoma") ) - setattr(cls, "Epithelioid hemangioendothelioma, NOS", - PermissibleValue(text="Epithelioid hemangioendothelioma, NOS") ) - setattr(cls, "Mixed islet cell and exocrine adenocarcinoma", - PermissibleValue(text="Mixed islet cell and exocrine adenocarcinoma") ) - setattr(cls, "Neoplasm, uncertain whether benign or malignant", - PermissibleValue(text="Neoplasm, uncertain whether benign or malignant") ) - setattr(cls, "Myofibroblastic tumor, NOS", - PermissibleValue(text="Myofibroblastic tumor, NOS") ) - setattr(cls, "Brenner tumor, NOS", - PermissibleValue(text="Brenner tumor, NOS") ) - setattr(cls, "Angioblastic meningioma", - PermissibleValue(text="Angioblastic meningioma") ) - setattr(cls, "Monoclonal gammopathy of undetermined significance", - PermissibleValue(text="Monoclonal gammopathy of undetermined significance") ) - setattr(cls, "Polycythemia rubra vera", - PermissibleValue(text="Polycythemia rubra vera") ) - setattr(cls, "Pigmented schwannoma", - PermissibleValue(text="Pigmented schwannoma") ) - setattr(cls, "Follicular adenoma, oxyphilic cell", - PermissibleValue(text="Follicular adenoma, oxyphilic cell") ) - setattr(cls, "Fibrous histiocytoma of tendon sheath", - PermissibleValue(text="Fibrous histiocytoma of tendon sheath") ) - setattr(cls, "T-cell rich/histiocyte-rich large B-cell lymphoma", - PermissibleValue(text="T-cell rich/histiocyte-rich large B-cell lymphoma") ) - setattr(cls, "Subareolar duct papillomatosis", - PermissibleValue(text="Subareolar duct papillomatosis") ) - setattr(cls, "Large cell (Ki-1+) lymphoma", - PermissibleValue(text="Large cell (Ki-1+) lymphoma") ) - setattr(cls, "Tumor, secondary", - PermissibleValue(text="Tumor, secondary") ) - setattr(cls, "Pinkus tumor", - PermissibleValue(text="Pinkus tumor") ) - setattr(cls, "Tubulo-papillary adenoma", - PermissibleValue(text="Tubulo-papillary adenoma") ) - setattr(cls, "Ameloblastic fibro-odontosarcoma", - PermissibleValue(text="Ameloblastic fibro-odontosarcoma") ) - setattr(cls, "Stromal tumor, benign", - PermissibleValue(text="Stromal tumor, benign") ) - setattr(cls, "Endocrine adenomatosis", - PermissibleValue(text="Endocrine adenomatosis") ) - setattr(cls, "Stem cell leukemia", - PermissibleValue(text="Stem cell leukemia") ) - setattr(cls, "Brenner tumor, malignant", - PermissibleValue(text="Brenner tumor, malignant") ) - setattr(cls, "Myelodysplastic syndrome with isolated del (5q)", - PermissibleValue(text="Myelodysplastic syndrome with isolated del (5q)") ) - setattr(cls, "Embryonal sarcoma", - PermissibleValue(text="Embryonal sarcoma") ) - setattr(cls, "Sessile serrated polyp", - PermissibleValue(text="Sessile serrated polyp") ) - setattr(cls, "Tubular adenoma, NOS", - PermissibleValue(text="Tubular adenoma, NOS") ) - setattr(cls, "Fibroxanthoma, NOS", - PermissibleValue(text="Fibroxanthoma, NOS") ) - setattr(cls, "Therapy-related acute myeloid leukemia, epipodophyllotoxin-related", - PermissibleValue(text="Therapy-related acute myeloid leukemia, epipodophyllotoxin-related") ) - setattr(cls, "Acute monoblastic and monocytic leukemia", - PermissibleValue(text="Acute monoblastic and monocytic leukemia") ) - setattr(cls, "Neoplasm, malignant, uncertain whether primary or metastatic", - PermissibleValue(text="Neoplasm, malignant, uncertain whether primary or metastatic") ) - setattr(cls, "Androblastoma, benign", - PermissibleValue(text="Androblastoma, benign") ) - setattr(cls, "Intracystic papillary neoplasm with low grade intraepithelial neoplasia", - PermissibleValue(text="Intracystic papillary neoplasm with low grade intraepithelial neoplasia") ) - setattr(cls, "Central neurocytoma", - PermissibleValue(text="Central neurocytoma") ) - setattr(cls, "Wolffian duct adenoma", - PermissibleValue(text="Wolffian duct adenoma") ) - setattr(cls, "Malignant lymphoma, large B-cell, diffuse, centroblastic, NOS", - PermissibleValue(text="Malignant lymphoma, large B-cell, diffuse, centroblastic, NOS") ) - setattr(cls, "Invasive lobular carcinoma, alveolar type", - PermissibleValue(text="Invasive lobular carcinoma, alveolar type") ) - setattr(cls, "Periosteal chondroma", - PermissibleValue(text="Periosteal chondroma") ) - setattr(cls, "Malignant serous cystadenofibroma", - PermissibleValue(text="Malignant serous cystadenofibroma") ) - setattr(cls, "Peripheral T-cell lymphoma, AILD (Angioimmunoblastic Lymphadenopathy with Dysproteinemia)", - PermissibleValue(text="Peripheral T-cell lymphoma, AILD (Angioimmunoblastic Lymphadenopathy with Dysproteinemia)") ) - setattr(cls, "Angiolipoma, NOS", - PermissibleValue(text="Angiolipoma, NOS") ) - setattr(cls, "Mesenchymoma, NOS", - PermissibleValue(text="Mesenchymoma, NOS") ) - setattr(cls, "Intratubular malignant germ cells", - PermissibleValue(text="Intratubular malignant germ cells") ) - setattr(cls, "Embryonal carcinoma, infantile", - PermissibleValue(text="Embryonal carcinoma, infantile") ) - setattr(cls, "Benign cystic nephroma", - PermissibleValue(text="Benign cystic nephroma") ) - setattr(cls, "Serous adenocarcinoma, NOS", - PermissibleValue(text="Serous adenocarcinoma, NOS") ) - setattr(cls, "Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements", - PermissibleValue(text="Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements") ) - setattr(cls, "Malignant lymphoma, large cell, cleaved, diffuse", - PermissibleValue(text="Malignant lymphoma, large cell, cleaved, diffuse") ) - setattr(cls, "Mixed acinar-ductal carcinoma", - PermissibleValue(text="Mixed acinar-ductal carcinoma", - description="Mixed Acinar-Ductal Carcinoma of the Pancreas") ) - setattr(cls, "Cellular angiofibroma", - PermissibleValue(text="Cellular angiofibroma") ) - setattr(cls, "Mucoid cell adenoma", - PermissibleValue(text="Mucoid cell adenoma") ) - setattr(cls, "Vaginal intraepithelial neoplasia, grade III", - PermissibleValue(text="Vaginal intraepithelial neoplasia, grade III") ) - setattr(cls, "Hydroa vacciniforme-like lymphoma", - PermissibleValue(text="Hydroa vacciniforme-like lymphoma") ) - setattr(cls, "Pro-T ALL", - PermissibleValue(text="Pro-T ALL") ) - setattr(cls, "Pseudomyxoma peritonei", - PermissibleValue(text="Pseudomyxoma peritonei") ) - setattr(cls, "Dendritic cell sarcoma, NOS", - PermissibleValue(text="Dendritic cell sarcoma, NOS") ) - setattr(cls, "Malignant lymphoma, small cleaved cell, follicular", - PermissibleValue(text="Malignant lymphoma, small cleaved cell, follicular") ) - setattr(cls, "Spindle cell hemangioendothelioma", - PermissibleValue(text="Spindle cell hemangioendothelioma") ) - setattr(cls, "Blastoma, NOS", - PermissibleValue(text="Blastoma, NOS") ) - setattr(cls, "FAB M4Eo", - PermissibleValue(text="FAB M4Eo") ) - setattr(cls, "Transitional papilloma, inverted, NOS", - PermissibleValue(text="Transitional papilloma, inverted, NOS") ) - setattr(cls, "Lymphomatoid granulomatosis", - PermissibleValue(text="Lymphomatoid granulomatosis") ) - setattr(cls, "Undifferentiated round cell sarcoma", - PermissibleValue(text="Undifferentiated round cell sarcoma") ) - setattr(cls, "Chronic granulocytic leukemia, NOS", - PermissibleValue(text="Chronic granulocytic leukemia, NOS") ) - setattr(cls, "Endocrine tumor, functioning, NOS", - PermissibleValue(text="Endocrine tumor, functioning, NOS") ) - setattr(cls, "Gamma heavy chain disease", - PermissibleValue(text="Gamma heavy chain disease") ) - setattr(cls, "Malignant lymphoma, immunoblastic, NOS", - PermissibleValue(text="Malignant lymphoma, immunoblastic, NOS") ) - setattr(cls, "Malignant perivascular epithelial cell tumor", - PermissibleValue(text="Malignant perivascular epithelial cell tumor") ) - setattr(cls, "Clear cell cystic tumor of borderline malignancy", - PermissibleValue(text="Clear cell cystic tumor of borderline malignancy") ) - setattr(cls, "Pleomorphic carcinoma", - PermissibleValue(text="Pleomorphic carcinoma") ) - setattr(cls, "Alveolar soft part sarcoma", - PermissibleValue(text="Alveolar soft part sarcoma") ) - setattr(cls, "Sex cord-gonadal stromal tumor, incompletely differentiated", - PermissibleValue(text="Sex cord-gonadal stromal tumor, incompletely differentiated") ) - setattr(cls, "Aleukemic myeloid leukemia", - PermissibleValue(text="Aleukemic myeloid leukemia") ) - setattr(cls, "Acute myeloid leukemia (megakaryoblastic) with t(1;22)(p13;q13); RBM15-MKL1", - PermissibleValue(text="Acute myeloid leukemia (megakaryoblastic) with t(1;22)(p13;q13); RBM15-MKL1") ) - setattr(cls, "Aggressive osteoblastoma", - PermissibleValue(text="Aggressive osteoblastoma") ) - setattr(cls, "Mantle zone lymphoma", - PermissibleValue(text="Mantle zone lymphoma") ) - setattr(cls, "Adrenal cortical adenoma, clear cell", - PermissibleValue(text="Adrenal cortical adenoma, clear cell") ) - setattr(cls, "Mucinous carcinoma, gastric type", - PermissibleValue(text="Mucinous carcinoma, gastric type") ) - setattr(cls, "Vipoma, NOS", - PermissibleValue(text="Vipoma, NOS") ) - setattr(cls, "Endometrioid adenocarcinoma, NOS", - PermissibleValue(text="Endometrioid adenocarcinoma, NOS") ) - setattr(cls, "Granulosa cell tumor, malignant", - PermissibleValue(text="Granulosa cell tumor, malignant") ) - setattr(cls, "Clear cell carcinoma", - PermissibleValue(text="Clear cell carcinoma") ) - setattr(cls, "Hand-Schuller-Christian disease", - PermissibleValue(text="Hand-Schuller-Christian disease") ) - setattr(cls, "Sclerosing liposarcoma", - PermissibleValue(text="Sclerosing liposarcoma") ) - setattr(cls, "Serous tumor, NOS, of low malignant potential", - PermissibleValue(text="Serous tumor, NOS, of low malignant potential") ) - setattr(cls, "Mature T-cell lymphoma, NOS", - PermissibleValue(text="Mature T-cell lymphoma, NOS") ) - setattr(cls, "Chondroma, NOS", - PermissibleValue(text="Chondroma, NOS") ) - setattr(cls, "Balloon cell nevus", - PermissibleValue(text="Balloon cell nevus") ) - setattr(cls, "Squamous cell carcinoma, HPV-positive", - PermissibleValue(text="Squamous cell carcinoma, HPV-positive") ) - setattr(cls, "Diffuse astrocytoma, low grade", - PermissibleValue(text="Diffuse astrocytoma, low grade") ) - setattr(cls, "Synovial sarcoma, biphasic", - PermissibleValue(text="Synovial sarcoma, biphasic") ) - setattr(cls, "Mucinous cystic neoplasm with low-grade intraepithelial neoplasia", - PermissibleValue(text="Mucinous cystic neoplasm with low-grade intraepithelial neoplasia") ) - setattr(cls, "Rhabdoid sarcoma", - PermissibleValue(text="Rhabdoid sarcoma") ) - setattr(cls, "Squamous intraepithelial neoplasia, low grade", - PermissibleValue(text="Squamous intraepithelial neoplasia, low grade") ) - setattr(cls, "Chordoma, NOS", - PermissibleValue(text="Chordoma, NOS") ) - setattr(cls, "Mixed mesenchymal tumor", - PermissibleValue(text="Mixed mesenchymal tumor") ) - setattr(cls, "Malignant melanoma in giant pigmented nevus", - PermissibleValue(text="Malignant melanoma in giant pigmented nevus") ) - setattr(cls, "Invasive encapsulated follicular variant of papillary thyroid carcinoma (invasive EFVPTC)", - PermissibleValue(text="Invasive encapsulated follicular variant of papillary thyroid carcinoma (invasive EFVPTC)") ) - setattr(cls, "Gonadal stromal tumor, NOS", - PermissibleValue(text="Gonadal stromal tumor, NOS") ) - setattr(cls, "Fibrous mesothelioma, NOS", - PermissibleValue(text="Fibrous mesothelioma, NOS") ) - setattr(cls, "Atypical choroid plexus papilloma", - PermissibleValue(text="Atypical choroid plexus papilloma") ) - setattr(cls, "Insulinoma, NOS", - PermissibleValue(text="Insulinoma, NOS") ) - setattr(cls, "T lymphoblastic leukemia/lymphoma", - PermissibleValue(text="T lymphoblastic leukemia/lymphoma") ) - setattr(cls, "T/NK-cell lymphoma", - PermissibleValue(text="T/NK-cell lymphoma") ) - setattr(cls, "Thymoma, type B1, NOS", - PermissibleValue(text="Thymoma, type B1, NOS") ) - setattr(cls, "FAB L3", - PermissibleValue(text="FAB L3") ) - setattr(cls, "Squamous cell carcinoma, sarcomatoid", - PermissibleValue(text="Squamous cell carcinoma, sarcomatoid") ) - setattr(cls, "Cervical intraepithelial neoplasia, low grade", - PermissibleValue(text="Cervical intraepithelial neoplasia, low grade") ) - setattr(cls, "Pancreatic endocrine tumor, NOS", - PermissibleValue(text="Pancreatic endocrine tumor, NOS") ) - setattr(cls, "Anaplastic large B-cell lymphoma", - PermissibleValue(text="Anaplastic large B-cell lymphoma") ) - setattr(cls, "CNS Embryonal tumor with rhabdoid features", - PermissibleValue(text="CNS Embryonal tumor with rhabdoid features") ) - setattr(cls, "Cellular blue nevus", - PermissibleValue(text="Cellular blue nevus") ) - setattr(cls, "Cin III, NOS", - PermissibleValue(text="Cin III, NOS") ) - setattr(cls, "Eosinophilic granuloma", - PermissibleValue(text="Eosinophilic granuloma") ) - setattr(cls, "Papillary adenocarcinoma, NOS", - PermissibleValue(text="Papillary adenocarcinoma, NOS") ) - setattr(cls, "Intraductal tubulopapillary neoplasm", - PermissibleValue(text="Intraductal tubulopapillary neoplasm") ) - setattr(cls, "Nonchromaffin paraganglioma, malignant", - PermissibleValue(text="Nonchromaffin paraganglioma, malignant") ) - setattr(cls, "T-cell lymphoma, NOS", - PermissibleValue(text="T-cell lymphoma, NOS") ) - setattr(cls, "Spindle epithelial tumor with thymus-like differentiation", - PermissibleValue(text="Spindle epithelial tumor with thymus-like differentiation") ) - setattr(cls, "Medullary osteosarcoma", - PermissibleValue(text="Medullary osteosarcoma") ) - setattr(cls, "Tenosynovial giant cell tumor", - PermissibleValue(text="Tenosynovial giant cell tumor") ) - setattr(cls, "Periosteal osteosarcoma", - PermissibleValue(text="Periosteal osteosarcoma") ) - setattr(cls, "Pancreatobiliary-type carcinoma", - PermissibleValue(text="Pancreatobiliary-type carcinoma") ) - setattr(cls, "Atypical teratoid/rhabdoid tumor", - PermissibleValue(text="Atypical teratoid/rhabdoid tumor") ) - setattr(cls, "Dedifferentiated liposarcoma", - PermissibleValue(text="Dedifferentiated liposarcoma", - description="Dedifferentiated Liposarcoma") ) - setattr(cls, "Pagetoid reticulosis", - PermissibleValue(text="Pagetoid reticulosis") ) - setattr(cls, "Vulvar intraepithelial neoplasia, grade III", - PermissibleValue(text="Vulvar intraepithelial neoplasia, grade III") ) - setattr(cls, "Pancreatic endocrine tumor, benign", - PermissibleValue(text="Pancreatic endocrine tumor, benign") ) - setattr(cls, "Malignant cystic nephroma", - PermissibleValue(text="Malignant cystic nephroma") ) - setattr(cls, "Cementoma, NOS", - PermissibleValue(text="Cementoma, NOS") ) - setattr(cls, "Lymphoepithelioid lymphoma", - PermissibleValue(text="Lymphoepithelioid lymphoma") ) - setattr(cls, "Systemic mastocytosis with associated hematological clonal non-mast cell disorder", - PermissibleValue(text="Systemic mastocytosis with associated hematological clonal non-mast cell disorder") ) - setattr(cls, "Sertoli cell carcinoma", - PermissibleValue(text="Sertoli cell carcinoma") ) - setattr(cls, "Nonchromaffin paraganglioma, NOS", - PermissibleValue(text="Nonchromaffin paraganglioma, NOS") ) - setattr(cls, "Fibroblastic liposarcoma", - PermissibleValue(text="Fibroblastic liposarcoma") ) - setattr(cls, "Dermatofibroma lenticulare", - PermissibleValue(text="Dermatofibroma lenticulare") ) - setattr(cls, "Hodgkin disease, nodular sclerosis, NOS", - PermissibleValue(text="Hodgkin disease, nodular sclerosis, NOS") ) - setattr(cls, "Bellini duct carcinoma", - PermissibleValue(text="Bellini duct carcinoma") ) - setattr(cls, "Bronchial adenoma, carcinoid", - PermissibleValue(text="Bronchial adenoma, carcinoid") ) - setattr(cls, "Hepatoid adenocarcinoma", - PermissibleValue(text="Hepatoid adenocarcinoma", - description="Hepatoid Adenocarcinoma") ) - setattr(cls, "Thymoma, predominantly cortical, malignant", - PermissibleValue(text="Thymoma, predominantly cortical, malignant") ) - setattr(cls, "Langerhans cell histiocytosis, poly-ostotic", - PermissibleValue(text="Langerhans cell histiocytosis, poly-ostotic") ) - setattr(cls, "Noninvasive pancreatobiliary papillary neoplasm with high grade intraepithelial neoplasia", - PermissibleValue(text="Noninvasive pancreatobiliary papillary neoplasm with high grade intraepithelial neoplasia") ) - setattr(cls, "Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements", - PermissibleValue(text="Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements") ) - setattr(cls, "Pilomatrix carcinoma", - PermissibleValue(text="Pilomatrix carcinoma") ) - setattr(cls, "Acute myeloid leukemia, M6 type", - PermissibleValue(text="Acute myeloid leukemia, M6 type") ) - setattr(cls, "Round cell sarcoma", - PermissibleValue(text="Round cell sarcoma") ) - setattr(cls, "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation", - PermissibleValue(text="Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation") ) - setattr(cls, "Hodgkin disease, lymphocyte predominance, diffuse", - PermissibleValue(text="Hodgkin disease, lymphocyte predominance, diffuse") ) - setattr(cls, "Malignant melanoma in Hutchinson melanotic freckle", - PermissibleValue(text="Malignant melanoma in Hutchinson melanotic freckle") ) - setattr(cls, "Adenocarcinoma in polypoid adenoma", - PermissibleValue(text="Adenocarcinoma in polypoid adenoma") ) - setattr(cls, "Mixed adenocarcinoma and epidermoid carcinoma", - PermissibleValue(text="Mixed adenocarcinoma and epidermoid carcinoma") ) - setattr(cls, "Oxyphilic adenoma", - PermissibleValue(text="Oxyphilic adenoma") ) - setattr(cls, "MALT lymphoma", - PermissibleValue(text="MALT lymphoma") ) - setattr(cls, "Chronic granulocytic leukemia, t(9;22)(q34;q11)", - PermissibleValue(text="Chronic granulocytic leukemia, t(9;22)(q34;q11)") ) - setattr(cls, "Acinar adenocarcinoma", - PermissibleValue(text="Acinar adenocarcinoma") ) - setattr(cls, "Adenocarcinoma with apocrine metaplasia", - PermissibleValue(text="Adenocarcinoma with apocrine metaplasia") ) - setattr(cls, "Stromal tumor with minor sex cord elements", - PermissibleValue(text="Stromal tumor with minor sex cord elements") ) - setattr(cls, "Skin-associated lymphoid tissue lymphoma", - PermissibleValue(text="Skin-associated lymphoid tissue lymphoma") ) - setattr(cls, "Phyllodes tumor, benign", - PermissibleValue(text="Phyllodes tumor, benign") ) - setattr(cls, "Mixed carcinoid-adenocarcinoma", - PermissibleValue(text="Mixed carcinoid-adenocarcinoma") ) - setattr(cls, "Follicular lymphoma, grade 3B", - PermissibleValue(text="Follicular lymphoma, grade 3B") ) - setattr(cls, "Epithelial tumor, benign", - PermissibleValue(text="Epithelial tumor, benign") ) - setattr(cls, "Aleukemic myelogenous leukemia", - PermissibleValue(text="Aleukemic myelogenous leukemia") ) - setattr(cls, "Circumscribed arachnoidal cerebellar sarcoma", - PermissibleValue(text="Circumscribed arachnoidal cerebellar sarcoma") ) - setattr(cls, "Monoclonal gammopathy, NOS", - PermissibleValue(text="Monoclonal gammopathy, NOS") ) - setattr(cls, "Acute biphenotypic leukemia", - PermissibleValue(text="Acute biphenotypic leukemia") ) - setattr(cls, "Embryonal adenoma", - PermissibleValue(text="Embryonal adenoma") ) - setattr(cls, "Spindle cell carcinoma, NOS", - PermissibleValue(text="Spindle cell carcinoma, NOS") ) - setattr(cls, "Anaplastic large cell lymphoma, NOS", - PermissibleValue(text="Anaplastic large cell lymphoma, NOS") ) - setattr(cls, "Malignant tumor, spindle cell type", - PermissibleValue(text="Malignant tumor, spindle cell type") ) - setattr(cls, "Thymoma, lymphocytic, malignant", - PermissibleValue(text="Thymoma, lymphocytic, malignant") ) - setattr(cls, "Nerve sheath myxoma", - PermissibleValue(text="Nerve sheath myxoma") ) - setattr(cls, "Renal cell carcinoma, chromophobe type", - PermissibleValue(text="Renal cell carcinoma, chromophobe type") ) - setattr(cls, "Undifferentiated sarcoma", - PermissibleValue(text="Undifferentiated sarcoma") ) - setattr(cls, "Well differentiated liposarcoma of superficial soft tissue", - PermissibleValue(text="Well differentiated liposarcoma of superficial soft tissue") ) - setattr(cls, "Nodular hidradenoma, malignant", - PermissibleValue(text="Nodular hidradenoma, malignant") ) - setattr(cls, "Syringadenoma, NOS", - PermissibleValue(text="Syringadenoma, NOS") ) - setattr(cls, "Pleomorphic rhabdomyosarcoma, NOS", - PermissibleValue(text="Pleomorphic rhabdomyosarcoma, NOS") ) - setattr(cls, "Primary intraosseous carcinoma", - PermissibleValue(text="Primary intraosseous carcinoma") ) - setattr(cls, "Interstitial cell tumor, benign", - PermissibleValue(text="Interstitial cell tumor, benign") ) - setattr(cls, "Epithelioid malignant peripheral nerve sheath tumor", - PermissibleValue(text="Epithelioid malignant peripheral nerve sheath tumor") ) - setattr(cls, "Syringoma, NOS", - PermissibleValue(text="Syringoma, NOS") ) - setattr(cls, "Renomedullary fibroma", - PermissibleValue(text="Renomedullary fibroma") ) - setattr(cls, "Acute panmyelosis with myelofibrosis", - PermissibleValue(text="Acute panmyelosis with myelofibrosis") ) - setattr(cls, "Microcystic urothelial carcinoma", - PermissibleValue(text="Microcystic urothelial carcinoma") ) - setattr(cls, "Pseudomucinous adenocarcinoma", - PermissibleValue(text="Pseudomucinous adenocarcinoma") ) - setattr(cls, "Arrhenoblastoma, malignant", - PermissibleValue(text="Arrhenoblastoma, malignant") ) - setattr(cls, "Nonencapsulated sclerosing adenocarcinoma", - PermissibleValue(text="Nonencapsulated sclerosing adenocarcinoma") ) - setattr(cls, "Cementoblastoma, benign", - PermissibleValue(text="Cementoblastoma, benign") ) - setattr(cls, "Myoepithelial adenoma", - PermissibleValue(text="Myoepithelial adenoma") ) - setattr(cls, "Extranodal NK/T-cell lymphoma, nasal type", - PermissibleValue(text="Extranodal NK/T-cell lymphoma, nasal type") ) - setattr(cls, "Choriocarcinoma combined with other germ cell elements", - PermissibleValue(text="Choriocarcinoma combined with other germ cell elements") ) - setattr(cls, "Water-clear cell adenoma", - PermissibleValue(text="Water-clear cell adenoma") ) - setattr(cls, "Phyllodes tumor, NOS", - PermissibleValue(text="Phyllodes tumor, NOS") ) - setattr(cls, "Epidermoid carcinoma, large cell, nonkeratinizing", - PermissibleValue(text="Epidermoid carcinoma, large cell, nonkeratinizing") ) - setattr(cls, "Leiomyoma, NOS", - PermissibleValue(text="Leiomyoma, NOS") ) - setattr(cls, "Mu heavy chain disease", - PermissibleValue(text="Mu heavy chain disease") ) - setattr(cls, "Papillary renal cell carcinoma", - PermissibleValue(text="Papillary renal cell carcinoma") ) - setattr(cls, "B-cell lymphoma, unclassifiable, with features intermediate between diffuse large B-cell lymphoma and Burkitt lymphoma", - PermissibleValue(text="B-cell lymphoma, unclassifiable, with features intermediate between diffuse large B-cell lymphoma and Burkitt lymphoma") ) - setattr(cls, "Neurofibromatosis, NOS", - PermissibleValue(text="Neurofibromatosis, NOS") ) - setattr(cls, "RAEB I", - PermissibleValue(text="RAEB I") ) - setattr(cls, "Papillary pseudomucinous cystadenoma, borderline malignancy", - PermissibleValue(text="Papillary pseudomucinous cystadenoma, borderline malignancy") ) - setattr(cls, "Lipoid cell tumor of ovary", - PermissibleValue(text="Lipoid cell tumor of ovary") ) - setattr(cls, "Hutchinson melanotic freckle, NOS", - PermissibleValue(text="Hutchinson melanotic freckle, NOS") ) - setattr(cls, "Acinar adenoma", - PermissibleValue(text="Acinar adenoma") ) - setattr(cls, "Papillary serous cystadenocarcinoma", - PermissibleValue(text="Papillary serous cystadenocarcinoma") ) - setattr(cls, "Chromophobe adenoma", - PermissibleValue(text="Chromophobe adenoma") ) - setattr(cls, "Clear cell hidradenoma", - PermissibleValue(text="Clear cell hidradenoma") ) - setattr(cls, "Granular cell myoblastoma, NOS", - PermissibleValue(text="Granular cell myoblastoma, NOS") ) - setattr(cls, "Chondrosarcoma, NOS", - PermissibleValue(text="Chondrosarcoma, NOS") ) - setattr(cls, "Papillary carcinoma, follicular variant", - PermissibleValue(text="Papillary carcinoma, follicular variant") ) - setattr(cls, "Langerhans cell histiocytosis, multifocal", - PermissibleValue(text="Langerhans cell histiocytosis, multifocal") ) - setattr(cls, "Medullary carcinoma with amyloid stroma", - PermissibleValue(text="Medullary carcinoma with amyloid stroma") ) - setattr(cls, "Bronchial adenoma, NOS", - PermissibleValue(text="Bronchial adenoma, NOS") ) - setattr(cls, "Mixed meningioma", - PermissibleValue(text="Mixed meningioma") ) - setattr(cls, "Waldenstrom macroglobulinemia", - PermissibleValue(text="Waldenstrom macroglobulinemia") ) - setattr(cls, "Anaplastic astrocytoma, IDH-wildtype", - PermissibleValue(text="Anaplastic astrocytoma, IDH-wildtype") ) - setattr(cls, "Eosinophil adenoma", - PermissibleValue(text="Eosinophil adenoma") ) - setattr(cls, "Sebaceous adenocarcinoma", - PermissibleValue(text="Sebaceous adenocarcinoma", - description="Head and Neck Sebaceous Carcinoma") ) - setattr(cls, "Encapsulated follicular variant of papillary thyroid carcinoma, NOS (EFVPTC, NOS)", - PermissibleValue(text="Encapsulated follicular variant of papillary thyroid carcinoma, NOS (EFVPTC, NOS)") ) - setattr(cls, "Malignant lymphoma, large cleaved cell, follicular", - PermissibleValue(text="Malignant lymphoma, large cleaved cell, follicular") ) - setattr(cls, "C cell carcinoma", - PermissibleValue(text="C cell carcinoma") ) - setattr(cls, "Classical Hodgkin lymphoma, nodular sclerosis, NOS", - PermissibleValue(text="Classical Hodgkin lymphoma, nodular sclerosis, NOS") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma with hyperdiploidy", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma with hyperdiploidy") ) - setattr(cls, "Medulloblastoma, classic", - PermissibleValue(text="Medulloblastoma, classic") ) - setattr(cls, "Meningeal sarcomatosis", - PermissibleValue(text="Meningeal sarcomatosis") ) - setattr(cls, "Follicular adenocarcinoma, well differentiated", - PermissibleValue(text="Follicular adenocarcinoma, well differentiated") ) - setattr(cls, "Desmoplastic fibroma", - PermissibleValue(text="Desmoplastic fibroma") ) - setattr(cls, "Intravascular bronchial alveolar tumor", - PermissibleValue(text="Intravascular bronchial alveolar tumor") ) - setattr(cls, "Lymphocytic leukemia, NOS", - PermissibleValue(text="Lymphocytic leukemia, NOS") ) - setattr(cls, "Gastrointestinal stromal tumor, malignant", - PermissibleValue(text="Gastrointestinal stromal tumor, malignant") ) - setattr(cls, "Transitional cell carcinoma, micropapillary", - PermissibleValue(text="Transitional cell carcinoma, micropapillary") ) - setattr(cls, "Squamous cell carcinoma, pseudoglandular", - PermissibleValue(text="Squamous cell carcinoma, pseudoglandular") ) - setattr(cls, "FAB M2, t(8;21)(q22;q22)", - PermissibleValue(text="FAB M2, t(8;21)(q22;q22)") ) - setattr(cls, "Infantile fibrosarcoma", - PermissibleValue(text="Infantile fibrosarcoma") ) - setattr(cls, "Mucin-producing carcinoma", - PermissibleValue(text="Mucin-producing carcinoma") ) - setattr(cls, "Peripheral T-cell lymphoma, pleomorphic small cell", - PermissibleValue(text="Peripheral T-cell lymphoma, pleomorphic small cell") ) - setattr(cls, "Ceruminous adenocarcinoma", - PermissibleValue(text="Ceruminous adenocarcinoma") ) - setattr(cls, "Psammomatous meningioma", - PermissibleValue(text="Psammomatous meningioma") ) - setattr(cls, "Juxtaglomerular tumor", - PermissibleValue(text="Juxtaglomerular tumor") ) - setattr(cls, "Malignant lymphoma, large cell, noncleaved, NOS", - PermissibleValue(text="Malignant lymphoma, large cell, noncleaved, NOS") ) - setattr(cls, "Non-small cell carcinoma", - PermissibleValue(text="Non-small cell carcinoma") ) - setattr(cls, "Blast cell leukemia", - PermissibleValue(text="Blast cell leukemia") ) - setattr(cls, "Neoplasm, secondary", - PermissibleValue(text="Neoplasm, secondary") ) - setattr(cls, "Pineal parenchymal tumor of intermediate differentiation", - PermissibleValue(text="Pineal parenchymal tumor of intermediate differentiation") ) - setattr(cls, "Multiple adenomatous polyps", - PermissibleValue(text="Multiple adenomatous polyps") ) - setattr(cls, "Endometrioid cystadenofibroma, NOS", - PermissibleValue(text="Endometrioid cystadenofibroma, NOS") ) - setattr(cls, "Chromophobe cell renal carcinoma", - PermissibleValue(text="Chromophobe cell renal carcinoma") ) - setattr(cls, "Microfollicular adenoma, NOS", - PermissibleValue(text="Microfollicular adenoma, NOS") ) - setattr(cls, "Gangliocytic paraganglioma", - PermissibleValue(text="Gangliocytic paraganglioma") ) - setattr(cls, "Extranodal marginal zone lymphoma of mucosa-associated lymphoid tissue", - PermissibleValue(text="Extranodal marginal zone lymphoma of mucosa-associated lymphoid tissue") ) - setattr(cls, "Basal cell epithelioma", - PermissibleValue(text="Basal cell epithelioma") ) - setattr(cls, "Glioblastoma, IDH wildtype", - PermissibleValue(text="Glioblastoma, IDH wildtype") ) - setattr(cls, "Dermatofibroma, NOS", - PermissibleValue(text="Dermatofibroma, NOS") ) - setattr(cls, "Reticulum cell sarcoma, NOS", - PermissibleValue(text="Reticulum cell sarcoma, NOS") ) - setattr(cls, "Atypical chronic myeloid leukemia, BCR/ABL negative", - PermissibleValue(text="Atypical chronic myeloid leukemia, BCR/ABL negative") ) - setattr(cls, "Systemic mastocytosis with AHNMD", - PermissibleValue(text="Systemic mastocytosis with AHNMD") ) - setattr(cls, "Bowen disease", - PermissibleValue(text="Bowen disease") ) - setattr(cls, "Anaplastic oligoastrocytoma", - PermissibleValue(text="Anaplastic oligoastrocytoma") ) - setattr(cls, "Prolymphocytic leukemia, NOS", - PermissibleValue(text="Prolymphocytic leukemia, NOS") ) - setattr(cls, "Acute myeloid leukemia, minimal differentiation", - PermissibleValue(text="Acute myeloid leukemia, minimal differentiation") ) - setattr(cls, "Spindle cell angioendothelioma", - PermissibleValue(text="Spindle cell angioendothelioma") ) - setattr(cls, "PP/PYY producing tumor", - PermissibleValue(text="PP/PYY producing tumor") ) - setattr(cls, "Chromophobe adenocarcinoma", - PermissibleValue(text="Chromophobe adenocarcinoma") ) - setattr(cls, "Acidophil carcinoma", - PermissibleValue(text="Acidophil carcinoma") ) - setattr(cls, "Malignant lymphoma, lymphoplasmacytoid", - PermissibleValue(text="Malignant lymphoma, lymphoplasmacytoid") ) - setattr(cls, "Angiocentric glioma", - PermissibleValue(text="Angiocentric glioma") ) - setattr(cls, "Malignant lymphoma, centroblastic, NOS", - PermissibleValue(text="Malignant lymphoma, centroblastic, NOS") ) - setattr(cls, "Endometrioid cystadenofibroma, malignant", - PermissibleValue(text="Endometrioid cystadenofibroma, malignant") ) - setattr(cls, "Sertoli-Leydig cell tumor, retiform", - PermissibleValue(text="Sertoli-Leydig cell tumor, retiform") ) - setattr(cls, "Transitional cell carcinoma in situ", - PermissibleValue(text="Transitional cell carcinoma in situ") ) - setattr(cls, "Bronchial adenoma, cylindroid", - PermissibleValue(text="Bronchial adenoma, cylindroid") ) - setattr(cls, "Renal cell carcinoma, unclassified", - PermissibleValue(text="Renal cell carcinoma, unclassified", - description="Unclassified Renal Cell Carcinoma") ) - setattr(cls, "Enterochromaffin cell carcinoid", - PermissibleValue(text="Enterochromaffin cell carcinoid") ) - setattr(cls, "Lobular carcinoma, NOS", - PermissibleValue(text="Lobular carcinoma, NOS") ) - setattr(cls, "Intradermal nevus", - PermissibleValue(text="Intradermal nevus") ) - setattr(cls, "Basophil adenoma", - PermissibleValue(text="Basophil adenoma") ) - setattr(cls, "Esophageal intraepithelial neoplasia, high grade", - PermissibleValue(text="Esophageal intraepithelial neoplasia, high grade") ) - setattr(cls, "Sweat gland carcinoma", - PermissibleValue(text="Sweat gland carcinoma") ) - setattr(cls, "Indolent systemic mastocytosis", - PermissibleValue(text="Indolent systemic mastocytosis") ) - setattr(cls, "Mesothelioma, biphasic, NOS", - PermissibleValue(text="Mesothelioma, biphasic, NOS") ) - setattr(cls, "Familial polyposis coli", - PermissibleValue(text="Familial polyposis coli") ) - setattr(cls, "Carcinoma, metastatic, NOS", - PermissibleValue(text="Carcinoma, metastatic, NOS") ) - setattr(cls, "Malignant lymphoma, large cleaved cell, NOS", - PermissibleValue(text="Malignant lymphoma, large cleaved cell, NOS") ) - setattr(cls, "Multifocal superficial basal cell carcinoma", - PermissibleValue(text="Multifocal superficial basal cell carcinoma") ) - setattr(cls, "Terminal duct adenocarcinoma", - PermissibleValue(text="Terminal duct adenocarcinoma") ) - setattr(cls, "Invasive lobular carcinoma, tubulolobular variant", - PermissibleValue(text="Invasive lobular carcinoma, tubulolobular variant") ) - setattr(cls, "Clear cell odontogenic tumor", - PermissibleValue(text="Clear cell odontogenic tumor") ) - setattr(cls, "Islet cell carcinoma", - PermissibleValue(text="Islet cell carcinoma") ) - setattr(cls, "Papillary hidradenoma", - PermissibleValue(text="Papillary hidradenoma") ) - setattr(cls, "Infiltrating duct and colloid carcinoma", - PermissibleValue(text="Infiltrating duct and colloid carcinoma") ) - setattr(cls, "Immature teratoma, NOS", - PermissibleValue(text="Immature teratoma, NOS") ) - setattr(cls, "Tumor, malignant, NOS", - PermissibleValue(text="Tumor, malignant, NOS") ) - setattr(cls, "Chronic erythremia", - PermissibleValue(text="Chronic erythremia") ) - setattr(cls, "Large cell carcinoma with rhabdoid phenotype", - PermissibleValue(text="Large cell carcinoma with rhabdoid phenotype") ) - setattr(cls, "Unclassified tumor, uncertain whether benign or malignant", - PermissibleValue(text="Unclassified tumor, uncertain whether benign or malignant") ) - setattr(cls, "Chordoid glioma of third ventricle", - PermissibleValue(text="Chordoid glioma of third ventricle") ) - setattr(cls, "Transitional papilloma", - PermissibleValue(text="Transitional papilloma") ) - setattr(cls, "Solitary fibrous tumor/hemangiopericytoma Grade 1 (CNS)", - PermissibleValue(text="Solitary fibrous tumor/hemangiopericytoma Grade 1 (CNS)") ) - setattr(cls, "Acute basophilic leukaemia", - PermissibleValue(text="Acute basophilic leukaemia") ) - setattr(cls, "Myloproliferative neoplasm, unclassifiable", - PermissibleValue(text="Myloproliferative neoplasm, unclassifiable") ) - setattr(cls, "Malignant melanoma, regressing", - PermissibleValue(text="Malignant melanoma, regressing") ) - setattr(cls, "Endometrioid cystadenocarcinoma", - PermissibleValue(text="Endometrioid cystadenocarcinoma") ) - setattr(cls, "Pancreatic endocrine tumor, nonfunctioning", - PermissibleValue(text="Pancreatic endocrine tumor, nonfunctioning") ) - setattr(cls, "Intraductal papillary neoplasm with intermediate grade neoplasia", - PermissibleValue(text="Intraductal papillary neoplasm with intermediate grade neoplasia") ) - setattr(cls, "Endometrioid carcinoma, NOS", - PermissibleValue(text="Endometrioid carcinoma, NOS", - description="Endometrial Carcinoma") ) - setattr(cls, "Hidradenoma papilliferum", - PermissibleValue(text="Hidradenoma papilliferum") ) - setattr(cls, "Intravascular large B-cell lymphoma", - PermissibleValue(text="Intravascular large B-cell lymphoma") ) - setattr(cls, "Clear cell cystadenocarcinofibroma", - PermissibleValue(text="Clear cell cystadenocarcinofibroma") ) - setattr(cls, "Spindle cell nevus, NOS", - PermissibleValue(text="Spindle cell nevus, NOS") ) - setattr(cls, "Scirrhous adenocarcinoma", - PermissibleValue(text="Scirrhous adenocarcinoma") ) - setattr(cls, "Fibroameloblastic odontoma", - PermissibleValue(text="Fibroameloblastic odontoma") ) - setattr(cls, "Esophageal squamous intraepithelial neoplasia (dysplasia), high grade", - PermissibleValue(text="Esophageal squamous intraepithelial neoplasia (dysplasia), high grade") ) - setattr(cls, "Lymphoepithelioma-like carcinoma", - PermissibleValue(text="Lymphoepithelioma-like carcinoma") ) - setattr(cls, "Adrenal cortical tumor, NOS", - PermissibleValue(text="Adrenal cortical tumor, NOS") ) - setattr(cls, "Lactating adenoma", - PermissibleValue(text="Lactating adenoma") ) - setattr(cls, "Malignant melanoma, NOS", - PermissibleValue(text="Malignant melanoma, NOS") ) - setattr(cls, "Spongioblastoma polare", - PermissibleValue(text="Spongioblastoma polare") ) - setattr(cls, "Mucinous cystic tumor of borderline malignancy", - PermissibleValue(text="Mucinous cystic tumor of borderline malignancy") ) - setattr(cls, "Tubular androblastoma with lipid storage", - PermissibleValue(text="Tubular androblastoma with lipid storage") ) - setattr(cls, "T-gamma lymphoproliferative disease", - PermissibleValue(text="T-gamma lymphoproliferative disease") ) - setattr(cls, "Mucoid cell adenocarcinoma", - PermissibleValue(text="Mucoid cell adenocarcinoma") ) - setattr(cls, "Epithelioid mesothelioma, malignant", - PermissibleValue(text="Epithelioid mesothelioma, malignant") ) - setattr(cls, "Myxofibroma, NOS", - PermissibleValue(text="Myxofibroma, NOS") ) - setattr(cls, "Hurthle cell adenoma", - PermissibleValue(text="Hurthle cell adenoma") ) - setattr(cls, "Osteoblastoma, malignant", - PermissibleValue(text="Osteoblastoma, malignant") ) - setattr(cls, "Intraepidermal squamous cell carcinoma, Bowen type", - PermissibleValue(text="Intraepidermal squamous cell carcinoma, Bowen type") ) - setattr(cls, "Juvenile fibroadenoma", - PermissibleValue(text="Juvenile fibroadenoma") ) - setattr(cls, "Glucagon-like peptide-producing tumor", - PermissibleValue(text="Glucagon-like peptide-producing tumor") ) - setattr(cls, "Endometrioid adenocarcinoma, ciliated cell variant", - PermissibleValue(text="Endometrioid adenocarcinoma, ciliated cell variant") ) - setattr(cls, "Malignant lymphoma, undifferentiated cell type, NOS", - PermissibleValue(text="Malignant lymphoma, undifferentiated cell type, NOS") ) - setattr(cls, "Adenocarcinoma, cylindroid", - PermissibleValue(text="Adenocarcinoma, cylindroid") ) - setattr(cls, "Clear cell (glycogen-rich) urothelial carcinoma", - PermissibleValue(text="Clear cell (glycogen-rich) urothelial carcinoma") ) - setattr(cls, "Glandular intraepithelial neoplasia, grade I", - PermissibleValue(text="Glandular intraepithelial neoplasia, grade I") ) - setattr(cls, "Blue nevus, malignant", - PermissibleValue(text="Blue nevus, malignant") ) - setattr(cls, "Hilus cell tumor", - PermissibleValue(text="Hilus cell tumor") ) - setattr(cls, "Adenocarcinoma in adenomatous polyposis coli", - PermissibleValue(text="Adenocarcinoma in adenomatous polyposis coli") ) - setattr(cls, "Embryonal tumor with multilayered rosettes, NOS", - PermissibleValue(text="Embryonal tumor with multilayered rosettes, NOS") ) - setattr(cls, "Sclerosing epithelioid fibrosarcoma", - PermissibleValue(text="Sclerosing epithelioid fibrosarcoma") ) - setattr(cls, "Multiple hemorrhagic sarcoma", - PermissibleValue(text="Multiple hemorrhagic sarcoma") ) - setattr(cls, "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis", - PermissibleValue(text="Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis") ) - setattr(cls, "Acute monocytic leukemia", - PermissibleValue(text="Acute monocytic leukemia") ) - setattr(cls, "Acute leukemia, NOS", - PermissibleValue(text="Acute leukemia, NOS") ) - setattr(cls, "Myeloid and lymphoid neoplasms with FGFR1 abnormalities", - PermissibleValue(text="Myeloid and lymphoid neoplasms with FGFR1 abnormalities") ) - setattr(cls, "Mixed liposarcoma", - PermissibleValue(text="Mixed liposarcoma") ) - setattr(cls, "Lobular carcinoma in situ, NOS", - PermissibleValue(text="Lobular carcinoma in situ, NOS") ) - setattr(cls, "Islet cell tumor, NOS", - PermissibleValue(text="Islet cell tumor, NOS") ) - setattr(cls, "Serous cystadenocarcinoma, NOS", - PermissibleValue(text="Serous cystadenocarcinoma, NOS") ) - setattr(cls, "Carcinoma with neuroendocrine differentiation", - PermissibleValue(text="Carcinoma with neuroendocrine differentiation") ) - setattr(cls, "Papillary cystadenoma, NOS", - PermissibleValue(text="Papillary cystadenoma, NOS") ) - setattr(cls, "Tubular carcinoid", - PermissibleValue(text="Tubular carcinoid") ) - setattr(cls, "Acute myeloid leukemia with maturation", - PermissibleValue(text="Acute myeloid leukemia with maturation") ) - setattr(cls, "Arrhenoblastoma, benign", - PermissibleValue(text="Arrhenoblastoma, benign") ) - setattr(cls, "Sertoli-Leydig cell tumor, NOS", - PermissibleValue(text="Sertoli-Leydig cell tumor, NOS") ) - setattr(cls, "Endotheliomatous meningioma", - PermissibleValue(text="Endotheliomatous meningioma") ) - setattr(cls, "Hemangiopericytic meningioma", - PermissibleValue(text="Hemangiopericytic meningioma") ) - setattr(cls, "Epithelioid and spindle cell nevus", - PermissibleValue(text="Epithelioid and spindle cell nevus") ) - setattr(cls, "Combined hepatocellular carcinoma and cholangiocarcinoma", - PermissibleValue(text="Combined hepatocellular carcinoma and cholangiocarcinoma") ) - setattr(cls, "Malignant lymphoma, small cell, NOS", - PermissibleValue(text="Malignant lymphoma, small cell, NOS") ) - setattr(cls, "Squamous cell epithelioma", - PermissibleValue(text="Squamous cell epithelioma") ) - setattr(cls, "Medulloblastoma, group 3", - PermissibleValue(text="Medulloblastoma, group 3") ) - setattr(cls, "Embryonal tumor with multilayered rosettes C19MC-altered", - PermissibleValue(text="Embryonal tumor with multilayered rosettes C19MC-altered") ) - setattr(cls, "Metastasizing leiomyoma", - PermissibleValue(text="Metastasizing leiomyoma") ) - setattr(cls, "Franklin disease", - PermissibleValue(text="Franklin disease") ) - setattr(cls, "Peripheral neuroectodermal tumor", - PermissibleValue(text="Peripheral neuroectodermal tumor") ) - setattr(cls, "Recklinghausen disease", - PermissibleValue(text="Recklinghausen disease") ) - setattr(cls, "Phyllodes tumor, malignant", - PermissibleValue(text="Phyllodes tumor, malignant") ) - setattr(cls, "Mucinous cystic neoplasm with high-grade intraepithelial neoplasia", - PermissibleValue(text="Mucinous cystic neoplasm with high-grade intraepithelial neoplasia") ) - setattr(cls, "Ductal carcinoma in situ, solid type", - PermissibleValue(text="Ductal carcinoma in situ, solid type") ) - setattr(cls, "Small cell osteosarcoma", - PermissibleValue(text="Small cell osteosarcoma") ) - setattr(cls, "Myoepithelial tumor", - PermissibleValue(text="Myoepithelial tumor") ) - setattr(cls, "Intravascular leiomyomatosis", - PermissibleValue(text="Intravascular leiomyomatosis") ) - setattr(cls, "Malignant lymphoma, histiocytic, nodular", - PermissibleValue(text="Malignant lymphoma, histiocytic, nodular") ) - setattr(cls, "Polygonal cell carcinoma", - PermissibleValue(text="Polygonal cell carcinoma") ) - setattr(cls, "Cellular schwannoma", - PermissibleValue(text="Cellular schwannoma") ) - setattr(cls, "Histiocytoma, NOS", - PermissibleValue(text="Histiocytoma, NOS") ) - setattr(cls, "Paget disease and intraductal carcinoma of breast", - PermissibleValue(text="Paget disease and intraductal carcinoma of breast") ) - setattr(cls, "Liposarcoma, NOS", - PermissibleValue(text="Liposarcoma, NOS") ) - setattr(cls, "Bronchio-alveolar carcinoma, mixed mucinous and non-mucinous", - PermissibleValue(text="Bronchio-alveolar carcinoma, mixed mucinous and non-mucinous") ) - setattr(cls, "Papillary transitional cell neoplasm of low malignant potential", - PermissibleValue(text="Papillary transitional cell neoplasm of low malignant potential") ) - setattr(cls, "ECL cell carcinoid, NOS", - PermissibleValue(text="ECL cell carcinoid, NOS") ) - setattr(cls, "Intracortical osteosarcoma", - PermissibleValue(text="Intracortical osteosarcoma") ) - setattr(cls, "Urothelial carcinoma in situ", - PermissibleValue(text="Urothelial carcinoma in situ") ) - setattr(cls, "Carcinoma with other types mesenchymal differentiation", - PermissibleValue(text="Carcinoma with other types mesenchymal differentiation") ) - setattr(cls, "Cyst-associated renal cell carcinoma", - PermissibleValue(text="Cyst-associated renal cell carcinoma") ) - setattr(cls, "Interstitial cell tumor, NOS", - PermissibleValue(text="Interstitial cell tumor, NOS") ) - setattr(cls, "Glycogenic rhabdomyoma", - PermissibleValue(text="Glycogenic rhabdomyoma") ) - setattr(cls, "Intraductal papillary neoplasm with associated invasive carcinoma", - PermissibleValue(text="Intraductal papillary neoplasm with associated invasive carcinoma") ) - setattr(cls, "Neuroendocrine carcinoma, NOS", - PermissibleValue(text="Neuroendocrine carcinoma, NOS") ) - setattr(cls, "Diktyoma, benign", - PermissibleValue(text="Diktyoma, benign") ) - setattr(cls, "Bronchial-associated lymphoid tissue lymphoma", - PermissibleValue(text="Bronchial-associated lymphoid tissue lymphoma") ) - setattr(cls, "Pseudosarcomatous carcinoma", - PermissibleValue(text="Pseudosarcomatous carcinoma") ) - setattr(cls, "Inflammatory myofibroblastic tumor", - PermissibleValue(text="Inflammatory myofibroblastic tumor", - description="Inflammatory Myofibroblastic Tumor") ) - setattr(cls, "Classical Hodgkin lymphoma, lymphocyte-rich", - PermissibleValue(text="Classical Hodgkin lymphoma, lymphocyte-rich") ) - setattr(cls, "Malignant multilocular cystic nephroma", - PermissibleValue(text="Malignant multilocular cystic nephroma") ) - setattr(cls, "SALT lymphoma", - PermissibleValue(text="SALT lymphoma") ) - setattr(cls, "Malignant lymphoma, lymphocytic, poorly differentiated, nodular", - PermissibleValue(text="Malignant lymphoma, lymphocytic, poorly differentiated, nodular") ) - setattr(cls, "T-cell large granular lymphocytic leukemia", - PermissibleValue(text="T-cell large granular lymphocytic leukemia") ) - setattr(cls, "Malignant schwannoma, NOS", - PermissibleValue(text="Malignant schwannoma, NOS") ) - setattr(cls, "Peripheral primitive neuroectodermal tumor, NOS", - PermissibleValue(text="Peripheral primitive neuroectodermal tumor, NOS") ) - setattr(cls, "Ameloblastic fibro-odontoma", - PermissibleValue(text="Ameloblastic fibro-odontoma") ) - setattr(cls, "Tumor cells, benign", - PermissibleValue(text="Tumor cells, benign") ) - setattr(cls, "Thymic carcinoma with adenoid cystic carcinoma-like features", - PermissibleValue(text="Thymic carcinoma with adenoid cystic carcinoma-like features") ) - setattr(cls, "Chronic myelomonocytic leukemia, Type 1", - PermissibleValue(text="Chronic myelomonocytic leukemia, Type 1") ) - setattr(cls, "Chronic myeloproliferative disease, NOS", - PermissibleValue(text="Chronic myeloproliferative disease, NOS") ) - setattr(cls, "Solid pseudopapillary tumor", - PermissibleValue(text="Solid pseudopapillary tumor") ) - setattr(cls, "Hepatoma, malignant", - PermissibleValue(text="Hepatoma, malignant") ) - setattr(cls, "Clear cell adenofibroma of borderline malignancy", - PermissibleValue(text="Clear cell adenofibroma of borderline malignancy") ) - setattr(cls, "Basal cell carcinoma, morpheic", - PermissibleValue(text="Basal cell carcinoma, morpheic") ) - setattr(cls, "Squamous cell carcinoma, keratinizing, NOS", - PermissibleValue(text="Squamous cell carcinoma, keratinizing, NOS") ) - setattr(cls, "Odontogenic tumor, benign", - PermissibleValue(text="Odontogenic tumor, benign") ) - setattr(cls, "Acute myeloid leukemia with myelodysplasia-related changes", - PermissibleValue(text="Acute myeloid leukemia with myelodysplasia-related changes") ) - setattr(cls, "Cystic lymphangioma", - PermissibleValue(text="Cystic lymphangioma") ) - setattr(cls, "Endometrioid adenofibroma, malignant", - PermissibleValue(text="Endometrioid adenofibroma, malignant") ) - setattr(cls, "Osteoblastoma, NOS", - PermissibleValue(text="Osteoblastoma, NOS") ) - setattr(cls, "Malignant lymphoma, large cell, diffuse, NOS", - PermissibleValue(text="Malignant lymphoma, large cell, diffuse, NOS") ) - setattr(cls, "Undifferentiated pleomorphic sarcoma", - PermissibleValue(text="Undifferentiated pleomorphic sarcoma") ) - setattr(cls, "Mucosal lentiginous melanoma", - PermissibleValue(text="Mucosal lentiginous melanoma") ) - setattr(cls, "Micropapillary serous carcinoma", - PermissibleValue(text="Micropapillary serous carcinoma") ) - setattr(cls, "Epithelioid leiomyoma", - PermissibleValue(text="Epithelioid leiomyoma") ) - setattr(cls, "Acute lymphoblastic leukemia, mature B-cell type", - PermissibleValue(text="Acute lymphoblastic leukemia, mature B-cell type") ) - setattr(cls, "Pilomatrixoma, malignant", - PermissibleValue(text="Pilomatrixoma, malignant") ) - setattr(cls, "Glassy cell carcinoma", - PermissibleValue(text="Glassy cell carcinoma") ) - setattr(cls, "Solid carcinoma with mucin formation", - PermissibleValue(text="Solid carcinoma with mucin formation") ) - setattr(cls, "Colloid carcinoma", - PermissibleValue(text="Colloid carcinoma") ) - setattr(cls, "Bronchiolar carcinoma", - PermissibleValue(text="Bronchiolar carcinoma") ) - setattr(cls, "Subepidermal nodular fibrosis", - PermissibleValue(text="Subepidermal nodular fibrosis") ) - setattr(cls, "Intravascular B-cell lymphoma", - PermissibleValue(text="Intravascular B-cell lymphoma") ) - setattr(cls, "Systemic EBV positive T-cell lymphoproliferative disease of childhood", - PermissibleValue(text="Systemic EBV positive T-cell lymphoproliferative disease of childhood") ) - setattr(cls, "Malignant lymphoma, histiocytic, NOS", - PermissibleValue(text="Malignant lymphoma, histiocytic, NOS") ) - setattr(cls, "Carcinoma with chondroid differentiation", - PermissibleValue(text="Carcinoma with chondroid differentiation") ) - setattr(cls, "Plasmacytoma, extramedullary", - PermissibleValue(text="Plasmacytoma, extramedullary") ) - setattr(cls, "Neuroendocrine tumor, grade 1", - PermissibleValue(text="Neuroendocrine tumor, grade 1") ) - setattr(cls, "Synovial sarcoma, monophasic fibrous", - PermissibleValue(text="Synovial sarcoma, monophasic fibrous") ) - setattr(cls, "Adult teratoma, NOS", - PermissibleValue(text="Adult teratoma, NOS") ) - setattr(cls, "Epithelioid MPNST", - PermissibleValue(text="Epithelioid MPNST") ) - setattr(cls, "Balloon cell melanoma", - PermissibleValue(text="Balloon cell melanoma") ) - setattr(cls, "Acute erythremia", - PermissibleValue(text="Acute erythremia") ) - setattr(cls, "Chordoid meningioma", - PermissibleValue(text="Chordoid meningioma") ) - setattr(cls, "Apocrine cystadenoma", - PermissibleValue(text="Apocrine cystadenoma") ) - setattr(cls, "Chronic myelocytic leukemia, NOS", - PermissibleValue(text="Chronic myelocytic leukemia, NOS") ) - setattr(cls, "Papillary cystadenoma lymphomatosum", - PermissibleValue(text="Papillary cystadenoma lymphomatosum") ) - setattr(cls, "Renal cell carcinoma, sarcomatoid", - PermissibleValue(text="Renal cell carcinoma, sarcomatoid") ) - setattr(cls, "Macrofollicular adenoma", - PermissibleValue(text="Macrofollicular adenoma") ) - setattr(cls, "Follicular adenocarcinoma, NOS", - PermissibleValue(text="Follicular adenocarcinoma, NOS") ) - setattr(cls, "Supratentorial PNET", - PermissibleValue(text="Supratentorial PNET") ) - setattr(cls, "Lymphatic leukemic, NOS", - PermissibleValue(text="Lymphatic leukemic, NOS") ) - setattr(cls, "Epithelioma, NOS", - PermissibleValue(text="Epithelioma, NOS") ) - setattr(cls, "Encapsulated papillary carcinoma", - PermissibleValue(text="Encapsulated papillary carcinoma") ) - setattr(cls, "Gastrointestinal stromal tumor, uncertain malignant potential", - PermissibleValue(text="Gastrointestinal stromal tumor, uncertain malignant potential") ) - setattr(cls, "Acute lymphoblastic leukemia, L2 type, NOS", - PermissibleValue(text="Acute lymphoblastic leukemia, L2 type, NOS") ) - setattr(cls, "Adrenal medullary paraganglioma", - PermissibleValue(text="Adrenal medullary paraganglioma") ) - setattr(cls, "Thymic large B-cell lymphoma", - PermissibleValue(text="Thymic large B-cell lymphoma") ) - setattr(cls, "Acute promyelocytic leukemia, NOS", - PermissibleValue(text="Acute promyelocytic leukemia, NOS") ) - setattr(cls, "Mesoblastic nephroma", - PermissibleValue(text="Mesoblastic nephroma") ) - setattr(cls, "Leiomyosarcoma, NOS", - PermissibleValue(text="Leiomyosarcoma, NOS") ) - setattr(cls, "Pleomorphic lipoma", - PermissibleValue(text="Pleomorphic lipoma") ) - setattr(cls, "Cutaneous mastocytosis", - PermissibleValue(text="Cutaneous mastocytosis") ) - setattr(cls, "Acute mixed lineage leukemia", - PermissibleValue(text="Acute mixed lineage leukemia") ) - setattr(cls, "Dermatofibrosarcoma, NOS", - PermissibleValue(text="Dermatofibrosarcoma, NOS") ) - setattr(cls, "Sertoli cell tumor, NOS", - PermissibleValue(text="Sertoli cell tumor, NOS") ) - setattr(cls, "Papillary carcinoma, oxyphilic cell", - PermissibleValue(text="Papillary carcinoma, oxyphilic cell") ) - setattr(cls, "Acinar cell tumor", - PermissibleValue(text="Acinar cell tumor") ) - setattr(cls, "Papillary ependymoma", - PermissibleValue(text="Papillary ependymoma") ) - setattr(cls, "Thymoma, atypical, malignant", - PermissibleValue(text="Thymoma, atypical, malignant") ) - setattr(cls, "Adenocarcinoma admixed with neuroendocrine carcinoma", - PermissibleValue(text="Adenocarcinoma admixed with neuroendocrine carcinoma") ) - setattr(cls, "Stromal tumor, NOS", - PermissibleValue(text="Stromal tumor, NOS") ) - setattr(cls, "Intraductal papillary-mucinous neoplasm with low grade dysplasia", - PermissibleValue(text="Intraductal papillary-mucinous neoplasm with low grade dysplasia") ) - setattr(cls, "Basal cell carcinoma, NOS", - PermissibleValue(text="Basal cell carcinoma, NOS") ) - setattr(cls, "Papillary pseudomucinous cystadenocarcinoma", - PermissibleValue(text="Papillary pseudomucinous cystadenocarcinoma") ) - setattr(cls, "Acute granulocytic leukemia", - PermissibleValue(text="Acute granulocytic leukemia") ) - setattr(cls, "Superficial spreading melanoma", - PermissibleValue(text="Superficial spreading melanoma", - description="Superficial Spreading Melanoma") ) - setattr(cls, "Ependymoma, RELA fusion-positive", - PermissibleValue(text="Ependymoma, RELA fusion-positive") ) - setattr(cls, "Adamantinoma of long bones", - PermissibleValue(text="Adamantinoma of long bones") ) - setattr(cls, "Glomoid sarcoma", - PermissibleValue(text="Glomoid sarcoma") ) - setattr(cls, "Mixed germ cell sex cord-stromal tumor, unclassified", - PermissibleValue(text="Mixed germ cell sex cord-stromal tumor, unclassified") ) - setattr(cls, "Sweat gland adenocarcinoma", - PermissibleValue(text="Sweat gland adenocarcinoma") ) - setattr(cls, "Glomus tumor, malignant", - PermissibleValue(text="Glomus tumor, malignant") ) - setattr(cls, "Calcifying epithelioma of Malherbe", - PermissibleValue(text="Calcifying epithelioma of Malherbe") ) - setattr(cls, "Hodgkin lymphoma, nodular sclerosis, grade 2", - PermissibleValue(text="Hodgkin lymphoma, nodular sclerosis, grade 2") ) - setattr(cls, "Somatostatinoma, NOS", - PermissibleValue(text="Somatostatinoma, NOS") ) - setattr(cls, "Aggressive systemic mastocytosis", - PermissibleValue(text="Aggressive systemic mastocytosis") ) - setattr(cls, "Adrenal cortical tumor, benign", - PermissibleValue(text="Adrenal cortical tumor, benign") ) - setattr(cls, "Malignant teratoma, trophoblastic", - PermissibleValue(text="Malignant teratoma, trophoblastic") ) - setattr(cls, "Undifferentiated uterine sarcoma", - PermissibleValue(text="Undifferentiated uterine sarcoma") ) - setattr(cls, "Essential thrombocythemia", - PermissibleValue(text="Essential thrombocythemia") ) - setattr(cls, "ACTH-producing tumor", - PermissibleValue(text="ACTH-producing tumor") ) - setattr(cls, "Acinar adenocarcinoma, sarcomatoid", - PermissibleValue(text="Acinar adenocarcinoma, sarcomatoid") ) - setattr(cls, "Ductal carcinoma in situ, cribriform type", - PermissibleValue(text="Ductal carcinoma in situ, cribriform type") ) - setattr(cls, "Papillary urothelial neoplasm of low malignant potential", - PermissibleValue(text="Papillary urothelial neoplasm of low malignant potential") ) - setattr(cls, "Teratoid medulloepithelioma, benign", - PermissibleValue(text="Teratoid medulloepithelioma, benign") ) - setattr(cls, "Fibrous histiocytoma, NOS", - PermissibleValue(text="Fibrous histiocytoma, NOS") ) - setattr(cls, "Mucous carcinoma", - PermissibleValue(text="Mucous carcinoma") ) - setattr(cls, "Myxoid fibroma", - PermissibleValue(text="Myxoid fibroma") ) - setattr(cls, "Carcinoma in a polyp, NOS", - PermissibleValue(text="Carcinoma in a polyp, NOS") ) - setattr(cls, "Anaplastic large cell lymphoma, ALK negative", - PermissibleValue(text="Anaplastic large cell lymphoma, ALK negative") ) - setattr(cls, "Symplastic leiomyoma", - PermissibleValue(text="Symplastic leiomyoma") ) - setattr(cls, "Pancreatic endocrine tumor, malignant", - PermissibleValue(text="Pancreatic endocrine tumor, malignant") ) - setattr(cls, "Intraductal papillary neoplasm, NOS", - PermissibleValue(text="Intraductal papillary neoplasm, NOS") ) - setattr(cls, "Malignant melanoma in precancerous melanosis", - PermissibleValue(text="Malignant melanoma in precancerous melanosis") ) - setattr(cls, "Glomus jugulare tumor, NOS", - PermissibleValue(text="Glomus jugulare tumor, NOS") ) - setattr(cls, "Chondroid syringoma", - PermissibleValue(text="Chondroid syringoma") ) - setattr(cls, "Ameloblastic fibrodentinosarcoma", - PermissibleValue(text="Ameloblastic fibrodentinosarcoma") ) - setattr(cls, "Non-invasive low grade serous carcinoma", - PermissibleValue(text="Non-invasive low grade serous carcinoma") ) - setattr(cls, "Chronic myelogenous leukemia, Philadelphia chromosome (Ph 1) positive", - PermissibleValue(text="Chronic myelogenous leukemia, Philadelphia chromosome (Ph 1) positive") ) - setattr(cls, "Myelodysplastic syndrome, NOS", - PermissibleValue(text="Myelodysplastic syndrome, NOS") ) - setattr(cls, "GIST, benign", - PermissibleValue(text="GIST, benign") ) - setattr(cls, "Intraductal papillary tumor with high grade intraepithelial neoplasia", - PermissibleValue(text="Intraductal papillary tumor with high grade intraepithelial neoplasia") ) - setattr(cls, "Villous adenoma, NOS", - PermissibleValue(text="Villous adenoma, NOS") ) - setattr(cls, "Odontogenic ghost cell tumor", - PermissibleValue(text="Odontogenic ghost cell tumor") ) - setattr(cls, "DCIS, papillary", - PermissibleValue(text="DCIS, papillary") ) - setattr(cls, "Bile duct cystadenocarcinoma", - PermissibleValue(text="Bile duct cystadenocarcinoma") ) - setattr(cls, "Myxoid chondrosarcoma", - PermissibleValue(text="Myxoid chondrosarcoma") ) - setattr(cls, "Intraepidermal nevus", - PermissibleValue(text="Intraepidermal nevus") ) - setattr(cls, "Myxoid leiomyosarcoma", - PermissibleValue(text="Myxoid leiomyosarcoma") ) - setattr(cls, "Infiltrating duct mixed with other types of carcinoma", - PermissibleValue(text="Infiltrating duct mixed with other types of carcinoma") ) - setattr(cls, "Prolymphocytic leukemia, T-cell type", - PermissibleValue(text="Prolymphocytic leukemia, T-cell type") ) - setattr(cls, "Skin appendage tumor, benign", - PermissibleValue(text="Skin appendage tumor, benign") ) - setattr(cls, "Ghost cell odontogenic carcinoma", - PermissibleValue(text="Ghost cell odontogenic carcinoma") ) - setattr(cls, "Acute erythroid leukaemia", - PermissibleValue(text="Acute erythroid leukaemia") ) - setattr(cls, "Steroid cell tumor, malignant", - PermissibleValue(text="Steroid cell tumor, malignant") ) - setattr(cls, "Extraventricular neurocytoma", - PermissibleValue(text="Extraventricular neurocytoma") ) - setattr(cls, "Mucoid carcinoma", - PermissibleValue(text="Mucoid carcinoma") ) - setattr(cls, "FAB M6", - PermissibleValue(text="FAB M6") ) - setattr(cls, "Infiltrating duct carcinoma, NOS", - PermissibleValue(text="Infiltrating duct carcinoma, NOS") ) - setattr(cls, "Neoplasm, metastatic", - PermissibleValue(text="Neoplasm, metastatic") ) - setattr(cls, "Islet cell adenocarcinoma", - PermissibleValue(text="Islet cell adenocarcinoma") ) - setattr(cls, "Atypical lipoma", - PermissibleValue(text="Atypical lipoma") ) - setattr(cls, "Noninfiltrating intraductal papillary adenocarcinoma", - PermissibleValue(text="Noninfiltrating intraductal papillary adenocarcinoma") ) - setattr(cls, "Intraductal papilloma", - PermissibleValue(text="Intraductal papilloma") ) - setattr(cls, "Oligodendroglioma, NOS", - PermissibleValue(text="Oligodendroglioma, NOS") ) - setattr(cls, "Medulloblastoma with extensive nodularity", - PermissibleValue(text="Medulloblastoma with extensive nodularity") ) - setattr(cls, "Thymoma, cortical, malignant", - PermissibleValue(text="Thymoma, cortical, malignant") ) - setattr(cls, "MPNST with rhabdomyoblastic differentiation", - PermissibleValue(text="MPNST with rhabdomyoblastic differentiation") ) - setattr(cls, "Atypical polypoid adenomyoma", - PermissibleValue(text="Atypical polypoid adenomyoma") ) - setattr(cls, "Seminoma with high mitotic index", - PermissibleValue(text="Seminoma with high mitotic index") ) - setattr(cls, "Enteropathy associated T-cell lymphoma", - PermissibleValue(text="Enteropathy associated T-cell lymphoma") ) - setattr(cls, "Anaplastic pleomorphic xanthroastrocytoma", - PermissibleValue(text="Anaplastic pleomorphic xanthroastrocytoma") ) - setattr(cls, "Thymoma, type B3, malignant", - PermissibleValue(text="Thymoma, type B3, malignant") ) - setattr(cls, "Perifollicular fibroma", - PermissibleValue(text="Perifollicular fibroma") ) - setattr(cls, "Meningeal melanoma", - PermissibleValue(text="Meningeal melanoma") ) - setattr(cls, "Mixed acinar-endocrine carcinoma", - PermissibleValue(text="Mixed acinar-endocrine carcinoma") ) - setattr(cls, "Noninfiltrating intracystic carcinoma", - PermissibleValue(text="Noninfiltrating intracystic carcinoma") ) - setattr(cls, "B lymphoblastic leukemia/lymphoma with t(5;14)(q31;q32); IL3-IGH", - PermissibleValue(text="B lymphoblastic leukemia/lymphoma with t(5;14)(q31;q32); IL3-IGH") ) - setattr(cls, "Carcinoma with osseous differentiation", - PermissibleValue(text="Carcinoma with osseous differentiation") ) - setattr(cls, "Invasive hydatidiform mole", - PermissibleValue(text="Invasive hydatidiform mole") ) - setattr(cls, "Monstrocellular sarcoma", - PermissibleValue(text="Monstrocellular sarcoma") ) - setattr(cls, "Glandular intraepithelial neoplasia, low grade", - PermissibleValue(text="Glandular intraepithelial neoplasia, low grade") ) - setattr(cls, "Linitis plastica", - PermissibleValue(text="Linitis plastica") ) - setattr(cls, "Refractory anemia without sideroblasts", - PermissibleValue(text="Refractory anemia without sideroblasts") ) - setattr(cls, "Malignant peripheral nerve sheath tumor", - PermissibleValue(text="Malignant peripheral nerve sheath tumor") ) - setattr(cls, "Embryonal teratoma", - PermissibleValue(text="Embryonal teratoma") ) - setattr(cls, "Trabecular adenoma", - PermissibleValue(text="Trabecular adenoma") ) - setattr(cls, "Giant cell tumor of soft parts, NOS", - PermissibleValue(text="Giant cell tumor of soft parts, NOS") ) - setattr(cls, "Fibrous mesothelioma, benign", - PermissibleValue(text="Fibrous mesothelioma, benign") ) - setattr(cls, "Rhabdomyosarcoma, NOS", - PermissibleValue(text="Rhabdomyosarcoma, NOS") ) - setattr(cls, "Histiocytic medullary reticulosis", - PermissibleValue(text="Histiocytic medullary reticulosis") ) - setattr(cls, "Plasmacytoma, NOS", - PermissibleValue(text="Plasmacytoma, NOS") ) - setattr(cls, "Cystadenocarcinoma, NOS", - PermissibleValue(text="Cystadenocarcinoma, NOS") ) - setattr(cls, "Immunoproliferative disease, NOS", - PermissibleValue(text="Immunoproliferative disease, NOS") ) - setattr(cls, "Hepatocellular carcinoma, pleomorphic type", - PermissibleValue(text="Hepatocellular carcinoma, pleomorphic type") ) - setattr(cls, "Low-grade intramedullary osteosarcoma", - PermissibleValue(text="Low-grade intramedullary osteosarcoma") ) - setattr(cls, "Papillary adenocarcinoma, follicular variant", - PermissibleValue(text="Papillary adenocarcinoma, follicular variant") ) - setattr(cls, "Solid pseudopapillary carcinoma", - PermissibleValue(text="Solid pseudopapillary carcinoma") ) - setattr(cls, "Plasma cell tumor", - PermissibleValue(text="Plasma cell tumor") ) - setattr(cls, "Solitary myeloma", - PermissibleValue(text="Solitary myeloma") ) - setattr(cls, "Acute non-lymphocytic leukemia", - PermissibleValue(text="Acute non-lymphocytic leukemia") ) - setattr(cls, "Hairy cell leukemia variant", - PermissibleValue(text="Hairy cell leukemia variant") ) - setattr(cls, "Adenocarcinoma in situ, mucinous", - PermissibleValue(text="Adenocarcinoma in situ, mucinous", - description="Mucinous Lung Adenocarcinoma In Situ") ) - setattr(cls, "Adenocarcinoma with cartilaginous and osseous metaplasia", - PermissibleValue(text="Adenocarcinoma with cartilaginous and osseous metaplasia") ) - setattr(cls, "Anaplastic large cell lymphoma, CD30+", - PermissibleValue(text="Anaplastic large cell lymphoma, CD30+") ) - setattr(cls, "Mucinous cystadenoma, NOS", - PermissibleValue(text="Mucinous cystadenoma, NOS") ) - setattr(cls, "Gastrointestinal stromal sarcoma", - PermissibleValue(text="Gastrointestinal stromal sarcoma") ) - setattr(cls, "Precancerous melanosis, NOS", - PermissibleValue(text="Precancerous melanosis, NOS") ) - setattr(cls, "Renal medullary carcinoma", - PermissibleValue(text="Renal medullary carcinoma", - description="Kidney Medullary Carcinoma") ) - setattr(cls, "Serous papillary cystic tumor of borderline malignancy", - PermissibleValue(text="Serous papillary cystic tumor of borderline malignancy") ) - setattr(cls, "Bile duct carcinoma", - PermissibleValue(text="Bile duct carcinoma") ) - setattr(cls, "Intraductal papillary neoplasm with high grade intraepithelial neoplasia", - PermissibleValue(text="Intraductal papillary neoplasm with high grade intraepithelial neoplasia") ) - setattr(cls, "Clear cell chondrosarcoma", - PermissibleValue(text="Clear cell chondrosarcoma") ) - setattr(cls, "Acute myelocytic leukemia", - PermissibleValue(text="Acute myelocytic leukemia") ) - setattr(cls, "Noninvasive pancreatobiliary papillary neoplasm with high grade dysplasia", - PermissibleValue(text="Noninvasive pancreatobiliary papillary neoplasm with high grade dysplasia") ) - setattr(cls, "Lymphoma, NOS", - PermissibleValue(text="Lymphoma, NOS") ) - setattr(cls, "Mixed glioma", - PermissibleValue(text="Mixed glioma") ) - setattr(cls, "Lymphoepithelial carcinoma", - PermissibleValue(text="Lymphoepithelial carcinoma", - description="Nasopharyngeal Type Undifferentiated Carcinoma") ) - setattr(cls, "Intraepidermal epithelioma of Jadassohn", - PermissibleValue(text="Intraepidermal epithelioma of Jadassohn") ) - setattr(cls, "Pleuropulmonary blastoma", - PermissibleValue(text="Pleuropulmonary blastoma") ) - setattr(cls, "Carcinoid, NOS, of appendix", - PermissibleValue(text="Carcinoid, NOS, of appendix") ) - setattr(cls, "Diffuse midline glioma, H3 K27M-mutant", - PermissibleValue(text="Diffuse midline glioma, H3 K27M-mutant") ) - setattr(cls, "Osteosarcoma, NOS", - PermissibleValue(text="Osteosarcoma, NOS") ) - setattr(cls, "Neurilemoma, malignant", - PermissibleValue(text="Neurilemoma, malignant") ) - setattr(cls, "Collecting duct carcinoma", - PermissibleValue(text="Collecting duct carcinoma", - description="Carcinoma of the Collecting Ducts of Bellini") ) - setattr(cls, "Undifferentiated spindle cell sarcoma", - PermissibleValue(text="Undifferentiated spindle cell sarcoma") ) - setattr(cls, "Papillary mucinous cystadenocarcinoma", - PermissibleValue(text="Papillary mucinous cystadenocarcinoma") ) - setattr(cls, "PIN III", - PermissibleValue(text="PIN III") ) - setattr(cls, "Paraganglioma, NOS", - PermissibleValue(text="Paraganglioma, NOS") ) - setattr(cls, "Protoplasmic astrocytoma", - PermissibleValue(text="Protoplasmic astrocytoma") ) - setattr(cls, "Bile duct adenoma", - PermissibleValue(text="Bile duct adenoma") ) - setattr(cls, "Squamous cell carcinoma, metastatic, NOS", - PermissibleValue(text="Squamous cell carcinoma, metastatic, NOS") ) - setattr(cls, "Neurilemoma, NOS", - PermissibleValue(text="Neurilemoma, NOS") ) - setattr(cls, "Odontogenic sarcoma", - PermissibleValue(text="Odontogenic sarcoma") ) - setattr(cls, "Atypical carcinoid tumor", - PermissibleValue(text="Atypical carcinoid tumor") ) - setattr(cls, "ALK positive large B-cell lymphoma", - PermissibleValue(text="ALK positive large B-cell lymphoma") ) - setattr(cls, "Superficial well differentiated liposarcoma", - PermissibleValue(text="Superficial well differentiated liposarcoma") ) - setattr(cls, "Klatskin tumor", - PermissibleValue(text="Klatskin tumor") ) - setattr(cls, "Pleomorphic liposarcoma", - PermissibleValue(text="Pleomorphic liposarcoma") ) - setattr(cls, "Soft tissue perineurioma", - PermissibleValue(text="Soft tissue perineurioma") ) - setattr(cls, "Follicular carcinoma, well differentiated", - PermissibleValue(text="Follicular carcinoma, well differentiated") ) - setattr(cls, "Combined/mixed carcinoid and adenocarcinoma", - PermissibleValue(text="Combined/mixed carcinoid and adenocarcinoma") ) - setattr(cls, "Endometrioid cystadenoma, NOS", - PermissibleValue(text="Endometrioid cystadenoma, NOS") ) - setattr(cls, "Transient abnormal myelopoiesis", - PermissibleValue(text="Transient abnormal myelopoiesis") ) - setattr(cls, "Jugular paraganglioma", - PermissibleValue(text="Jugular paraganglioma") ) - setattr(cls, "Papillary serous adenocarcinoma", - PermissibleValue(text="Papillary serous adenocarcinoma") ) - setattr(cls, "Hepatocellular adenoma", - PermissibleValue(text="Hepatocellular adenoma") ) - setattr(cls, "Congenital peribronchial myofibroblastic tumor", - PermissibleValue(text="Congenital peribronchial myofibroblastic tumor") ) - setattr(cls, "Chronic granulocytic leukemia, Philadelphia chromosome (Ph1) positive", - PermissibleValue(text="Chronic granulocytic leukemia, Philadelphia chromosome (Ph1) positive") ) - setattr(cls, "Melanocytoma, eyeball", - PermissibleValue(text="Melanocytoma, eyeball") ) - setattr(cls, "Teratoma with malignant transformation", - PermissibleValue(text="Teratoma with malignant transformation") ) - setattr(cls, "Paget disease, extramammary", - PermissibleValue(text="Paget disease, extramammary") ) - setattr(cls, "Infiltrating basal cell carcinoma, NOS", - PermissibleValue(text="Infiltrating basal cell carcinoma, NOS") ) - setattr(cls, "Leydig cell tumor, NOS", - PermissibleValue(text="Leydig cell tumor, NOS") ) - setattr(cls, "Intraductal papillary-mucinous carcinoma, non-invasive", - PermissibleValue(text="Intraductal papillary-mucinous carcinoma, non-invasive") ) - setattr(cls, "Basaloid squamous cell carcinoma", - PermissibleValue(text="Basaloid squamous cell carcinoma", - description="Basaloid Squamous Cell Carcinoma") ) - setattr(cls, "Atypical leiomyoma", - PermissibleValue(text="Atypical leiomyoma") ) - setattr(cls, "Merkel cell tumor", - PermissibleValue(text="Merkel cell tumor") ) - setattr(cls, "Mesonephroma, NOS", - PermissibleValue(text="Mesonephroma, NOS") ) - setattr(cls, "Epithelioid cell melanoma", - PermissibleValue(text="Epithelioid cell melanoma") ) - setattr(cls, "Mixed mesenchymal sarcoma", - PermissibleValue(text="Mixed mesenchymal sarcoma") ) - setattr(cls, "Adenocarcinoma, metastatic, NOS", - PermissibleValue(text="Adenocarcinoma, metastatic, NOS") ) - setattr(cls, "Malignant lymphoma, large B-cell, NOS", - PermissibleValue(text="Malignant lymphoma, large B-cell, NOS") ) - setattr(cls, "Juxtacortical chondroma", - PermissibleValue(text="Juxtacortical chondroma") ) - setattr(cls, "Midline carcinoma of children and young adults with NUT rearrangement", - PermissibleValue(text="Midline carcinoma of children and young adults with NUT rearrangement") ) - setattr(cls, "Adrenal medullary paraganglioma, malignant", - PermissibleValue(text="Adrenal medullary paraganglioma, malignant") ) - setattr(cls, "Florid osseous dysplasia", - PermissibleValue(text="Florid osseous dysplasia") ) - setattr(cls, "VAIN III", - PermissibleValue(text="VAIN III") ) - setattr(cls, "Splenic diffuse red pulp small B-cell lymphoma", - PermissibleValue(text="Splenic diffuse red pulp small B-cell lymphoma") ) - setattr(cls, "Giant cell tumor of bone, NOS", - PermissibleValue(text="Giant cell tumor of bone, NOS") ) - setattr(cls, "Insulinoma, malignant", - PermissibleValue(text="Insulinoma, malignant") ) - setattr(cls, "Fibrous mesothelioma, malignant", - PermissibleValue(text="Fibrous mesothelioma, malignant") ) - setattr(cls, "Traditional serrated adenoma", - PermissibleValue(text="Traditional serrated adenoma") ) - setattr(cls, "Burkitt tumor", - PermissibleValue(text="Burkitt tumor") ) - setattr(cls, "Acoustic neuroma", - PermissibleValue(text="Acoustic neuroma") ) - setattr(cls, "Adenoid cystic carcinoma", - PermissibleValue(text="Adenoid cystic carcinoma") ) - setattr(cls, "Acute lymphoblastic leukemia, NOS", - PermissibleValue(text="Acute lymphoblastic leukemia, NOS") ) - setattr(cls, "Mature T ALL", - PermissibleValue(text="Mature T ALL") ) - setattr(cls, "Medulloblastoma, group 4", - PermissibleValue(text="Medulloblastoma, group 4") ) - setattr(cls, "Malignant lymphoma, small lymphocytic, diffuse", - PermissibleValue(text="Malignant lymphoma, small lymphocytic, diffuse") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDiagnosisMorphology(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Diagnosis morphology - """ - Unknown = PermissibleValue(text="Unknown") - - _defn = EnumDefinition( - name="EnumCCDHDiagnosisMorphology", - description="Autogenerated Enumeration for CRDC-H Diagnosis morphology", - code_set=None, - code_set_version="2021-07-21T20:42:45.513623+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "9261/3", - PermissibleValue(text="9261/3") ) - setattr(cls, "8814/3", - PermissibleValue(text="8814/3") ) - setattr(cls, "9385/3", - PermissibleValue(text="9385/3") ) - setattr(cls, "9662/3", - PermissibleValue(text="9662/3") ) - setattr(cls, "9011/0", - PermissibleValue(text="9011/0") ) - setattr(cls, "8824/0", - PermissibleValue(text="8824/0") ) - setattr(cls, "8936/1", - PermissibleValue(text="8936/1") ) - setattr(cls, "8503/0", - PermissibleValue(text="8503/0") ) - setattr(cls, "9392/3", - PermissibleValue(text="9392/3") ) - setattr(cls, "8500/2", - PermissibleValue(text="8500/2") ) - setattr(cls, "8550/0", - PermissibleValue(text="8550/0") ) - setattr(cls, "8072/3", - PermissibleValue(text="8072/3") ) - setattr(cls, "9751/3", - PermissibleValue(text="9751/3") ) - setattr(cls, "9762/3", - PermissibleValue(text="9762/3") ) - setattr(cls, "8621/1", - PermissibleValue(text="8621/1") ) - setattr(cls, "9492/0", - PermissibleValue(text="9492/0") ) - setattr(cls, "9051/3", - PermissibleValue(text="9051/3") ) - setattr(cls, "8346/3", - PermissibleValue(text="8346/3") ) - setattr(cls, "8454/0", - PermissibleValue(text="8454/0") ) - setattr(cls, "8522/3", - PermissibleValue(text="8522/3") ) - setattr(cls, "8800/3", - PermissibleValue(text="8800/3") ) - setattr(cls, "8631/3", - PermissibleValue(text="8631/3") ) - setattr(cls, "8010/3", - PermissibleValue(text="8010/3") ) - setattr(cls, "9045/3", - PermissibleValue(text="9045/3") ) - setattr(cls, "8508/3", - PermissibleValue(text="8508/3") ) - setattr(cls, "9891/3", - PermissibleValue(text="9891/3") ) - setattr(cls, "8001/0", - PermissibleValue(text="8001/0") ) - setattr(cls, "9054/0", - PermissibleValue(text="9054/0") ) - setattr(cls, "8262/3", - PermissibleValue(text="8262/3") ) - setattr(cls, "8780/3", - PermissibleValue(text="8780/3") ) - setattr(cls, "8221/3", - PermissibleValue(text="8221/3") ) - setattr(cls, "9120/3", - PermissibleValue(text="9120/3") ) - setattr(cls, "8742/3", - PermissibleValue(text="8742/3") ) - setattr(cls, "8240/1", - PermissibleValue(text="8240/1") ) - setattr(cls, "8641/0", - PermissibleValue(text="8641/0") ) - setattr(cls, "9477/3", - PermissibleValue(text="9477/3") ) - setattr(cls, "9040/0", - PermissibleValue(text="9040/0") ) - setattr(cls, "9560/1", - PermissibleValue(text="9560/1") ) - setattr(cls, "9100/3", - PermissibleValue(text="9100/3") ) - setattr(cls, "8880/0", - PermissibleValue(text="8880/0") ) - setattr(cls, "8811/0", - PermissibleValue(text="8811/0") ) - setattr(cls, "8251/0", - PermissibleValue(text="8251/0") ) - setattr(cls, "9510/0", - PermissibleValue(text="9510/0") ) - setattr(cls, "9150/3", - PermissibleValue(text="9150/3") ) - setattr(cls, "9195/3", - PermissibleValue(text="9195/3") ) - setattr(cls, "8264/0", - PermissibleValue(text="8264/0") ) - setattr(cls, "9535/0", - PermissibleValue(text="9535/0") ) - setattr(cls, "8770/0", - PermissibleValue(text="8770/0") ) - setattr(cls, "8815/0", - PermissibleValue(text="8815/0") ) - setattr(cls, "8330/0", - PermissibleValue(text="8330/0") ) - setattr(cls, "9200/1", - PermissibleValue(text="9200/1") ) - setattr(cls, "9700/3", - PermissibleValue(text="9700/3") ) - setattr(cls, "8602/0", - PermissibleValue(text="8602/0") ) - setattr(cls, "8010/0", - PermissibleValue(text="8010/0") ) - setattr(cls, "8481/3", - PermissibleValue(text="8481/3") ) - setattr(cls, "8593/1", - PermissibleValue(text="8593/1") ) - setattr(cls, "8890/1", - PermissibleValue(text="8890/1") ) - setattr(cls, "9581/3", - PermissibleValue(text="9581/3") ) - setattr(cls, "9684/3", - PermissibleValue(text="9684/3") ) - setattr(cls, "9262/0", - PermissibleValue(text="9262/0") ) - setattr(cls, "9650/3", - PermissibleValue(text="9650/3") ) - setattr(cls, "8640/3", - PermissibleValue(text="8640/3") ) - setattr(cls, "9540/0", - PermissibleValue(text="9540/0") ) - setattr(cls, "9653/3", - PermissibleValue(text="9653/3") ) - setattr(cls, "8096/0", - PermissibleValue(text="8096/0") ) - setattr(cls, "8812/0", - PermissibleValue(text="8812/0") ) - setattr(cls, "9665/3", - PermissibleValue(text="9665/3") ) - setattr(cls, "8552/3", - PermissibleValue(text="8552/3") ) - setattr(cls, "8322/3", - PermissibleValue(text="8322/3") ) - setattr(cls, "9470/3", - PermissibleValue(text="9470/3") ) - setattr(cls, "9471/3", - PermissibleValue(text="9471/3") ) - setattr(cls, "8313/1", - PermissibleValue(text="8313/1") ) - setattr(cls, "8140/2", - PermissibleValue(text="8140/2") ) - setattr(cls, "9382/3", - PermissibleValue(text="9382/3") ) - setattr(cls, "8760/0", - PermissibleValue(text="8760/0") ) - setattr(cls, "8950/3", - PermissibleValue(text="8950/3") ) - setattr(cls, "9815/3", - PermissibleValue(text="9815/3") ) - setattr(cls, "9834/3", - PermissibleValue(text="9834/3") ) - setattr(cls, "8121/0", - PermissibleValue(text="8121/0") ) - setattr(cls, "9110/0", - PermissibleValue(text="9110/0") ) - setattr(cls, "9727/3", - PermissibleValue(text="9727/3") ) - setattr(cls, "8509/2", - PermissibleValue(text="8509/2") ) - setattr(cls, "9876/3", - PermissibleValue(text="9876/3") ) - setattr(cls, "8474/1", - PermissibleValue(text="8474/1") ) - setattr(cls, "8472/1", - PermissibleValue(text="8472/1") ) - setattr(cls, "8390/3", - PermissibleValue(text="8390/3") ) - setattr(cls, "9836/3", - PermissibleValue(text="9836/3") ) - setattr(cls, "9963/3", - PermissibleValue(text="9963/3") ) - setattr(cls, "8246/3", - PermissibleValue(text="8246/3") ) - setattr(cls, "9424/3", - PermissibleValue(text="9424/3") ) - setattr(cls, "8824/1", - PermissibleValue(text="8824/1") ) - setattr(cls, "8452/1", - PermissibleValue(text="8452/1") ) - setattr(cls, "8102/0", - PermissibleValue(text="8102/0") ) - setattr(cls, "8610/0", - PermissibleValue(text="8610/0") ) - setattr(cls, "9230/3", - PermissibleValue(text="9230/3") ) - setattr(cls, "9967/3", - PermissibleValue(text="9967/3") ) - setattr(cls, "8857/0", - PermissibleValue(text="8857/0") ) - setattr(cls, "9531/0", - PermissibleValue(text="9531/0") ) - setattr(cls, "8410/3", - PermissibleValue(text="8410/3") ) - setattr(cls, "8120/0", - PermissibleValue(text="8120/0") ) - setattr(cls, "9475/3", - PermissibleValue(text="9475/3") ) - setattr(cls, "8158/1", - PermissibleValue(text="8158/1") ) - setattr(cls, "8990/1", - PermissibleValue(text="8990/1") ) - setattr(cls, "9817/3", - PermissibleValue(text="9817/3") ) - setattr(cls, "9170/0", - PermissibleValue(text="9170/0") ) - setattr(cls, "9800/3", - PermissibleValue(text="9800/3") ) - setattr(cls, "8140/1", - PermissibleValue(text="8140/1") ) - setattr(cls, "8408/1", - PermissibleValue(text="8408/1") ) - setattr(cls, "8981/3", - PermissibleValue(text="8981/3") ) - setattr(cls, "9050/0", - PermissibleValue(text="9050/0") ) - setattr(cls, "8215/3", - PermissibleValue(text="8215/3") ) - setattr(cls, "8771/3", - PermissibleValue(text="8771/3") ) - setattr(cls, "8771/0", - PermissibleValue(text="8771/0") ) - setattr(cls, "8812/3", - PermissibleValue(text="8812/3") ) - setattr(cls, "8524/3", - PermissibleValue(text="8524/3") ) - setattr(cls, "9505/1", - PermissibleValue(text="9505/1") ) - setattr(cls, "9063/3", - PermissibleValue(text="9063/3") ) - setattr(cls, "9130/0", - PermissibleValue(text="9130/0") ) - setattr(cls, "8146/0", - PermissibleValue(text="8146/0") ) - setattr(cls, "9136/1", - PermissibleValue(text="9136/1") ) - setattr(cls, "8090/1", - PermissibleValue(text="8090/1") ) - setattr(cls, "8560/0", - PermissibleValue(text="8560/0") ) - setattr(cls, "8530/3", - PermissibleValue(text="8530/3") ) - setattr(cls, "8272/3", - PermissibleValue(text="8272/3") ) - setattr(cls, "8580/1", - PermissibleValue(text="8580/1") ) - setattr(cls, "9015/1", - PermissibleValue(text="9015/1") ) - setattr(cls, "9808/3", - PermissibleValue(text="9808/3") ) - setattr(cls, "9170/3", - PermissibleValue(text="9170/3") ) - setattr(cls, "8034/3", - PermissibleValue(text="8034/3") ) - setattr(cls, "9210/0", - PermissibleValue(text="9210/0") ) - setattr(cls, "8010/9", - PermissibleValue(text="8010/9") ) - setattr(cls, "8147/3", - PermissibleValue(text="8147/3") ) - setattr(cls, "8630/1", - PermissibleValue(text="8630/1") ) - setattr(cls, "8372/0", - PermissibleValue(text="8372/0") ) - setattr(cls, "8762/1", - PermissibleValue(text="8762/1") ) - setattr(cls, "8151/0", - PermissibleValue(text="8151/0") ) - setattr(cls, "9712/3", - PermissibleValue(text="9712/3") ) - setattr(cls, "9440/3", - PermissibleValue(text="9440/3") ) - setattr(cls, "9816/3", - PermissibleValue(text="9816/3") ) - setattr(cls, "8313/3", - PermissibleValue(text="8313/3") ) - setattr(cls, "8583/1", - PermissibleValue(text="8583/1") ) - setattr(cls, "9679/3", - PermissibleValue(text="9679/3") ) - setattr(cls, "8149/0", - PermissibleValue(text="8149/0") ) - setattr(cls, "9971/1", - PermissibleValue(text="9971/1") ) - setattr(cls, "9870/3", - PermissibleValue(text="9870/3") ) - setattr(cls, "8830/3", - PermissibleValue(text="8830/3") ) - setattr(cls, "8152/1", - PermissibleValue(text="8152/1") ) - setattr(cls, "8921/3", - PermissibleValue(text="8921/3") ) - setattr(cls, "8761/1", - PermissibleValue(text="8761/1") ) - setattr(cls, "9560/3", - PermissibleValue(text="9560/3") ) - setattr(cls, "8728/1", - PermissibleValue(text="8728/1") ) - setattr(cls, "8076/2", - PermissibleValue(text="8076/2") ) - setattr(cls, "9872/3", - PermissibleValue(text="9872/3") ) - setattr(cls, "8152/3", - PermissibleValue(text="8152/3") ) - setattr(cls, "8032/3", - PermissibleValue(text="8032/3") ) - setattr(cls, "8471/3", - PermissibleValue(text="8471/3") ) - setattr(cls, "9270/3", - PermissibleValue(text="9270/3") ) - setattr(cls, "8153/3", - PermissibleValue(text="8153/3") ) - setattr(cls, "8895/3", - PermissibleValue(text="8895/3") ) - setattr(cls, "8316/3", - PermissibleValue(text="8316/3") ) - setattr(cls, "9065/3", - PermissibleValue(text="9065/3") ) - setattr(cls, "8140/3", - PermissibleValue(text="8140/3") ) - setattr(cls, "9950/3", - PermissibleValue(text="9950/3") ) - setattr(cls, "8120/2", - PermissibleValue(text="8120/2") ) - setattr(cls, "9015/3", - PermissibleValue(text="9015/3") ) - setattr(cls, "9539/3", - PermissibleValue(text="9539/3") ) - setattr(cls, "9480/3", - PermissibleValue(text="9480/3") ) - setattr(cls, "9812/3", - PermissibleValue(text="9812/3") ) - setattr(cls, "8741/3", - PermissibleValue(text="8741/3") ) - setattr(cls, "8891/3", - PermissibleValue(text="8891/3") ) - setattr(cls, "9874/3", - PermissibleValue(text="9874/3") ) - setattr(cls, "9131/0", - PermissibleValue(text="9131/0") ) - setattr(cls, "8261/3", - PermissibleValue(text="8261/3") ) - setattr(cls, "9534/0", - PermissibleValue(text="9534/0") ) - setattr(cls, "9971/3", - PermissibleValue(text="9971/3") ) - setattr(cls, "9270/1", - PermissibleValue(text="9270/1") ) - setattr(cls, "9562/0", - PermissibleValue(text="9562/0") ) - setattr(cls, "8851/3", - PermissibleValue(text="8851/3") ) - setattr(cls, "9130/1", - PermissibleValue(text="9130/1") ) - setattr(cls, "8074/3", - PermissibleValue(text="8074/3") ) - setattr(cls, "8101/0", - PermissibleValue(text="8101/0") ) - setattr(cls, "8161/0", - PermissibleValue(text="8161/0") ) - setattr(cls, "8586/3", - PermissibleValue(text="8586/3") ) - setattr(cls, "8005/3", - PermissibleValue(text="8005/3") ) - setattr(cls, "9220/3", - PermissibleValue(text="9220/3") ) - setattr(cls, "8461/3", - PermissibleValue(text="8461/3") ) - setattr(cls, "9741/3", - PermissibleValue(text="9741/3") ) - setattr(cls, "9764/3", - PermissibleValue(text="9764/3") ) - setattr(cls, "8250/2", - PermissibleValue(text="8250/2") ) - setattr(cls, "9341/3", - PermissibleValue(text="9341/3") ) - setattr(cls, "8144/3", - PermissibleValue(text="8144/3") ) - setattr(cls, "8040/1", - PermissibleValue(text="8040/1") ) - setattr(cls, "8073/3", - PermissibleValue(text="8073/3") ) - setattr(cls, "9312/0", - PermissibleValue(text="9312/0") ) - setattr(cls, "9533/0", - PermissibleValue(text="9533/0") ) - setattr(cls, "8723/3", - PermissibleValue(text="8723/3") ) - setattr(cls, "8901/3", - PermissibleValue(text="8901/3") ) - setattr(cls, "9064/3", - PermissibleValue(text="9064/3") ) - setattr(cls, "9521/3", - PermissibleValue(text="9521/3") ) - setattr(cls, "8800/0", - PermissibleValue(text="8800/0") ) - setattr(cls, "8201/3", - PermissibleValue(text="8201/3") ) - setattr(cls, "8082/3", - PermissibleValue(text="8082/3") ) - setattr(cls, "9984/3", - PermissibleValue(text="9984/3") ) - setattr(cls, "8743/3", - PermissibleValue(text="8743/3") ) - setattr(cls, "8790/0", - PermissibleValue(text="8790/0") ) - setattr(cls, "8022/3", - PermissibleValue(text="8022/3") ) - setattr(cls, "9507/0", - PermissibleValue(text="9507/0") ) - setattr(cls, "8631/0", - PermissibleValue(text="8631/0") ) - setattr(cls, "9411/3", - PermissibleValue(text="9411/3") ) - setattr(cls, "9652/3", - PermissibleValue(text="9652/3") ) - setattr(cls, "8936/3", - PermissibleValue(text="8936/3") ) - setattr(cls, "8772/0", - PermissibleValue(text="8772/0") ) - setattr(cls, "9814/3", - PermissibleValue(text="9814/3") ) - setattr(cls, "8031/3", - PermissibleValue(text="8031/3") ) - setattr(cls, "9813/3", - PermissibleValue(text="9813/3") ) - setattr(cls, "9360/1", - PermissibleValue(text="9360/1") ) - setattr(cls, "9137/3", - PermissibleValue(text="9137/3") ) - setattr(cls, "9560/0", - PermissibleValue(text="9560/0") ) - setattr(cls, "8334/0", - PermissibleValue(text="8334/0") ) - setattr(cls, "9741/1", - PermissibleValue(text="9741/1") ) - setattr(cls, "8711/3", - PermissibleValue(text="8711/3") ) - setattr(cls, "9133/3", - PermissibleValue(text="9133/3") ) - setattr(cls, "9100/0", - PermissibleValue(text="9100/0") ) - setattr(cls, "8934/3", - PermissibleValue(text="8934/3") ) - setattr(cls, "8170/3", - PermissibleValue(text="8170/3") ) - setattr(cls, "8870/0", - PermissibleValue(text="8870/0") ) - setattr(cls, "8162/3", - PermissibleValue(text="8162/3") ) - setattr(cls, "8163/0", - PermissibleValue(text="8163/0") ) - setattr(cls, "8480/1", - PermissibleValue(text="8480/1") ) - setattr(cls, "8935/1", - PermissibleValue(text="8935/1") ) - setattr(cls, "9920/3", - PermissibleValue(text="9920/3") ) - setattr(cls, "8097/3", - PermissibleValue(text="8097/3") ) - setattr(cls, "8633/1", - PermissibleValue(text="8633/1") ) - setattr(cls, "9719/3", - PermissibleValue(text="9719/3") ) - setattr(cls, "8720/2", - PermissibleValue(text="8720/2") ) - setattr(cls, "8471/0", - PermissibleValue(text="8471/0") ) - setattr(cls, "8263/3", - PermissibleValue(text="8263/3") ) - setattr(cls, "8084/3", - PermissibleValue(text="8084/3") ) - setattr(cls, "9384/1", - PermissibleValue(text="9384/1") ) - setattr(cls, "8813/0", - PermissibleValue(text="8813/0") ) - setattr(cls, "8070/33", - PermissibleValue(text="8070/33") ) - setattr(cls, "8091/3", - PermissibleValue(text="8091/3") ) - setattr(cls, "9381/3", - PermissibleValue(text="9381/3") ) - setattr(cls, "9571/0", - PermissibleValue(text="9571/0") ) - setattr(cls, "9930/3", - PermissibleValue(text="9930/3") ) - setattr(cls, "8590/1", - PermissibleValue(text="8590/1") ) - setattr(cls, "9508/3", - PermissibleValue(text="9508/3") ) - setattr(cls, "8190/3", - PermissibleValue(text="8190/3") ) - setattr(cls, "9512/3", - PermissibleValue(text="9512/3") ) - setattr(cls, "9827/3", - PermissibleValue(text="9827/3") ) - setattr(cls, "8190/0", - PermissibleValue(text="8190/0") ) - setattr(cls, "8214/3", - PermissibleValue(text="8214/3") ) - setattr(cls, "9702/3", - PermissibleValue(text="9702/3") ) - setattr(cls, "8150/3", - PermissibleValue(text="8150/3") ) - setattr(cls, "8280/3", - PermissibleValue(text="8280/3") ) - setattr(cls, "9281/0", - PermissibleValue(text="9281/0") ) - setattr(cls, "8860/0", - PermissibleValue(text="8860/0") ) - setattr(cls, "9509/1", - PermissibleValue(text="9509/1") ) - setattr(cls, "8340/3", - PermissibleValue(text="8340/3") ) - setattr(cls, "9442/3", - PermissibleValue(text="9442/3") ) - setattr(cls, "9175/0", - PermissibleValue(text="9175/0") ) - setattr(cls, "9501/0", - PermissibleValue(text="9501/0") ) - setattr(cls, "8951/3", - PermissibleValue(text="8951/3") ) - setattr(cls, "9350/1", - PermissibleValue(text="9350/1") ) - setattr(cls, "9818/3", - PermissibleValue(text="9818/3") ) - setattr(cls, "8380/2", - PermissibleValue(text="8380/2") ) - setattr(cls, "9090/3", - PermissibleValue(text="9090/3") ) - setattr(cls, "9898/1", - PermissibleValue(text="9898/1") ) - setattr(cls, "8413/3", - PermissibleValue(text="8413/3") ) - setattr(cls, "9383/1", - PermissibleValue(text="9383/1") ) - setattr(cls, "8825/3", - PermissibleValue(text="8825/3") ) - setattr(cls, "9104/1", - PermissibleValue(text="9104/1") ) - setattr(cls, "9241/0", - PermissibleValue(text="9241/0") ) - setattr(cls, "8510/3", - PermissibleValue(text="8510/3") ) - setattr(cls, "9840/3", - PermissibleValue(text="9840/3") ) - setattr(cls, "8650/0", - PermissibleValue(text="8650/0") ) - setattr(cls, "9873/3", - PermissibleValue(text="9873/3") ) - setattr(cls, "8263/0", - PermissibleValue(text="8263/0") ) - setattr(cls, "9961/3", - PermissibleValue(text="9961/3") ) - setattr(cls, "9372/3", - PermissibleValue(text="9372/3") ) - setattr(cls, "8902/3", - PermissibleValue(text="8902/3") ) - setattr(cls, "8562/3", - PermissibleValue(text="8562/3") ) - setattr(cls, "8830/0", - PermissibleValue(text="8830/0") ) - setattr(cls, "8713/0", - PermissibleValue(text="8713/0") ) - setattr(cls, "9580/3", - PermissibleValue(text="9580/3") ) - setattr(cls, "9043/3", - PermissibleValue(text="9043/3") ) - setattr(cls, "8834/1", - PermissibleValue(text="8834/1") ) - setattr(cls, "8740/3", - PermissibleValue(text="8740/3") ) - setattr(cls, "8221/0", - PermissibleValue(text="8221/0") ) - setattr(cls, "9010/0", - PermissibleValue(text="9010/0") ) - setattr(cls, "9731/3", - PermissibleValue(text="9731/3") ) - setattr(cls, "8043/3", - PermissibleValue(text="8043/3") ) - setattr(cls, "8071/3", - PermissibleValue(text="8071/3") ) - setattr(cls, "8519/2", - PermissibleValue(text="8519/2") ) - setattr(cls, "9085/3", - PermissibleValue(text="9085/3") ) - setattr(cls, "9701/3", - PermissibleValue(text="9701/3") ) - setattr(cls, "8967/0", - PermissibleValue(text="8967/0") ) - setattr(cls, "9272/0", - PermissibleValue(text="9272/0") ) - setattr(cls, "9080/1", - PermissibleValue(text="9080/1") ) - setattr(cls, "9055/1", - PermissibleValue(text="9055/1") ) - setattr(cls, "8581/1", - PermissibleValue(text="8581/1") ) - setattr(cls, "9160/0", - PermissibleValue(text="9160/0") ) - setattr(cls, "8408/0", - PermissibleValue(text="8408/0") ) - setattr(cls, "8574/3", - PermissibleValue(text="8574/3") ) - setattr(cls, "8904/0", - PermissibleValue(text="8904/0") ) - setattr(cls, "9964/3", - PermissibleValue(text="9964/3") ) - setattr(cls, "9120/0", - PermissibleValue(text="9120/0") ) - setattr(cls, "8078/3", - PermissibleValue(text="8078/3") ) - setattr(cls, "8620/3", - PermissibleValue(text="8620/3") ) - setattr(cls, "8550/3", - PermissibleValue(text="8550/3") ) - setattr(cls, "9172/0", - PermissibleValue(text="9172/0") ) - setattr(cls, "8856/0", - PermissibleValue(text="8856/0") ) - setattr(cls, "9960/3", - PermissibleValue(text="9960/3") ) - setattr(cls, "8680/1", - PermissibleValue(text="8680/1") ) - setattr(cls, "8011/3", - PermissibleValue(text="8011/3") ) - setattr(cls, "9591/3", - PermissibleValue(text="9591/3") ) - setattr(cls, "9511/3", - PermissibleValue(text="9511/3") ) - setattr(cls, "9698/3", - PermissibleValue(text="9698/3") ) - setattr(cls, "8092/3", - PermissibleValue(text="8092/3") ) - setattr(cls, "8180/3", - PermissibleValue(text="8180/3") ) - setattr(cls, "8332/3", - PermissibleValue(text="8332/3") ) - setattr(cls, "9946/3", - PermissibleValue(text="9946/3") ) - setattr(cls, "9991/3", - PermissibleValue(text="9991/3") ) - setattr(cls, "8632/1", - PermissibleValue(text="8632/1") ) - setattr(cls, "9393/3", - PermissibleValue(text="9393/3") ) - setattr(cls, "9490/0", - PermissibleValue(text="9490/0") ) - setattr(cls, "8210/0", - PermissibleValue(text="8210/0") ) - setattr(cls, "9184/3", - PermissibleValue(text="9184/3") ) - setattr(cls, "9561/3", - PermissibleValue(text="9561/3") ) - setattr(cls, "8746/3", - PermissibleValue(text="8746/3") ) - setattr(cls, "9444/1", - PermissibleValue(text="9444/1") ) - setattr(cls, "9766/1", - PermissibleValue(text="9766/1") ) - setattr(cls, "9390/3", - PermissibleValue(text="9390/3") ) - setattr(cls, "8317/3", - PermissibleValue(text="8317/3") ) - setattr(cls, "8842/0", - PermissibleValue(text="8842/0") ) - setattr(cls, "9390/1", - PermissibleValue(text="9390/1") ) - setattr(cls, "9070/3", - PermissibleValue(text="9070/3") ) - setattr(cls, "8211/0", - PermissibleValue(text="8211/0") ) - setattr(cls, "9361/1", - PermissibleValue(text="9361/1") ) - setattr(cls, "8742/2", - PermissibleValue(text="8742/2") ) - setattr(cls, "8509/3", - PermissibleValue(text="8509/3") ) - setattr(cls, "9250/3", - PermissibleValue(text="9250/3") ) - setattr(cls, "8750/0", - PermissibleValue(text="8750/0") ) - setattr(cls, "9013/0", - PermissibleValue(text="9013/0") ) - setattr(cls, "8242/1", - PermissibleValue(text="8242/1") ) - setattr(cls, "8220/3", - PermissibleValue(text="8220/3") ) - setattr(cls, "9678/3", - PermissibleValue(text="9678/3") ) - setattr(cls, "8124/3", - PermissibleValue(text="8124/3") ) - setattr(cls, "9726/3", - PermissibleValue(text="9726/3") ) - setattr(cls, "8935/3", - PermissibleValue(text="8935/3") ) - setattr(cls, "8521/1", - PermissibleValue(text="8521/1") ) - setattr(cls, "9194/3", - PermissibleValue(text="9194/3") ) - setattr(cls, "8982/0", - PermissibleValue(text="8982/0") ) - setattr(cls, "9689/3", - PermissibleValue(text="9689/3") ) - setattr(cls, "8290/3", - PermissibleValue(text="8290/3") ) - setattr(cls, "8381/1", - PermissibleValue(text="8381/1") ) - setattr(cls, "8634/3", - PermissibleValue(text="8634/3") ) - setattr(cls, "9965/3", - PermissibleValue(text="9965/3") ) - setattr(cls, "8250/3", - PermissibleValue(text="8250/3") ) - setattr(cls, "8373/0", - PermissibleValue(text="8373/0") ) - setattr(cls, "8015/3", - PermissibleValue(text="8015/3") ) - setattr(cls, "8370/1", - PermissibleValue(text="8370/1") ) - setattr(cls, "8260/0", - PermissibleValue(text="8260/0") ) - setattr(cls, "9080/3", - PermissibleValue(text="9080/3") ) - setattr(cls, "9875/3", - PermissibleValue(text="9875/3") ) - setattr(cls, "9752/1", - PermissibleValue(text="9752/1") ) - setattr(cls, "8339/3", - PermissibleValue(text="8339/3") ) - setattr(cls, "8523/3", - PermissibleValue(text="8523/3") ) - setattr(cls, "9542/3", - PermissibleValue(text="9542/3") ) - setattr(cls, "8035/3", - PermissibleValue(text="8035/3") ) - setattr(cls, "8900/0", - PermissibleValue(text="8900/0") ) - setattr(cls, "8347/3", - PermissibleValue(text="8347/3") ) - setattr(cls, "8855/3", - PermissibleValue(text="8855/3") ) - setattr(cls, "8330/3", - PermissibleValue(text="8330/3") ) - setattr(cls, "9301/0", - PermissibleValue(text="9301/0") ) - setattr(cls, "8404/0", - PermissibleValue(text="8404/0") ) - setattr(cls, "8200/3", - PermissibleValue(text="8200/3") ) - setattr(cls, "9831/3", - PermissibleValue(text="9831/3") ) - setattr(cls, "8143/3", - PermissibleValue(text="8143/3") ) - setattr(cls, "9280/0", - PermissibleValue(text="9280/0") ) - setattr(cls, "9451/3", - PermissibleValue(text="9451/3") ) - setattr(cls, "8542/3", - PermissibleValue(text="8542/3") ) - setattr(cls, "9101/3", - PermissibleValue(text="9101/3") ) - setattr(cls, "8120/1", - PermissibleValue(text="8120/1") ) - setattr(cls, "8210/2", - PermissibleValue(text="8210/2") ) - setattr(cls, "8833/3", - PermissibleValue(text="8833/3") ) - setattr(cls, "9522/3", - PermissibleValue(text="9522/3") ) - setattr(cls, "8408/3", - PermissibleValue(text="8408/3") ) - setattr(cls, "9124/3", - PermissibleValue(text="9124/3") ) - setattr(cls, "9193/3", - PermissibleValue(text="9193/3") ) - setattr(cls, "8601/0", - PermissibleValue(text="8601/0") ) - setattr(cls, "9690/3", - PermissibleValue(text="9690/3") ) - setattr(cls, "9910/3", - PermissibleValue(text="9910/3") ) - setattr(cls, "9737/3", - PermissibleValue(text="9737/3") ) - setattr(cls, "8300/3", - PermissibleValue(text="8300/3") ) - setattr(cls, "8343/2", - PermissibleValue(text="8343/2") ) - setattr(cls, "9180/3", - PermissibleValue(text="9180/3") ) - setattr(cls, "8103/0", - PermissibleValue(text="8103/0") ) - setattr(cls, "9396/3", - PermissibleValue(text="9396/3") ) - setattr(cls, "8086/3", - PermissibleValue(text="8086/3") ) - setattr(cls, "8774/3", - PermissibleValue(text="8774/3") ) - setattr(cls, "9251/3", - PermissibleValue(text="9251/3") ) - setattr(cls, "8600/0", - PermissibleValue(text="8600/0") ) - setattr(cls, "9431/1", - PermissibleValue(text="9431/1") ) - setattr(cls, "8245/1", - PermissibleValue(text="8245/1") ) - setattr(cls, "9330/3", - PermissibleValue(text="9330/3") ) - setattr(cls, "8102/3", - PermissibleValue(text="8102/3") ) - setattr(cls, "8249/3", - PermissibleValue(text="8249/3") ) - setattr(cls, "8148/2", - PermissibleValue(text="8148/2") ) - setattr(cls, "8315/3", - PermissibleValue(text="8315/3") ) - setattr(cls, "8441/3", - PermissibleValue(text="8441/3") ) - setattr(cls, "9150/0", - PermissibleValue(text="9150/0") ) - setattr(cls, "9042/3", - PermissibleValue(text="9042/3") ) - setattr(cls, "8861/0", - PermissibleValue(text="8861/0") ) - setattr(cls, "8522/2", - PermissibleValue(text="8522/2") ) - setattr(cls, "8375/0", - PermissibleValue(text="8375/0") ) - setattr(cls, "9130/3", - PermissibleValue(text="9130/3") ) - setattr(cls, "8000/1", - PermissibleValue(text="8000/1") ) - setattr(cls, "9182/3", - PermissibleValue(text="9182/3") ) - setattr(cls, "8000/3", - PermissibleValue(text="8000/3") ) - setattr(cls, "8010/2", - PermissibleValue(text="8010/2") ) - setattr(cls, "8504/2", - PermissibleValue(text="8504/2") ) - setattr(cls, "8172/3", - PermissibleValue(text="8172/3") ) - setattr(cls, "9699/3", - PermissibleValue(text="9699/3") ) - setattr(cls, "9537/0", - PermissibleValue(text="9537/0") ) - setattr(cls, "8841/1", - PermissibleValue(text="8841/1") ) - setattr(cls, "9103/0", - PermissibleValue(text="9103/0") ) - setattr(cls, "8013/3", - PermissibleValue(text="8013/3") ) - setattr(cls, "8083/3", - PermissibleValue(text="8083/3") ) - setattr(cls, "8371/0", - PermissibleValue(text="8371/0") ) - setattr(cls, "9020/1", - PermissibleValue(text="9020/1") ) - setattr(cls, "9423/3", - PermissibleValue(text="9423/3") ) - setattr(cls, "8342/3", - PermissibleValue(text="8342/3") ) - setattr(cls, "8337/3", - PermissibleValue(text="8337/3") ) - setattr(cls, "8525/3", - PermissibleValue(text="8525/3") ) - setattr(cls, "9072/3", - PermissibleValue(text="9072/3") ) - setattr(cls, "8936/0", - PermissibleValue(text="8936/0") ) - setattr(cls, "8319/3", - PermissibleValue(text="8319/3") ) - setattr(cls, "8120/3", - PermissibleValue(text="8120/3") ) - setattr(cls, "9897/3", - PermissibleValue(text="9897/3") ) - setattr(cls, "8910/3", - PermissibleValue(text="8910/3") ) - setattr(cls, "9671/3", - PermissibleValue(text="9671/3") ) - setattr(cls, "9073/1", - PermissibleValue(text="9073/1") ) - setattr(cls, "8244/3", - PermissibleValue(text="8244/3") ) - setattr(cls, "8160/0", - PermissibleValue(text="8160/0") ) - setattr(cls, "9330/0", - PermissibleValue(text="9330/0") ) - setattr(cls, "8050/0", - PermissibleValue(text="8050/0") ) - setattr(cls, "9735/3", - PermissibleValue(text="9735/3") ) - setattr(cls, "8980/3", - PermissibleValue(text="8980/3") ) - setattr(cls, "8442/1", - PermissibleValue(text="8442/1") ) - setattr(cls, "9181/3", - PermissibleValue(text="9181/3") ) - setattr(cls, "8154/3", - PermissibleValue(text="8154/3") ) - setattr(cls, "9105/3", - PermissibleValue(text="9105/3") ) - setattr(cls, "9962/3", - PermissibleValue(text="9962/3") ) - setattr(cls, "8972/3", - PermissibleValue(text="8972/3") ) - setattr(cls, "8080/2", - PermissibleValue(text="8080/2") ) - setattr(cls, "8321/0", - PermissibleValue(text="8321/0") ) - setattr(cls, "9724/3", - PermissibleValue(text="9724/3") ) - setattr(cls, "8896/3", - PermissibleValue(text="8896/3") ) - setattr(cls, "8070/6", - PermissibleValue(text="8070/6") ) - setattr(cls, "8090/3", - PermissibleValue(text="8090/3") ) - setattr(cls, "8130/2", - PermissibleValue(text="8130/2") ) - setattr(cls, "8854/0", - PermissibleValue(text="8854/0") ) - setattr(cls, "9945/3", - PermissibleValue(text="9945/3") ) - setattr(cls, "8932/0", - PermissibleValue(text="8932/0") ) - setattr(cls, "8966/0", - PermissibleValue(text="8966/0") ) - setattr(cls, "9364/3", - PermissibleValue(text="9364/3") ) - setattr(cls, "9740/1", - PermissibleValue(text="9740/1") ) - setattr(cls, "9680/3", - PermissibleValue(text="9680/3") ) - setattr(cls, "8156/3", - PermissibleValue(text="8156/3") ) - setattr(cls, "9341/1", - PermissibleValue(text="9341/1") ) - setattr(cls, "8990/3", - PermissibleValue(text="8990/3") ) - setattr(cls, "8589/3", - PermissibleValue(text="8589/3") ) - setattr(cls, "8631/1", - PermissibleValue(text="8631/1") ) - setattr(cls, "8248/1", - PermissibleValue(text="8248/1") ) - setattr(cls, "8801/3", - PermissibleValue(text="8801/3") ) - setattr(cls, "8891/0", - PermissibleValue(text="8891/0") ) - setattr(cls, "9015/0", - PermissibleValue(text="9015/0") ) - setattr(cls, "8310/0", - PermissibleValue(text="8310/0") ) - setattr(cls, "9121/0", - PermissibleValue(text="9121/0") ) - setattr(cls, "8420/0", - PermissibleValue(text="8420/0") ) - setattr(cls, "9135/1", - PermissibleValue(text="9135/1") ) - setattr(cls, "8374/0", - PermissibleValue(text="8374/0") ) - setattr(cls, "8930/3", - PermissibleValue(text="8930/3") ) - setattr(cls, "8241/3", - PermissibleValue(text="8241/3") ) - setattr(cls, "8370/0", - PermissibleValue(text="8370/0") ) - setattr(cls, "8245/3", - PermissibleValue(text="8245/3") ) - setattr(cls, "8075/3", - PermissibleValue(text="8075/3") ) - setattr(cls, "8551/3", - PermissibleValue(text="8551/3") ) - setattr(cls, "9210/1", - PermissibleValue(text="9210/1") ) - setattr(cls, "8825/0", - PermissibleValue(text="8825/0") ) - setattr(cls, "9580/0", - PermissibleValue(text="9580/0") ) - setattr(cls, "9290/0", - PermissibleValue(text="9290/0") ) - setattr(cls, "9302/3", - PermissibleValue(text="9302/3") ) - setattr(cls, "9000/0", - PermissibleValue(text="9000/0") ) - setattr(cls, "8815/3", - PermissibleValue(text="8815/3") ) - setattr(cls, "8000/6", - PermissibleValue(text="8000/6") ) - setattr(cls, "8905/0", - PermissibleValue(text="8905/0") ) - setattr(cls, "9705/3", - PermissibleValue(text="9705/3") ) - setattr(cls, "9231/3", - PermissibleValue(text="9231/3") ) - setattr(cls, "9240/3", - PermissibleValue(text="9240/3") ) - setattr(cls, "8940/0", - PermissibleValue(text="8940/0") ) - setattr(cls, "8520/2", - PermissibleValue(text="8520/2") ) - setattr(cls, "9491/0", - PermissibleValue(text="9491/0") ) - setattr(cls, "8345/3", - PermissibleValue(text="8345/3") ) - setattr(cls, "8831/0", - PermissibleValue(text="8831/0") ) - setattr(cls, "9012/0", - PermissibleValue(text="9012/0") ) - setattr(cls, "9086/3", - PermissibleValue(text="9086/3") ) - setattr(cls, "8982/3", - PermissibleValue(text="8982/3") ) - setattr(cls, "8550/1", - PermissibleValue(text="8550/1") ) - setattr(cls, "9663/3", - PermissibleValue(text="9663/3") ) - setattr(cls, "9220/0", - PermissibleValue(text="9220/0") ) - setattr(cls, "9755/3", - PermissibleValue(text="9755/3") ) - setattr(cls, "8325/0", - PermissibleValue(text="8325/0") ) - setattr(cls, "8512/3", - PermissibleValue(text="8512/3") ) - setattr(cls, "9992/3", - PermissibleValue(text="9992/3") ) - setattr(cls, "9425/3", - PermissibleValue(text="9425/3") ) - setattr(cls, "8623/1", - PermissibleValue(text="8623/1") ) - setattr(cls, "9050/3", - PermissibleValue(text="9050/3") ) - setattr(cls, "9987/3", - PermissibleValue(text="9987/3") ) - setattr(cls, "8650/1", - PermissibleValue(text="8650/1") ) - setattr(cls, "8772/3", - PermissibleValue(text="8772/3") ) - setattr(cls, "8173/3", - PermissibleValue(text="8173/3") ) - setattr(cls, "9432/1", - PermissibleValue(text="9432/1") ) - setattr(cls, "8650/3", - PermissibleValue(text="8650/3") ) - setattr(cls, "8634/1", - PermissibleValue(text="8634/1") ) - setattr(cls, "8441/2", - PermissibleValue(text="8441/2") ) - setattr(cls, "9055/0", - PermissibleValue(text="9055/0") ) - setattr(cls, "8402/0", - PermissibleValue(text="8402/0") ) - setattr(cls, "9597/3", - PermissibleValue(text="9597/3") ) - setattr(cls, "8683/0", - PermissibleValue(text="8683/0") ) - setattr(cls, "8147/0", - PermissibleValue(text="8147/0") ) - setattr(cls, "8990/0", - PermissibleValue(text="8990/0") ) - setattr(cls, "8263/2", - PermissibleValue(text="8263/2") ) - setattr(cls, "8430/1", - PermissibleValue(text="8430/1") ) - setattr(cls, "8270/0", - PermissibleValue(text="8270/0") ) - setattr(cls, "8730/0", - PermissibleValue(text="8730/0") ) - setattr(cls, "8160/3", - PermissibleValue(text="8160/3") ) - setattr(cls, "8728/3", - PermissibleValue(text="8728/3") ) - setattr(cls, "8253/3", - PermissibleValue(text="8253/3") ) - setattr(cls, "8482/3", - PermissibleValue(text="8482/3") ) - setattr(cls, "9807/3", - PermissibleValue(text="9807/3") ) - setattr(cls, "8281/3", - PermissibleValue(text="8281/3") ) - setattr(cls, "9532/0", - PermissibleValue(text="9532/0") ) - setattr(cls, "8440/3", - PermissibleValue(text="8440/3") ) - setattr(cls, "8473/1", - PermissibleValue(text="8473/1") ) - setattr(cls, "8964/3", - PermissibleValue(text="8964/3") ) - setattr(cls, "8341/3", - PermissibleValue(text="8341/3") ) - setattr(cls, "8070/2", - PermissibleValue(text="8070/2") ) - setattr(cls, "9539/1", - PermissibleValue(text="9539/1") ) - setattr(cls, "8543/3", - PermissibleValue(text="8543/3") ) - setattr(cls, "9110/3", - PermissibleValue(text="9110/3") ) - setattr(cls, "9530/3", - PermissibleValue(text="9530/3") ) - setattr(cls, "8851/0", - PermissibleValue(text="8851/0") ) - setattr(cls, "8594/1", - PermissibleValue(text="8594/1") ) - setattr(cls, "8220/0", - PermissibleValue(text="8220/0") ) - setattr(cls, "8254/3", - PermissibleValue(text="8254/3") ) - setattr(cls, "9150/1", - PermissibleValue(text="9150/1") ) - setattr(cls, "9867/3", - PermissibleValue(text="9867/3") ) - setattr(cls, "9503/3", - PermissibleValue(text="9503/3") ) - setattr(cls, "8974/1", - PermissibleValue(text="8974/1") ) - setattr(cls, "8460/0", - PermissibleValue(text="8460/0") ) - setattr(cls, "8858/3", - PermissibleValue(text="8858/3") ) - setattr(cls, "8983/3", - PermissibleValue(text="8983/3") ) - setattr(cls, "8350/3", - PermissibleValue(text="8350/3") ) - setattr(cls, "8931/3", - PermissibleValue(text="8931/3") ) - setattr(cls, "9174/0", - PermissibleValue(text="9174/0") ) - setattr(cls, "8420/3", - PermissibleValue(text="8420/3") ) - setattr(cls, "8014/3", - PermissibleValue(text="8014/3") ) - setattr(cls, "9174/1", - PermissibleValue(text="9174/1") ) - setattr(cls, "8403/0", - PermissibleValue(text="8403/0") ) - setattr(cls, "8272/0", - PermissibleValue(text="8272/0") ) - setattr(cls, "8001/3", - PermissibleValue(text="8001/3") ) - setattr(cls, "9020/0", - PermissibleValue(text="9020/0") ) - setattr(cls, "8142/3", - PermissibleValue(text="8142/3") ) - setattr(cls, "8270/3", - PermissibleValue(text="8270/3") ) - setattr(cls, "8261/2", - PermissibleValue(text="8261/2") ) - setattr(cls, "8290/0", - PermissibleValue(text="8290/0") ) - setattr(cls, "8042/3", - PermissibleValue(text="8042/3") ) - setattr(cls, "8991/3", - PermissibleValue(text="8991/3") ) - setattr(cls, "9582/0", - PermissibleValue(text="9582/0") ) - setattr(cls, "9708/3", - PermissibleValue(text="9708/3") ) - setattr(cls, "9758/3", - PermissibleValue(text="9758/3") ) - setattr(cls, "9186/3", - PermissibleValue(text="9186/3") ) - setattr(cls, "9391/3", - PermissibleValue(text="9391/3") ) - setattr(cls, "8720/3", - PermissibleValue(text="8720/3") ) - setattr(cls, "8409/3", - PermissibleValue(text="8409/3") ) - setattr(cls, "8407/0", - PermissibleValue(text="8407/0") ) - setattr(cls, "8050/2", - PermissibleValue(text="8050/2") ) - setattr(cls, "8001/1", - PermissibleValue(text="8001/1") ) - setattr(cls, "8155/3", - PermissibleValue(text="8155/3") ) - setattr(cls, "8121/3", - PermissibleValue(text="8121/3") ) - setattr(cls, "8210/3", - PermissibleValue(text="8210/3") ) - setattr(cls, "8804/3", - PermissibleValue(text="8804/3") ) - setattr(cls, "8728/0", - PermissibleValue(text="8728/0") ) - setattr(cls, "8893/0", - PermissibleValue(text="8893/0") ) - setattr(cls, "8862/0", - PermissibleValue(text="8862/0") ) - setattr(cls, "8770/3", - PermissibleValue(text="8770/3") ) - setattr(cls, "8894/0", - PermissibleValue(text="8894/0") ) - setattr(cls, "9474/3", - PermissibleValue(text="9474/3") ) - setattr(cls, "8585/3", - PermissibleValue(text="8585/3") ) - setattr(cls, "9410/3", - PermissibleValue(text="9410/3") ) - setattr(cls, "9753/1", - PermissibleValue(text="9753/1") ) - setattr(cls, "8046/3", - PermissibleValue(text="8046/3") ) - setattr(cls, "9342/3", - PermissibleValue(text="9342/3") ) - setattr(cls, "9983/3", - PermissibleValue(text="9983/3") ) - setattr(cls, "9673/3", - PermissibleValue(text="9673/3") ) - setattr(cls, "9734/3", - PermissibleValue(text="9734/3") ) - setattr(cls, "8453/3", - PermissibleValue(text="8453/3") ) - setattr(cls, "8501/3", - PermissibleValue(text="8501/3") ) - setattr(cls, "8504/0", - PermissibleValue(text="8504/0") ) - setattr(cls, "9322/0", - PermissibleValue(text="9322/0") ) - setattr(cls, "8451/1", - PermissibleValue(text="8451/1") ) - setattr(cls, "8975/1", - PermissibleValue(text="8975/1") ) - setattr(cls, "8453/2", - PermissibleValue(text="8453/2") ) - setattr(cls, "9221/3", - PermissibleValue(text="9221/3") ) - setattr(cls, "8382/3", - PermissibleValue(text="8382/3") ) - setattr(cls, "8005/0", - PermissibleValue(text="8005/0") ) - setattr(cls, "8503/3", - PermissibleValue(text="8503/3") ) - setattr(cls, "8898/1", - PermissibleValue(text="8898/1") ) - setattr(cls, "9014/1", - PermissibleValue(text="9014/1") ) - setattr(cls, "9733/3", - PermissibleValue(text="9733/3") ) - setattr(cls, "8150/0", - PermissibleValue(text="8150/0") ) - setattr(cls, "9082/3", - PermissibleValue(text="9082/3") ) - setattr(cls, "8231/3", - PermissibleValue(text="8231/3") ) - setattr(cls, "8670/3", - PermissibleValue(text="8670/3") ) - setattr(cls, "9866/3", - PermissibleValue(text="9866/3") ) - setattr(cls, "8361/0", - PermissibleValue(text="8361/0") ) - setattr(cls, "9161/1", - PermissibleValue(text="9161/1") ) - setattr(cls, "9931/3", - PermissibleValue(text="9931/3") ) - setattr(cls, "8963/3", - PermissibleValue(text="8963/3") ) - setattr(cls, "9754/3", - PermissibleValue(text="9754/3") ) - setattr(cls, "9090/0", - PermissibleValue(text="9090/0") ) - setattr(cls, "8811/1", - PermissibleValue(text="8811/1") ) - setattr(cls, "8744/3", - PermissibleValue(text="8744/3") ) - setattr(cls, "9761/3", - PermissibleValue(text="9761/3") ) - setattr(cls, "8081/2", - PermissibleValue(text="8081/2") ) - setattr(cls, "8140/0", - PermissibleValue(text="8140/0") ) - setattr(cls, "9275/0", - PermissibleValue(text="9275/0") ) - setattr(cls, "9989/3", - PermissibleValue(text="9989/3") ) - setattr(cls, "9321/0", - PermissibleValue(text="9321/0") ) - setattr(cls, "8311/3", - PermissibleValue(text="8311/3") ) - setattr(cls, "8174/3", - PermissibleValue(text="8174/3") ) - setattr(cls, "8514/3", - PermissibleValue(text="8514/3") ) - setattr(cls, "9132/0", - PermissibleValue(text="9132/0") ) - setattr(cls, "8890/0", - PermissibleValue(text="8890/0") ) - setattr(cls, "9052/0", - PermissibleValue(text="9052/0") ) - setattr(cls, "9430/3", - PermissibleValue(text="9430/3") ) - setattr(cls, "8591/1", - PermissibleValue(text="8591/1") ) - setattr(cls, "8912/3", - PermissibleValue(text="8912/3") ) - setattr(cls, "8392/0", - PermissibleValue(text="8392/0") ) - setattr(cls, "8959/1", - PermissibleValue(text="8959/1") ) - setattr(cls, "8592/1", - PermissibleValue(text="8592/1") ) - setattr(cls, "8085/3", - PermissibleValue(text="8085/3") ) - setattr(cls, "8010/6", - PermissibleValue(text="8010/6") ) - setattr(cls, "8230/2", - PermissibleValue(text="8230/2") ) - setattr(cls, "8191/0", - PermissibleValue(text="8191/0") ) - setattr(cls, "9514/1", - PermissibleValue(text="9514/1") ) - setattr(cls, "9040/3", - PermissibleValue(text="9040/3") ) - setattr(cls, "8148/0", - PermissibleValue(text="8148/0") ) - setattr(cls, "8585/1", - PermissibleValue(text="8585/1") ) - setattr(cls, "8211/3", - PermissibleValue(text="8211/3") ) - setattr(cls, "8773/3", - PermissibleValue(text="8773/3") ) - setattr(cls, "8693/3", - PermissibleValue(text="8693/3") ) - setattr(cls, "9801/3", - PermissibleValue(text="9801/3") ) - setattr(cls, "9472/3", - PermissibleValue(text="9472/3") ) - setattr(cls, "8740/0", - PermissibleValue(text="8740/0") ) - setattr(cls, "8265/3", - PermissibleValue(text="8265/3") ) - setattr(cls, "8247/3", - PermissibleValue(text="8247/3") ) - setattr(cls, "8712/0", - PermissibleValue(text="8712/0") ) - setattr(cls, "9729/3", - PermissibleValue(text="9729/3") ) - setattr(cls, "9860/3", - PermissibleValue(text="9860/3") ) - setattr(cls, "9185/3", - PermissibleValue(text="9185/3") ) - setattr(cls, "9273/0", - PermissibleValue(text="9273/0") ) - setattr(cls, "8003/3", - PermissibleValue(text="8003/3") ) - setattr(cls, "9675/3", - PermissibleValue(text="9675/3") ) - setattr(cls, "8400/0", - PermissibleValue(text="8400/0") ) - setattr(cls, "8430/3", - PermissibleValue(text="8430/3") ) - setattr(cls, "9062/3", - PermissibleValue(text="9062/3") ) - setattr(cls, "8033/3", - PermissibleValue(text="8033/3") ) - setattr(cls, "9505/3", - PermissibleValue(text="9505/3") ) - setattr(cls, "9759/3", - PermissibleValue(text="9759/3") ) - setattr(cls, "9282/0", - PermissibleValue(text="9282/0") ) - setattr(cls, "8441/0", - PermissibleValue(text="8441/0") ) - setattr(cls, "8660/0", - PermissibleValue(text="8660/0") ) - setattr(cls, "8580/3", - PermissibleValue(text="8580/3") ) - setattr(cls, "8381/3", - PermissibleValue(text="8381/3") ) - setattr(cls, "8331/3", - PermissibleValue(text="8331/3") ) - setattr(cls, "9016/0", - PermissibleValue(text="9016/0") ) - setattr(cls, "9530/0", - PermissibleValue(text="9530/0") ) - setattr(cls, "9751/1", - PermissibleValue(text="9751/1") ) - setattr(cls, "9380/3", - PermissibleValue(text="9380/3") ) - setattr(cls, "8200/0", - PermissibleValue(text="8200/0") ) - setattr(cls, "8460/2", - PermissibleValue(text="8460/2") ) - setattr(cls, "9460/3", - PermissibleValue(text="9460/3") ) - setattr(cls, "9363/0", - PermissibleValue(text="9363/0") ) - setattr(cls, "9183/3", - PermissibleValue(text="9183/3") ) - setattr(cls, "9220/1", - PermissibleValue(text="9220/1") ) - setattr(cls, "8310/3", - PermissibleValue(text="8310/3") ) - setattr(cls, "9000/1", - PermissibleValue(text="9000/1") ) - setattr(cls, "8443/0", - PermissibleValue(text="8443/0") ) - setattr(cls, "8802/3", - PermissibleValue(text="8802/3") ) - setattr(cls, "8810/1", - PermissibleValue(text="8810/1") ) - setattr(cls, "8803/3", - PermissibleValue(text="8803/3") ) - setattr(cls, "8252/3", - PermissibleValue(text="8252/3") ) - setattr(cls, "8333/0", - PermissibleValue(text="8333/0") ) - setattr(cls, "9805/3", - PermissibleValue(text="9805/3") ) - setattr(cls, "9140/3", - PermissibleValue(text="9140/3") ) - setattr(cls, "8507/3", - PermissibleValue(text="8507/3") ) - setattr(cls, "8587/0", - PermissibleValue(text="8587/0") ) - setattr(cls, "9192/3", - PermissibleValue(text="9192/3") ) - setattr(cls, "8380/0", - PermissibleValue(text="8380/0") ) - setattr(cls, "9000/3", - PermissibleValue(text="9000/3") ) - setattr(cls, "8561/0", - PermissibleValue(text="8561/0") ) - setattr(cls, "9980/3", - PermissibleValue(text="9980/3") ) - setattr(cls, "8004/3", - PermissibleValue(text="8004/3") ) - setattr(cls, "8271/0", - PermissibleValue(text="8271/0") ) - setattr(cls, "9100/1", - PermissibleValue(text="9100/1") ) - setattr(cls, "8281/0", - PermissibleValue(text="8281/0") ) - setattr(cls, "8500/3", - PermissibleValue(text="8500/3") ) - setattr(cls, "9806/3", - PermissibleValue(text="9806/3") ) - setattr(cls, "9664/3", - PermissibleValue(text="9664/3") ) - setattr(cls, "8722/0", - PermissibleValue(text="8722/0") ) - setattr(cls, "8343/3", - PermissibleValue(text="8343/3") ) - setattr(cls, "9718/3", - PermissibleValue(text="9718/3") ) - setattr(cls, "8741/2", - PermissibleValue(text="8741/2") ) - setattr(cls, "8903/0", - PermissibleValue(text="8903/0") ) - setattr(cls, "8401/3", - PermissibleValue(text="8401/3") ) - setattr(cls, "8761/0", - PermissibleValue(text="8761/0") ) - setattr(cls, "8854/3", - PermissibleValue(text="8854/3") ) - setattr(cls, "8444/1", - PermissibleValue(text="8444/1") ) - setattr(cls, "8021/3", - PermissibleValue(text="8021/3") ) - setattr(cls, "8745/3", - PermissibleValue(text="8745/3") ) - setattr(cls, "8077/2", - PermissibleValue(text="8077/2") ) - setattr(cls, "8098/3", - PermissibleValue(text="8098/3") ) - setattr(cls, "9441/3", - PermissibleValue(text="9441/3") ) - setattr(cls, "8030/3", - PermissibleValue(text="8030/3") ) - setattr(cls, "8504/3", - PermissibleValue(text="8504/3") ) - setattr(cls, "8140/33", - PermissibleValue(text="8140/33") ) - setattr(cls, "8474/3", - PermissibleValue(text="8474/3") ) - setattr(cls, "9071/3", - PermissibleValue(text="9071/3") ) - setattr(cls, "8693/1", - PermissibleValue(text="8693/1") ) - setattr(cls, "8857/3", - PermissibleValue(text="8857/3") ) - setattr(cls, "8933/3", - PermissibleValue(text="8933/3") ) - setattr(cls, "8314/3", - PermissibleValue(text="8314/3") ) - setattr(cls, "8640/1", - PermissibleValue(text="8640/1") ) - setattr(cls, "9896/3", - PermissibleValue(text="9896/3") ) - setattr(cls, "9716/3", - PermissibleValue(text="9716/3") ) - setattr(cls, "8204/0", - PermissibleValue(text="8204/0") ) - setattr(cls, "9500/3", - PermissibleValue(text="9500/3") ) - setattr(cls, "8940/3", - PermissibleValue(text="8940/3") ) - setattr(cls, "8810/0", - PermissibleValue(text="8810/0") ) - setattr(cls, "9080/0", - PermissibleValue(text="9080/0") ) - setattr(cls, "9530/1", - PermissibleValue(text="9530/1") ) - setattr(cls, "8095/3", - PermissibleValue(text="8095/3") ) - setattr(cls, "8970/3", - PermissibleValue(text="8970/3") ) - setattr(cls, "8895/0", - PermissibleValue(text="8895/0") ) - setattr(cls, "8480/6", - PermissibleValue(text="8480/6") ) - setattr(cls, "8682/1", - PermissibleValue(text="8682/1") ) - setattr(cls, "8630/3", - PermissibleValue(text="8630/3") ) - setattr(cls, "8462/1", - PermissibleValue(text="8462/1") ) - setattr(cls, "8502/3", - PermissibleValue(text="8502/3") ) - setattr(cls, "9661/3", - PermissibleValue(text="9661/3") ) - setattr(cls, "8600/3", - PermissibleValue(text="8600/3") ) - setattr(cls, "8960/3", - PermissibleValue(text="8960/3") ) - setattr(cls, "8171/3", - PermissibleValue(text="8171/3") ) - setattr(cls, "9811/3", - PermissibleValue(text="9811/3") ) - setattr(cls, "9053/3", - PermissibleValue(text="9053/3") ) - setattr(cls, "8201/2", - PermissibleValue(text="8201/2") ) - setattr(cls, "8150/1", - PermissibleValue(text="8150/1") ) - setattr(cls, "8826/0", - PermissibleValue(text="8826/0") ) - setattr(cls, "8894/3", - PermissibleValue(text="8894/3") ) - setattr(cls, "8460/3", - PermissibleValue(text="8460/3") ) - setattr(cls, "8463/1", - PermissibleValue(text="8463/1") ) - setattr(cls, "8450/3", - PermissibleValue(text="8450/3") ) - setattr(cls, "9861/3", - PermissibleValue(text="9861/3") ) - setattr(cls, "8727/0", - PermissibleValue(text="8727/0") ) - setattr(cls, "8576/3", - PermissibleValue(text="8576/3") ) - setattr(cls, "9493/0", - PermissibleValue(text="9493/0") ) - setattr(cls, "9373/0", - PermissibleValue(text="9373/0") ) - setattr(cls, "9898/3", - PermissibleValue(text="9898/3") ) - setattr(cls, "9478/3", - PermissibleValue(text="9478/3") ) - setattr(cls, "9948/3", - PermissibleValue(text="9948/3") ) - setattr(cls, "8077/0", - PermissibleValue(text="8077/0") ) - setattr(cls, "8041/3", - PermissibleValue(text="8041/3") ) - setattr(cls, "9362/3", - PermissibleValue(text="9362/3") ) - setattr(cls, "8324/0", - PermissibleValue(text="8324/0") ) - setattr(cls, "9251/1", - PermissibleValue(text="9251/1") ) - setattr(cls, "8575/3", - PermissibleValue(text="8575/3") ) - setattr(cls, "9142/0", - PermissibleValue(text="9142/0") ) - setattr(cls, "9667/3", - PermissibleValue(text="9667/3") ) - setattr(cls, "8213/0", - PermissibleValue(text="8213/0") ) - setattr(cls, "8023/3", - PermissibleValue(text="8023/3") ) - setattr(cls, "8622/1", - PermissibleValue(text="8622/1") ) - setattr(cls, "9051/0", - PermissibleValue(text="9051/0") ) - setattr(cls, "8541/3", - PermissibleValue(text="8541/3") ) - setattr(cls, "9571/3", - PermissibleValue(text="9571/3") ) - setattr(cls, "8730/3", - PermissibleValue(text="8730/3") ) - setattr(cls, "8333/3", - PermissibleValue(text="8333/3") ) - setattr(cls, "9200/0", - PermissibleValue(text="9200/0") ) - setattr(cls, "8155/1", - PermissibleValue(text="8155/1") ) - setattr(cls, "8318/3", - PermissibleValue(text="8318/3") ) - setattr(cls, "9395/3", - PermissibleValue(text="9395/3") ) - setattr(cls, "8973/3", - PermissibleValue(text="8973/3") ) - setattr(cls, "8825/1", - PermissibleValue(text="8825/1") ) - setattr(cls, "8402/3", - PermissibleValue(text="8402/3") ) - setattr(cls, "8960/1", - PermissibleValue(text="8960/1") ) - setattr(cls, "9442/1", - PermissibleValue(text="9442/1") ) - setattr(cls, "9401/3", - PermissibleValue(text="9401/3") ) - setattr(cls, "9041/3", - PermissibleValue(text="9041/3") ) - setattr(cls, "8409/0", - PermissibleValue(text="8409/0") ) - setattr(cls, "9506/1", - PermissibleValue(text="9506/1") ) - setattr(cls, "8520/3", - PermissibleValue(text="8520/3") ) - setattr(cls, "8360/1", - PermissibleValue(text="8360/1") ) - setattr(cls, "9550/0", - PermissibleValue(text="9550/0") ) - setattr(cls, "8900/3", - PermissibleValue(text="8900/3") ) - setattr(cls, "8920/3", - PermissibleValue(text="8920/3") ) - setattr(cls, "8800/9", - PermissibleValue(text="8800/9") ) - setattr(cls, "9252/3", - PermissibleValue(text="9252/3") ) - setattr(cls, "8941/3", - PermissibleValue(text="8941/3") ) - setattr(cls, "8850/3", - PermissibleValue(text="8850/3") ) - setattr(cls, "9490/3", - PermissibleValue(text="9490/3") ) - setattr(cls, "9371/3", - PermissibleValue(text="9371/3") ) - setattr(cls, "8311/1", - PermissibleValue(text="8311/1") ) - setattr(cls, "9365/3", - PermissibleValue(text="9365/3") ) - setattr(cls, "8470/3", - PermissibleValue(text="8470/3") ) - setattr(cls, "9320/0", - PermissibleValue(text="9320/0") ) - setattr(cls, "9540/3", - PermissibleValue(text="9540/3") ) - setattr(cls, "9695/3", - PermissibleValue(text="9695/3") ) - setattr(cls, "8521/3", - PermissibleValue(text="8521/3") ) - setattr(cls, "8470/0", - PermissibleValue(text="8470/0") ) - setattr(cls, "8076/3", - PermissibleValue(text="8076/3") ) - setattr(cls, "8140/6", - PermissibleValue(text="8140/6") ) - setattr(cls, "8401/0", - PermissibleValue(text="8401/0") ) - setattr(cls, "8093/3", - PermissibleValue(text="8093/3") ) - setattr(cls, "8110/0", - PermissibleValue(text="8110/0") ) - setattr(cls, "8461/0", - PermissibleValue(text="8461/0") ) - setattr(cls, "9596/3", - PermissibleValue(text="9596/3") ) - setattr(cls, "8161/3", - PermissibleValue(text="8161/3") ) - setattr(cls, "9290/3", - PermissibleValue(text="9290/3") ) - setattr(cls, "9260/3", - PermissibleValue(text="9260/3") ) - setattr(cls, "9510/3", - PermissibleValue(text="9510/3") ) - setattr(cls, "9445/3", - PermissibleValue(text="9445/3") ) - setattr(cls, "8642/1", - PermissibleValue(text="8642/1") ) - setattr(cls, "8725/0", - PermissibleValue(text="8725/0") ) - setattr(cls, "8250/1", - PermissibleValue(text="8250/1") ) - setattr(cls, "8130/3", - PermissibleValue(text="8130/3") ) - setattr(cls, "8051/0", - PermissibleValue(text="8051/0") ) - setattr(cls, "8041/34", - PermissibleValue(text="8041/34") ) - setattr(cls, "8406/0", - PermissibleValue(text="8406/0") ) - setattr(cls, "9413/0", - PermissibleValue(text="9413/0") ) - setattr(cls, "8726/0", - PermissibleValue(text="8726/0") ) - setattr(cls, "8722/3", - PermissibleValue(text="8722/3") ) - setattr(cls, "8230/3", - PermissibleValue(text="8230/3") ) - setattr(cls, "8313/0", - PermissibleValue(text="8313/0") ) - setattr(cls, "8584/3", - PermissibleValue(text="8584/3") ) - setattr(cls, "8832/3", - PermissibleValue(text="8832/3") ) - setattr(cls, "8811/3", - PermissibleValue(text="8811/3") ) - setattr(cls, "8390/0", - PermissibleValue(text="8390/0") ) - setattr(cls, "8052/2", - PermissibleValue(text="8052/2") ) - setattr(cls, "9310/0", - PermissibleValue(text="9310/0") ) - setattr(cls, "9520/3", - PermissibleValue(text="9520/3") ) - setattr(cls, "8050/3", - PermissibleValue(text="8050/3") ) - setattr(cls, "8582/3", - PermissibleValue(text="8582/3") ) - setattr(cls, "9270/0", - PermissibleValue(text="9270/0") ) - setattr(cls, "8959/3", - PermissibleValue(text="8959/3") ) - setattr(cls, "9570/0", - PermissibleValue(text="9570/0") ) - setattr(cls, "8892/0", - PermissibleValue(text="8892/0") ) - setattr(cls, "8850/1", - PermissibleValue(text="8850/1") ) - setattr(cls, "8100/0", - PermissibleValue(text="8100/0") ) - setattr(cls, "9659/3", - PermissibleValue(text="9659/3") ) - setattr(cls, "8261/0", - PermissibleValue(text="8261/0") ) - setattr(cls, "8391/0", - PermissibleValue(text="8391/0") ) - setattr(cls, "8840/0", - PermissibleValue(text="8840/0") ) - setattr(cls, "8711/0", - PermissibleValue(text="8711/0") ) - setattr(cls, "9390/0", - PermissibleValue(text="9390/0") ) - setattr(cls, "8852/0", - PermissibleValue(text="8852/0") ) - setattr(cls, "9832/3", - PermissibleValue(text="9832/3") ) - setattr(cls, "8151/3", - PermissibleValue(text="8151/3") ) - setattr(cls, "8832/0", - PermissibleValue(text="8832/0") ) - setattr(cls, "8971/3", - PermissibleValue(text="8971/3") ) - setattr(cls, "8588/3", - PermissibleValue(text="8588/3") ) - setattr(cls, "9060/3", - PermissibleValue(text="9060/3") ) - setattr(cls, "8680/3", - PermissibleValue(text="8680/3") ) - setattr(cls, "9728/3", - PermissibleValue(text="9728/3") ) - setattr(cls, "8255/3", - PermissibleValue(text="8255/3") ) - setattr(cls, "8822/1", - PermissibleValue(text="8822/1") ) - setattr(cls, "9125/0", - PermissibleValue(text="9125/0") ) - setattr(cls, "8580/0", - PermissibleValue(text="8580/0") ) - setattr(cls, "8320/3", - PermissibleValue(text="8320/3") ) - setattr(cls, "9687/3", - PermissibleValue(text="9687/3") ) - setattr(cls, "8820/0", - PermissibleValue(text="8820/0") ) - setattr(cls, "8721/3", - PermissibleValue(text="8721/3") ) - setattr(cls, "9161/0", - PermissibleValue(text="9161/0") ) - setattr(cls, "9102/3", - PermissibleValue(text="9102/3") ) - setattr(cls, "9768/1", - PermissibleValue(text="9768/1") ) - setattr(cls, "8450/0", - PermissibleValue(text="8450/0") ) - setattr(cls, "9738/3", - PermissibleValue(text="9738/3") ) - setattr(cls, "8582/1", - PermissibleValue(text="8582/1") ) - setattr(cls, "8690/1", - PermissibleValue(text="8690/1") ) - setattr(cls, "9654/3", - PermissibleValue(text="9654/3") ) - setattr(cls, "8122/3", - PermissibleValue(text="8122/3") ) - setattr(cls, "8060/0", - PermissibleValue(text="8060/0") ) - setattr(cls, "9230/0", - PermissibleValue(text="9230/0") ) - setattr(cls, "9740/3", - PermissibleValue(text="9740/3") ) - setattr(cls, "8505/0", - PermissibleValue(text="8505/0") ) - setattr(cls, "9986/3", - PermissibleValue(text="9986/3") ) - setattr(cls, "8572/3", - PermissibleValue(text="8572/3") ) - setattr(cls, "8045/3", - PermissibleValue(text="8045/3") ) - setattr(cls, "9823/3", - PermissibleValue(text="9823/3") ) - setattr(cls, "8827/1", - PermissibleValue(text="8827/1") ) - setattr(cls, "9835/3", - PermissibleValue(text="9835/3") ) - setattr(cls, "8583/3", - PermissibleValue(text="8583/3") ) - setattr(cls, "9180/0", - PermissibleValue(text="9180/0") ) - setattr(cls, "9966/3", - PermissibleValue(text="9966/3") ) - setattr(cls, "8965/0", - PermissibleValue(text="8965/0") ) - setattr(cls, "9473/3", - PermissibleValue(text="9473/3") ) - setattr(cls, "8380/3", - PermissibleValue(text="8380/3") ) - setattr(cls, "8810/3", - PermissibleValue(text="8810/3") ) - setattr(cls, "8681/1", - PermissibleValue(text="8681/1") ) - setattr(cls, "9863/3", - PermissibleValue(text="9863/3") ) - setattr(cls, "8370/3", - PermissibleValue(text="8370/3") ) - setattr(cls, "8821/1", - PermissibleValue(text="8821/1") ) - setattr(cls, "9742/3", - PermissibleValue(text="9742/3") ) - setattr(cls, "9310/3", - PermissibleValue(text="9310/3") ) - setattr(cls, "9760/3", - PermissibleValue(text="9760/3") ) - setattr(cls, "8691/1", - PermissibleValue(text="8691/1") ) - setattr(cls, "8384/3", - PermissibleValue(text="8384/3") ) - setattr(cls, "8983/0", - PermissibleValue(text="8983/0") ) - setattr(cls, "9809/3", - PermissibleValue(text="9809/3") ) - setattr(cls, "9191/0", - PermissibleValue(text="9191/0") ) - setattr(cls, "9123/0", - PermissibleValue(text="9123/0") ) - setattr(cls, "8153/1", - PermissibleValue(text="8153/1") ) - setattr(cls, "8813/3", - PermissibleValue(text="8813/3") ) - setattr(cls, "8881/0", - PermissibleValue(text="8881/0") ) - setattr(cls, "9911/3", - PermissibleValue(text="9911/3") ) - setattr(cls, "8012/3", - PermissibleValue(text="8012/3") ) - setattr(cls, "9970/1", - PermissibleValue(text="9970/1") ) - setattr(cls, "9083/3", - PermissibleValue(text="9083/3") ) - setattr(cls, "8470/2", - PermissibleValue(text="8470/2") ) - setattr(cls, "8700/3", - PermissibleValue(text="8700/3") ) - setattr(cls, "8620/1", - PermissibleValue(text="8620/1") ) - setattr(cls, "8312/3", - PermissibleValue(text="8312/3") ) - setattr(cls, "9940/3", - PermissibleValue(text="9940/3") ) - setattr(cls, "8145/3", - PermissibleValue(text="8145/3") ) - setattr(cls, "8410/0", - PermissibleValue(text="8410/0") ) - setattr(cls, "8507/2", - PermissibleValue(text="8507/2") ) - setattr(cls, "8815/1", - PermissibleValue(text="8815/1") ) - setattr(cls, "8052/0", - PermissibleValue(text="8052/0") ) - setattr(cls, "8780/0", - PermissibleValue(text="8780/0") ) - setattr(cls, "8257/3", - PermissibleValue(text="8257/3") ) - setattr(cls, "8251/3", - PermissibleValue(text="8251/3") ) - setattr(cls, "8403/3", - PermissibleValue(text="8403/3") ) - setattr(cls, "8400/1", - PermissibleValue(text="8400/1") ) - setattr(cls, "8336/0", - PermissibleValue(text="8336/0") ) - setattr(cls, "9895/3", - PermissibleValue(text="9895/3") ) - setattr(cls, "9871/3", - PermissibleValue(text="9871/3") ) - setattr(cls, "8842/3", - PermissibleValue(text="8842/3") ) - setattr(cls, "9865/3", - PermissibleValue(text="9865/3") ) - setattr(cls, "9502/0", - PermissibleValue(text="9502/0") ) - setattr(cls, "8071/2", - PermissibleValue(text="8071/2") ) - setattr(cls, "9476/3", - PermissibleValue(text="9476/3") ) - setattr(cls, "9400/3", - PermissibleValue(text="9400/3") ) - setattr(cls, "9064/2", - PermissibleValue(text="9064/2") ) - setattr(cls, "9141/0", - PermissibleValue(text="9141/0") ) - setattr(cls, "9767/1", - PermissibleValue(text="9767/1") ) - setattr(cls, "8835/1", - PermissibleValue(text="8835/1") ) - setattr(cls, "9750/3", - PermissibleValue(text="9750/3") ) - setattr(cls, "9221/0", - PermissibleValue(text="9221/0") ) - setattr(cls, "9242/3", - PermissibleValue(text="9242/3") ) - setattr(cls, "9020/3", - PermissibleValue(text="9020/3") ) - setattr(cls, "8110/3", - PermissibleValue(text="8110/3") ) - setattr(cls, "9340/0", - PermissibleValue(text="9340/0") ) - setattr(cls, "8070/3", - PermissibleValue(text="8070/3") ) - setattr(cls, "8710/3", - PermissibleValue(text="8710/3") ) - setattr(cls, "8163/2", - PermissibleValue(text="8163/2") ) - setattr(cls, "8890/3", - PermissibleValue(text="8890/3") ) - setattr(cls, "8503/2", - PermissibleValue(text="8503/2") ) - setattr(cls, "9869/3", - PermissibleValue(text="9869/3") ) - setattr(cls, "9709/3", - PermissibleValue(text="9709/3") ) - setattr(cls, "8581/3", - PermissibleValue(text="8581/3") ) - setattr(cls, "8040/0", - PermissibleValue(text="8040/0") ) - setattr(cls, "8573/3", - PermissibleValue(text="8573/3") ) - setattr(cls, "8052/3", - PermissibleValue(text="8052/3") ) - setattr(cls, "9252/0", - PermissibleValue(text="9252/0") ) - setattr(cls, "9014/0", - PermissibleValue(text="9014/0") ) - setattr(cls, "9540/1", - PermissibleValue(text="9540/1") ) - setattr(cls, "8670/0", - PermissibleValue(text="8670/0") ) - setattr(cls, "8823/0", - PermissibleValue(text="8823/0") ) - setattr(cls, "8407/3", - PermissibleValue(text="8407/3") ) - setattr(cls, "8094/3", - PermissibleValue(text="8094/3") ) - setattr(cls, "9765/1", - PermissibleValue(text="9765/1") ) - setattr(cls, "9757/3", - PermissibleValue(text="9757/3") ) - setattr(cls, "8044/3", - PermissibleValue(text="8044/3") ) - setattr(cls, "8051/3", - PermissibleValue(text="8051/3") ) - setattr(cls, "8720/0", - PermissibleValue(text="8720/0") ) - setattr(cls, "8323/3", - PermissibleValue(text="8323/3") ) - setattr(cls, "8323/0", - PermissibleValue(text="8323/0") ) - setattr(cls, "9133/1", - PermissibleValue(text="9133/1") ) - setattr(cls, "8011/0", - PermissibleValue(text="8011/0") ) - setattr(cls, "8692/1", - PermissibleValue(text="8692/1") ) - setattr(cls, "9756/3", - PermissibleValue(text="9756/3") ) - setattr(cls, "8452/3", - PermissibleValue(text="8452/3") ) - setattr(cls, "9351/1", - PermissibleValue(text="9351/1") ) - setattr(cls, "8280/0", - PermissibleValue(text="8280/0") ) - setattr(cls, "9300/0", - PermissibleValue(text="9300/0") ) - setattr(cls, "9590/3", - PermissibleValue(text="9590/3") ) - setattr(cls, "9274/0", - PermissibleValue(text="9274/0") ) - setattr(cls, "9084/3", - PermissibleValue(text="9084/3") ) - setattr(cls, "8121/1", - PermissibleValue(text="8121/1") ) - setattr(cls, "8131/3", - PermissibleValue(text="8131/3") ) - setattr(cls, "8935/0", - PermissibleValue(text="8935/0") ) - setattr(cls, "8383/3", - PermissibleValue(text="8383/3") ) - setattr(cls, "8440/0", - PermissibleValue(text="8440/0") ) - setattr(cls, "8000/0", - PermissibleValue(text="8000/0") ) - setattr(cls, "9538/3", - PermissibleValue(text="9538/3") ) - setattr(cls, "9769/1", - PermissibleValue(text="9769/1") ) - setattr(cls, "9523/3", - PermissibleValue(text="9523/3") ) - setattr(cls, "8897/1", - PermissibleValue(text="8897/1") ) - setattr(cls, "9271/0", - PermissibleValue(text="9271/0") ) - setattr(cls, "8506/0", - PermissibleValue(text="8506/0") ) - setattr(cls, "8680/0", - PermissibleValue(text="8680/0") ) - setattr(cls, "9975/3", - PermissibleValue(text="9975/3") ) - setattr(cls, "8852/3", - PermissibleValue(text="8852/3") ) - setattr(cls, "9833/3", - PermissibleValue(text="9833/3") ) - setattr(cls, "9110/1", - PermissibleValue(text="9110/1") ) - setattr(cls, "9502/3", - PermissibleValue(text="9502/3") ) - setattr(cls, "8322/0", - PermissibleValue(text="8322/0") ) - setattr(cls, "8405/0", - PermissibleValue(text="8405/0") ) - setattr(cls, "8853/3", - PermissibleValue(text="8853/3") ) - setattr(cls, "9732/3", - PermissibleValue(text="9732/3") ) - setattr(cls, "9725/3", - PermissibleValue(text="9725/3") ) - setattr(cls, "8300/0", - PermissibleValue(text="8300/0") ) - setattr(cls, "9670/3", - PermissibleValue(text="9670/3") ) - setattr(cls, "9243/3", - PermissibleValue(text="9243/3") ) - setattr(cls, "9302/0", - PermissibleValue(text="9302/0") ) - setattr(cls, "8584/1", - PermissibleValue(text="8584/1") ) - setattr(cls, "8571/3", - PermissibleValue(text="8571/3") ) - setattr(cls, "8240/3", - PermissibleValue(text="8240/3") ) - setattr(cls, "8570/3", - PermissibleValue(text="8570/3") ) - setattr(cls, "8453/0", - PermissibleValue(text="8453/0") ) - setattr(cls, "9044/3", - PermissibleValue(text="9044/3") ) - setattr(cls, "8540/3", - PermissibleValue(text="8540/3") ) - setattr(cls, "9052/3", - PermissibleValue(text="9052/3") ) - setattr(cls, "8260/3", - PermissibleValue(text="8260/3") ) - setattr(cls, "8213/3", - PermissibleValue(text="8213/3") ) - setattr(cls, "9826/3", - PermissibleValue(text="9826/3") ) - setattr(cls, "8002/3", - PermissibleValue(text="8002/3") ) - setattr(cls, "8053/0", - PermissibleValue(text="8053/0") ) - setattr(cls, "9837/3", - PermissibleValue(text="9837/3") ) - setattr(cls, "9651/3", - PermissibleValue(text="9651/3") ) - setattr(cls, "8836/1", - PermissibleValue(text="8836/1") ) - setattr(cls, "8130/1", - PermissibleValue(text="8130/1") ) - setattr(cls, "8020/3", - PermissibleValue(text="8020/3") ) - setattr(cls, "9691/3", - PermissibleValue(text="9691/3") ) - setattr(cls, "9541/0", - PermissibleValue(text="9541/0") ) - setattr(cls, "9171/0", - PermissibleValue(text="9171/0") ) - setattr(cls, "8141/3", - PermissibleValue(text="8141/3") ) - setattr(cls, "9352/1", - PermissibleValue(text="9352/1") ) - setattr(cls, "8480/0", - PermissibleValue(text="8480/0") ) - setattr(cls, "9985/3", - PermissibleValue(text="9985/3") ) - setattr(cls, "9655/3", - PermissibleValue(text="9655/3") ) - setattr(cls, "8381/0", - PermissibleValue(text="8381/0") ) - setattr(cls, "9030/0", - PermissibleValue(text="9030/0") ) - setattr(cls, "8501/2", - PermissibleValue(text="8501/2") ) - setattr(cls, "9421/1", - PermissibleValue(text="9421/1") ) - setattr(cls, "8560/3", - PermissibleValue(text="8560/3") ) - setattr(cls, "8175/3", - PermissibleValue(text="8175/3") ) - setattr(cls, "9014/3", - PermissibleValue(text="9014/3") ) - setattr(cls, "8959/0", - PermissibleValue(text="8959/0") ) - setattr(cls, "8761/3", - PermissibleValue(text="8761/3") ) - setattr(cls, "9717/3", - PermissibleValue(text="9717/3") ) - setattr(cls, "8805/3", - PermissibleValue(text="8805/3") ) - setattr(cls, "9187/3", - PermissibleValue(text="9187/3") ) - setattr(cls, "8700/0", - PermissibleValue(text="8700/0") ) - setattr(cls, "9081/3", - PermissibleValue(text="9081/3") ) - setattr(cls, "9311/0", - PermissibleValue(text="9311/0") ) - setattr(cls, "8806/3", - PermissibleValue(text="8806/3") ) - setattr(cls, "8202/0", - PermissibleValue(text="8202/0") ) - setattr(cls, "9513/3", - PermissibleValue(text="9513/3") ) - setattr(cls, "9091/1", - PermissibleValue(text="9091/1") ) - setattr(cls, "8671/0", - PermissibleValue(text="8671/0") ) - setattr(cls, "9688/3", - PermissibleValue(text="9688/3") ) - setattr(cls, "9982/3", - PermissibleValue(text="9982/3") ) - setattr(cls, "8170/0", - PermissibleValue(text="8170/0") ) - setattr(cls, "9412/1", - PermissibleValue(text="9412/1") ) - setattr(cls, "8344/3", - PermissibleValue(text="8344/3") ) - setattr(cls, "8335/3", - PermissibleValue(text="8335/3") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "8490/6", - PermissibleValue(text="8490/6") ) - setattr(cls, "8513/3", - PermissibleValue(text="8513/3") ) - setattr(cls, "8522/1", - PermissibleValue(text="8522/1") ) - setattr(cls, "8850/0", - PermissibleValue(text="8850/0") ) - setattr(cls, "9714/3", - PermissibleValue(text="9714/3") ) - setattr(cls, "9820/3", - PermissibleValue(text="9820/3") ) - setattr(cls, "9084/0", - PermissibleValue(text="9084/0") ) - setattr(cls, "8930/0", - PermissibleValue(text="8930/0") ) - setattr(cls, "8380/1", - PermissibleValue(text="8380/1") ) - setattr(cls, "9250/1", - PermissibleValue(text="9250/1") ) - setattr(cls, "9122/0", - PermissibleValue(text="9122/0") ) - setattr(cls, "8830/1", - PermissibleValue(text="8830/1") ) - setattr(cls, "8723/0", - PermissibleValue(text="8723/0") ) - setattr(cls, "8212/0", - PermissibleValue(text="8212/0") ) - setattr(cls, "8490/3", - PermissibleValue(text="8490/3") ) - setattr(cls, "8330/1", - PermissibleValue(text="8330/1") ) - setattr(cls, "8630/0", - PermissibleValue(text="8630/0") ) - setattr(cls, "8000/9", - PermissibleValue(text="8000/9") ) - setattr(cls, "9420/3", - PermissibleValue(text="9420/3") ) - setattr(cls, "8256/3", - PermissibleValue(text="8256/3") ) - setattr(cls, "9450/3", - PermissibleValue(text="9450/3") ) - setattr(cls, "9061/3", - PermissibleValue(text="9061/3") ) - setattr(cls, "9538/1", - PermissibleValue(text="9538/1") ) - setattr(cls, "9173/0", - PermissibleValue(text="9173/0") ) - setattr(cls, "8123/3", - PermissibleValue(text="8123/3") ) - setattr(cls, "9370/3", - PermissibleValue(text="9370/3") ) - setattr(cls, "8242/3", - PermissibleValue(text="8242/3") ) - setattr(cls, "9504/3", - PermissibleValue(text="9504/3") ) - setattr(cls, "8163/3", - PermissibleValue(text="8163/3") ) - setattr(cls, "8156/1", - PermissibleValue(text="8156/1") ) - setattr(cls, "8480/3", - PermissibleValue(text="8480/3") ) - setattr(cls, "8714/3", - PermissibleValue(text="8714/3") ) - setattr(cls, "9394/1", - PermissibleValue(text="9394/1") ) - setattr(cls, "8400/3", - PermissibleValue(text="8400/3") ) - setattr(cls, "8840/3", - PermissibleValue(text="8840/3") ) - setattr(cls, "9501/3", - PermissibleValue(text="9501/3") ) - setattr(cls, "8243/3", - PermissibleValue(text="8243/3") ) - setattr(cls, "8046/6", - PermissibleValue(text="8046/6") ) - setattr(cls, "8801/6", - PermissibleValue(text="8801/6") ) - setattr(cls, "8249/6", - PermissibleValue(text="8249/6") ) - setattr(cls, "9440/6", - PermissibleValue(text="9440/6") ) - setattr(cls, "8804/6", - PermissibleValue(text="8804/6") ) - setattr(cls, "8240/6", - PermissibleValue(text="8240/6") ) - setattr(cls, "8441/6", - PermissibleValue(text="8441/6") ) - setattr(cls, "8806/6", - PermissibleValue(text="8806/6") ) - setattr(cls, "8500/6", - PermissibleValue(text="8500/6") ) - setattr(cls, "8041/6", - PermissibleValue(text="8041/6") ) - setattr(cls, "8800/6", - PermissibleValue(text="8800/6") ) - setattr(cls, "8020/6", - PermissibleValue(text="8020/6") ) - setattr(cls, "8040/3", - PermissibleValue(text="8040/3") ) - setattr(cls, "8482/6", - PermissibleValue(text="8482/6") ) - setattr(cls, "8720/6", - PermissibleValue(text="8720/6") ) - setattr(cls, "9180/6", - PermissibleValue(text="9180/6") ) - setattr(cls, "8471/1", - PermissibleValue(text="8471/1") ) - setattr(cls, "8920/6", - PermissibleValue(text="8920/6") ) - setattr(cls, "8311/6", - PermissibleValue(text="8311/6") ) - setattr(cls, "8950/6", - PermissibleValue(text="8950/6") ) - setattr(cls, "8310/6", - PermissibleValue(text="8310/6") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDiagnosisDiseaseStatus(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Diagnosis disease_status - """ - Unknown = PermissibleValue(text="Unknown") - - _defn = EnumDefinition( - name="EnumCCDHDiagnosisDiseaseStatus", - description="Autogenerated Enumeration for CRDC-H Diagnosis disease_status", - code_set=None, - code_set_version="2021-07-21T20:42:46.395853+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Initial Diagnosis", - PermissibleValue(text="Initial Diagnosis") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Residual Disease", - PermissibleValue(text="Residual Disease") ) - setattr(cls, "Recurrent Disease", - PermissibleValue(text="Recurrent Disease") ) - setattr(cls, "Progressive Disease", - PermissibleValue(text="Progressive Disease") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDiagnosisMethodOfDiagnosis(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Diagnosis method_of_diagnosis - """ - Cystoscopy = PermissibleValue(text="Cystoscopy", - description="Cystoscopy") - Laparoscopy = PermissibleValue(text="Laparoscopy", - description="Laparoscopy") - Debulking = PermissibleValue(text="Debulking", - description="Debulking") - Other = PermissibleValue(text="Other", - description="Other") - Cytology = PermissibleValue(text="Cytology", - description="Cytology") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - Laparotomy = PermissibleValue(text="Laparotomy", - description="Laparotomy") - Enucleation = PermissibleValue(text="Enucleation", - description="Enucleation") - Thoracentesis = PermissibleValue(text="Thoracentesis", - description="Thoracentesis") - Biopsy = PermissibleValue(text="Biopsy", - description="Biopsy") - Autopsy = PermissibleValue(text="Autopsy", - description="Autopsy") - Imaging = PermissibleValue(text="Imaging", - description="Imaging Technique") - - _defn = EnumDefinition( - name="EnumCCDHDiagnosisMethodOfDiagnosis", - description="Autogenerated Enumeration for CRDC-H Diagnosis method_of_diagnosis", - code_set=None, - code_set_version="2021-07-21T20:42:46.551160+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Surgical Resection", - PermissibleValue(text="Surgical Resection", - description="Excision") ) - setattr(cls, "Incisional Biopsy", - PermissibleValue(text="Incisional Biopsy", - description="Incisional Biopsy") ) - setattr(cls, "Dilation and Curettage Procedure", - PermissibleValue(text="Dilation and Curettage Procedure", - description="Dilation and Curettage") ) - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - setattr(cls, "Pathologic Review", - PermissibleValue(text="Pathologic Review", - description="Pathologic Examination") ) - setattr(cls, "Physical Exam", - PermissibleValue(text="Physical Exam", - description="Physical Examination") ) - setattr(cls, "Ultrasound Guided Biopsy", - PermissibleValue(text="Ultrasound Guided Biopsy", - description="Ultrasound guided biopsy") ) - setattr(cls, "Pap Smear", - PermissibleValue(text="Pap Smear", - description="Papanicolaou Smear Procedure") ) - setattr(cls, "Blood Draw", - PermissibleValue(text="Blood Draw", - description="Phlebotomy") ) - setattr(cls, "Excisional Biopsy", - PermissibleValue(text="Excisional Biopsy", - description="Excisional Biopsy") ) - setattr(cls, "Fine Needle Aspiration", - PermissibleValue(text="Fine Needle Aspiration", - description="Fine-Needle Aspiration") ) - setattr(cls, "Bone Marrow Aspirate", - PermissibleValue(text="Bone Marrow Aspirate", - description="Bone Marrow Aspiration") ) - setattr(cls, "Core Biopsy", - PermissibleValue(text="Core Biopsy", - description="Core Biopsy") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported", - description="Not Reported") ) - setattr(cls, "Diagnostic Imaging", - PermissibleValue(text="Diagnostic Imaging", - description="Diagnostic Imaging") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDimensionalObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H DimensionalObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHDimensionalObservationCategory", - description="Autogenerated Enumeration for CRDC-H DimensionalObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:46.730386+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDimensionalObservationObservationType(EnumDefinitionImpl): - """ - Types of measurements that describe the physical dimensions of an entity (e.g. a Specimen) - """ - length = PermissibleValue(text="length", - description="The length of a three-dimensional specimen, as measured in a plane perpendicular to the planes in which the width and height of the specimen are measured.") - width = PermissibleValue(text="width", - description="The width of a three-dimensional specimen, as measured in a plane perpendicular to the planes in which the length and height of the specimen are measured.") - longest_dimension = PermissibleValue(text="longest_dimension", - description="The measured extent of the longest straight path across a specimen.") - shortest_dimension = PermissibleValue(text="shortest_dimension", - description="The measured extent of the shortest straight path across a specimen.") - intermediate_dimension = PermissibleValue(text="intermediate_dimension", - description="The measured extent of the intermediate straight path across a specimen.") - surface_area = PermissibleValue(text="surface_area", - description="The total surface area of the specimen") - - _defn = EnumDefinition( - name="EnumCCDHDimensionalObservationObservationType", - description="Types of measurements that describe the physical dimensions of an entity (e.g. a Specimen)", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDimensionalObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H DimensionalObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHDimensionalObservationMethodType", - description="Autogenerated Enumeration for CRDC-H DimensionalObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:47.024096+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDimensionalObservationSetCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H DimensionalObservationSet category - """ - _defn = EnumDefinition( - name="EnumCCDHDimensionalObservationSetCategory", - description="Autogenerated Enumeration for CRDC-H DimensionalObservationSet category", - code_set=None, - code_set_version="2021-07-21T20:42:47.168003+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDimensionalObservationSetMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H DimensionalObservationSet method_type - """ - _defn = EnumDefinition( - name="EnumCCDHDimensionalObservationSetMethodType", - description="Autogenerated Enumeration for CRDC-H DimensionalObservationSet method_type", - code_set=None, - code_set_version="2021-07-21T20:42:47.324254+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHDocumentDocumentType(EnumDefinitionImpl): - """ - The high-level type of the report (e.g. 'pathology report') - """ - protocol = PermissibleValue(text="protocol", - description="A protocol by which the sample was obtained or generated (e.g. a protocol listed in protocols.io)") - - _defn = EnumDefinition( - name="EnumCCDHDocumentDocumentType", - description="The high-level type of the report (e.g. 'pathology report')", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "pathology report", - PermissibleValue(text="pathology report", - description="A pathology report describing the specimen") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHEnvironmentalExposureObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHEnvironmentalExposureObservationCategory", - description="Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:47.621549+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHEnvironmentalExposureObservationObservationType(EnumDefinitionImpl): - """ - Types of observations about a Subject's environmental exposures. - """ - asbestos_exposure = PermissibleValue(text="asbestos_exposure", - description="The yes/no/unknown indicator used to describe whether the patient was exposed to asbestos.") - coal_dust_exposure = PermissibleValue(text="coal_dust_exposure", - description="The yes/no/unknown indicator used to describe whether a patient was exposed to fine powder derived by the crushing of coal.") - radon_exposure = PermissibleValue(text="radon_exposure", - description="The yes/no/unknown indicator used to describe whether the patient was exposed to radon.") - respirable_crystalline_silica_exposure = PermissibleValue(text="respirable_crystalline_silica_exposure", - description="The yes/no/unknown indicator used to describe whether a patient was exposed to respirable crystalline silica, a widespread, naturally occurring, crystalline metal oxide that consists of different forms including quartz, cristobalite, tridymite, tripoli, ganister, chert and novaculite.") - type_of_smoke_exposure = PermissibleValue(text="type_of_smoke_exposure", - description="The text term used to describe the patient's specific type of smoke exposure.") - - _defn = EnumDefinition( - name="EnumCCDHEnvironmentalExposureObservationObservationType", - description="Types of observations about a Subject's environmental exposures.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHEnvironmentalExposureObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHEnvironmentalExposureObservationMethodType", - description="Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:47.920374+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHEnvironmentalExposureObservationValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation valueCodeableConcept - """ - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - No = PermissibleValue(text="No") - Yes = PermissibleValue(text="Yes") - - _defn = EnumDefinition( - name="EnumCCDHEnvironmentalExposureObservationValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:42:48.072237+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Work-related smoke, plumbing", - PermissibleValue(text="Work-related smoke, plumbing") ) - setattr(cls, "Grilling smoke", - PermissibleValue(text="Grilling smoke") ) - setattr(cls, "Indoor stove or fireplace smoke, wood burning", - PermissibleValue(text="Indoor stove or fireplace smoke, wood burning") ) - setattr(cls, "Accidental building fire smoke", - PermissibleValue(text="Accidental building fire smoke") ) - setattr(cls, "Smoke exposure, NOS", - PermissibleValue(text="Smoke exposure, NOS") ) - setattr(cls, "Accidental forest fire smoke", - PermissibleValue(text="Accidental forest fire smoke") ) - setattr(cls, "Cooking-related smoke, NOS", - PermissibleValue(text="Cooking-related smoke, NOS") ) - setattr(cls, "Work-related smoke, military", - PermissibleValue(text="Work-related smoke, military") ) - setattr(cls, "Fire smoke, NOS", - PermissibleValue(text="Fire smoke, NOS") ) - setattr(cls, "Wood burning smoke, NOS", - PermissibleValue(text="Wood burning smoke, NOS") ) - setattr(cls, "Work-related smoke, generators", - PermissibleValue(text="Work-related smoke, generators") ) - setattr(cls, "Marijuana smoke", - PermissibleValue(text="Marijuana smoke") ) - setattr(cls, "Electronic cigarette smoke, NOS", - PermissibleValue(text="Electronic cigarette smoke, NOS") ) - setattr(cls, "Work-related smoke, fire fighting", - PermissibleValue(text="Work-related smoke, fire fighting") ) - setattr(cls, "Burning tree smoke", - PermissibleValue(text="Burning tree smoke") ) - setattr(cls, "Factory smokestack smoke", - PermissibleValue(text="Factory smokestack smoke") ) - setattr(cls, "Work-related smoke, plastics factory", - PermissibleValue(text="Work-related smoke, plastics factory") ) - setattr(cls, "Field burning smoke", - PermissibleValue(text="Field burning smoke") ) - setattr(cls, "Accidental vehicle fire smoke", - PermissibleValue(text="Accidental vehicle fire smoke") ) - setattr(cls, "Work-related smoke, foundry", - PermissibleValue(text="Work-related smoke, foundry") ) - setattr(cls, "Gas burning smoke, propane", - PermissibleValue(text="Gas burning smoke, propane") ) - setattr(cls, "Furnace or boiler smoke", - PermissibleValue(text="Furnace or boiler smoke") ) - setattr(cls, "Waste burning smoke", - PermissibleValue(text="Waste burning smoke") ) - setattr(cls, "No Smoke Exposure", - PermissibleValue(text="No Smoke Exposure") ) - setattr(cls, "Coal smoke, NOS", - PermissibleValue(text="Coal smoke, NOS") ) - setattr(cls, "Volcanic smoke", - PermissibleValue(text="Volcanic smoke") ) - setattr(cls, "Oil burning smoke, Kerosene", - PermissibleValue(text="Oil burning smoke, Kerosene") ) - setattr(cls, "Accidental fire smoke, grass", - PermissibleValue(text="Accidental fire smoke, grass") ) - setattr(cls, "Electrical fire smoke", - PermissibleValue(text="Electrical fire smoke") ) - setattr(cls, "Work-related smoke, paint baking", - PermissibleValue(text="Work-related smoke, paint baking") ) - setattr(cls, "Tobacco smoke, cigarettes", - PermissibleValue(text="Tobacco smoke, cigarettes") ) - setattr(cls, "Accidental fire smoke, NOS", - PermissibleValue(text="Accidental fire smoke, NOS") ) - setattr(cls, "Recreational fire smoke", - PermissibleValue(text="Recreational fire smoke") ) - setattr(cls, "Grease fire smoke", - PermissibleValue(text="Grease fire smoke") ) - setattr(cls, "Hashish smoke", - PermissibleValue(text="Hashish smoke") ) - setattr(cls, "Smokehouse smoke", - PermissibleValue(text="Smokehouse smoke") ) - setattr(cls, "Indoor stove or fireplace smoke, coal burning", - PermissibleValue(text="Indoor stove or fireplace smoke, coal burning") ) - setattr(cls, "Work-related smoke, soldering/welding", - PermissibleValue(text="Work-related smoke, soldering/welding") ) - setattr(cls, "Tobacco smoke, cigar", - PermissibleValue(text="Tobacco smoke, cigar") ) - setattr(cls, "Work-related smoke, artificial smoke machines", - PermissibleValue(text="Work-related smoke, artificial smoke machines") ) - setattr(cls, "Aircraft smoke", - PermissibleValue(text="Aircraft smoke") ) - setattr(cls, "Environmental tobacco smoke", - PermissibleValue(text="Environmental tobacco smoke") ) - setattr(cls, "Tobacco smoke, pipe", - PermissibleValue(text="Tobacco smoke, pipe") ) - setattr(cls, "Indoor stove or fireplace smoke, NOS", - PermissibleValue(text="Indoor stove or fireplace smoke, NOS") ) - setattr(cls, "Wood burning smoke, factory", - PermissibleValue(text="Wood burning smoke, factory") ) - setattr(cls, "Oil burning smoke, NOS", - PermissibleValue(text="Oil burning smoke, NOS") ) - setattr(cls, "Work-related smoke, NOS", - PermissibleValue(text="Work-related smoke, NOS") ) - setattr(cls, "Machine smoke", - PermissibleValue(text="Machine smoke") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Tobacco smoke, NOS", - PermissibleValue(text="Tobacco smoke, NOS") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionTimeObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ExecutionTimeObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHExecutionTimeObservationCategory", - description="Autogenerated Enumeration for CRDC-H ExecutionTimeObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:48.257156+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionTimeObservationObservationType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ExecutionTimeObservation observation_type - """ - _defn = EnumDefinition( - name="EnumCCDHExecutionTimeObservationObservationType", - description="Autogenerated Enumeration for CRDC-H ExecutionTimeObservation observation_type", - code_set=None, - code_set_version="2021-07-21T20:42:48.405823+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionTimeObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ExecutionTimeObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHExecutionTimeObservationMethodType", - description="Autogenerated Enumeration for CRDC-H ExecutionTimeObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:48.555058+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionConditionObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ExecutionConditionObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHExecutionConditionObservationCategory", - description="Autogenerated Enumeration for CRDC-H ExecutionConditionObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:48.692330+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionConditionObservationObservationType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ExecutionConditionObservation observation_type - """ - _defn = EnumDefinition( - name="EnumCCDHExecutionConditionObservationObservationType", - description="Autogenerated Enumeration for CRDC-H ExecutionConditionObservation observation_type", - code_set=None, - code_set_version="2021-07-21T20:42:48.840839+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionConditionObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ExecutionConditionObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHExecutionConditionObservationMethodType", - description="Autogenerated Enumeration for CRDC-H ExecutionConditionObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:48.997995+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionConditionObservationValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ExecutionConditionObservation valueCodeableConcept - """ - _defn = EnumDefinition( - name="EnumCCDHExecutionConditionObservationValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H ExecutionConditionObservation valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:42:49.151276+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHHistologicalCompositionObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H HistologicalCompositionObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHHistologicalCompositionObservationCategory", - description="Autogenerated Enumeration for CRDC-H HistologicalCompositionObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:49.299681+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHHistologicalCompositionObservationObservationType(EnumDefinitionImpl): - """ - Types of measurements that describe microscopic characteristics of a specimen - typically related to its cellular - and tissue composition. - """ - number_proliferating_cells = PermissibleValue(text="number_proliferating_cells", - description="Numeric value that represents the count of proliferating cells determined during pathologic review of the sample slide(s).") - percent_eosinophil_infiltration = PermissibleValue(text="percent_eosinophil_infiltration", - description="Numeric value to represent the percentage of infiltration by eosinophils in a tumor sample or specimen.") - percent_granulocyte_infiltration = PermissibleValue(text="percent_granulocyte_infiltration", - description="Numeric value to represent the percentage of infiltration by granulocytes in a tumor sample or specimen.") - percent_inflam_infiltration = PermissibleValue(text="percent_inflam_infiltration", - description="Numeric value to represent local response to cellular injury, marked by capillary dilatation, edema and leukocyte infiltration; clinically, inflammation is manifest by redness, heat, pain, swelling and loss of function, with the need to heal damaged tissue.") - percent_lymphocyte_infiltration = PermissibleValue(text="percent_lymphocyte_infiltration", - description="Numeric value to represent the percentage of infiltration by lymphocytes in a solid tissue normal sample or specimen.") - percent_monocyte_infiltration = PermissibleValue(text="percent_monocyte_infiltration", - description="Numeric value to represent the percentage of monocyte infiltration in a sample or specimen.") - percent_necrosis = PermissibleValue(text="percent_necrosis", - description="Numeric value to represent the percentage of cell death in a malignant tumor sample or specimen.") - percent_neutrophil_infiltration = PermissibleValue(text="percent_neutrophil_infiltration", - description="Numeric value to represent the percentage of infiltration by neutrophils in a tumor sample or specimen.") - percent_normal_cells = PermissibleValue(text="percent_normal_cells", - description="Numeric value to represent the percentage of normal cell content in a malignant tumor sample or specimen.") - percent_stromal_cells = PermissibleValue(text="percent_stromal_cells", - description="Numeric value to represent the percentage of reactive cells that are present in a malignant tumor sample or specimen but are not malignant such as fibroblasts, vascular structures, etc.") - percent_tumor_cells = PermissibleValue(text="percent_tumor_cells", - description="Numeric value that represents the percentage of infiltration by tumor cells in a sample.") - percent_tumor_nuclei = PermissibleValue(text="percent_tumor_nuclei", - description="Numeric value to represent the percentage of tumor nuclei in a malignant neoplasm sample or specimen.") - tumor_infiltrating_lymphocytes = PermissibleValue(text="tumor_infiltrating_lymphocytes", - description="Measure of Tumor-Infiltrating Lymphocytes") - non_tumor_tissue_area = PermissibleValue(text="non_tumor_tissue_area", - description="The area within a sample that is represented by non-tumor tissue.") - tumor_tissue_area = PermissibleValue(text="tumor_tissue_area", - description="The area within a sample that is comprised of tumor tissue.") - analysis_area = PermissibleValue(text="analysis_area", - description="The total area of a sample that is used for analysis.") - analysis_area_percentage_stroma = PermissibleValue(text="analysis_area_percentage_stroma", - description="The percentage of the analysis area that is represented by stromal tissue.") - analysis_area_percentage_tumor = PermissibleValue(text="analysis_area_percentage_tumor", - description="The percentage of the analysis area that is represented by tumor tissue.") - analysis_area_percentage_glass = PermissibleValue(text="analysis_area_percentage_glass", - description="The area of a sample on a slide that is represented by glass; the area of the sample that represents gaps in the sample.") - analysis_area_percentage_pigmented_tumor = PermissibleValue(text="analysis_area_percentage_pigmented_tumor", - description="The area of a sample on a slide that is represented by pigmented tumor tissue, which will be analyzed.") - - _defn = EnumDefinition( - name="EnumCCDHHistologicalCompositionObservationObservationType", - description="Types of measurements that describe microscopic characteristics of a specimen - typically related to its cellular and tissue composition.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHHistologicalCompositionObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H HistologicalCompositionObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHHistologicalCompositionObservationMethodType", - description="Autogenerated Enumeration for CRDC-H HistologicalCompositionObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:49.608930+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHHistologicalCompositionObservationSetCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H HistologicalCompositionObservationSet category - """ - _defn = EnumDefinition( - name="EnumCCDHHistologicalCompositionObservationSetCategory", - description="Autogenerated Enumeration for CRDC-H HistologicalCompositionObservationSet category", - code_set=None, - code_set_version="2021-07-21T20:42:49.762669+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHHistologicalCompositionObservationSetMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H HistologicalCompositionObservationSet method_type - """ - _defn = EnumDefinition( - name="EnumCCDHHistologicalCompositionObservationSetMethodType", - description="Autogenerated Enumeration for CRDC-H HistologicalCompositionObservationSet method_type", - code_set=None, - code_set_version="2021-07-21T20:42:49.914640+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHIdentifierType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Identifier type - """ - _defn = EnumDefinition( - name="EnumCCDHIdentifierType", - description="Autogenerated Enumeration for CRDC-H Identifier type", - code_set=None, - code_set_version="2021-07-21T20:42:50.053980+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Observation category - """ - _defn = EnumDefinition( - name="EnumCCDHObservationCategory", - description="Autogenerated Enumeration for CRDC-H Observation category", - code_set=None, - code_set_version="2021-07-21T20:42:50.204657+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHObservationObservationType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Observation observation_type - """ - _defn = EnumDefinition( - name="EnumCCDHObservationObservationType", - description="Autogenerated Enumeration for CRDC-H Observation observation_type", - code_set=None, - code_set_version="2021-07-21T20:42:50.349853+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Observation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHObservationMethodType", - description="Autogenerated Enumeration for CRDC-H Observation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:50.498290+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHObservationValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Observation valueCodeableConcept - """ - _defn = EnumDefinition( - name="EnumCCDHObservationValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H Observation valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:42:50.641946+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHObservationSetCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ObservationSet category - """ - _defn = EnumDefinition( - name="EnumCCDHObservationSetCategory", - description="Autogenerated Enumeration for CRDC-H ObservationSet category", - code_set=None, - code_set_version="2021-07-21T20:42:50.785588+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHObservationSetMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ObservationSet method_type - """ - _defn = EnumDefinition( - name="EnumCCDHObservationSetMethodType", - description="Autogenerated Enumeration for CRDC-H ObservationSet method_type", - code_set=None, - code_set_version="2021-07-21T20:42:50.936109+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHQuantityValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Quantity valueCodeableConcept - """ - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - - _defn = EnumDefinition( - name="EnumCCDHQuantityValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H Quantity valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:42:51.088916+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported", - description="Not Reported") ) - setattr(cls, "Distal (>2cm)", - PermissibleValue(text="Distal (>2cm)", - description="Distal") ) - setattr(cls, "Adjacent (< or = 2cm)", - PermissibleValue(text="Adjacent (< or = 2cm)", - description="Adjacent") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHQuantityUnit(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Quantity unit - """ - _defn = EnumDefinition( - name="EnumCCDHQuantityUnit", - description="Autogenerated Enumeration for CRDC-H Quantity unit", - code_set=None, - code_set_version="2021-07-21T20:42:51.237139+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHResearchProjectResearchProjectType(EnumDefinitionImpl): - """ - A high-level type of research activity - """ - Program = PermissibleValue(text="Program", - description="A broad framework of goals to be achieved.") - Project = PermissibleValue(text="Project", - description="Any specifically defined piece of work that is undertaken or attempted to meet a single requirement.") - - _defn = EnumDefinition( - name="EnumCCDHResearchProjectResearchProjectType", - description="A high-level type of research activity", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Clinical Trial", - PermissibleValue(text="Clinical Trial", - description="A research study that prospectively assigns participants to one or more health-related interventions to evaluate the effects on health outcomes.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHResearchSubjectPrimaryDiagnosisCondition(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ResearchSubject primary_diagnosis_condition - """ - Gliomas = PermissibleValue(text="Gliomas", - description="Glioma") - Mesonephromas = PermissibleValue(text="Mesonephromas", - description="Mesonephric Neoplasm") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - Meningiomas = PermissibleValue(text="Meningiomas", - description="Meningioma") - Cholangiocarcinoma = PermissibleValue(text="Cholangiocarcinoma") - Thymoma = PermissibleValue(text="Thymoma") - Sarcoma = PermissibleValue(text="Sarcoma") - Neuroblastoma = PermissibleValue(text="Neuroblastoma") - Osteosarcoma = PermissibleValue(text="Osteosarcoma") - Mesothelioma = PermissibleValue(text="Mesothelioma") - Glioblastoma = PermissibleValue(text="Glioblastoma") - Other = PermissibleValue(text="Other") - - _defn = EnumDefinition( - name="EnumCCDHResearchSubjectPrimaryDiagnosisCondition", - description="Autogenerated Enumeration for CRDC-H ResearchSubject primary_diagnosis_condition", - code_set=None, - code_set_version="2021-07-21T20:42:51.534105+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Soft Tissue Tumors and Sarcomas, NOS", - PermissibleValue(text="Soft Tissue Tumors and Sarcomas, NOS", - description="Soft Tissue Neoplasm and Soft Tissue Sarcoma") ) - setattr(cls, "Precursor Cell Lymphoblastic Lymphoma", - PermissibleValue(text="Precursor Cell Lymphoblastic Lymphoma", - description="Lymphoblastic Lymphoma") ) - setattr(cls, "Myeloid Leukemias", - PermissibleValue(text="Myeloid Leukemias", - description="Myeloid Leukemia") ) - setattr(cls, "Hodgkin Lymphoma", - PermissibleValue(text="Hodgkin Lymphoma", - description="Hodgkin Lymphoma") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported", - description="Not Reported") ) - setattr(cls, "Germ Cell Neoplasms", - PermissibleValue(text="Germ Cell Neoplasms", - description="Germ Cell Tumor") ) - setattr(cls, "Blood Vessel Tumors", - PermissibleValue(text="Blood Vessel Tumors", - description="Blood Vessel Neoplasm") ) - setattr(cls, "Fibroepithelial Neoplasms", - PermissibleValue(text="Fibroepithelial Neoplasms", - description="Fibroepithelial Neoplasm") ) - setattr(cls, "Neoplasms, NOS", - PermissibleValue(text="Neoplasms, NOS", - description="Not Otherwise Specified Neoplasm") ) - setattr(cls, "Basal Cell Neoplasms", - PermissibleValue(text="Basal Cell Neoplasms", - description="Basal Cell Neoplasm") ) - setattr(cls, "Mast Cell Tumors", - PermissibleValue(text="Mast Cell Tumors", - description="Mast Cell Neoplasm") ) - setattr(cls, "Complex Epithelial Neoplasms", - PermissibleValue(text="Complex Epithelial Neoplasms") ) - setattr(cls, "Other Leukemias", - PermissibleValue(text="Other Leukemias", - description="Other Leukemia") ) - setattr(cls, "Complex Mixed and Stromal Neoplasms", - PermissibleValue(text="Complex Mixed and Stromal Neoplasms", - description="Complex Mixed and Stromal Neoplasm") ) - setattr(cls, "Not Applicable", - PermissibleValue(text="Not Applicable") ) - setattr(cls, "Mature B-Cell Lymphomas", - PermissibleValue(text="Mature B-Cell Lymphomas", - description="Mature B-Cell Non-Hodgkin Lymphoma") ) - setattr(cls, "Adnexal and Skin Appendage Neoplasms", - PermissibleValue(text="Adnexal and Skin Appendage Neoplasms", - description="Adnexal Carcinoma and Skin Appendage Neoplasm") ) - setattr(cls, "Chronic Myeloproliferative Disorders", - PermissibleValue(text="Chronic Myeloproliferative Disorders", - description="Chronic Myeloproliferative Neoplasm") ) - setattr(cls, "Acinar Cell Neoplasms", - PermissibleValue(text="Acinar Cell Neoplasms", - description="Acinar Cell Neoplasm") ) - setattr(cls, "Osseous and Chondromatous Neoplasms", - PermissibleValue(text="Osseous and Chondromatous Neoplasms", - description="Osteogenic Neoplasm and Chondrogenic Neoplasm") ) - setattr(cls, "Miscellaneous Bone Tumors", - PermissibleValue(text="Miscellaneous Bone Tumors", - description="Miscellaneous Bone Neoplasm") ) - setattr(cls, "Paragangliomas and Glomus Tumors", - PermissibleValue(text="Paragangliomas and Glomus Tumors", - description="Paraganglioma And Glomus Tumor") ) - setattr(cls, "Fibromatous Neoplasms", - PermissibleValue(text="Fibromatous Neoplasms", - description="Fibromatosis") ) - setattr(cls, "Mesothelial Neoplasms", - PermissibleValue(text="Mesothelial Neoplasms", - description="Mesothelial Neoplasm") ) - setattr(cls, "Granular Cell Tumors and Alveolar Soft Part Sarcomas", - PermissibleValue(text="Granular Cell Tumors and Alveolar Soft Part Sarcomas", - description="Granular Cell Tumor and Alveolar Soft Part Sarcoma") ) - setattr(cls, "Neoplasms of Histiocytes and Accessory Lymphoid Cells", - PermissibleValue(text="Neoplasms of Histiocytes and Accessory Lymphoid Cells", - description="Neoplasms of Histiocytes and Accessory Lymphoid Cells") ) - setattr(cls, "Immunoproliferative Diseases", - PermissibleValue(text="Immunoproliferative Diseases", - description="Immunoproliferative Disease") ) - setattr(cls, "Thymic Epithelial Neoplasms", - PermissibleValue(text="Thymic Epithelial Neoplasms", - description="Combined Thymic Epithelial Neoplasm") ) - setattr(cls, "Mucoepidermoid Neoplasms", - PermissibleValue(text="Mucoepidermoid Neoplasms", - description="Mucoepidermoid Carcinoma") ) - setattr(cls, "Nerve Sheath Tumors", - PermissibleValue(text="Nerve Sheath Tumors", - description="Nerve Sheath Neoplasm") ) - setattr(cls, "Adenomas and Adenocarcinomas", - PermissibleValue(text="Adenomas and Adenocarcinomas", - description="Adenoma and Adenocarcinoma") ) - setattr(cls, "Lymphoid Leukemias", - PermissibleValue(text="Lymphoid Leukemias", - description="Lymphoid Leukemia") ) - setattr(cls, "Odontogenic Tumors", - PermissibleValue(text="Odontogenic Tumors", - description="Odontogenic Neoplasm") ) - setattr(cls, "Cystic, Mucinous and Serous Neoplasms", - PermissibleValue(text="Cystic, Mucinous and Serous Neoplasms", - description="Cystic Neoplasm Mucinous Neoplasm and Serous Neoplasm") ) - setattr(cls, "Squamous Cell Neoplasms", - PermissibleValue(text="Squamous Cell Neoplasms", - description="Squamous Cell Neoplasm") ) - setattr(cls, "Transitional Cell Papillomas and Carcinomas", - PermissibleValue(text="Transitional Cell Papillomas and Carcinomas", - description="Transitional Cell Papilloma and Transitional Cell Carcinoma") ) - setattr(cls, "Ductal and Lobular Neoplasms", - PermissibleValue(text="Ductal and Lobular Neoplasms", - description="Ductal Breast Carcinoma In Situ and Lobular Carcinoma In Situ") ) - setattr(cls, "Leukemias, NOS", - PermissibleValue(text="Leukemias, NOS", - description="Not Otherwise Specified Leukemia") ) - setattr(cls, "Trophoblastic neoplasms", - PermissibleValue(text="Trophoblastic neoplasms", - description="Trophoblastic Tumor") ) - setattr(cls, "Other Hematologic Disorders", - PermissibleValue(text="Other Hematologic Disorders", - description="Other Hematologic and Lymphocytic Disorder") ) - setattr(cls, "Epithelial Neoplasms, NOS", - PermissibleValue(text="Epithelial Neoplasms, NOS", - description="Not Otherwise Specified Epithelial Neoplasm") ) - setattr(cls, "Neuroepitheliomatous Neoplasms", - PermissibleValue(text="Neuroepitheliomatous Neoplasms", - description="Neuroepithelial Neoplasm") ) - setattr(cls, "Specialized Gonadal Neoplasms", - PermissibleValue(text="Specialized Gonadal Neoplasms", - description="Specialized Gonadal Neoplasm") ) - setattr(cls, "Myomatous Neoplasms", - PermissibleValue(text="Myomatous Neoplasms", - description="Myomatous Neoplasm") ) - setattr(cls, "Myelodysplastic Syndromes", - PermissibleValue(text="Myelodysplastic Syndromes", - description="Myelodysplastic Syndrome") ) - setattr(cls, "Mature T- and NK-Cell Lymphomas", - PermissibleValue(text="Mature T- and NK-Cell Lymphomas", - description="Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma") ) - setattr(cls, "Plasma Cell Tumors", - PermissibleValue(text="Plasma Cell Tumors", - description="Plasma Cell Neoplasm") ) - setattr(cls, "Giant Cell Tumors", - PermissibleValue(text="Giant Cell Tumors", - description="Giant Cell Tumor") ) - setattr(cls, "Myxomatous Neoplasms", - PermissibleValue(text="Myxomatous Neoplasms", - description="Myxoma") ) - setattr(cls, "Miscellaneous Tumors", - PermissibleValue(text="Miscellaneous Tumors", - description="Miscellaneous Neoplasm") ) - setattr(cls, "Lymphatic Vessel Tumors", - PermissibleValue(text="Lymphatic Vessel Tumors", - description="Lymphatic Vessel Neoplasm") ) - setattr(cls, "Synovial-like Neoplasms", - PermissibleValue(text="Synovial-like Neoplasms", - description="Synovial Neoplasm") ) - setattr(cls, "Lipomatous Neoplasms", - PermissibleValue(text="Lipomatous Neoplasms", - description="Lipomatous Neoplasm") ) - setattr(cls, "Nevi and Melanomas", - PermissibleValue(text="Nevi and Melanomas", - description="Melanocytic Nevus and Melanoma") ) - setattr(cls, "Malignant Lymphomas, NOS or Diffuse", - PermissibleValue(text="Malignant Lymphomas, NOS or Diffuse", - description="Not Otherwise Specified or Diffuse Lymphoma") ) - setattr(cls, "Chromophobe Renal Cell Carcinoma", - PermissibleValue(text="Chromophobe Renal Cell Carcinoma") ) - setattr(cls, "Clear Cell Renal Cell Carcinoma", - PermissibleValue(text="Clear Cell Renal Cell Carcinoma") ) - setattr(cls, "Thyroid Carcinoma", - PermissibleValue(text="Thyroid Carcinoma") ) - setattr(cls, "Prostate Adenocarcinoma", - PermissibleValue(text="Prostate Adenocarcinoma") ) - setattr(cls, "HIV+ Tumor Molecular Characterization Project - Cervical Cancer", - PermissibleValue(text="HIV+ Tumor Molecular Characterization Project - Cervical Cancer") ) - setattr(cls, "High-Risk Wilms Tumor", - PermissibleValue(text="High-Risk Wilms Tumor") ) - setattr(cls, "Kidney Renal Papillary Cell Carcinoma", - PermissibleValue(text="Kidney Renal Papillary Cell Carcinoma") ) - setattr(cls, "Glioblastoma Multiforme", - PermissibleValue(text="Glioblastoma Multiforme") ) - setattr(cls, "Head and Neck Squamous Cell Carcinoma", - PermissibleValue(text="Head and Neck Squamous Cell Carcinoma") ) - setattr(cls, "Rectum Adenocarcinoma", - PermissibleValue(text="Rectum Adenocarcinoma") ) - setattr(cls, "Rhabdoid Tumor", - PermissibleValue(text="Rhabdoid Tumor") ) - setattr(cls, "Ovarian Serous Cystadenocarcinoma", - PermissibleValue(text="Ovarian Serous Cystadenocarcinoma") ) - setattr(cls, "HIV+ Tumor Molecular Characterization Project - Lung Cancer", - PermissibleValue(text="HIV+ Tumor Molecular Characterization Project - Lung Cancer") ) - setattr(cls, "Pancreatic Ductal Adenocarcinoma", - PermissibleValue(text="Pancreatic Ductal Adenocarcinoma") ) - setattr(cls, "Testicular Germ Cell Tumors", - PermissibleValue(text="Testicular Germ Cell Tumors") ) - setattr(cls, "Cervical Squamous Cell Carcinoma and Endocervical Adenocarcinoma", - PermissibleValue(text="Cervical Squamous Cell Carcinoma and Endocervical Adenocarcinoma") ) - setattr(cls, "Liver Hepatocellular Carcinoma", - PermissibleValue(text="Liver Hepatocellular Carcinoma") ) - setattr(cls, "Kidney Renal Clear Cell Carcinoma", - PermissibleValue(text="Kidney Renal Clear Cell Carcinoma") ) - setattr(cls, "Hepatocellular Carcinoma", - PermissibleValue(text="Hepatocellular Carcinoma") ) - setattr(cls, "Kidney Chromophobe", - PermissibleValue(text="Kidney Chromophobe") ) - setattr(cls, "Skin Cutaneous Melanoma", - PermissibleValue(text="Skin Cutaneous Melanoma") ) - setattr(cls, "Clear Cell Sarcoma of the Kidney", - PermissibleValue(text="Clear Cell Sarcoma of the Kidney") ) - setattr(cls, "Bladder Urothelial Carcinoma", - PermissibleValue(text="Bladder Urothelial Carcinoma") ) - setattr(cls, "Acute Lymphoblastic Leukemia", - PermissibleValue(text="Acute Lymphoblastic Leukemia") ) - setattr(cls, "Lymphoid Neoplasm Diffuse Large B-cell Lymphoma", - PermissibleValue(text="Lymphoid Neoplasm Diffuse Large B-cell Lymphoma") ) - setattr(cls, "Burkitt Lymphoma", - PermissibleValue(text="Burkitt Lymphoma") ) - setattr(cls, "Papillary Renal Cell Carcinoma", - PermissibleValue(text="Papillary Renal Cell Carcinoma") ) - setattr(cls, "Pheochromocytoma and Paraganglioma", - PermissibleValue(text="Pheochromocytoma and Paraganglioma") ) - setattr(cls, "Stomach Adenocarcinoma", - PermissibleValue(text="Stomach Adenocarcinoma") ) - setattr(cls, "Uveal Melanoma", - PermissibleValue(text="Uveal Melanoma") ) - setattr(cls, "Esophageal Carcinoma", - PermissibleValue(text="Esophageal Carcinoma") ) - setattr(cls, "Pancreatic Adenocarcinoma", - PermissibleValue(text="Pancreatic Adenocarcinoma") ) - setattr(cls, "Acute Myeloid Leukemia", - PermissibleValue(text="Acute Myeloid Leukemia") ) - setattr(cls, "Lung Adenocarcinoma", - PermissibleValue(text="Lung Adenocarcinoma") ) - setattr(cls, "Multiple Myeloma", - PermissibleValue(text="Multiple Myeloma") ) - setattr(cls, "Chronic Lymphocytic Leukemia", - PermissibleValue(text="Chronic Lymphocytic Leukemia") ) - setattr(cls, "Adrenocortical Carcinoma", - PermissibleValue(text="Adrenocortical Carcinoma") ) - setattr(cls, "Early Onset Gastric Cancer", - PermissibleValue(text="Early Onset Gastric Cancer") ) - setattr(cls, "Lung Squamous Cell Carcinoma", - PermissibleValue(text="Lung Squamous Cell Carcinoma") ) - setattr(cls, "Uterine Corpus Endometrial Carcinoma", - PermissibleValue(text="Uterine Corpus Endometrial Carcinoma") ) - setattr(cls, "Uterine Carcinosarcoma", - PermissibleValue(text="Uterine Carcinosarcoma") ) - setattr(cls, "Oral Squamous Cell Carcinoma", - PermissibleValue(text="Oral Squamous Cell Carcinoma") ) - setattr(cls, "Brain Lower Grade Glioma", - PermissibleValue(text="Brain Lower Grade Glioma") ) - setattr(cls, "Pediatric/AYA Brain Tumors", - PermissibleValue(text="Pediatric/AYA Brain Tumors") ) - setattr(cls, "Breast Invasive Carcinoma", - PermissibleValue(text="Breast Invasive Carcinoma") ) - setattr(cls, "Colon Adenocarcinoma", - PermissibleValue(text="Colon Adenocarcinoma") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHResearchSubjectIndexTimepoint(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H ResearchSubject index_timepoint - """ - Diagnosis = PermissibleValue(text="Diagnosis", - description="Diagnosis") - Recurrence = PermissibleValue(text="Recurrence") - - _defn = EnumDefinition( - name="EnumCCDHResearchSubjectIndexTimepoint", - description="Autogenerated Enumeration for CRDC-H ResearchSubject index_timepoint", - code_set=None, - code_set_version="2021-07-21T20:42:51.837790+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Study Enrollment", - PermissibleValue(text="Study Enrollment", - description="Clinical Study Enrollment") ) - setattr(cls, "First Patient Visit", - PermissibleValue(text="First Patient Visit", - description="First Patient Visit") ) - setattr(cls, "First Treatment", - PermissibleValue(text="First Treatment") ) - setattr(cls, "Sample Procurement", - PermissibleValue(text="Sample Procurement", - description="Tissue Procurement") ) - setattr(cls, "Initial Genomic Sequencing", - PermissibleValue(text="Initial Genomic Sequencing") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenSpecimenType(EnumDefinitionImpl): - """ - A high-level type of specimen, based on its derivation provenance (i.e. how far removed it is from the original - sample extracted from a source). - """ - portion = PermissibleValue(text="portion", - description="A physical sub-part taken from an existing specimen.") - aliquot = PermissibleValue(text="aliquot", - description="A specimen that results from the division of some parent specimen into equal amounts for downstream analysis.") - analyte = PermissibleValue(text="analyte", - description="A specimen generated through the extraction of a specified class of substance/chemical (e.g. DNA, RNA, protein) from a parent specimen, which is stored in solution as an analyte.") - slide = PermissibleValue(text="slide", - description="A specimen that is mounted on a slide or coverslip for microscopic analysis.") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenSpecimenType", - description="A high-level type of specimen, based on its derivation provenance (i.e. how far removed it is from the original sample extracted from a source).", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "initial sample", - PermissibleValue(text="initial sample", - description="A specimen representing the material that was directly collected from a subject (i.e. not generated through portioning, aliquoting, or analyte extraction from an existing specimen).") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenAnalyteType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen analyte_type - """ - cfDNA = PermissibleValue(text="cfDNA") - DNA = PermissibleValue(text="DNA", - description="DNA") - RNA = PermissibleValue(text="RNA", - description="Ribonucleic Acid") - H = PermissibleValue(text="H", - description="Hybrid Extraction RNA") - E = PermissibleValue(text="E") - X = PermissibleValue(text="X", - description="Repli-G X (Qiagen) DNA") - G = PermissibleValue(text="G", - description="GenomePlex (Rubicon) Amplified DNA") - T = PermissibleValue(text="T", - description="Total Ribonucleic Acid") - R = PermissibleValue(text="R", - description="Ribonucleic Acid") - S = PermissibleValue(text="S") - D = PermissibleValue(text="D", - description="DNA") - W = PermissibleValue(text="W", - description="Repli-G (Qiagen) DNA") - Y = PermissibleValue(text="Y") - Protein = PermissibleValue(text="Protein", - description="Protein") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenAnalyteType", - description="Autogenerated Enumeration for CRDC-H Specimen analyte_type", - code_set=None, - code_set_version="2021-07-21T20:42:52.134126+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Repli-G (Qiagen) DNA", - PermissibleValue(text="Repli-G (Qiagen) DNA", - description="Repli-G (Qiagen) DNA") ) - setattr(cls, "FFPE RNA", - PermissibleValue(text="FFPE RNA", - description="Formalin-Fixed Paraffin-Embedded RNA") ) - setattr(cls, "Repli-G Pooled (Qiagen) DNA", - PermissibleValue(text="Repli-G Pooled (Qiagen) DNA", - description="REPLI-g Pooled DNA") ) - setattr(cls, "FFPE DNA", - PermissibleValue(text="FFPE DNA", - description="Formalin-Fixed Paraffin-Embedded DNA") ) - setattr(cls, "Nuclei RNA", - PermissibleValue(text="Nuclei RNA") ) - setattr(cls, "Total RNA", - PermissibleValue(text="Total RNA", - description="Total Ribonucleic Acid") ) - setattr(cls, "EBV Immortalized Normal", - PermissibleValue(text="EBV Immortalized Normal", - description="Normal Epstein-Barr Virus Immortalization") ) - setattr(cls, "Repli-G X (Qiagen) DNA", - PermissibleValue(text="Repli-G X (Qiagen) DNA", - description="Repli-G X (Qiagen) DNA") ) - setattr(cls, "GenomePlex (Rubicon) Amplified DNA", - PermissibleValue(text="GenomePlex (Rubicon) Amplified DNA") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenSourceMaterialType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen source_material_type - """ - Tumor = PermissibleValue(text="Tumor", - description="Neoplasm") - RNA = PermissibleValue(text="RNA") - Granulocytes = PermissibleValue(text="Granulocytes", - description="Granulocyte") - Slides = PermissibleValue(text="Slides") - DNA = PermissibleValue(text="DNA") - Unknown = PermissibleValue(text="Unknown") - Metastatic = PermissibleValue(text="Metastatic") - Saliva = PermissibleValue(text="Saliva", - description="Saliva") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenSourceMaterialType", - description="Autogenerated Enumeration for CRDC-H Specimen source_material_type", - code_set=None, - code_set_version="2021-07-21T20:42:52.297814+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Recurrent Blood Derived Cancer - Bone Marrow", - PermissibleValue(text="Recurrent Blood Derived Cancer - Bone Marrow") ) - setattr(cls, "Fibroblasts from Bone Marrow Normal", - PermissibleValue(text="Fibroblasts from Bone Marrow Normal") ) - setattr(cls, "Buccal Cell Normal", - PermissibleValue(text="Buccal Cell Normal") ) - setattr(cls, "Lymphoid Normal", - PermissibleValue(text="Lymphoid Normal") ) - setattr(cls, "Blood Derived Cancer - Peripheral Blood, Post-treatment", - PermissibleValue(text="Blood Derived Cancer - Peripheral Blood, Post-treatment") ) - setattr(cls, "Solid Tissue Normal", - PermissibleValue(text="Solid Tissue Normal") ) - setattr(cls, "Repli-G (Qiagen) DNA", - PermissibleValue(text="Repli-G (Qiagen) DNA") ) - setattr(cls, "Blood Derived Cancer - Bone Marrow", - PermissibleValue(text="Blood Derived Cancer - Bone Marrow") ) - setattr(cls, "Primary Xenograft Tissue", - PermissibleValue(text="Primary Xenograft Tissue") ) - setattr(cls, "Cell Lines", - PermissibleValue(text="Cell Lines") ) - setattr(cls, "Primary Tumor", - PermissibleValue(text="Primary Tumor", - description="Primary Neoplasm") ) - setattr(cls, "FFPE Recurrent", - PermissibleValue(text="FFPE Recurrent") ) - setattr(cls, "Pleural Effusion", - PermissibleValue(text="Pleural Effusion") ) - setattr(cls, "Benign Neoplasms", - PermissibleValue(text="Benign Neoplasms") ) - setattr(cls, "Recurrent Tumor", - PermissibleValue(text="Recurrent Tumor") ) - setattr(cls, "Normal Adjacent Tissue", - PermissibleValue(text="Normal Adjacent Tissue") ) - setattr(cls, "Control Analyte", - PermissibleValue(text="Control Analyte") ) - setattr(cls, "Blood Derived Liquid Biopsy", - PermissibleValue(text="Blood Derived Liquid Biopsy") ) - setattr(cls, "Post neo-adjuvant therapy", - PermissibleValue(text="Post neo-adjuvant therapy") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "FFPE Scrolls", - PermissibleValue(text="FFPE Scrolls", - description="Formalin Fixed Paraffin Embedded Tissue Scroll") ) - setattr(cls, "Primary Blood Derived Cancer - Peripheral Blood", - PermissibleValue(text="Primary Blood Derived Cancer - Peripheral Blood") ) - setattr(cls, "Primary Blood Derived Cancer - Bone Marrow", - PermissibleValue(text="Primary Blood Derived Cancer - Bone Marrow") ) - setattr(cls, "Human Tumor Original Cells", - PermissibleValue(text="Human Tumor Original Cells") ) - setattr(cls, "Expanded Next Generation Cancer Model", - PermissibleValue(text="Expanded Next Generation Cancer Model") ) - setattr(cls, "In Situ Neoplasms", - PermissibleValue(text="In Situ Neoplasms") ) - setattr(cls, "GenomePlex (Rubicon) Amplified DNA", - PermissibleValue(text="GenomePlex (Rubicon) Amplified DNA") ) - setattr(cls, "Additional Metastatic", - PermissibleValue(text="Additional Metastatic") ) - setattr(cls, "Blood Derived Normal", - PermissibleValue(text="Blood Derived Normal") ) - setattr(cls, "Bone Marrow Normal", - PermissibleValue(text="Bone Marrow Normal") ) - setattr(cls, "Neoplasms of Uncertain and Unknown Behavior", - PermissibleValue(text="Neoplasms of Uncertain and Unknown Behavior") ) - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - setattr(cls, "Blood Derived Cancer - Peripheral Blood", - PermissibleValue(text="Blood Derived Cancer - Peripheral Blood") ) - setattr(cls, "EBV Immortalized Normal", - PermissibleValue(text="EBV Immortalized Normal") ) - setattr(cls, "Recurrent Blood Derived Cancer - Peripheral Blood", - PermissibleValue(text="Recurrent Blood Derived Cancer - Peripheral Blood") ) - setattr(cls, "Repli-G X (Qiagen) DNA", - PermissibleValue(text="Repli-G X (Qiagen) DNA") ) - setattr(cls, "Next Generation Cancer Model", - PermissibleValue(text="Next Generation Cancer Model") ) - setattr(cls, "Additional - New Primary", - PermissibleValue(text="Additional - New Primary") ) - setattr(cls, "Blood Derived Cancer - Bone Marrow, Post-treatment", - PermissibleValue(text="Blood Derived Cancer - Bone Marrow, Post-treatment") ) - setattr(cls, "Total RNA", - PermissibleValue(text="Total RNA") ) - setattr(cls, "Cell Line Derived Xenograft Tissue", - PermissibleValue(text="Cell Line Derived Xenograft Tissue") ) - setattr(cls, "Xenograft Tissue", - PermissibleValue(text="Xenograft Tissue") ) - setattr(cls, "Tumor Adjacent Normal - Post Neo-adjuvant Therapy", - PermissibleValue(text="Tumor Adjacent Normal - Post Neo-adjuvant Therapy") ) - setattr(cls, "Mononuclear Cells from Bone Marrow Normal", - PermissibleValue(text="Mononuclear Cells from Bone Marrow Normal") ) - setattr(cls, "Mixed Adherent Suspension", - PermissibleValue(text="Mixed Adherent Suspension") ) - setattr(cls, "85", - PermissibleValue(text="85") ) - setattr(cls, "08", - PermissibleValue(text="08") ) - setattr(cls, "09", - PermissibleValue(text="09") ) - setattr(cls, "10", - PermissibleValue(text="10") ) - setattr(cls, "60", - PermissibleValue(text="60") ) - setattr(cls, "86", - PermissibleValue(text="86") ) - setattr(cls, "50", - PermissibleValue(text="50") ) - setattr(cls, "42", - PermissibleValue(text="42") ) - setattr(cls, "02", - PermissibleValue(text="02") ) - setattr(cls, "99", - PermissibleValue(text="99") ) - setattr(cls, "20", - PermissibleValue(text="20") ) - setattr(cls, "03", - PermissibleValue(text="03") ) - setattr(cls, "18", - PermissibleValue(text="18") ) - setattr(cls, "17", - PermissibleValue(text="17") ) - setattr(cls, "07", - PermissibleValue(text="07") ) - setattr(cls, "06", - PermissibleValue(text="06") ) - setattr(cls, "15", - PermissibleValue(text="15") ) - setattr(cls, "11", - PermissibleValue(text="11") ) - setattr(cls, "01", - PermissibleValue(text="01") ) - setattr(cls, "61", - PermissibleValue(text="61") ) - setattr(cls, "04", - PermissibleValue(text="04") ) - setattr(cls, "16", - PermissibleValue(text="16") ) - setattr(cls, "13", - PermissibleValue(text="13") ) - setattr(cls, "41", - PermissibleValue(text="41") ) - setattr(cls, "30", - PermissibleValue(text="30") ) - setattr(cls, "31", - PermissibleValue(text="31") ) - setattr(cls, "14", - PermissibleValue(text="14") ) - setattr(cls, "32", - PermissibleValue(text="32") ) - setattr(cls, "05", - PermissibleValue(text="05") ) - setattr(cls, "12", - PermissibleValue(text="12") ) - setattr(cls, "40", - PermissibleValue(text="40") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenTumorStatusAtCollection(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen tumor_status_at_collection - """ - recurrence = PermissibleValue(text="recurrence") - other = PermissibleValue(text="other") - metastasis = PermissibleValue(text="metastasis") - Unknown = PermissibleValue(text="Unknown") - primary = PermissibleValue(text="primary") - Xenograft = PermissibleValue(text="Xenograft", - description="Xenograft") - Premalignant = PermissibleValue(text="Premalignant", - description="Premalignant") - NOS = PermissibleValue(text="NOS", - description="Not Otherwise Specified") - Primary = PermissibleValue(text="Primary", - description="Primary Untreated Malignant Tumor Tissue") - Metastatic = PermissibleValue(text="Metastatic", - description="Metastatic Tumor Tissue") - Recurrence = PermissibleValue(text="Recurrence") - Progression = PermissibleValue(text="Progression") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenTumorStatusAtCollection", - description="Autogenerated Enumeration for CRDC-H Specimen tumor_status_at_collection", - code_set=None, - code_set_version="2021-07-21T20:42:52.499728+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - setattr(cls, "not reported", - PermissibleValue(text="not reported") ) - setattr(cls, "Not Applicable", - PermissibleValue(text="Not Applicable") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenCellularCompositionType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen cellular_composition_type - """ - Lymphocytes = PermissibleValue(text="Lymphocytes", - description="Lymphocyte") - Plasma = PermissibleValue(text="Plasma", - description="Plasma") - Unknown = PermissibleValue(text="Unknown") - Sputum = PermissibleValue(text="Sputum", - description="Sputum") - Saliva = PermissibleValue(text="Saliva", - description="Saliva") - Granulocytes = PermissibleValue(text="Granulocytes", - description="Granulocyte") - Cell = PermissibleValue(text="Cell", - description="Cell") - Serum = PermissibleValue(text="Serum", - description="Serum") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenCellularCompositionType", - description="Autogenerated Enumeration for CRDC-H Specimen cellular_composition_type", - code_set=None, - code_set_version="2021-07-21T20:42:52.662071+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Derived Cell Line", - PermissibleValue(text="Derived Cell Line", - description="Derived Cell Line") ) - setattr(cls, "Peripheral Whole Blood", - PermissibleValue(text="Peripheral Whole Blood", - description="Peripheral Whole Blood") ) - setattr(cls, "2D Classical Conditionally Reprogrammed Cells", - PermissibleValue(text="2D Classical Conditionally Reprogrammed Cells") ) - setattr(cls, "Fibroblasts from Bone Marrow Normal", - PermissibleValue(text="Fibroblasts from Bone Marrow Normal", - description="Normal Bone Marrow Fibroblast") ) - setattr(cls, "Human Original Cells", - PermissibleValue(text="Human Original Cells") ) - setattr(cls, "Peripheral Blood Components NOS", - PermissibleValue(text="Peripheral Blood Components NOS", - description="Peripheral Blood Component Not Otherwise Specified") ) - setattr(cls, "3D Neurosphere", - PermissibleValue(text="3D Neurosphere") ) - setattr(cls, "Bone Marrow Components", - PermissibleValue(text="Bone Marrow Components", - description="Bone Marrow Component") ) - setattr(cls, "Control Analyte", - PermissibleValue(text="Control Analyte", - description="Control Analyte") ) - setattr(cls, "Sorted Cells", - PermissibleValue(text="Sorted Cells") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "2D Modified Conditionally Reprogrammed Cells", - PermissibleValue(text="2D Modified Conditionally Reprogrammed Cells") ) - setattr(cls, "Mononuclear Cells from Bone Marrow Normal", - PermissibleValue(text="Mononuclear Cells from Bone Marrow Normal", - description="Normal Bone Marrow Monocyte") ) - setattr(cls, "Solid Tissue", - PermissibleValue(text="Solid Tissue", - description="Solid Tissue") ) - setattr(cls, "Whole Bone Marrow", - PermissibleValue(text="Whole Bone Marrow", - description="Whole Bone Marrow") ) - setattr(cls, "Mixed Adherent Suspension", - PermissibleValue(text="Mixed Adherent Suspension") ) - setattr(cls, "3D Air-Liquid Interface Organoid", - PermissibleValue(text="3D Air-Liquid Interface Organoid") ) - setattr(cls, "Liquid Suspension Cell Line", - PermissibleValue(text="Liquid Suspension Cell Line") ) - setattr(cls, "Buccal Cells", - PermissibleValue(text="Buccal Cells", - description="Buccal Cell") ) - setattr(cls, "EBV Immortalized", - PermissibleValue(text="EBV Immortalized", - description="Epstein-Barr Virus Immortalized") ) - setattr(cls, "Buffy Coat", - PermissibleValue(text="Buffy Coat", - description="Buffy Coat") ) - setattr(cls, "Bone Marrow Components NOS", - PermissibleValue(text="Bone Marrow Components NOS", - description="Bone Marrow Component Not Otherwise Specified") ) - setattr(cls, "Pleural Effusion", - PermissibleValue(text="Pleural Effusion", - description="Pleural Fluid") ) - setattr(cls, "Adherent Cell Line", - PermissibleValue(text="Adherent Cell Line") ) - setattr(cls, "3D Organoid", - PermissibleValue(text="3D Organoid") ) - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenGeneralTissueMorphology(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen general_tissue_morphology - """ - Peritumoral = PermissibleValue(text="Peritumoral", - description="Peritumoral") - Abnormal = PermissibleValue(text="Abnormal", - description="Abnormal") - Normal = PermissibleValue(text="Normal", - description="Normal") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - Tumor = PermissibleValue(text="Tumor", - description="Malignant Neoplasm") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenGeneralTissueMorphology", - description="Autogenerated Enumeration for CRDC-H Specimen general_tissue_morphology", - code_set=None, - code_set_version="2021-07-21T20:42:52.839807+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenSpecificTissueMorphology(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen specific_tissue_morphology - """ - Rhabdomyosarcoma = PermissibleValue(text="Rhabdomyosarcoma") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenSpecificTissueMorphology", - description="Autogenerated Enumeration for CRDC-H Specimen specific_tissue_morphology", - code_set=None, - code_set_version="2021-07-21T20:42:52.997385+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "61", - PermissibleValue(text="61") ) - setattr(cls, "70", - PermissibleValue(text="70") ) - setattr(cls, "30", - PermissibleValue(text="30") ) - setattr(cls, "63", - PermissibleValue(text="63") ) - setattr(cls, "71", - PermissibleValue(text="71") ) - setattr(cls, "51", - PermissibleValue(text="51") ) - setattr(cls, "80", - PermissibleValue(text="80") ) - setattr(cls, "02", - PermissibleValue(text="02") ) - setattr(cls, "65", - PermissibleValue(text="65") ) - setattr(cls, "04", - PermissibleValue(text="04") ) - setattr(cls, "60", - PermissibleValue(text="60") ) - setattr(cls, "03", - PermissibleValue(text="03") ) - setattr(cls, "50", - PermissibleValue(text="50") ) - setattr(cls, "52", - PermissibleValue(text="52") ) - setattr(cls, "15", - PermissibleValue(text="15") ) - setattr(cls, "10", - PermissibleValue(text="10") ) - setattr(cls, "00", - PermissibleValue(text="00") ) - setattr(cls, "01", - PermissibleValue(text="01") ) - setattr(cls, "21", - PermissibleValue(text="21") ) - setattr(cls, "20", - PermissibleValue(text="20") ) - setattr(cls, "62", - PermissibleValue(text="62") ) - setattr(cls, "40", - PermissibleValue(text="40") ) - setattr(cls, "64", - PermissibleValue(text="64") ) - setattr(cls, "81", - PermissibleValue(text="81") ) - setattr(cls, "41", - PermissibleValue(text="41") ) - setattr(cls, "Rhabdoid tumor (kidney) (RT)", - PermissibleValue(text="Rhabdoid tumor (kidney) (RT)") ) - setattr(cls, "Acute myeloid leukemia (AML)", - PermissibleValue(text="Acute myeloid leukemia (AML)") ) - setattr(cls, "Anal Cancer (all types)", - PermissibleValue(text="Anal Cancer (all types)") ) - setattr(cls, "Non cancerous tissue", - PermissibleValue(text="Non cancerous tissue") ) - setattr(cls, "CNS, low grade glioma (LGG)", - PermissibleValue(text="CNS, low grade glioma (LGG)") ) - setattr(cls, "Lung Cancer (all types)", - PermissibleValue(text="Lung Cancer (all types)") ) - setattr(cls, "CNS, ependymoma", - PermissibleValue(text="CNS, ependymoma") ) - setattr(cls, "Induction Failure AML (AML-IF)", - PermissibleValue(text="Induction Failure AML (AML-IF)") ) - setattr(cls, "Soft tissue sarcoma, non-rhabdomyosarcoma", - PermissibleValue(text="Soft tissue sarcoma, non-rhabdomyosarcoma") ) - setattr(cls, "NHL, Burkitt lymphoma (BL)", - PermissibleValue(text="NHL, Burkitt lymphoma (BL)") ) - setattr(cls, "Neuroblastoma (NBL)", - PermissibleValue(text="Neuroblastoma (NBL)") ) - setattr(cls, "Diffuse Large B-Cell Lymphoma (DLBCL)", - PermissibleValue(text="Diffuse Large B-Cell Lymphoma (DLBCL)") ) - setattr(cls, "Acute lymphoblastic leukemia (ALL)", - PermissibleValue(text="Acute lymphoblastic leukemia (ALL)") ) - setattr(cls, "CNS, rhabdoid tumor", - PermissibleValue(text="CNS, rhabdoid tumor") ) - setattr(cls, "CNS, medulloblastoma", - PermissibleValue(text="CNS, medulloblastoma") ) - setattr(cls, "Cervical Cancer (all types)", - PermissibleValue(text="Cervical Cancer (all types)") ) - setattr(cls, "NHL, anaplastic large cell lymphoma", - PermissibleValue(text="NHL, anaplastic large cell lymphoma") ) - setattr(cls, "Clear cell sarcoma of the kidney (CCSK)", - PermissibleValue(text="Clear cell sarcoma of the kidney (CCSK)") ) - setattr(cls, "CNS, glioblastoma (GBM)", - PermissibleValue(text="CNS, glioblastoma (GBM)") ) - setattr(cls, "Acute Leukemia of Ambiguous Lineage (ALAL)", - PermissibleValue(text="Acute Leukemia of Ambiguous Lineage (ALAL)") ) - setattr(cls, "CNS, other", - PermissibleValue(text="CNS, other") ) - setattr(cls, "Ewing sarcoma", - PermissibleValue(text="Ewing sarcoma") ) - setattr(cls, "Osteosarcoma (OS)", - PermissibleValue(text="Osteosarcoma (OS)") ) - setattr(cls, "Wilms tumor (WT)", - PermissibleValue(text="Wilms tumor (WT)") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenPreinvasiveTissueMorphology(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen preinvasive_tissue_morphology - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenPreinvasiveTissueMorphology", - description="Autogenerated Enumeration for CRDC-H Specimen preinvasive_tissue_morphology", - code_set=None, - code_set_version="2021-07-21T20:42:53.177421+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenMorphologyAssessorRole(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen morphology_assessor_role - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenMorphologyAssessorRole", - description="Autogenerated Enumeration for CRDC-H Specimen morphology_assessor_role", - code_set=None, - code_set_version="2021-07-21T20:42:53.324046+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenMorphlogyAssessmentMethod(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen morphlogy_assessment_method - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenMorphlogyAssessmentMethod", - description="Autogenerated Enumeration for CRDC-H Specimen morphlogy_assessment_method", - code_set=None, - code_set_version="2021-07-21T20:42:53.468214+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenDegreeOfDysplasia(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Specimen degree_of_dysplasia - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenDegreeOfDysplasia", - description="Autogenerated Enumeration for CRDC-H Specimen degree_of_dysplasia", - code_set=None, - code_set_version="2021-07-21T20:42:53.617095+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenSectionLocation(EnumDefinitionImpl): - """ - The location in a parent specimen from which a section/portion was excised. - """ - top = PermissibleValue(text="top", - description="The part of a specimen designated as its 'top' based on specified orientation criteria.") - unknown = PermissibleValue(text="unknown", - description="An unknown location on a specimen.") - bottom = PermissibleValue(text="bottom", - description="The part of a specimen designated as its 'bottom' based on specified orientation criteria.") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenSectionLocation", - description="The location in a parent specimen from which a section/portion was excised.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenContainerContainerType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H SpecimenContainer container_type - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenContainerContainerType", - description="Autogenerated Enumeration for CRDC-H SpecimenContainer container_type", - code_set=None, - code_set_version="2021-07-21T20:42:53.914816+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenCreationActivityActivityType(EnumDefinitionImpl): - """ - The high-level type of activity through which the specimen was generated (i.e. via collection from the original - source, or via derivation from an existing specimen) - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenCreationActivityActivityType", - description="The high-level type of activity through which the specimen was generated (i.e. via collection from the original source, or via derivation from an existing specimen)", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "collection from source", - PermissibleValue(text="collection from source", - description="An activity that collects an initial sample directly from a subject / source.") ) - setattr(cls, "derivation from specimen", - PermissibleValue(text="derivation from specimen", - description="An activity that derives a new specimen from an existing one.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenCreationActivityCollectionMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H SpecimenCreationActivity collection_method_type - """ - Yes = PermissibleValue(text="Yes") - No = PermissibleValue(text="No") - Oophorectomy = PermissibleValue(text="Oophorectomy") - Pneumonectomy = PermissibleValue(text="Pneumonectomy") - Lumpectomy = PermissibleValue(text="Lumpectomy") - Unknown = PermissibleValue(text="Unknown") - Pancreatectomy = PermissibleValue(text="Pancreatectomy") - Thoracentesis = PermissibleValue(text="Thoracentesis") - Salpingectomy = PermissibleValue(text="Salpingectomy") - Enucleation = PermissibleValue(text="Enucleation") - Aspirate = PermissibleValue(text="Aspirate") - Orchiectomy = PermissibleValue(text="Orchiectomy") - Autopsy = PermissibleValue(text="Autopsy") - Lymphadenectomy = PermissibleValue(text="Lymphadenectomy") - Lobectomy = PermissibleValue(text="Lobectomy") - Cystectomy = PermissibleValue(text="Cystectomy") - Transplant = PermissibleValue(text="Transplant") - Biopsy = PermissibleValue(text="Biopsy") - Paracentesis = PermissibleValue(text="Paracentesis") - Omentectomy = PermissibleValue(text="Omentectomy") - Indeterminant = PermissibleValue(text="Indeterminant") - Metastasectomy = PermissibleValue(text="Metastasectomy") - Other = PermissibleValue(text="Other") - Glossectomy = PermissibleValue(text="Glossectomy") - Mandibulectomy = PermissibleValue(text="Mandibulectomy") - Laryngopharyngectomy = PermissibleValue(text="Laryngopharyngectomy") - Tonsillectomy = PermissibleValue(text="Tonsillectomy") - Maxillectomy = PermissibleValue(text="Maxillectomy") - Palatectomy = PermissibleValue(text="Palatectomy") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenCreationActivityCollectionMethodType", - description="Autogenerated Enumeration for CRDC-H SpecimenCreationActivity collection_method_type", - code_set=None, - code_set_version="2021-07-21T20:42:54.229501+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Peritoneal Lavage", - PermissibleValue(text="Peritoneal Lavage") ) - setattr(cls, "Anterior Resection of Rectum", - PermissibleValue(text="Anterior Resection of Rectum") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Full Hysterectomy", - PermissibleValue(text="Full Hysterectomy") ) - setattr(cls, "Salpingo-oophorectomy", - PermissibleValue(text="Salpingo-oophorectomy") ) - setattr(cls, "Transurethral resection (TURBT)", - PermissibleValue(text="Transurethral resection (TURBT)") ) - setattr(cls, "Right Hemicolectomy", - PermissibleValue(text="Right Hemicolectomy") ) - setattr(cls, "Endoscopic Mucosal Resection (EMR)", - PermissibleValue(text="Endoscopic Mucosal Resection (EMR)") ) - setattr(cls, "Surgical Resection", - PermissibleValue(text="Surgical Resection") ) - setattr(cls, "Laparoscopic Partial Nephrectomy", - PermissibleValue(text="Laparoscopic Partial Nephrectomy") ) - setattr(cls, "Endo Rectal Tumor Resection", - PermissibleValue(text="Endo Rectal Tumor Resection") ) - setattr(cls, "Hand Assisted Laparoscopic Radical Nephrectomy", - PermissibleValue(text="Hand Assisted Laparoscopic Radical Nephrectomy") ) - setattr(cls, "Whipple Procedure", - PermissibleValue(text="Whipple Procedure") ) - setattr(cls, "Bone Marrow Aspirate", - PermissibleValue(text="Bone Marrow Aspirate") ) - setattr(cls, "Core Biopsy", - PermissibleValue(text="Core Biopsy") ) - setattr(cls, "Laparoscopic Biopsy", - PermissibleValue(text="Laparoscopic Biopsy") ) - setattr(cls, "Radical Hysterectomy", - PermissibleValue(text="Radical Hysterectomy") ) - setattr(cls, "Punch Biopsy", - PermissibleValue(text="Punch Biopsy") ) - setattr(cls, "Left Hemicolectomy", - PermissibleValue(text="Left Hemicolectomy") ) - setattr(cls, "Simple Mastectomy", - PermissibleValue(text="Simple Mastectomy") ) - setattr(cls, "Total Hepatectomy", - PermissibleValue(text="Total Hepatectomy") ) - setattr(cls, "Incisional Biopsy", - PermissibleValue(text="Incisional Biopsy") ) - setattr(cls, "Blood Draw", - PermissibleValue(text="Blood Draw") ) - setattr(cls, "Pan-Procto Colectomy", - PermissibleValue(text="Pan-Procto Colectomy") ) - setattr(cls, "Laparoscopic Radical Prostatectomy with Robotics", - PermissibleValue(text="Laparoscopic Radical Prostatectomy with Robotics") ) - setattr(cls, "Not Allowed To Collect", - PermissibleValue(text="Not Allowed To Collect") ) - setattr(cls, "Supracervical Hysterectomy", - PermissibleValue(text="Supracervical Hysterectomy") ) - setattr(cls, "Ascites Drainage", - PermissibleValue(text="Ascites Drainage") ) - setattr(cls, "Sigmoid Colectomy", - PermissibleValue(text="Sigmoid Colectomy") ) - setattr(cls, "Tumor Resection", - PermissibleValue(text="Tumor Resection") ) - setattr(cls, "Hysterectomy NOS", - PermissibleValue(text="Hysterectomy NOS") ) - setattr(cls, "Total Mastectomy", - PermissibleValue(text="Total Mastectomy") ) - setattr(cls, "Needle Biopsy", - PermissibleValue(text="Needle Biopsy") ) - setattr(cls, "Laparoscopic Radical Prostatectomy without Robotics", - PermissibleValue(text="Laparoscopic Radical Prostatectomy without Robotics") ) - setattr(cls, "Fine Needle Aspiration", - PermissibleValue(text="Fine Needle Aspiration") ) - setattr(cls, "Subtotal Resection", - PermissibleValue(text="Subtotal Resection") ) - setattr(cls, "Modified Radical Mastectomy", - PermissibleValue(text="Modified Radical Mastectomy") ) - setattr(cls, "Tumor Debulking", - PermissibleValue(text="Tumor Debulking") ) - setattr(cls, "Partial Hepatectomy", - PermissibleValue(text="Partial Hepatectomy") ) - setattr(cls, "Wedge Resection", - PermissibleValue(text="Wedge Resection") ) - setattr(cls, "Open Radical Nephrectomy", - PermissibleValue(text="Open Radical Nephrectomy") ) - setattr(cls, "Laparoscopic Radical Nephrectomy", - PermissibleValue(text="Laparoscopic Radical Nephrectomy") ) - setattr(cls, "Simple Hysterectomy", - PermissibleValue(text="Simple Hysterectomy") ) - setattr(cls, "Total Colectomy", - PermissibleValue(text="Total Colectomy") ) - setattr(cls, "Open Partial Nephrectomy", - PermissibleValue(text="Open Partial Nephrectomy") ) - setattr(cls, "Open Craniotomy", - PermissibleValue(text="Open Craniotomy") ) - setattr(cls, "Thoracoscopic Biopsy", - PermissibleValue(text="Thoracoscopic Biopsy") ) - setattr(cls, "Liquid Biopsy", - PermissibleValue(text="Liquid Biopsy") ) - setattr(cls, "Abdomino-perineal Resection of Rectum", - PermissibleValue(text="Abdomino-perineal Resection of Rectum") ) - setattr(cls, "Endoscopic Biopsy", - PermissibleValue(text="Endoscopic Biopsy") ) - setattr(cls, "Transverse Colectomy", - PermissibleValue(text="Transverse Colectomy") ) - setattr(cls, "Open Radical Prostatectomy", - PermissibleValue(text="Open Radical Prostatectomy") ) - setattr(cls, "Excisional Biopsy", - PermissibleValue(text="Excisional Biopsy") ) - setattr(cls, "Other Surgical Resection", - PermissibleValue(text="Other Surgical Resection") ) - setattr(cls, "Local Resection (Exoresection; wall resection)", - PermissibleValue(text="Local Resection (Exoresection; wall resection)") ) - setattr(cls, "Gross Total Resection", - PermissibleValue(text="Gross Total Resection") ) - setattr(cls, "Lymph Node Dissection", - PermissibleValue(text="Lymph Node Dissection") ) - setattr(cls, "Total Nephrectomy", - PermissibleValue(text="Total Nephrectomy") ) - setattr(cls, "Parotidectomy, NOS", - PermissibleValue(text="Parotidectomy, NOS") ) - setattr(cls, "Partial Maxillectomy", - PermissibleValue(text="Partial Maxillectomy") ) - setattr(cls, "Partial Nephrectomy", - PermissibleValue(text="Partial Nephrectomy") ) - setattr(cls, "Buccal Mucosal Resection", - PermissibleValue(text="Buccal Mucosal Resection") ) - setattr(cls, "Total Laryngectomy", - PermissibleValue(text="Total Laryngectomy") ) - setattr(cls, "Radical Nephrectomy", - PermissibleValue(text="Radical Nephrectomy") ) - setattr(cls, "Subtotal Prostatectomy", - PermissibleValue(text="Subtotal Prostatectomy") ) - setattr(cls, "Transurethral Resection (TURP)", - PermissibleValue(text="Transurethral Resection (TURP)") ) - setattr(cls, "Endolaryngeal Excision", - PermissibleValue(text="Endolaryngeal Excision") ) - setattr(cls, "Supracricoid Laryngectomy", - PermissibleValue(text="Supracricoid Laryngectomy") ) - setattr(cls, "Radical Maxillectomy", - PermissibleValue(text="Radical Maxillectomy") ) - setattr(cls, "Superficial Parotidectomy", - PermissibleValue(text="Superficial Parotidectomy") ) - setattr(cls, "Deep Parotidectomy", - PermissibleValue(text="Deep Parotidectomy") ) - setattr(cls, "Supraglottic Laryngectomy", - PermissibleValue(text="Supraglottic Laryngectomy") ) - setattr(cls, "Radical Prostatectomy", - PermissibleValue(text="Radical Prostatectomy") ) - setattr(cls, "Partial Laryngectomy", - PermissibleValue(text="Partial Laryngectomy") ) - setattr(cls, "Vertical Hemilaryngectomy", - PermissibleValue(text="Vertical Hemilaryngectomy") ) - setattr(cls, "Transoral Laser Excision", - PermissibleValue(text="Transoral Laser Excision") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenCreationActivityDerivationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H SpecimenCreationActivity derivation_method_type - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenCreationActivityDerivationMethodType", - description="Autogenerated Enumeration for CRDC-H SpecimenCreationActivity derivation_method_type", - code_set=None, - code_set_version="2021-07-21T20:42:54.438739+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenQualityObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H SpecimenQualityObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenQualityObservationCategory", - description="Autogenerated Enumeration for CRDC-H SpecimenQualityObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:54.588980+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenQualityObservationObservationType(EnumDefinitionImpl): - """ - Types of measurements that reflect the quality of a specimen or its suitability for use. - """ - ribosomal_rna_28s_16s_ratio = PermissibleValue(text="ribosomal_rna_28s_16s_ratio", - description="Ratio of quantity of 28s RNA over that of 16s RNA.") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenQualityObservationObservationType", - description="Types of measurements that reflect the quality of a specimen or its suitability for use.", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "a260_a280_ratio ", - PermissibleValue(text="a260_a280_ratio ", - description="Ratio of absorbance measured at a wavelength of 260 over that at a wavelength of 280.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenQualityObservationMethodType(EnumDefinitionImpl): - """ - A type of method used in determining the quantity of a specimen. - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenQualityObservationMethodType", - description="A type of method used in determining the quantity of a specimen.", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "UV Spec", - PermissibleValue(text="UV Spec", - description="A technique used to measure light absorbance across the ultraviolet and visible ranges of the electromagnetic spectrum.") ) - setattr(cls, "Pico Green", - PermissibleValue(text="Pico Green", - description="A technique applying the Pico488 fluorescent sensor dye that is used for quantifying the amount of double-stranded DNA (dsDNA) present in a given sample.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenQuantityObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H SpecimenQuantityObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenQuantityObservationCategory", - description="Autogenerated Enumeration for CRDC-H SpecimenQuantityObservation category", - code_set=None, - code_set_version="2021-07-21T20:42:55.034186+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenQuantityObservationObservationType(EnumDefinitionImpl): - """ - Measures related to the quantity of a specimen or analyte it currently contains - e.g. its weight, volume, or - concentration. - """ - weight = PermissibleValue(text="weight", - description="The current weight of the specimen, at the time of recording (as opposed to an initial weight before its processing or portioning).") - volume = PermissibleValue(text="volume", - description="The current total volume of the specimen, at the time of recording.") - concentration = PermissibleValue(text="concentration", - description="The concentration of an extracted analyte that is present in a specimen (specifically, in a specimen of type 'analyte', or an 'aliquot' derived from an analyte). For example, the concentration of DNA in a specimen created through extracting DNA from a blood sample.") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenQuantityObservationObservationType", - description="Measures related to the quantity of a specimen or analyte it currently contains - e.g. its weight, volume, or concentration.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenQuantityObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H SpecimenQuantityObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenQuantityObservationMethodType", - description="Autogenerated Enumeration for CRDC-H SpecimenQuantityObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:42:55.322096+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenProcessingActivityActivityType(EnumDefinitionImpl): - """ - The high-level type of processing activity performed. - """ - Fixation = PermissibleValue(text="Fixation", - description="A processing activity that applies chemicals to preserve biological tissues from decay due to autolysis or putrefaction") - Freezing = PermissibleValue(text="Freezing", - description="A processing activity that aims to freeze a specimen.") - Mounting = PermissibleValue(text="Mounting", - description="A processing activity that aims to secure a specimen or slide in place in preparation for further examination (usually via microscopy)") - Preservation = PermissibleValue(text="Preservation", - description="A processing activity that aims to preserve a specimen.") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenProcessingActivityActivityType", - description="The high-level type of processing activity performed.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenProcessingActivityMethodType(EnumDefinitionImpl): - """ - A type of method used to process a specimen (e.g. freezing, fixing, treating, preserving, labeling, etc.). - """ - LN2 = PermissibleValue(text="LN2", - description="Freezing in liquid nitrogen.") - isopentane = PermissibleValue(text="isopentane", - description="Freezing in isopentane.") - - _defn = EnumDefinition( - name="EnumCCDHSpecimenProcessingActivityMethodType", - description="A type of method used to process a specimen (e.g. freezing, fixing, treating, preserving, labeling, etc.).", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "-80", - PermissibleValue(text="-80", - description="Freezing at -80 degrees celcius") ) - setattr(cls, "-20", - PermissibleValue(text="-20", - description="Freezing at -20 degrees celcius") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSpecimenStorageActivityMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H SpecimenStorageActivity method_type - """ - _defn = EnumDefinition( - name="EnumCCDHSpecimenStorageActivityMethodType", - description="Autogenerated Enumeration for CRDC-H SpecimenStorageActivity method_type", - code_set=None, - code_set_version="2021-07-21T20:42:55.781350+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubjectSpecies(EnumDefinitionImpl): - """ - The scientific binomial name for the species of the subject - """ - _defn = EnumDefinition( - name="EnumCCDHSubjectSpecies", - description="The scientific binomial name for the species of the subject", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Homo sapiens", - PermissibleValue(text="Homo sapiens") ) - setattr(cls, "Canis familiaris", - PermissibleValue(text="Canis familiaris") ) - setattr(cls, "Mus musculus", - PermissibleValue(text="Mus musculus") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubjectBreed(EnumDefinitionImpl): - """ - A label given to a group of animals homogeneous in appearance and other characteristics that distinguish it from - other animals of the same species. - """ - Akita = PermissibleValue(text="Akita") - Beagle = PermissibleValue(text="Beagle") - Boxer = PermissibleValue(text="Boxer") - Bulldog = PermissibleValue(text="Bulldog") - Bullmastiff = PermissibleValue(text="Bullmastiff") - Chihuahua = PermissibleValue(text="Chihuahua") - Dalmatian = PermissibleValue(text="Dalmatian") - Greyhound = PermissibleValue(text="Greyhound") - Mastiff = PermissibleValue(text="Mastiff") - Poodle = PermissibleValue(text="Poodle") - Rottweiler = PermissibleValue(text="Rottweiler") - Samoyed = PermissibleValue(text="Samoyed") - Vizsla = PermissibleValue(text="Vizsla") - Weimaraner = PermissibleValue(text="Weimaraner") - - _defn = EnumDefinition( - name="EnumCCDHSubjectBreed", - description="A label given to a group of animals homogeneous in appearance and other characteristics that distinguish it from other animals of the same species.", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "American Staffordshire Terrier", - PermissibleValue(text="American Staffordshire Terrier") ) - setattr(cls, "Australian Shepherd", - PermissibleValue(text="Australian Shepherd") ) - setattr(cls, "Basset Hound", - PermissibleValue(text="Basset Hound") ) - setattr(cls, "Belgian Malinois", - PermissibleValue(text="Belgian Malinois") ) - setattr(cls, "Bernese Mountain Dog", - PermissibleValue(text="Bernese Mountain Dog") ) - setattr(cls, "Black and Tan Coonhound", - PermissibleValue(text="Black and Tan Coonhound") ) - setattr(cls, "Border Collie", - PermissibleValue(text="Border Collie") ) - setattr(cls, "Boston Terrier", - PermissibleValue(text="Boston Terrier") ) - setattr(cls, "Bouvier des Flandres", - PermissibleValue(text="Bouvier des Flandres") ) - setattr(cls, "Cavalier King Charles Spaniel", - PermissibleValue(text="Cavalier King Charles Spaniel") ) - setattr(cls, "Chesapeake Bay Retriever", - PermissibleValue(text="Chesapeake Bay Retriever") ) - setattr(cls, "Chinese Shar-Pei", - PermissibleValue(text="Chinese Shar-Pei") ) - setattr(cls, "Cocker Spaniel", - PermissibleValue(text="Cocker Spaniel") ) - setattr(cls, "Doberman Pinscher", - PermissibleValue(text="Doberman Pinscher") ) - setattr(cls, "English Setter", - PermissibleValue(text="English Setter") ) - setattr(cls, "Flat-Coated Retriever", - PermissibleValue(text="Flat-Coated Retriever") ) - setattr(cls, "French Bulldog", - PermissibleValue(text="French Bulldog") ) - setattr(cls, "German Shepherd Dog", - PermissibleValue(text="German Shepherd Dog") ) - setattr(cls, "German Shorthaired Pointer", - PermissibleValue(text="German Shorthaired Pointer") ) - setattr(cls, "Giant Schnauzer", - PermissibleValue(text="Giant Schnauzer") ) - setattr(cls, "Golden Retriever", - PermissibleValue(text="Golden Retriever") ) - setattr(cls, "Gordon Setter", - PermissibleValue(text="Gordon Setter") ) - setattr(cls, "Irish Setter", - PermissibleValue(text="Irish Setter") ) - setattr(cls, "Irish Wolfhound", - PermissibleValue(text="Irish Wolfhound") ) - setattr(cls, "Labrador Retriever", - PermissibleValue(text="Labrador Retriever") ) - setattr(cls, "Miniature Schnauzer", - PermissibleValue(text="Miniature Schnauzer") ) - setattr(cls, "Mixed Breed", - PermissibleValue(text="Mixed Breed") ) - setattr(cls, "Parson Russell Terrier", - PermissibleValue(text="Parson Russell Terrier") ) - setattr(cls, "Saint Bernard", - PermissibleValue(text="Saint Bernard") ) - setattr(cls, "Shih Tzu", - PermissibleValue(text="Shih Tzu") ) - setattr(cls, "Staffordshire Bull Terrier", - PermissibleValue(text="Staffordshire Bull Terrier") ) - setattr(cls, "West Highland White Terrier", - PermissibleValue(text="West Highland White Terrier") ) - setattr(cls, "Yorkshire Terrier", - PermissibleValue(text="Yorkshire Terrier") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubjectSex(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Subject sex - """ - unknown = PermissibleValue(text="unknown") - female = PermissibleValue(text="female") - male = PermissibleValue(text="male") - unspecified = PermissibleValue(text="unspecified") - - _defn = EnumDefinition( - name="EnumCCDHSubjectSex", - description="Autogenerated Enumeration for CRDC-H Subject sex", - code_set=None, - code_set_version="2021-07-21T20:42:56.231870+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "not reported", - PermissibleValue(text="not reported") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubjectEthnicity(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Subject ethnicity - """ - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - unknown = PermissibleValue(text="unknown") - - _defn = EnumDefinition( - name="EnumCCDHSubjectEthnicity", - description="Autogenerated Enumeration for CRDC-H Subject ethnicity", - code_set=None, - code_set_version="2021-07-21T20:42:56.385284+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "not hispanic or latino", - PermissibleValue(text="not hispanic or latino") ) - setattr(cls, "hispanic or latino", - PermissibleValue(text="hispanic or latino") ) - setattr(cls, "not reported", - PermissibleValue(text="not reported") ) - setattr(cls, "not allowed to collect", - PermissibleValue(text="not allowed to collect") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubjectRace(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Subject race - """ - unknown = PermissibleValue(text="unknown") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - white = PermissibleValue(text="white") - asian = PermissibleValue(text="asian") - other = PermissibleValue(text="other") - - _defn = EnumDefinition( - name="EnumCCDHSubjectRace", - description="Autogenerated Enumeration for CRDC-H Subject race", - code_set=None, - code_set_version="2021-07-21T20:42:56.535704+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "not allowed to collect", - PermissibleValue(text="not allowed to collect") ) - setattr(cls, "not reported", - PermissibleValue(text="not reported") ) - setattr(cls, "native hawaiian or other pacific islander", - PermissibleValue(text="native hawaiian or other pacific islander") ) - setattr(cls, "american indian or alaska native", - PermissibleValue(text="american indian or alaska native") ) - setattr(cls, "black or african american", - PermissibleValue(text="black or african american") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubjectVitalStatus(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Subject vital_status - """ - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - Dead = PermissibleValue(text="Dead", - description="DEAD") - Alive = PermissibleValue(text="Alive", - description="ALIVE") - - _defn = EnumDefinition( - name="EnumCCDHSubjectVitalStatus", - description="Autogenerated Enumeration for CRDC-H Subject vital_status", - code_set=None, - code_set_version="2021-07-21T20:42:56.692309+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported", - description="Not Reported") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubjectCauseOfDeath(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Subject cause_of_death - """ - Infection = PermissibleValue(text="Infection", - description="Infection") - Toxicity = PermissibleValue(text="Toxicity", - description="Toxicity") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - - _defn = EnumDefinition( - name="EnumCCDHSubjectCauseOfDeath", - description="Autogenerated Enumeration for CRDC-H Subject cause_of_death", - code_set=None, - code_set_version="2021-07-21T20:42:56.857477+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported", - description="Not Reported") ) - setattr(cls, "Surgical Complications", - PermissibleValue(text="Surgical Complications", - description="Surgical Procedure Complication") ) - setattr(cls, "Not Cancer Related", - PermissibleValue(text="Not Cancer Related") ) - setattr(cls, "End-stage Renal Disease", - PermissibleValue(text="End-stage Renal Disease", - description="Chronic Kidney Disease, Stage 5") ) - setattr(cls, "Spinal Muscular Atrophy", - PermissibleValue(text="Spinal Muscular Atrophy", - description="Spinal Muscular Atrophy") ) - setattr(cls, "Renal Disorder, NOS", - PermissibleValue(text="Renal Disorder, NOS", - description="Renal Disorder, NOS") ) - setattr(cls, "Cardiovascular Disorder, NOS", - PermissibleValue(text="Cardiovascular Disorder, NOS", - description="Cardiovascular Disorder, NOS") ) - setattr(cls, "Cancer Related", - PermissibleValue(text="Cancer Related") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubstanceSubstanceType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Substance substance_type - """ - Zotatifin = PermissibleValue(text="Zotatifin") - Mitoflaxone = PermissibleValue(text="Mitoflaxone") - Pasireotide = PermissibleValue(text="Pasireotide") - Alofanib = PermissibleValue(text="Alofanib") - Levothyroxine = PermissibleValue(text="Levothyroxine") - Epipropidine = PermissibleValue(text="Epipropidine") - Navoximod = PermissibleValue(text="Navoximod") - Infliximab = PermissibleValue(text="Infliximab") - Toremifene = PermissibleValue(text="Toremifene") - Onvatilimab = PermissibleValue(text="Onvatilimab") - Tenalisib = PermissibleValue(text="Tenalisib") - Imaradenant = PermissibleValue(text="Imaradenant") - Nilotinib = PermissibleValue(text="Nilotinib") - Sobuzoxane = PermissibleValue(text="Sobuzoxane") - Safingol = PermissibleValue(text="Safingol") - Onartuzumab = PermissibleValue(text="Onartuzumab") - Ipilimumab = PermissibleValue(text="Ipilimumab") - Hydroxychloroquine = PermissibleValue(text="Hydroxychloroquine") - Spongistatin = PermissibleValue(text="Spongistatin") - Bemcentinib = PermissibleValue(text="Bemcentinib") - Ipafricept = PermissibleValue(text="Ipafricept") - Acridine = PermissibleValue(text="Acridine") - Brentuximab = PermissibleValue(text="Brentuximab") - Retelliptine = PermissibleValue(text="Retelliptine") - Zorubicin = PermissibleValue(text="Zorubicin") - Lurtotecan = PermissibleValue(text="Lurtotecan") - Pirfenidone = PermissibleValue(text="Pirfenidone") - Bicalutamide = PermissibleValue(text="Bicalutamide") - Bortezomib = PermissibleValue(text="Bortezomib") - Oxaliplatin = PermissibleValue(text="Oxaliplatin") - Detorubicin = PermissibleValue(text="Detorubicin") - Alemtuzumab = PermissibleValue(text="Alemtuzumab") - Pentoxifylline = PermissibleValue(text="Pentoxifylline") - Mezagitamab = PermissibleValue(text="Mezagitamab") - Tubercidin = PermissibleValue(text="Tubercidin") - Dacarbazine = PermissibleValue(text="Dacarbazine") - Sizofiran = PermissibleValue(text="Sizofiran") - Fianlimab = PermissibleValue(text="Fianlimab") - Oxidopamine = PermissibleValue(text="Oxidopamine") - Plitidepsin = PermissibleValue(text="Plitidepsin") - Ametantrone = PermissibleValue(text="Ametantrone") - Enasidenib = PermissibleValue(text="Enasidenib") - Intetumumab = PermissibleValue(text="Intetumumab") - Chiauranib = PermissibleValue(text="Chiauranib") - Thalidomide = PermissibleValue(text="Thalidomide") - Mafosfamide = PermissibleValue(text="Mafosfamide") - Acodazole = PermissibleValue(text="Acodazole") - Genistein = PermissibleValue(text="Genistein") - Sulofenur = PermissibleValue(text="Sulofenur") - Paclitaxel = PermissibleValue(text="Paclitaxel") - Afatinib = PermissibleValue(text="Afatinib") - Tivantinib = PermissibleValue(text="Tivantinib") - Pinometostat = PermissibleValue(text="Pinometostat") - Samuraciclib = PermissibleValue(text="Samuraciclib") - Ianalumab = PermissibleValue(text="Ianalumab") - Crenolanib = PermissibleValue(text="Crenolanib") - Verubulin = PermissibleValue(text="Verubulin") - Chlorodihydropyrimidine = PermissibleValue(text="Chlorodihydropyrimidine") - Delanzomib = PermissibleValue(text="Delanzomib") - Tomaralimab = PermissibleValue(text="Tomaralimab") - Cactinomycin = PermissibleValue(text="Cactinomycin") - Azathioprine = PermissibleValue(text="Azathioprine") - Serplulimab = PermissibleValue(text="Serplulimab") - Cimetidine = PermissibleValue(text="Cimetidine") - Cedazuridine = PermissibleValue(text="Cedazuridine") - Tilogotamab = PermissibleValue(text="Tilogotamab") - Spirogermanium = PermissibleValue(text="Spirogermanium") - Prednisolone = PermissibleValue(text="Prednisolone") - Tenifatecan = PermissibleValue(text="Tenifatecan") - Siltuximab = PermissibleValue(text="Siltuximab") - Pimasertib = PermissibleValue(text="Pimasertib") - Fenebrutinib = PermissibleValue(text="Fenebrutinib") - Digitoxin = PermissibleValue(text="Digitoxin") - Rindopepimut = PermissibleValue(text="Rindopepimut") - Triptorelin = PermissibleValue(text="Triptorelin") - Lintuzumab = PermissibleValue(text="Lintuzumab") - Roniciclib = PermissibleValue(text="Roniciclib") - Pexmetinib = PermissibleValue(text="Pexmetinib") - Ispinesib = PermissibleValue(text="Ispinesib") - Dexamethason = PermissibleValue(text="Dexamethason") - Monalizumab = PermissibleValue(text="Monalizumab") - Selinexor = PermissibleValue(text="Selinexor") - Budigalimab = PermissibleValue(text="Budigalimab") - Annamycin = PermissibleValue(text="Annamycin") - Enavatuzumab = PermissibleValue(text="Enavatuzumab") - Ensituximab = PermissibleValue(text="Ensituximab") - Emapalumab = PermissibleValue(text="Emapalumab") - Canfosfamide = PermissibleValue(text="Canfosfamide") - Zalutumumab = PermissibleValue(text="Zalutumumab") - Filanesib = PermissibleValue(text="Filanesib") - Marizomib = PermissibleValue(text="Marizomib") - Bufalin = PermissibleValue(text="Bufalin") - Cladribine = PermissibleValue(text="Cladribine") - Azimexon = PermissibleValue(text="Azimexon") - Streptozocin = PermissibleValue(text="Streptozocin") - Oltipraz = PermissibleValue(text="Oltipraz") - Tetrahydrouridine = PermissibleValue(text="Tetrahydrouridine") - Telratolimod = PermissibleValue(text="Telratolimod") - Sirolimus = PermissibleValue(text="Sirolimus") - Icrucumab = PermissibleValue(text="Icrucumab") - Ifabotuzumab = PermissibleValue(text="Ifabotuzumab") - Glofitamab = PermissibleValue(text="Glofitamab") - Tasisulam = PermissibleValue(text="Tasisulam") - Bafetinib = PermissibleValue(text="Bafetinib") - Urabrelimab = PermissibleValue(text="Urabrelimab") - Puquitinib = PermissibleValue(text="Puquitinib") - Sabarubicin = PermissibleValue(text="Sabarubicin") - Navarixin = PermissibleValue(text="Navarixin") - Parsaclisib = PermissibleValue(text="Parsaclisib") - Ulocuplumab = PermissibleValue(text="Ulocuplumab") - Roflumilast = PermissibleValue(text="Roflumilast") - Selonsertib = PermissibleValue(text="Selonsertib") - Chlorambucil = PermissibleValue(text="Chlorambucil") - Teclistamab = PermissibleValue(text="Teclistamab") - Pioglitazone = PermissibleValue(text="Pioglitazone") - Rigosertib = PermissibleValue(text="Rigosertib") - Zalcitabine = PermissibleValue(text="Zalcitabine") - Chlorotoxin = PermissibleValue(text="Chlorotoxin") - Bexmarilimab = PermissibleValue(text="Bexmarilimab") - Darleukin = PermissibleValue(text="Darleukin") - Pelareorep = PermissibleValue(text="Pelareorep") - Banoxantrone = PermissibleValue(text="Banoxantrone") - Kanglaite = PermissibleValue(text="Kanglaite") - Lontucirev = PermissibleValue(text="Lontucirev") - Samalizumab = PermissibleValue(text="Samalizumab") - Apomine = PermissibleValue(text="Apomine") - Saracatinib = PermissibleValue(text="Saracatinib") - Tasquinimod = PermissibleValue(text="Tasquinimod") - Belinostat = PermissibleValue(text="Belinostat") - Methylselenocysteine = PermissibleValue(text="Methylselenocysteine") - Tositumomab = PermissibleValue(text="Tositumomab") - Serdemetan = PermissibleValue(text="Serdemetan") - Tipifarnib = PermissibleValue(text="Tipifarnib") - Tarenflurbil = PermissibleValue(text="Tarenflurbil") - Venetoclax = PermissibleValue(text="Venetoclax") - Melphalan = PermissibleValue(text="Melphalan") - Darolutamide = PermissibleValue(text="Darolutamide") - Zanolimumab = PermissibleValue(text="Zanolimumab") - Ganitumab = PermissibleValue(text="Ganitumab") - Vedolizumab = PermissibleValue(text="Vedolizumab") - PCNU = PermissibleValue(text="PCNU") - Elagolix = PermissibleValue(text="Elagolix") - Vinfosiltine = PermissibleValue(text="Vinfosiltine") - Doxifluridine = PermissibleValue(text="Doxifluridine") - Mifamurtide = PermissibleValue(text="Mifamurtide") - Leurubicin = PermissibleValue(text="Leurubicin") - Tesevatinib = PermissibleValue(text="Tesevatinib") - Clivatuzumab = PermissibleValue(text="Clivatuzumab") - Hycanthone = PermissibleValue(text="Hycanthone") - Epirubicin = PermissibleValue(text="Epirubicin") - Budotitane = PermissibleValue(text="Budotitane") - Fluoxymesterone = PermissibleValue(text="Fluoxymesterone") - Revdofilimab = PermissibleValue(text="Revdofilimab") - Capecitabine = PermissibleValue(text="Capecitabine") - Vorinostat = PermissibleValue(text="Vorinostat") - Pseudoisocytidine = PermissibleValue(text="Pseudoisocytidine") - Dactinomycin = PermissibleValue(text="Dactinomycin") - Puromycin = PermissibleValue(text="Puromycin") - Rodorubicin = PermissibleValue(text="Rodorubicin") - Pralatrexate = PermissibleValue(text="Pralatrexate") - Erdafitinib = PermissibleValue(text="Erdafitinib") - Copanlisib = PermissibleValue(text="Copanlisib") - Teprotumumab = PermissibleValue(text="Teprotumumab") - Prinomastat = PermissibleValue(text="Prinomastat") - Vulinacimab = PermissibleValue(text="Vulinacimab") - Zandelisib = PermissibleValue(text="Zandelisib") - Peptichemio = PermissibleValue(text="Peptichemio") - Trigriluzole = PermissibleValue(text="Trigriluzole") - Radgocitabine = PermissibleValue(text="Radgocitabine") - Ionomycin = PermissibleValue(text="Ionomycin") - Fisogatinib = PermissibleValue(text="Fisogatinib") - Triethylenemelamine = PermissibleValue(text="Triethylenemelamine") - Spiromustine = PermissibleValue(text="Spiromustine") - Ivosidenib = PermissibleValue(text="Ivosidenib") - Mivebresib = PermissibleValue(text="Mivebresib") - Daratumumab = PermissibleValue(text="Daratumumab") - Vibecotamab = PermissibleValue(text="Vibecotamab") - Paricalcitol = PermissibleValue(text="Paricalcitol") - Mosedipimod = PermissibleValue(text="Mosedipimod") - Cyclophosphamide = PermissibleValue(text="Cyclophosphamide") - Asaley = PermissibleValue(text="Asaley") - Nortopixantrone = PermissibleValue(text="Nortopixantrone") - Bevacizumab = PermissibleValue(text="Bevacizumab") - Luminespib = PermissibleValue(text="Luminespib") - Pibrozelesin = PermissibleValue(text="Pibrozelesin") - Leucovorin = PermissibleValue(text="Leucovorin") - Pibenzimol = PermissibleValue(text="Pibenzimol") - Modotuximab = PermissibleValue(text="Modotuximab") - Etoglucid = PermissibleValue(text="Etoglucid") - Trebananib = PermissibleValue(text="Trebananib") - Bendamustine = PermissibleValue(text="Bendamustine") - Zibotentan = PermissibleValue(text="Zibotentan") - Omipalisib = PermissibleValue(text="Omipalisib") - Dinutuximab = PermissibleValue(text="Dinutuximab") - Citarinostat = PermissibleValue(text="Citarinostat") - Triaziquone = PermissibleValue(text="Triaziquone") - Camptothecin = PermissibleValue(text="Camptothecin") - Galiximab = PermissibleValue(text="Galiximab") - Carbetimer = PermissibleValue(text="Carbetimer") - Iniparib = PermissibleValue(text="Iniparib") - Talampanel = PermissibleValue(text="Talampanel") - Rubitecan = PermissibleValue(text="Rubitecan") - Gedatolisib = PermissibleValue(text="Gedatolisib") - Matuzumab = PermissibleValue(text="Matuzumab") - Cixutumumab = PermissibleValue(text="Cixutumumab") - Atiprimod = PermissibleValue(text="Atiprimod") - Belvarafenib = PermissibleValue(text="Belvarafenib") - Duvortuxizumab = PermissibleValue(text="Duvortuxizumab") - Dimethylmyleran = PermissibleValue(text="Dimethylmyleran") - Degarelix = PermissibleValue(text="Degarelix") - Alitretinoin = PermissibleValue(text="Alitretinoin") - Namodenoson = PermissibleValue(text="Namodenoson") - Morpholinodoxorubicin = PermissibleValue(text="Morpholinodoxorubicin") - Irofulven = PermissibleValue(text="Irofulven") - Famitinib = PermissibleValue(text="Famitinib") - Abarelix = PermissibleValue(text="Abarelix") - Fazarabine = PermissibleValue(text="Fazarabine") - Ontorpacept = PermissibleValue(text="Ontorpacept") - Itraconazole = PermissibleValue(text="Itraconazole") - Maytansine = PermissibleValue(text="Maytansine") - Treosulfan = PermissibleValue(text="Treosulfan") - Ragifilimab = PermissibleValue(text="Ragifilimab") - Spartalizumab = PermissibleValue(text="Spartalizumab") - Pepinemab = PermissibleValue(text="Pepinemab") - Andrographolide = PermissibleValue(text="Andrographolide") - Fedratinib = PermissibleValue(text="Fedratinib") - Amifostine = PermissibleValue(text="Amifostine") - Mobocertinib = PermissibleValue(text="Mobocertinib") - Perfosfamide = PermissibleValue(text="Perfosfamide") - Upifitamab = PermissibleValue(text="Upifitamab") - Padeliporfin = PermissibleValue(text="Padeliporfin") - Cancell = PermissibleValue(text="Cancell") - Milataxel = PermissibleValue(text="Milataxel") - Cemiplimab = PermissibleValue(text="Cemiplimab") - Cabiralizumab = PermissibleValue(text="Cabiralizumab") - Chlorozotocin = PermissibleValue(text="Chlorozotocin") - Pegaspargase = PermissibleValue(text="Pegaspargase") - Taurolidine = PermissibleValue(text="Taurolidine") - Seviteronel = PermissibleValue(text="Seviteronel") - Fluorouracil = PermissibleValue(text="Fluorouracil") - Amrubicin = PermissibleValue(text="Amrubicin") - Scopoletin = PermissibleValue(text="Scopoletin") - Neratinib = PermissibleValue(text="Neratinib") - Remetinostat = PermissibleValue(text="Remetinostat") - Cisplatin = PermissibleValue(text="Cisplatin") - Gossypol = PermissibleValue(text="Gossypol") - Curcumin = PermissibleValue(text="Curcumin") - Rituximab = PermissibleValue(text="Rituximab") - Domatinostat = PermissibleValue(text="Domatinostat") - Motesanib = PermissibleValue(text="Motesanib") - Bisthianostat = PermissibleValue(text="Bisthianostat") - Prolgolimab = PermissibleValue(text="Prolgolimab") - Litronesib = PermissibleValue(text="Litronesib") - Paxalisib = PermissibleValue(text="Paxalisib") - Levetiracetam = PermissibleValue(text="Levetiracetam") - Cenisertib = PermissibleValue(text="Cenisertib") - Ieramilimab = PermissibleValue(text="Ieramilimab") - Tezacitabine = PermissibleValue(text="Tezacitabine") - Numidargistat = PermissibleValue(text="Numidargistat") - Lerociclib = PermissibleValue(text="Lerociclib") - Deuteporfin = PermissibleValue(text="Deuteporfin") - Etoricoxib = PermissibleValue(text="Etoricoxib") - Uroacitides = PermissibleValue(text="Uroacitides") - Danusertib = PermissibleValue(text="Danusertib") - Clioquinol = PermissibleValue(text="Clioquinol") - Arcitumomab = PermissibleValue(text="Arcitumomab") - Abagovomab = PermissibleValue(text="Abagovomab") - Pilaralisib = PermissibleValue(text="Pilaralisib") - Alpelisib = PermissibleValue(text="Alpelisib") - Demecolcine = PermissibleValue(text="Demecolcine") - Piposulfan = PermissibleValue(text="Piposulfan") - Larotrectinib = PermissibleValue(text="Larotrectinib") - Retinol = PermissibleValue(text="Retinol") - Nidanilimab = PermissibleValue(text="Nidanilimab") - Asparaginase = PermissibleValue(text="Asparaginase") - Nifurtimox = PermissibleValue(text="Nifurtimox") - Tocotrienol = PermissibleValue(text="Tocotrienol") - Flutamide = PermissibleValue(text="Flutamide") - Etanercept = PermissibleValue(text="Etanercept") - Imetelstat = PermissibleValue(text="Imetelstat") - Ascrinvacumab = PermissibleValue(text="Ascrinvacumab") - Vinblastine = PermissibleValue(text="Vinblastine") - Obinutuzumab = PermissibleValue(text="Obinutuzumab") - Quinine = PermissibleValue(text="Quinine") - Retifanlimab = PermissibleValue(text="Retifanlimab") - Ritrosulfan = PermissibleValue(text="Ritrosulfan") - Avelumab = PermissibleValue(text="Avelumab") - Trimelamol = PermissibleValue(text="Trimelamol") - Fludarabine = PermissibleValue(text="Fludarabine") - Apalutamide = PermissibleValue(text="Apalutamide") - Etoposide = PermissibleValue(text="Etoposide") - Epratuzumab = PermissibleValue(text="Epratuzumab") - Imalumab = PermissibleValue(text="Imalumab") - Dexrazoxane = PermissibleValue(text="Dexrazoxane") - Cositecan = PermissibleValue(text="Cositecan") - Blinatumomab = PermissibleValue(text="Blinatumomab") - Picibanil = PermissibleValue(text="Picibanil") - Tarextumab = PermissibleValue(text="Tarextumab") - Macitentan = PermissibleValue(text="Macitentan") - Tazarotene = PermissibleValue(text="Tazarotene") - Ortataxel = PermissibleValue(text="Ortataxel") - Durvalumab = PermissibleValue(text="Durvalumab") - Intoplicine = PermissibleValue(text="Intoplicine") - Elesclomol = PermissibleValue(text="Elesclomol") - Lilotomab = PermissibleValue(text="Lilotomab") - Taurultam = PermissibleValue(text="Taurultam") - Tocilizumab = PermissibleValue(text="Tocilizumab") - Birabresib = PermissibleValue(text="Birabresib") - Tributyrin = PermissibleValue(text="Tributyrin") - Fursultiamine = PermissibleValue(text="Fursultiamine") - Polidocanol = PermissibleValue(text="Polidocanol") - Metoprine = PermissibleValue(text="Metoprine") - Ontuxizumab = PermissibleValue(text="Ontuxizumab") - Trabectedin = PermissibleValue(text="Trabectedin") - Auranofin = PermissibleValue(text="Auranofin") - Bermekimab = PermissibleValue(text="Bermekimab") - Enoticumab = PermissibleValue(text="Enoticumab") - Bempegaldesleukin = PermissibleValue(text="Bempegaldesleukin") - Zalifrelimab = PermissibleValue(text="Zalifrelimab") - Vonlerolizumab = PermissibleValue(text="Vonlerolizumab") - Avdoralimab = PermissibleValue(text="Avdoralimab") - Efatutazone = PermissibleValue(text="Efatutazone") - Platinum = PermissibleValue(text="Platinum") - Anastrozole = PermissibleValue(text="Anastrozole") - Trilaciclib = PermissibleValue(text="Trilaciclib") - Roblitinib = PermissibleValue(text="Roblitinib") - Alsevalimab = PermissibleValue(text="Alsevalimab") - Fresolimumab = PermissibleValue(text="Fresolimumab") - Sargramostim = PermissibleValue(text="Sargramostim") - Vorolanib = PermissibleValue(text="Vorolanib") - Bavituximab = PermissibleValue(text="Bavituximab") - Nirogacestat = PermissibleValue(text="Nirogacestat") - SarCNU = PermissibleValue(text="SarCNU") - Cordycepin = PermissibleValue(text="Cordycepin") - Diethylnorspermine = PermissibleValue(text="Diethylnorspermine") - Cinobufotalin = PermissibleValue(text="Cinobufotalin") - Linperlisib = PermissibleValue(text="Linperlisib") - Elpamotide = PermissibleValue(text="Elpamotide") - Pegdinetanib = PermissibleValue(text="Pegdinetanib") - Sonidegib = PermissibleValue(text="Sonidegib") - Inecalcitol = PermissibleValue(text="Inecalcitol") - Methylprednisolone = PermissibleValue(text="Methylprednisolone") - Oleandrin = PermissibleValue(text="Oleandrin") - Simeprevir = PermissibleValue(text="Simeprevir") - Tepoditamab = PermissibleValue(text="Tepoditamab") - Emibetuzumab = PermissibleValue(text="Emibetuzumab") - Atamestane = PermissibleValue(text="Atamestane") - Cerdulatinib = PermissibleValue(text="Cerdulatinib") - Digoxin = PermissibleValue(text="Digoxin") - Mivobulin = PermissibleValue(text="Mivobulin") - Lovastatin = PermissibleValue(text="Lovastatin") - Repotrectinib = PermissibleValue(text="Repotrectinib") - Volasertib = PermissibleValue(text="Volasertib") - Lumretuzumab = PermissibleValue(text="Lumretuzumab") - Daclizumab = PermissibleValue(text="Daclizumab") - Tabelecleucel = PermissibleValue(text="Tabelecleucel") - Azaserine = PermissibleValue(text="Azaserine") - Futibatinib = PermissibleValue(text="Futibatinib") - Atezolizumab = PermissibleValue(text="Atezolizumab") - Unknown = PermissibleValue(text="Unknown") - Andecaliximab = PermissibleValue(text="Andecaliximab") - Teloxantrone = PermissibleValue(text="Teloxantrone") - Girodazole = PermissibleValue(text="Girodazole") - Milatuzumab = PermissibleValue(text="Milatuzumab") - Tegavivint = PermissibleValue(text="Tegavivint") - Zinostatin = PermissibleValue(text="Zinostatin") - Romidepsin = PermissibleValue(text="Romidepsin") - Ropocamptide = PermissibleValue(text="Ropocamptide") - Galarubicin = PermissibleValue(text="Galarubicin") - Clanfenur = PermissibleValue(text="Clanfenur") - Ranibizumab = PermissibleValue(text="Ranibizumab") - Oraxol = PermissibleValue(text="Oraxol") - Tasidotin = PermissibleValue(text="Tasidotin") - Capivasertib = PermissibleValue(text="Capivasertib") - Eflornithine = PermissibleValue(text="Eflornithine") - Figitumumab = PermissibleValue(text="Figitumumab") - Vapreotide = PermissibleValue(text="Vapreotide") - Vilaprisan = PermissibleValue(text="Vilaprisan") - Idelalisib = PermissibleValue(text="Idelalisib") - Dubermatinib = PermissibleValue(text="Dubermatinib") - Carmustine = PermissibleValue(text="Carmustine") - Mercaptopurine = PermissibleValue(text="Mercaptopurine") - Lometrexol = PermissibleValue(text="Lometrexol") - Fruquintinib = PermissibleValue(text="Fruquintinib") - Sasanlimab = PermissibleValue(text="Sasanlimab") - Abemaciclib = PermissibleValue(text="Abemaciclib") - Tirbanibulin = PermissibleValue(text="Tirbanibulin") - Lobaplatin = PermissibleValue(text="Lobaplatin") - Tauromustine = PermissibleValue(text="Tauromustine") - Tesetaxel = PermissibleValue(text="Tesetaxel") - Mureletecan = PermissibleValue(text="Mureletecan") - Penclomedine = PermissibleValue(text="Penclomedine") - Palifosfamide = PermissibleValue(text="Palifosfamide") - Brequinar = PermissibleValue(text="Brequinar") - Margetuximab = PermissibleValue(text="Margetuximab") - Pentostatin = PermissibleValue(text="Pentostatin") - Baricitinib = PermissibleValue(text="Baricitinib") - Xevinapant = PermissibleValue(text="Xevinapant") - Enadenotucirev = PermissibleValue(text="Enadenotucirev") - Alefacept = PermissibleValue(text="Alefacept") - Tinostamustine = PermissibleValue(text="Tinostamustine") - Elgemtumab = PermissibleValue(text="Elgemtumab") - Pipobroman = PermissibleValue(text="Pipobroman") - Laromustine = PermissibleValue(text="Laromustine") - Savolitinib = PermissibleValue(text="Savolitinib") - Bozitinib = PermissibleValue(text="Bozitinib") - Pyroxamide = PermissibleValue(text="Pyroxamide") - Tamoxifen = PermissibleValue(text="Tamoxifen") - Cediranib = PermissibleValue(text="Cediranib") - Sabatolimab = PermissibleValue(text="Sabatolimab") - Porfiromycin = PermissibleValue(text="Porfiromycin") - Lodapolimab = PermissibleValue(text="Lodapolimab") - Cintirorgon = PermissibleValue(text="Cintirorgon") - Asunercept = PermissibleValue(text="Asunercept") - Chaparrin = PermissibleValue(text="Chaparrin") - Daniquidone = PermissibleValue(text="Daniquidone") - Troriluzole = PermissibleValue(text="Troriluzole") - MK0731 = PermissibleValue(text="MK0731") - Dostarlimab = PermissibleValue(text="Dostarlimab") - Toripalimab = PermissibleValue(text="Toripalimab") - Tretazicar = PermissibleValue(text="Tretazicar") - Penberol = PermissibleValue(text="Penberol") - Pyrotinib = PermissibleValue(text="Pyrotinib") - Amustaline = PermissibleValue(text="Amustaline") - Vinzolidine = PermissibleValue(text="Vinzolidine") - Valrubicin = PermissibleValue(text="Valrubicin") - Aprutumab = PermissibleValue(text="Aprutumab") - Esorubicin = PermissibleValue(text="Esorubicin") - Brigatinib = PermissibleValue(text="Brigatinib") - Fenretinide = PermissibleValue(text="Fenretinide") - Denibulin = PermissibleValue(text="Denibulin") - Tigapotide = PermissibleValue(text="Tigapotide") - Adavosertib = PermissibleValue(text="Adavosertib") - Galocitabine = PermissibleValue(text="Galocitabine") - Mitoguazone = PermissibleValue(text="Mitoguazone") - Febuxostat = PermissibleValue(text="Febuxostat") - Bosutinib = PermissibleValue(text="Bosutinib") - Methotrexate = PermissibleValue(text="Methotrexate") - Cyproterone = PermissibleValue(text="Cyproterone") - Elmustine = PermissibleValue(text="Elmustine") - Entinostat = PermissibleValue(text="Entinostat") - Danvatirsen = PermissibleValue(text="Danvatirsen") - Ripretinib = PermissibleValue(text="Ripretinib") - Ethylnitrosourea = PermissibleValue(text="Ethylnitrosourea") - Pemigatinib = PermissibleValue(text="Pemigatinib") - Ulixertinib = PermissibleValue(text="Ulixertinib") - Glesatinib = PermissibleValue(text="Glesatinib") - Dilpacimab = PermissibleValue(text="Dilpacimab") - Epcoritamab = PermissibleValue(text="Epcoritamab") - Raloxifene = PermissibleValue(text="Raloxifene") - Edotecarin = PermissibleValue(text="Edotecarin") - Zorifertinib = PermissibleValue(text="Zorifertinib") - Acalisib = PermissibleValue(text="Acalisib") - Tesidolumab = PermissibleValue(text="Tesidolumab") - Amuvatinib = PermissibleValue(text="Amuvatinib") - Echinomycin = PermissibleValue(text="Echinomycin") - Relacorilant = PermissibleValue(text="Relacorilant") - Cobomarsen = PermissibleValue(text="Cobomarsen") - Mitotane = PermissibleValue(text="Mitotane") - Quarfloxin = PermissibleValue(text="Quarfloxin") - Glasdegib = PermissibleValue(text="Glasdegib") - Clarithromycin = PermissibleValue(text="Clarithromycin") - Metformin = PermissibleValue(text="Metformin") - Nemorubicin = PermissibleValue(text="Nemorubicin") - Telaglenastat = PermissibleValue(text="Telaglenastat") - Racotumomab = PermissibleValue(text="Racotumomab") - Tallimustine = PermissibleValue(text="Tallimustine") - Tetrathiomolybdate = PermissibleValue(text="Tetrathiomolybdate") - Xiliertinib = PermissibleValue(text="Xiliertinib") - Anthramycin = PermissibleValue(text="Anthramycin") - Nivolumab = PermissibleValue(text="Nivolumab") - Fotretamine = PermissibleValue(text="Fotretamine") - Belapectin = PermissibleValue(text="Belapectin") - Olaratumab = PermissibleValue(text="Olaratumab") - Terameprocol = PermissibleValue(text="Terameprocol") - Talabostat = PermissibleValue(text="Talabostat") - Bersanlimab = PermissibleValue(text="Bersanlimab") - Depatuxizumab = PermissibleValue(text="Depatuxizumab") - Berzosertib = PermissibleValue(text="Berzosertib") - Ipatasertib = PermissibleValue(text="Ipatasertib") - Selitrectinib = PermissibleValue(text="Selitrectinib") - Flumatinib = PermissibleValue(text="Flumatinib") - Etalocib = PermissibleValue(text="Etalocib") - Altretamine = PermissibleValue(text="Altretamine") - Tucidinostat = PermissibleValue(text="Tucidinostat") - Cetrelimab = PermissibleValue(text="Cetrelimab") - Dianhydrogalactitol = PermissibleValue(text="Dianhydrogalactitol") - Palbociclib = PermissibleValue(text="Palbociclib") - Varlitinib = PermissibleValue(text="Varlitinib") - Nanatinostat = PermissibleValue(text="Nanatinostat") - Temoporfin = PermissibleValue(text="Temoporfin") - Camsirubicin = PermissibleValue(text="Camsirubicin") - Farletuzumab = PermissibleValue(text="Farletuzumab") - Lapatinib = PermissibleValue(text="Lapatinib") - Umbralisib = PermissibleValue(text="Umbralisib") - Ezabenlimab = PermissibleValue(text="Ezabenlimab") - Momelotinib = PermissibleValue(text="Momelotinib") - Ficlatuzumab = PermissibleValue(text="Ficlatuzumab") - Methylcantharidimide = PermissibleValue(text="Methylcantharidimide") - Fostriecin = PermissibleValue(text="Fostriecin") - Vincristine = PermissibleValue(text="Vincristine") - Celecoxib = PermissibleValue(text="Celecoxib") - Plamotamab = PermissibleValue(text="Plamotamab") - Tislelizumab = PermissibleValue(text="Tislelizumab") - Rucaparib = PermissibleValue(text="Rucaparib") - Pevonedistat = PermissibleValue(text="Pevonedistat") - Pacmilimab = PermissibleValue(text="Pacmilimab") - Losoxantrone = PermissibleValue(text="Losoxantrone") - Pembrolizumab = PermissibleValue(text="Pembrolizumab") - Ancitabine = PermissibleValue(text="Ancitabine") - Bardoxolone = PermissibleValue(text="Bardoxolone") - Axitinib = PermissibleValue(text="Axitinib") - Batabulin = PermissibleValue(text="Batabulin") - Imexon = PermissibleValue(text="Imexon") - Veltuzumab = PermissibleValue(text="Veltuzumab") - Onalespib = PermissibleValue(text="Onalespib") - Liposome = PermissibleValue(text="Liposome") - Panobinostat = PermissibleValue(text="Panobinostat") - Belimumab = PermissibleValue(text="Belimumab") - Ivuxolimab = PermissibleValue(text="Ivuxolimab") - Benaxibine = PermissibleValue(text="Benaxibine") - Bazedoxifene = PermissibleValue(text="Bazedoxifene") - Tirapazamine = PermissibleValue(text="Tirapazamine") - Ulinastatin = PermissibleValue(text="Ulinastatin") - Formestane = PermissibleValue(text="Formestane") - Ruxolitinib = PermissibleValue(text="Ruxolitinib") - Lacutamab = PermissibleValue(text="Lacutamab") - Pralsetinib = PermissibleValue(text="Pralsetinib") - Simotaxel = PermissibleValue(text="Simotaxel") - Satraplatin = PermissibleValue(text="Satraplatin") - Ubenimex = PermissibleValue(text="Ubenimex") - Thioguanine = PermissibleValue(text="Thioguanine") - Tafasitamab = PermissibleValue(text="Tafasitamab") - Mapatumumab = PermissibleValue(text="Mapatumumab") - Sintilimab = PermissibleValue(text="Sintilimab") - Virulizin = PermissibleValue(text="Virulizin") - Clomesone = PermissibleValue(text="Clomesone") - Ranimustine = PermissibleValue(text="Ranimustine") - Aspacytarabine = PermissibleValue(text="Aspacytarabine") - Upamostat = PermissibleValue(text="Upamostat") - Dinaciclib = PermissibleValue(text="Dinaciclib") - Ruxotemitide = PermissibleValue(text="Ruxotemitide") - Filgrastim = PermissibleValue(text="Filgrastim") - Crizotinib = PermissibleValue(text="Crizotinib") - Thiarabine = PermissibleValue(text="Thiarabine") - Tipiracil = PermissibleValue(text="Tipiracil") - Tepotinib = PermissibleValue(text="Tepotinib") - Combretastatin = PermissibleValue(text="Combretastatin") - Intiquinatine = PermissibleValue(text="Intiquinatine") - Vemurafenib = PermissibleValue(text="Vemurafenib") - Pasotuxizumab = PermissibleValue(text="Pasotuxizumab") - Etaracizumab = PermissibleValue(text="Etaracizumab") - Lorlatinib = PermissibleValue(text="Lorlatinib") - Denosumab = PermissibleValue(text="Denosumab") - Panulisib = PermissibleValue(text="Panulisib") - Lomustine = PermissibleValue(text="Lomustine") - Riviciclib = PermissibleValue(text="Riviciclib") - Hydroxyurea = PermissibleValue(text="Hydroxyurea") - Cevipabulin = PermissibleValue(text="Cevipabulin") - Indisulam = PermissibleValue(text="Indisulam") - Aceglatone = PermissibleValue(text="Aceglatone") - Tolebrutinib = PermissibleValue(text="Tolebrutinib") - Dezaguanine = PermissibleValue(text="Dezaguanine") - Mibefradil = PermissibleValue(text="Mibefradil") - Alvocidib = PermissibleValue(text="Alvocidib") - Carmofur = PermissibleValue(text="Carmofur") - Talotrexin = PermissibleValue(text="Talotrexin") - Oprozomib = PermissibleValue(text="Oprozomib") - Avadomide = PermissibleValue(text="Avadomide") - Decitabine = PermissibleValue(text="Decitabine") - Edrecolomab = PermissibleValue(text="Edrecolomab") - Mifepristone = PermissibleValue(text="Mifepristone") - Conatumumab = PermissibleValue(text="Conatumumab") - Fibromun = PermissibleValue(text="Fibromun") - Ladirubicin = PermissibleValue(text="Ladirubicin") - Mesna = PermissibleValue(text="Mesna") - Ipomeanol = PermissibleValue(text="Ipomeanol") - Taletrectinib = PermissibleValue(text="Taletrectinib") - Burosumab = PermissibleValue(text="Burosumab") - Sagopilone = PermissibleValue(text="Sagopilone") - Encelimab = PermissibleValue(text="Encelimab") - Macimorelin = PermissibleValue(text="Macimorelin") - Imgatuzumab = PermissibleValue(text="Imgatuzumab") - Testolactone = PermissibleValue(text="Testolactone") - Folitixorin = PermissibleValue(text="Folitixorin") - Sapitinib = PermissibleValue(text="Sapitinib") - Captopril = PermissibleValue(text="Captopril") - Tacedinaline = PermissibleValue(text="Tacedinaline") - Aldesleukin = PermissibleValue(text="Aldesleukin") - Givinostat = PermissibleValue(text="Givinostat") - Selumetinib = PermissibleValue(text="Selumetinib") - Afuresertib = PermissibleValue(text="Afuresertib") - Entospletinib = PermissibleValue(text="Entospletinib") - Vandetanib = PermissibleValue(text="Vandetanib") - Lentinan = PermissibleValue(text="Lentinan") - Tilarginine = PermissibleValue(text="Tilarginine") - Duligotuzumab = PermissibleValue(text="Duligotuzumab") - Burixafor = PermissibleValue(text="Burixafor") - Tabalumab = PermissibleValue(text="Tabalumab") - Lenalidomide = PermissibleValue(text="Lenalidomide") - Ecromeximab = PermissibleValue(text="Ecromeximab") - Elinafide = PermissibleValue(text="Elinafide") - Asulacrine = PermissibleValue(text="Asulacrine") - Taminadenant = PermissibleValue(text="Taminadenant") - Roquinimex = PermissibleValue(text="Roquinimex") - Girentuximab = PermissibleValue(text="Girentuximab") - Vinflunine = PermissibleValue(text="Vinflunine") - Alectinib = PermissibleValue(text="Alectinib") - Erlotinib = PermissibleValue(text="Erlotinib") - Menatetrenone = PermissibleValue(text="Menatetrenone") - Napabucasin = PermissibleValue(text="Napabucasin") - Mipsagargin = PermissibleValue(text="Mipsagargin") - Troxacitabine = PermissibleValue(text="Troxacitabine") - Amivantamab = PermissibleValue(text="Amivantamab") - Veliparib = PermissibleValue(text="Veliparib") - Fosbretabulin = PermissibleValue(text="Fosbretabulin") - Terfluranol = PermissibleValue(text="Terfluranol") - Inalimarev = PermissibleValue(text="Inalimarev") - Cobolimab = PermissibleValue(text="Cobolimab") - Nilutamide = PermissibleValue(text="Nilutamide") - Mitoxantrone = PermissibleValue(text="Mitoxantrone") - Peposertib = PermissibleValue(text="Peposertib") - Pixatimod = PermissibleValue(text="Pixatimod") - Urelumab = PermissibleValue(text="Urelumab") - Vismodegib = PermissibleValue(text="Vismodegib") - Peldesine = PermissibleValue(text="Peldesine") - Etarotene = PermissibleValue(text="Etarotene") - Afimoxifene = PermissibleValue(text="Afimoxifene") - Vosilasarm = PermissibleValue(text="Vosilasarm") - Axatilimab = PermissibleValue(text="Axatilimab") - Rilotumumab = PermissibleValue(text="Rilotumumab") - Cetuximab = PermissibleValue(text="Cetuximab") - Nedisertib = PermissibleValue(text="Nedisertib") - Uzansertib = PermissibleValue(text="Uzansertib") - Emactuzumab = PermissibleValue(text="Emactuzumab") - Buserelin = PermissibleValue(text="Buserelin") - Enloplatin = PermissibleValue(text="Enloplatin") - Orelabrutinib = PermissibleValue(text="Orelabrutinib") - Pyrazinamide = PermissibleValue(text="Pyrazinamide") - Sulfatinib = PermissibleValue(text="Sulfatinib") - Ponatinib = PermissibleValue(text="Ponatinib") - Patidegib = PermissibleValue(text="Patidegib") - Lucitanib = PermissibleValue(text="Lucitanib") - Geldanamycin = PermissibleValue(text="Geldanamycin") - Diphencyprone = PermissibleValue(text="Diphencyprone") - Orteronel = PermissibleValue(text="Orteronel") - ASP4132 = PermissibleValue(text="ASP4132") - Defactinib = PermissibleValue(text="Defactinib") - Evofosfamide = PermissibleValue(text="Evofosfamide") - Filgotinib = PermissibleValue(text="Filgotinib") - Pertuzumab = PermissibleValue(text="Pertuzumab") - Glufosfamide = PermissibleValue(text="Glufosfamide") - Alobresib = PermissibleValue(text="Alobresib") - Docetaxel = PermissibleValue(text="Docetaxel") - Istiratumab = PermissibleValue(text="Istiratumab") - Leflunomide = PermissibleValue(text="Leflunomide") - Adecatumumab = PermissibleValue(text="Adecatumumab") - Carboxyamidotriazole = PermissibleValue(text="Carboxyamidotriazole") - Elacestrant = PermissibleValue(text="Elacestrant") - Imatinib = PermissibleValue(text="Imatinib") - Mocetinostat = PermissibleValue(text="Mocetinostat") - Rosuvastatin = PermissibleValue(text="Rosuvastatin") - Avapritinib = PermissibleValue(text="Avapritinib") - Envafolimab = PermissibleValue(text="Envafolimab") - Edatrexate = PermissibleValue(text="Edatrexate") - Rabusertib = PermissibleValue(text="Rabusertib") - Thiodiglycol = PermissibleValue(text="Thiodiglycol") - Pirotinib = PermissibleValue(text="Pirotinib") - Carzinophilin = PermissibleValue(text="Carzinophilin") - Thalicarpine = PermissibleValue(text="Thalicarpine") - Topotecan = PermissibleValue(text="Topotecan") - Quisinostat = PermissibleValue(text="Quisinostat") - Olinvacimab = PermissibleValue(text="Olinvacimab") - Aldoxorubicin = PermissibleValue(text="Aldoxorubicin") - Abituzumab = PermissibleValue(text="Abituzumab") - Cyclodisone = PermissibleValue(text="Cyclodisone") - Cedefingol = PermissibleValue(text="Cedefingol") - Cryptophycin = PermissibleValue(text="Cryptophycin") - Tandutinib = PermissibleValue(text="Tandutinib") - Simmitinib = PermissibleValue(text="Simmitinib") - Dulanermin = PermissibleValue(text="Dulanermin") - Dezapelisib = PermissibleValue(text="Dezapelisib") - Pancratistatin = PermissibleValue(text="Pancratistatin") - Linsitinib = PermissibleValue(text="Linsitinib") - Pegzilarginase = PermissibleValue(text="Pegzilarginase") - Camrelizumab = PermissibleValue(text="Camrelizumab") - Mofarotene = PermissibleValue(text="Mofarotene") - Trofosfamide = PermissibleValue(text="Trofosfamide") - Muparfostat = PermissibleValue(text="Muparfostat") - Imifoplatin = PermissibleValue(text="Imifoplatin") - Spiroplatin = PermissibleValue(text="Spiroplatin") - Lestaurtinib = PermissibleValue(text="Lestaurtinib") - Lapachone = PermissibleValue(text="Lapachone") - Iroplact = PermissibleValue(text="Iroplact") - Rosmantuzumab = PermissibleValue(text="Rosmantuzumab") - Tefinostat = PermissibleValue(text="Tefinostat") - Thioinosine = PermissibleValue(text="Thioinosine") - Apaziquone = PermissibleValue(text="Apaziquone") - Trametinib = PermissibleValue(text="Trametinib") - Futuximab = PermissibleValue(text="Futuximab") - Laniquidar = PermissibleValue(text="Laniquidar") - Pimurutamab = PermissibleValue(text="Pimurutamab") - Sotorasib = PermissibleValue(text="Sotorasib") - Placebo = PermissibleValue(text="Placebo") - Pacritinib = PermissibleValue(text="Pacritinib") - Aclarubicin = PermissibleValue(text="Aclarubicin") - Diaziquone = PermissibleValue(text="Diaziquone") - Necitumumab = PermissibleValue(text="Necitumumab") - Sitravatinib = PermissibleValue(text="Sitravatinib") - Uprosertib = PermissibleValue(text="Uprosertib") - Bromacrylide = PermissibleValue(text="Bromacrylide") - Dexanabinol = PermissibleValue(text="Dexanabinol") - Pelitinib = PermissibleValue(text="Pelitinib") - Catumaxomab = PermissibleValue(text="Catumaxomab") - Raltitrexed = PermissibleValue(text="Raltitrexed") - Ambamustine = PermissibleValue(text="Ambamustine") - Pomalidomide = PermissibleValue(text="Pomalidomide") - Enobosarm = PermissibleValue(text="Enobosarm") - Audencel = PermissibleValue(text="Audencel") - Dovitinib = PermissibleValue(text="Dovitinib") - Sunitinib = PermissibleValue(text="Sunitinib") - Tiazofurin = PermissibleValue(text="Tiazofurin") - Tucatinib = PermissibleValue(text="Tucatinib") - Ethaselen = PermissibleValue(text="Ethaselen") - Apitolisib = PermissibleValue(text="Apitolisib") - Devimistat = PermissibleValue(text="Devimistat") - Nimodipine = PermissibleValue(text="Nimodipine") - Garlic = PermissibleValue(text="Garlic") - Teroxirone = PermissibleValue(text="Teroxirone") - Etanidazole = PermissibleValue(text="Etanidazole") - Diazepinomicin = PermissibleValue(text="Diazepinomicin") - Bleomycin = PermissibleValue(text="Bleomycin") - Bisnafide = PermissibleValue(text="Bisnafide") - Masoprocol = PermissibleValue(text="Masoprocol") - Mogamulizumab = PermissibleValue(text="Mogamulizumab") - Valemetostat = PermissibleValue(text="Valemetostat") - Ethyleneimine = PermissibleValue(text="Ethyleneimine") - Ifosfamide = PermissibleValue(text="Ifosfamide") - Ilorasertib = PermissibleValue(text="Ilorasertib") - Arfolitixorin = PermissibleValue(text="Arfolitixorin") - Carbogen = PermissibleValue(text="Carbogen") - Suramin = PermissibleValue(text="Suramin") - APC8015F = PermissibleValue(text="APC8015F") - Oleclumab = PermissibleValue(text="Oleclumab") - Merestinib = PermissibleValue(text="Merestinib") - Donafenib = PermissibleValue(text="Donafenib") - Lonafarnib = PermissibleValue(text="Lonafarnib") - Penicillamine = PermissibleValue(text="Penicillamine") - Vitespen = PermissibleValue(text="Vitespen") - Indoximod = PermissibleValue(text="Indoximod") - Motolimod = PermissibleValue(text="Motolimod") - Bisantrene = PermissibleValue(text="Bisantrene") - Bexarotene = PermissibleValue(text="Bexarotene") - Amsacrine = PermissibleValue(text="Amsacrine") - Merbarone = PermissibleValue(text="Merbarone") - Ridaforolimus = PermissibleValue(text="Ridaforolimus") - Tanomastat = PermissibleValue(text="Tanomastat") - EGb761 = PermissibleValue(text="EGb761") - Niclosamide = PermissibleValue(text="Niclosamide") - Teglarinad = PermissibleValue(text="Teglarinad") - Sorafenib = PermissibleValue(text="Sorafenib") - Enzastaurin = PermissibleValue(text="Enzastaurin") - Cilengitide = PermissibleValue(text="Cilengitide") - Uproleselan = PermissibleValue(text="Uproleselan") - Trifluridine = PermissibleValue(text="Trifluridine") - Nogalamycin = PermissibleValue(text="Nogalamycin") - Itacitinib = PermissibleValue(text="Itacitinib") - Bactobolin = PermissibleValue(text="Bactobolin") - Prexasertib = PermissibleValue(text="Prexasertib") - Fimepinostat = PermissibleValue(text="Fimepinostat") - Glumetinib = PermissibleValue(text="Glumetinib") - Lucanthone = PermissibleValue(text="Lucanthone") - Nelarabine = PermissibleValue(text="Nelarabine") - Roneparstat = PermissibleValue(text="Roneparstat") - Mivavotinib = PermissibleValue(text="Mivavotinib") - Beauvericin = PermissibleValue(text="Beauvericin") - Vofatamab = PermissibleValue(text="Vofatamab") - Nintedanib = PermissibleValue(text="Nintedanib") - Verapamil = PermissibleValue(text="Verapamil") - Gentuximab = PermissibleValue(text="Gentuximab") - Broxuridine = PermissibleValue(text="Broxuridine") - Trapoxin = PermissibleValue(text="Trapoxin") - Irinotecan = PermissibleValue(text="Irinotecan") - Gilteritinib = PermissibleValue(text="Gilteritinib") - Pirarubicin = PermissibleValue(text="Pirarubicin") - Ertumaxomab = PermissibleValue(text="Ertumaxomab") - Miltefosine = PermissibleValue(text="Miltefosine") - Doxercalciferol = PermissibleValue(text="Doxercalciferol") - Letrozole = PermissibleValue(text="Letrozole") - Olmutinib = PermissibleValue(text="Olmutinib") - Aminocamptothecin = PermissibleValue(text="Aminocamptothecin") - Pegargiminase = PermissibleValue(text="Pegargiminase") - Ribociclib = PermissibleValue(text="Ribociclib") - Galunisertib = PermissibleValue(text="Galunisertib") - Niraparib = PermissibleValue(text="Niraparib") - Demcizumab = PermissibleValue(text="Demcizumab") - Pterostilbene = PermissibleValue(text="Pterostilbene") - Enpromate = PermissibleValue(text="Enpromate") - Grapiprant = PermissibleValue(text="Grapiprant") - Norgestrel = PermissibleValue(text="Norgestrel") - Semuloparin = PermissibleValue(text="Semuloparin") - Abexinostat = PermissibleValue(text="Abexinostat") - Telapristone = PermissibleValue(text="Telapristone") - Robatumumab = PermissibleValue(text="Robatumumab") - Trodusquemine = PermissibleValue(text="Trodusquemine") - Poziotinib = PermissibleValue(text="Poziotinib") - Erbulozole = PermissibleValue(text="Erbulozole") - Tritylcysteine = PermissibleValue(text="Tritylcysteine") - Falimarev = PermissibleValue(text="Falimarev") - Doxorubicin = PermissibleValue(text="Doxorubicin") - Lifirafenib = PermissibleValue(text="Lifirafenib") - Oregovomab = PermissibleValue(text="Oregovomab") - Xeloda = PermissibleValue(text="Xeloda") - Thioureidobutyronitrile = PermissibleValue(text="Thioureidobutyronitrile") - Cabazitaxel = PermissibleValue(text="Cabazitaxel") - Ozarelix = PermissibleValue(text="Ozarelix") - Benzoylphenylurea = PermissibleValue(text="Benzoylphenylurea") - Misonidazole = PermissibleValue(text="Misonidazole") - Exisulind = PermissibleValue(text="Exisulind") - Glaucarubolone = PermissibleValue(text="Glaucarubolone") - Edelfosine = PermissibleValue(text="Edelfosine") - Cinobufagin = PermissibleValue(text="Cinobufagin") - Triapine = PermissibleValue(text="Triapine") - Vadimezan = PermissibleValue(text="Vadimezan") - Razoxane = PermissibleValue(text="Razoxane") - Pixantrone = PermissibleValue(text="Pixantrone") - Hypericin = PermissibleValue(text="Hypericin") - Essiac = PermissibleValue(text="Essiac") - Acivicin = PermissibleValue(text="Acivicin") - Menogaril = PermissibleValue(text="Menogaril") - Utomilumab = PermissibleValue(text="Utomilumab") - Floxuridine = PermissibleValue(text="Floxuridine") - Magrolimab = PermissibleValue(text="Magrolimab") - Mitomycin = PermissibleValue(text="Mitomycin") - Rociletinib = PermissibleValue(text="Rociletinib") - Bimiralisib = PermissibleValue(text="Bimiralisib") - Tamibarotene = PermissibleValue(text="Tamibarotene") - Nimustine = PermissibleValue(text="Nimustine") - Aviscumine = PermissibleValue(text="Aviscumine") - Giredestrant = PermissibleValue(text="Giredestrant") - Zanidatamab = PermissibleValue(text="Zanidatamab") - Pimitespib = PermissibleValue(text="Pimitespib") - Cemadotin = PermissibleValue(text="Cemadotin") - Plevitrexed = PermissibleValue(text="Plevitrexed") - Ceritinib = PermissibleValue(text="Ceritinib") - Refametinib = PermissibleValue(text="Refametinib") - Kanitinib = PermissibleValue(text="Kanitinib") - Siremadlin = PermissibleValue(text="Siremadlin") - Gefitinib = PermissibleValue(text="Gefitinib") - Navicixizumab = PermissibleValue(text="Navicixizumab") - Padoporfin = PermissibleValue(text="Padoporfin") - Miptenalimab = PermissibleValue(text="Miptenalimab") - Alanosine = PermissibleValue(text="Alanosine") - Polyandrol = PermissibleValue(text="Polyandrol") - Sapanisertib = PermissibleValue(text="Sapanisertib") - Vatalanib = PermissibleValue(text="Vatalanib") - Sevacizumab = PermissibleValue(text="Sevacizumab") - Trimetrexate = PermissibleValue(text="Trimetrexate") - Dabrafenib = PermissibleValue(text="Dabrafenib") - Mevociclib = PermissibleValue(text="Mevociclib") - Metamelfalan = PermissibleValue(text="Metamelfalan") - Piperazinedione = PermissibleValue(text="Piperazinedione") - Becatecarin = PermissibleValue(text="Becatecarin") - Marimastat = PermissibleValue(text="Marimastat") - Resveratrol = PermissibleValue(text="Resveratrol") - Carfilzomib = PermissibleValue(text="Carfilzomib") - Plinabulin = PermissibleValue(text="Plinabulin") - Metarrestin = PermissibleValue(text="Metarrestin") - Ranolazine = PermissibleValue(text="Ranolazine") - Rogaratinib = PermissibleValue(text="Rogaratinib") - Valspodar = PermissibleValue(text="Valspodar") - Pamiparib = PermissibleValue(text="Pamiparib") - Bazlitoran = PermissibleValue(text="Bazlitoran") - Opaganib = PermissibleValue(text="Opaganib") - Simurosertib = PermissibleValue(text="Simurosertib") - Inositol = PermissibleValue(text="Inositol") - Archexin = PermissibleValue(text="Archexin") - Ocaratuzumab = PermissibleValue(text="Ocaratuzumab") - Fluorodopan = PermissibleValue(text="Fluorodopan") - Cannabidiol = PermissibleValue(text="Cannabidiol") - Ublituximab = PermissibleValue(text="Ublituximab") - Triazinate = PermissibleValue(text="Triazinate") - Seliciclib = PermissibleValue(text="Seliciclib") - Piritrexim = PermissibleValue(text="Piritrexim") - Ambazone = PermissibleValue(text="Ambazone") - Procarbazine = PermissibleValue(text="Procarbazine") - Ifetroban = PermissibleValue(text="Ifetroban") - Carzelesin = PermissibleValue(text="Carzelesin") - Pumitepa = PermissibleValue(text="Pumitepa") - Lenzilumab = PermissibleValue(text="Lenzilumab") - Amsilarotene = PermissibleValue(text="Amsilarotene") - Encorafenib = PermissibleValue(text="Encorafenib") - Talmapimod = PermissibleValue(text="Talmapimod") - Indomethacin = PermissibleValue(text="Indomethacin") - Carboquone = PermissibleValue(text="Carboquone") - Namirotene = PermissibleValue(text="Namirotene") - Ripertamab = PermissibleValue(text="Ripertamab") - Carboplatin = PermissibleValue(text="Carboplatin") - Opucolimab = PermissibleValue(text="Opucolimab") - Vistusertib = PermissibleValue(text="Vistusertib") - Chaparrinone = PermissibleValue(text="Chaparrinone") - Brostallicin = PermissibleValue(text="Brostallicin") - Brivudine = PermissibleValue(text="Brivudine") - Staurosporine = PermissibleValue(text="Staurosporine") - Octreotide = PermissibleValue(text="Octreotide") - Tocladesine = PermissibleValue(text="Tocladesine") - Ceralasertib = PermissibleValue(text="Ceralasertib") - Asciminib = PermissibleValue(text="Asciminib") - Regorafenib = PermissibleValue(text="Regorafenib") - Glucarpidase = PermissibleValue(text="Glucarpidase") - Exicorilant = PermissibleValue(text="Exicorilant") - Prexigebersen = PermissibleValue(text="Prexigebersen") - Eltanexor = PermissibleValue(text="Eltanexor") - Rezivertinib = PermissibleValue(text="Rezivertinib") - Azapicyl = PermissibleValue(text="Azapicyl") - Lifileucel = PermissibleValue(text="Lifileucel") - Sapacitabine = PermissibleValue(text="Sapacitabine") - Methazolamide = PermissibleValue(text="Methazolamide") - Buparlisib = PermissibleValue(text="Buparlisib") - Ixabepilone = PermissibleValue(text="Ixabepilone") - Poliglusam = PermissibleValue(text="Poliglusam") - Peplomycin = PermissibleValue(text="Peplomycin") - Inulin = PermissibleValue(text="Inulin") - Cenersen = PermissibleValue(text="Cenersen") - Tanespimycin = PermissibleValue(text="Tanespimycin") - Olivomycin = PermissibleValue(text="Olivomycin") - Naxitamab = PermissibleValue(text="Naxitamab") - Aranose = PermissibleValue(text="Aranose") - Pyrazoloacridine = PermissibleValue(text="Pyrazoloacridine") - Codrituzumab = PermissibleValue(text="Codrituzumab") - Caracemide = PermissibleValue(text="Caracemide") - Mitobronitol = PermissibleValue(text="Mitobronitol") - Tosedostat = PermissibleValue(text="Tosedostat") - Flotetuzumab = PermissibleValue(text="Flotetuzumab") - Mosunetuzumab = PermissibleValue(text="Mosunetuzumab") - Mitolactol = PermissibleValue(text="Mitolactol") - Sonolisib = PermissibleValue(text="Sonolisib") - Herbimycin = PermissibleValue(text="Herbimycin") - Inebilizumab = PermissibleValue(text="Inebilizumab") - Dexamethasone = PermissibleValue(text="Dexamethasone") - Cytarabine = PermissibleValue(text="Cytarabine") - Fluvastatin = PermissibleValue(text="Fluvastatin") - Brontictuzumab = PermissibleValue(text="Brontictuzumab") - Selpercatinib = PermissibleValue(text="Selpercatinib") - Capmatinib = PermissibleValue(text="Capmatinib") - Theramide = PermissibleValue(text="Theramide") - Duborimycin = PermissibleValue(text="Duborimycin") - Tolnidamine = PermissibleValue(text="Tolnidamine") - Rogletimide = PermissibleValue(text="Rogletimide") - Idronoxil = PermissibleValue(text="Idronoxil") - Cyclosporine = PermissibleValue(text="Cyclosporine") - Vintafolide = PermissibleValue(text="Vintafolide") - Tretinoin = PermissibleValue(text="Tretinoin") - Gandotinib = PermissibleValue(text="Gandotinib") - Mitotenamine = PermissibleValue(text="Mitotenamine") - Carlumab = PermissibleValue(text="Carlumab") - Cibisatamab = PermissibleValue(text="Cibisatamab") - Daunorubicin = PermissibleValue(text="Daunorubicin") - Nimotuzumab = PermissibleValue(text="Nimotuzumab") - Deslorelin = PermissibleValue(text="Deslorelin") - Guselkumab = PermissibleValue(text="Guselkumab") - Anthrapyrazole = PermissibleValue(text="Anthrapyrazole") - Lenvatinib = PermissibleValue(text="Lenvatinib") - Ilixadencel = PermissibleValue(text="Ilixadencel") - Daporinad = PermissibleValue(text="Daporinad") - Elliptinium = PermissibleValue(text="Elliptinium") - Landogrozumab = PermissibleValue(text="Landogrozumab") - Dynemicin = PermissibleValue(text="Dynemicin") - Pelitrexol = PermissibleValue(text="Pelitrexol") - Plicamycin = PermissibleValue(text="Plicamycin") - Ofatumumab = PermissibleValue(text="Ofatumumab") - Crolibulin = PermissibleValue(text="Crolibulin") - Laetrile = PermissibleValue(text="Laetrile") - Ropidoxuridine = PermissibleValue(text="Ropidoxuridine") - Mitozolomide = PermissibleValue(text="Mitozolomide") - Balstilimab = PermissibleValue(text="Balstilimab") - Siplizumab = PermissibleValue(text="Siplizumab") - Retaspimycin = PermissibleValue(text="Retaspimycin") - Spanlecortemlocel = PermissibleValue(text="Spanlecortemlocel") - Dactolisib = PermissibleValue(text="Dactolisib") - Golotimod = PermissibleValue(text="Golotimod") - Fosquidone = PermissibleValue(text="Fosquidone") - Dienogest = PermissibleValue(text="Dienogest") - Etoprine = PermissibleValue(text="Etoprine") - Azotomycin = PermissibleValue(text="Azotomycin") - Lexatumumab = PermissibleValue(text="Lexatumumab") - Parsatuzumab = PermissibleValue(text="Parsatuzumab") - Nedaplatin = PermissibleValue(text="Nedaplatin") - Alkotinib = PermissibleValue(text="Alkotinib") - Prednisone = PermissibleValue(text="Prednisone") - Pamrevlumab = PermissibleValue(text="Pamrevlumab") - Plozalizumab = PermissibleValue(text="Plozalizumab") - Solitomab = PermissibleValue(text="Solitomab") - Nagrestipen = PermissibleValue(text="Nagrestipen") - Zelavespib = PermissibleValue(text="Zelavespib") - Thymopentin = PermissibleValue(text="Thymopentin") - Lisavanbulin = PermissibleValue(text="Lisavanbulin") - Marcellomycin = PermissibleValue(text="Marcellomycin") - Isatuximab = PermissibleValue(text="Isatuximab") - Abiraterone = PermissibleValue(text="Abiraterone") - HPPH = PermissibleValue(text="HPPH") - Tigatuzumab = PermissibleValue(text="Tigatuzumab") - Sotrastaurin = PermissibleValue(text="Sotrastaurin") - Methoxsalen = PermissibleValue(text="Methoxsalen") - Cantrixil = PermissibleValue(text="Cantrixil") - Enzalutamide = PermissibleValue(text="Enzalutamide") - Reparixin = PermissibleValue(text="Reparixin") - Cabozantinib = PermissibleValue(text="Cabozantinib") - Dalotuzumab = PermissibleValue(text="Dalotuzumab") - Pazopanib = PermissibleValue(text="Pazopanib") - Anakinra = PermissibleValue(text="Anakinra") - Vinorelbine = PermissibleValue(text="Vinorelbine") - AEE788 = PermissibleValue(text="AEE788") - Naquotinib = PermissibleValue(text="Naquotinib") - Ketotrexate = PermissibleValue(text="Ketotrexate") - Almurtide = PermissibleValue(text="Almurtide") - Brivanib = PermissibleValue(text="Brivanib") - Binetrakin = PermissibleValue(text="Binetrakin") - Gatipotuzumab = PermissibleValue(text="Gatipotuzumab") - Medorubicin = PermissibleValue(text="Medorubicin") - Ciforadenant = PermissibleValue(text="Ciforadenant") - Phenesterin = PermissibleValue(text="Phenesterin") - Empesertib = PermissibleValue(text="Empesertib") - Azacitidine = PermissibleValue(text="Azacitidine") - Imiquimod = PermissibleValue(text="Imiquimod") - Linifanib = PermissibleValue(text="Linifanib") - Tremelimumab = PermissibleValue(text="Tremelimumab") - Taltobulin = PermissibleValue(text="Taltobulin") - Felzartamab = PermissibleValue(text="Felzartamab") - Dicycloplatin = PermissibleValue(text="Dicycloplatin") - Gimeracil = PermissibleValue(text="Gimeracil") - Alestramustine = PermissibleValue(text="Alestramustine") - Lazertinib = PermissibleValue(text="Lazertinib") - Tisagenlecleucel = PermissibleValue(text="Tisagenlecleucel") - Noscapine = PermissibleValue(text="Noscapine") - Tertomotide = PermissibleValue(text="Tertomotide") - Ricolinostat = PermissibleValue(text="Ricolinostat") - Zanubrutinib = PermissibleValue(text="Zanubrutinib") - Topsalysin = PermissibleValue(text="Topsalysin") - Fosaprepitant = PermissibleValue(text="Fosaprepitant") - Midostaurin = PermissibleValue(text="Midostaurin") - Dacomitinib = PermissibleValue(text="Dacomitinib") - Manelimab = PermissibleValue(text="Manelimab") - Sugemalimab = PermissibleValue(text="Sugemalimab") - Seocalcitol = PermissibleValue(text="Seocalcitol") - Goserelin = PermissibleValue(text="Goserelin") - Tebentafusp = PermissibleValue(text="Tebentafusp") - Sotigalimab = PermissibleValue(text="Sotigalimab") - Birinapant = PermissibleValue(text="Birinapant") - Vindesine = PermissibleValue(text="Vindesine") - Fotemustine = PermissibleValue(text="Fotemustine") - Picoplatin = PermissibleValue(text="Picoplatin") - Anaxirone = PermissibleValue(text="Anaxirone") - Carubicin = PermissibleValue(text="Carubicin") - Osimertinib = PermissibleValue(text="Osimertinib") - Otlertuzumab = PermissibleValue(text="Otlertuzumab") - Mitindomide = PermissibleValue(text="Mitindomide") - Sulindac = PermissibleValue(text="Sulindac") - Balixafortide = PermissibleValue(text="Balixafortide") - Ibrutinib = PermissibleValue(text="Ibrutinib") - Pegfilgrastim = PermissibleValue(text="Pegfilgrastim") - Foretinib = PermissibleValue(text="Foretinib") - Topixantrone = PermissibleValue(text="Topixantrone") - Nanafrocin = PermissibleValue(text="Nanafrocin") - Volociximab = PermissibleValue(text="Volociximab") - Cusatuzumab = PermissibleValue(text="Cusatuzumab") - Prednimustine = PermissibleValue(text="Prednimustine") - Trastuzumab = PermissibleValue(text="Trastuzumab") - Tazemetostat = PermissibleValue(text="Tazemetostat") - Ketoconazole = PermissibleValue(text="Ketoconazole") - Tovetumab = PermissibleValue(text="Tovetumab") - Xentuzumab = PermissibleValue(text="Xentuzumab") - Miransertib = PermissibleValue(text="Miransertib") - Redaporfin = PermissibleValue(text="Redaporfin") - Vactosertib = PermissibleValue(text="Vactosertib") - Nurulimab = PermissibleValue(text="Nurulimab") - Temarotene = PermissibleValue(text="Temarotene") - Eribulin = PermissibleValue(text="Eribulin") - Temozolomide = PermissibleValue(text="Temozolomide") - Azaribine = PermissibleValue(text="Azaribine") - Motixafortide = PermissibleValue(text="Motixafortide") - Vecabrutinib = PermissibleValue(text="Vecabrutinib") - Tivozanib = PermissibleValue(text="Tivozanib") - Pentamustine = PermissibleValue(text="Pentamustine") - Iloprost = PermissibleValue(text="Iloprost") - Rosabulin = PermissibleValue(text="Rosabulin") - Carbendazim = PermissibleValue(text="Carbendazim") - Elisidepsin = PermissibleValue(text="Elisidepsin") - Lefitolimod = PermissibleValue(text="Lefitolimod") - Onatasertib = PermissibleValue(text="Onatasertib") - Dihydrolenperone = PermissibleValue(text="Dihydrolenperone") - Sardomozide = PermissibleValue(text="Sardomozide") - Dacetuzumab = PermissibleValue(text="Dacetuzumab") - Zolbetuximab = PermissibleValue(text="Zolbetuximab") - Seclidemstat = PermissibleValue(text="Seclidemstat") - Leuprolide = PermissibleValue(text="Leuprolide") - Calcitriol = PermissibleValue(text="Calcitriol") - Exemestane = PermissibleValue(text="Exemestane") - Vesencumab = PermissibleValue(text="Vesencumab") - Diindolylmethane = PermissibleValue(text="Diindolylmethane") - Enclomiphene = PermissibleValue(text="Enclomiphene") - Mirdametinib = PermissibleValue(text="Mirdametinib") - Bomedemstat = PermissibleValue(text="Bomedemstat") - Molibresib = PermissibleValue(text="Molibresib") - Proxalutamide = PermissibleValue(text="Proxalutamide") - Ocrelizumab = PermissibleValue(text="Ocrelizumab") - Tyroserleutide = PermissibleValue(text="Tyroserleutide") - Guadecitabine = PermissibleValue(text="Guadecitabine") - Cosibelimab = PermissibleValue(text="Cosibelimab") - Aderbasib = PermissibleValue(text="Aderbasib") - Ranpirnase = PermissibleValue(text="Ranpirnase") - Spebrutinib = PermissibleValue(text="Spebrutinib") - Edicotinib = PermissibleValue(text="Edicotinib") - Ixazomib = PermissibleValue(text="Ixazomib") - Chloroquine = PermissibleValue(text="Chloroquine") - Other = PermissibleValue(text="Other") - Tasadenoturev = PermissibleValue(text="Tasadenoturev") - Timonacic = PermissibleValue(text="Timonacic") - Dusigitumab = PermissibleValue(text="Dusigitumab") - Hexylresorcinol = PermissibleValue(text="Hexylresorcinol") - Xanthohumol = PermissibleValue(text="Xanthohumol") - Batimastat = PermissibleValue(text="Batimastat") - Sibrotuzumab = PermissibleValue(text="Sibrotuzumab") - Cobimetinib = PermissibleValue(text="Cobimetinib") - Telisotuzumab = PermissibleValue(text="Telisotuzumab") - Vanucizumab = PermissibleValue(text="Vanucizumab") - Cycloleucine = PermissibleValue(text="Cycloleucine") - Ombrabulin = PermissibleValue(text="Ombrabulin") - Artesunate = PermissibleValue(text="Artesunate") - Onvansertib = PermissibleValue(text="Onvansertib") - Theliatinib = PermissibleValue(text="Theliatinib") - Mavelertinib = PermissibleValue(text="Mavelertinib") - Conbercept = PermissibleValue(text="Conbercept") - Cesalin = PermissibleValue(text="Cesalin") - Feladilimab = PermissibleValue(text="Feladilimab") - Sonepcizumab = PermissibleValue(text="Sonepcizumab") - Denenicokin = PermissibleValue(text="Denenicokin") - Nesvacumab = PermissibleValue(text="Nesvacumab") - Stallimycin = PermissibleValue(text="Stallimycin") - Ormaplatin = PermissibleValue(text="Ormaplatin") - Trabedersen = PermissibleValue(text="Trabedersen") - Pexidartinib = PermissibleValue(text="Pexidartinib") - Pictilisib = PermissibleValue(text="Pictilisib") - Cirmtuzumab = PermissibleValue(text="Cirmtuzumab") - Inproquone = PermissibleValue(text="Inproquone") - Rofecoxib = PermissibleValue(text="Rofecoxib") - Samotolisib = PermissibleValue(text="Samotolisib") - T900607 = PermissibleValue(text="T900607") - Voxtalisib = PermissibleValue(text="Voxtalisib") - Sergiolide = PermissibleValue(text="Sergiolide") - Canerpaturev = PermissibleValue(text="Canerpaturev") - Etigilimab = PermissibleValue(text="Etigilimab") - Ganetespib = PermissibleValue(text="Ganetespib") - Pentamethylmelamine = PermissibleValue(text="Pentamethylmelamine") - Trioxifene = PermissibleValue(text="Trioxifene") - Amcasertib = PermissibleValue(text="Amcasertib") - Apomab = PermissibleValue(text="Apomab") - Sulforaphane = PermissibleValue(text="Sulforaphane") - Fadraciclib = PermissibleValue(text="Fadraciclib") - Rebeccamycin = PermissibleValue(text="Rebeccamycin") - Roducitabine = PermissibleValue(text="Roducitabine") - Mitoclomine = PermissibleValue(text="Mitoclomine") - Mannosulfan = PermissibleValue(text="Mannosulfan") - Barasertib = PermissibleValue(text="Barasertib") - Methoxyamine = PermissibleValue(text="Methoxyamine") - Epitiostanol = PermissibleValue(text="Epitiostanol") - Vopratelimab = PermissibleValue(text="Vopratelimab") - Nocodazole = PermissibleValue(text="Nocodazole") - Relugolix = PermissibleValue(text="Relugolix") - Silibinin = PermissibleValue(text="Silibinin") - Elacytarabine = PermissibleValue(text="Elacytarabine") - Clofarabine = PermissibleValue(text="Clofarabine") - Giloralimab = PermissibleValue(text="Giloralimab") - Golvatinib = PermissibleValue(text="Golvatinib") - Patritumab = PermissibleValue(text="Patritumab") - Fluzoparib = PermissibleValue(text="Fluzoparib") - Licorice = PermissibleValue(text="Licorice") - Favezelimab = PermissibleValue(text="Favezelimab") - Clomiphene = PermissibleValue(text="Clomiphene") - Methyltestosterone = PermissibleValue(text="Methyltestosterone") - Breflate = PermissibleValue(text="Breflate") - Dupilumab = PermissibleValue(text="Dupilumab") - Murizatoclax = PermissibleValue(text="Murizatoclax") - Diazooxonorleucine = PermissibleValue(text="Diazooxonorleucine") - Relatlimab = PermissibleValue(text="Relatlimab") - Alvespimycin = PermissibleValue(text="Alvespimycin") - Acitretin = PermissibleValue(text="Acitretin") - Cytochlor = PermissibleValue(text="Cytochlor") - Galamustine = PermissibleValue(text="Galamustine") - Resiquimod = PermissibleValue(text="Resiquimod") - Lexibulin = PermissibleValue(text="Lexibulin") - Natalizumab = PermissibleValue(text="Natalizumab") - Derazantinib = PermissibleValue(text="Derazantinib") - Doxazosin = PermissibleValue(text="Doxazosin") - Gemcitabine = PermissibleValue(text="Gemcitabine") - Iboctadekin = PermissibleValue(text="Iboctadekin") - Apolizumab = PermissibleValue(text="Apolizumab") - Acalabrutinib = PermissibleValue(text="Acalabrutinib") - Peretinoin = PermissibleValue(text="Peretinoin") - Piroxantrone = PermissibleValue(text="Piroxantrone") - Selicrelumab = PermissibleValue(text="Selicrelumab") - Salirasib = PermissibleValue(text="Salirasib") - Anhydrovinblastine = PermissibleValue(text="Anhydrovinblastine") - Dacplatinum = PermissibleValue(text="Dacplatinum") - Isotretinoin = PermissibleValue(text="Isotretinoin") - Drozitumab = PermissibleValue(text="Drozitumab") - Didox = PermissibleValue(text="Didox") - Rosopatamab = PermissibleValue(text="Rosopatamab") - Pemetrexed = PermissibleValue(text="Pemetrexed") - Pingyangmycin = PermissibleValue(text="Pingyangmycin") - Amatuximab = PermissibleValue(text="Amatuximab") - Tavolimab = PermissibleValue(text="Tavolimab") - Vinepidine = PermissibleValue(text="Vinepidine") - Olutasidenib = PermissibleValue(text="Olutasidenib") - Bemarituzumab = PermissibleValue(text="Bemarituzumab") - Pelabresib = PermissibleValue(text="Pelabresib") - Navitoclax = PermissibleValue(text="Navitoclax") - Pegilodecakin = PermissibleValue(text="Pegilodecakin") - Binimetinib = PermissibleValue(text="Binimetinib") - Incyclinide = PermissibleValue(text="Incyclinide") - Tirabrutinib = PermissibleValue(text="Tirabrutinib") - Quizartinib = PermissibleValue(text="Quizartinib") - Pegvisomant = PermissibleValue(text="Pegvisomant") - Ditiocarb = PermissibleValue(text="Ditiocarb") - Rebimastat = PermissibleValue(text="Rebimastat") - Aminopterin = PermissibleValue(text="Aminopterin") - Panitumumab = PermissibleValue(text="Panitumumab") - KRN5500 = PermissibleValue(text="KRN5500") - Gutolactone = PermissibleValue(text="Gutolactone") - Perifosine = PermissibleValue(text="Perifosine") - Irosustat = PermissibleValue(text="Irosustat") - Brilanestrant = PermissibleValue(text="Brilanestrant") - Lirilumab = PermissibleValue(text="Lirilumab") - Temsirolimus = PermissibleValue(text="Temsirolimus") - Gelonin = PermissibleValue(text="Gelonin") - Patupilone = PermissibleValue(text="Patupilone") - Bruceantin = PermissibleValue(text="Bruceantin") - Odronextamab = PermissibleValue(text="Odronextamab") - Infigratinib = PermissibleValue(text="Infigratinib") - Mitazalimab = PermissibleValue(text="Mitazalimab") - Linrodostat = PermissibleValue(text="Linrodostat") - Daromun = PermissibleValue(text="Daromun") - Tanibirumab = PermissibleValue(text="Tanibirumab") - Plocabulin = PermissibleValue(text="Plocabulin") - Narnatumab = PermissibleValue(text="Narnatumab") - Chemotherapy = PermissibleValue(text="Chemotherapy") - Busulfan = PermissibleValue(text="Busulfan") - Simtuzumab = PermissibleValue(text="Simtuzumab") - Oxeclosporin = PermissibleValue(text="Oxeclosporin") - Larotaxel = PermissibleValue(text="Larotaxel") - Niacinamide = PermissibleValue(text="Niacinamide") - Ilginatinib = PermissibleValue(text="Ilginatinib") - Taladegib = PermissibleValue(text="Taladegib") - Rivoceranib = PermissibleValue(text="Rivoceranib") - Iratumumab = PermissibleValue(text="Iratumumab") - Everolimus = PermissibleValue(text="Everolimus") - Nazartinib = PermissibleValue(text="Nazartinib") - Ramucirumab = PermissibleValue(text="Ramucirumab") - Tariquidar = PermissibleValue(text="Tariquidar") - Elotuzumab = PermissibleValue(text="Elotuzumab") - Galeterone = PermissibleValue(text="Galeterone") - Lucatumumab = PermissibleValue(text="Lucatumumab") - Pipendoxifene = PermissibleValue(text="Pipendoxifene") - Apricoxib = PermissibleValue(text="Apricoxib") - Dalantercept = PermissibleValue(text="Dalantercept") - Agerafenib = PermissibleValue(text="Agerafenib") - Iadademstat = PermissibleValue(text="Iadademstat") - Taselisib = PermissibleValue(text="Taselisib") - Talazoparib = PermissibleValue(text="Talazoparib") - Bizelesin = PermissibleValue(text="Bizelesin") - Belzutifan = PermissibleValue(text="Belzutifan") - Mechlorethamine = PermissibleValue(text="Mechlorethamine") - Idasanutlin = PermissibleValue(text="Idasanutlin") - Fulvestrant = PermissibleValue(text="Fulvestrant") - Estramustine = PermissibleValue(text="Estramustine") - Hydroxytyrosol = PermissibleValue(text="Hydroxytyrosol") - Alisertib = PermissibleValue(text="Alisertib") - Acetylcysteine = PermissibleValue(text="Acetylcysteine") - Oxcarbazepine = PermissibleValue(text="Oxcarbazepine") - Orantinib = PermissibleValue(text="Orantinib") - Varlilumab = PermissibleValue(text="Varlilumab") - Pracinostat = PermissibleValue(text="Pracinostat") - Idetrexed = PermissibleValue(text="Idetrexed") - Sivifene = PermissibleValue(text="Sivifene") - Tapotoclax = PermissibleValue(text="Tapotoclax") - Iproplatin = PermissibleValue(text="Iproplatin") - HuaChanSu = PermissibleValue(text="HuaChanSu") - Mirabegron = PermissibleValue(text="Mirabegron") - Ensartinib = PermissibleValue(text="Ensartinib") - Pidilizumab = PermissibleValue(text="Pidilizumab") - Seribantumab = PermissibleValue(text="Seribantumab") - Darinaparsin = PermissibleValue(text="Darinaparsin") - Vantictumab = PermissibleValue(text="Vantictumab") - Dasatinib = PermissibleValue(text="Dasatinib") - Teniposide = PermissibleValue(text="Teniposide") - Hexaminolevulinate = PermissibleValue(text="Hexaminolevulinate") - Epacadostat = PermissibleValue(text="Epacadostat") - Semaxanib = PermissibleValue(text="Semaxanib") - Tidutamab = PermissibleValue(text="Tidutamab") - Mavorixafor = PermissibleValue(text="Mavorixafor") - Semustine = PermissibleValue(text="Semustine") - Vorasidenib = PermissibleValue(text="Vorasidenib") - Letolizumab = PermissibleValue(text="Letolizumab") - Gimatecan = PermissibleValue(text="Gimatecan") - Vosaroxin = PermissibleValue(text="Vosaroxin") - Deferoxamine = PermissibleValue(text="Deferoxamine") - Enoblituzumab = PermissibleValue(text="Enoblituzumab") - Idarubicin = PermissibleValue(text="Idarubicin") - Carotuximab = PermissibleValue(text="Carotuximab") - Thiotepa = PermissibleValue(text="Thiotepa") - Resminostat = PermissibleValue(text="Resminostat") - Valecobulin = PermissibleValue(text="Valecobulin") - Efizonerimod = PermissibleValue(text="Efizonerimod") - Liarozole = PermissibleValue(text="Liarozole") - Flanvotumab = PermissibleValue(text="Flanvotumab") - Ivaltinostat = PermissibleValue(text="Ivaltinostat") - Entrectinib = PermissibleValue(text="Entrectinib") - Detirelix = PermissibleValue(text="Detirelix") - Medroxyprogesterone = PermissibleValue(text="Medroxyprogesterone") - Streptonigrin = PermissibleValue(text="Streptonigrin") - Talacotuzumab = PermissibleValue(text="Talacotuzumab") - Iberdomide = PermissibleValue(text="Iberdomide") - Minretumomab = PermissibleValue(text="Minretumomab") - Picropodophyllin = PermissibleValue(text="Picropodophyllin") - Atuveciclib = PermissibleValue(text="Atuveciclib") - Altiratinib = PermissibleValue(text="Altiratinib") - Tomivosertib = PermissibleValue(text="Tomivosertib") - Elsamitrucin = PermissibleValue(text="Elsamitrucin") - Acronine = PermissibleValue(text="Acronine") - Lurbinectedin = PermissibleValue(text="Lurbinectedin") - Duvelisib = PermissibleValue(text="Duvelisib") - Olaparib = PermissibleValue(text="Olaparib") - Aprinocarsen = PermissibleValue(text="Aprinocarsen") - Halofuginone = PermissibleValue(text="Halofuginone") - Apatorsen = PermissibleValue(text="Apatorsen") - Tegafur = PermissibleValue(text="Tegafur") - Interferon = PermissibleValue(text="Interferon") - Emitefur = PermissibleValue(text="Emitefur") - Zebularine = PermissibleValue(text="Zebularine") - Entolimod = PermissibleValue(text="Entolimod") - Licartin = PermissibleValue(text="Licartin") - Cevostamab = PermissibleValue(text="Cevostamab") - Troglitazone = PermissibleValue(text="Troglitazone") - Foslinanib = PermissibleValue(text="Foslinanib") - Osilodrostat = PermissibleValue(text="Osilodrostat") - Serabelisib = PermissibleValue(text="Serabelisib") - Tiragolumab = PermissibleValue(text="Tiragolumab") - Vibostolimab = PermissibleValue(text="Vibostolimab") - Rhizoxin = PermissibleValue(text="Rhizoxin") - Indibulin = PermissibleValue(text="Indibulin") - - _defn = EnumDefinition( - name="EnumCCDHSubstanceSubstanceType", - description="Autogenerated Enumeration for CRDC-H Substance substance_type", - code_set=None, - code_set_version="2021-07-21T20:42:57.020136+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Anti-PTK7/Auristatin-0101 Antibody-drug Conjugate PF-06647020", - PermissibleValue(text="Anti-PTK7/Auristatin-0101 Antibody-drug Conjugate PF-06647020") ) - setattr(cls, "EGFR/TGFb Fusion Monoclonal Antibody BCA101", - PermissibleValue(text="EGFR/TGFb Fusion Monoclonal Antibody BCA101") ) - setattr(cls, "Naphthalimide Analogue UNBS5162", - PermissibleValue(text="Naphthalimide Analogue UNBS5162") ) - setattr(cls, "Oral Ixabepilone", - PermissibleValue(text="Oral Ixabepilone") ) - setattr(cls, "DNA Minor Groove Binding Agent SG2000", - PermissibleValue(text="DNA Minor Groove Binding Agent SG2000") ) - setattr(cls, "Dromostanolone Propionate", - PermissibleValue(text="Dromostanolone Propionate") ) - setattr(cls, "Pegylated Liposomal Nanoparticle-based Docetaxel Prodrug MNK-010", - PermissibleValue(text="Pegylated Liposomal Nanoparticle-based Docetaxel Prodrug MNK-010") ) - setattr(cls, "ALK/FAK/Pyk2 Inhibitor CT-707", - PermissibleValue(text="ALK/FAK/Pyk2 Inhibitor CT-707") ) - setattr(cls, "Attenuated Measles Virus Encoding SCD Transgene TMV-018", - PermissibleValue(text="Attenuated Measles Virus Encoding SCD Transgene TMV-018") ) - setattr(cls, "Bcl-2 Inhibitor BGB-11417", - PermissibleValue(text="Bcl-2 Inhibitor BGB-11417") ) - setattr(cls, "Rovalpituzumab Tesirine", - PermissibleValue(text="Rovalpituzumab Tesirine") ) - setattr(cls, "Erastin Analogue PRLX 93936", - PermissibleValue(text="Erastin Analogue PRLX 93936") ) - setattr(cls, "Anti-EGFRvIII Antibody Drug Conjugate AMG 595", - PermissibleValue(text="Anti-EGFRvIII Antibody Drug Conjugate AMG 595") ) - setattr(cls, "Protein Arginine Methyltransferase 5 Inhibitor GSK3326595", - PermissibleValue(text="Protein Arginine Methyltransferase 5 Inhibitor GSK3326595") ) - setattr(cls, "Mcl-1 Inhibitor AZD5991", - PermissibleValue(text="Mcl-1 Inhibitor AZD5991") ) - setattr(cls, "Anti-LAG-3 Monoclonal Antibody LAG525", - PermissibleValue(text="Anti-LAG-3 Monoclonal Antibody LAG525") ) - setattr(cls, "Anti-C4.4a Antibody-Drug Conjugate BAY1129980", - PermissibleValue(text="Anti-C4.4a Antibody-Drug Conjugate BAY1129980") ) - setattr(cls, "Oblimersen Sodium", - PermissibleValue(text="Oblimersen Sodium") ) - setattr(cls, "Anti-NY-ESO1/LAGE-1A TCR/scFv Anti-CD3 IMCnyeso", - PermissibleValue(text="Anti-NY-ESO1/LAGE-1A TCR/scFv Anti-CD3 IMCnyeso") ) - setattr(cls, "Epothilone Analog UTD1", - PermissibleValue(text="Epothilone Analog UTD1") ) - setattr(cls, "Indicine-N-Oxide", - PermissibleValue(text="Indicine-N-Oxide") ) - setattr(cls, "HER2-targeting Antibody Fc Fragment FS102", - PermissibleValue(text="HER2-targeting Antibody Fc Fragment FS102") ) - setattr(cls, "UAE Inhibitor TAK-243", - PermissibleValue(text="UAE Inhibitor TAK-243") ) - setattr(cls, "HM2/MMAE Antibody-Drug Conjugate ALT-P7", - PermissibleValue(text="HM2/MMAE Antibody-Drug Conjugate ALT-P7") ) - setattr(cls, "Anti-PD-L1/4-1BB Bispecific Antibody INBRX-105", - PermissibleValue(text="Anti-PD-L1/4-1BB Bispecific Antibody INBRX-105") ) - setattr(cls, "FGF Receptor Antagonist HGS1036", - PermissibleValue(text="FGF Receptor Antagonist HGS1036") ) - setattr(cls, "Anti-PR1/HLA-A2 Monoclonal Antibody Hu8F4", - PermissibleValue(text="Anti-PR1/HLA-A2 Monoclonal Antibody Hu8F4") ) - setattr(cls, "DR5-targeting Tetrameric Nanobody Agonist TAS266", - PermissibleValue(text="DR5-targeting Tetrameric Nanobody Agonist TAS266") ) - setattr(cls, "Methotrexate Sodium", - PermissibleValue(text="Methotrexate Sodium") ) - setattr(cls, "Neoantigen-based Melanoma-Poly-ICLC Vaccine", - PermissibleValue(text="Neoantigen-based Melanoma-Poly-ICLC Vaccine") ) - setattr(cls, "Phytochlorin Sodium-Polyvinylpyrrolidone Complex", - PermissibleValue(text="Phytochlorin Sodium-Polyvinylpyrrolidone Complex") ) - setattr(cls, "TRPM8 Agonist D-3263", - PermissibleValue(text="TRPM8 Agonist D-3263") ) - setattr(cls, "Folate Receptor-Targeted Vinca Alkaloid/Mitomycin C EC0225", - PermissibleValue(text="Folate Receptor-Targeted Vinca Alkaloid/Mitomycin C EC0225") ) - setattr(cls, "Trifluridine and Tipiracil Hydrochloride", - PermissibleValue(text="Trifluridine and Tipiracil Hydrochloride") ) - setattr(cls, "Recombinant Anti-WT1 Immunotherapeutic GSK2302024A", - PermissibleValue(text="Recombinant Anti-WT1 Immunotherapeutic GSK2302024A") ) - setattr(cls, "Cytokine-based Biologic Agent IRX-2", - PermissibleValue(text="Cytokine-based Biologic Agent IRX-2") ) - setattr(cls, "Anti-LIF Monoclonal Antibody MSC-1", - PermissibleValue(text="Anti-LIF Monoclonal Antibody MSC-1") ) - setattr(cls, "Anti-Ribonucleoprotein Antibody ATRC-101", - PermissibleValue(text="Anti-Ribonucleoprotein Antibody ATRC-101") ) - setattr(cls, "PARP-1/2 Inhibitor ABT-767", - PermissibleValue(text="PARP-1/2 Inhibitor ABT-767") ) - setattr(cls, "2-Methoxyestradiol Nanocrystal Colloidal Dispersion", - PermissibleValue(text="2-Methoxyestradiol Nanocrystal Colloidal Dispersion") ) - setattr(cls, "Yttrium Y 90 DOTA Anti-CEA Monoclonal Antibody M5A", - PermissibleValue(text="Yttrium Y 90 DOTA Anti-CEA Monoclonal Antibody M5A") ) - setattr(cls, "Bis(choline)tetrathiomolybdate", - PermissibleValue(text="Bis(choline)tetrathiomolybdate") ) - setattr(cls, "AXL/ FLT3/VEGFR2 Inhibitor KC1036", - PermissibleValue(text="AXL/ FLT3/VEGFR2 Inhibitor KC1036") ) - setattr(cls, "Soy Protein Isolate", - PermissibleValue(text="Soy Protein Isolate") ) - setattr(cls, "Anti-LIV-1 Monoclonal Antibody-MMAE Conjugate SGN-LIV1A", - PermissibleValue(text="Anti-LIV-1 Monoclonal Antibody-MMAE Conjugate SGN-LIV1A") ) - setattr(cls, "Doxorubicin-HPMA Conjugate", - PermissibleValue(text="Doxorubicin-HPMA Conjugate") ) - setattr(cls, "Allogeneic GM-CSF-secreting Breast Cancer Vaccine SV-BR-1-GM", - PermissibleValue(text="Allogeneic GM-CSF-secreting Breast Cancer Vaccine SV-BR-1-GM") ) - setattr(cls, "p70S6K/Akt Inhibitor MSC2363318A", - PermissibleValue(text="p70S6K/Akt Inhibitor MSC2363318A") ) - setattr(cls, "p97 Inhibitor CB-5339", - PermissibleValue(text="p97 Inhibitor CB-5339") ) - setattr(cls, "Pan-KRAS Inhibitor BI 1701963", - PermissibleValue(text="Pan-KRAS Inhibitor BI 1701963") ) - setattr(cls, "Zuclomiphene Citrate", - PermissibleValue(text="Zuclomiphene Citrate") ) - setattr(cls, "Recombinant Interferon", - PermissibleValue(text="Recombinant Interferon") ) - setattr(cls, "Non-Small Cell Lung Cancer mRNA-Derived Vaccine CV9201", - PermissibleValue(text="Non-Small Cell Lung Cancer mRNA-Derived Vaccine CV9201") ) - setattr(cls, "Trans Sodium Crocetinate", - PermissibleValue(text="Trans Sodium Crocetinate") ) - setattr(cls, "Androgen Receptor Ligand-binding Domain-encoding Plasmid DNA Vaccine MVI-118", - PermissibleValue(text="Androgen Receptor Ligand-binding Domain-encoding Plasmid DNA Vaccine MVI-118") ) - setattr(cls, "PE/HPV16 E7/KDEL Fusion Protein/GPI-0100 TVGV-1", - PermissibleValue(text="PE/HPV16 E7/KDEL Fusion Protein/GPI-0100 TVGV-1") ) - setattr(cls, "Androstane Steroid HE3235", - PermissibleValue(text="Androstane Steroid HE3235") ) - setattr(cls, "Antibody-drug Conjugate ABBV-085", - PermissibleValue(text="Antibody-drug Conjugate ABBV-085") ) - setattr(cls, "Recombinant Granulocyte-Macrophage Colony-Stimulating Factor", - PermissibleValue(text="Recombinant Granulocyte-Macrophage Colony-Stimulating Factor") ) - setattr(cls, "OPCs/Green Tea/Spirullina/Curcumin/Antrodia Camphorate/Fermented Soymilk Extract Capsule", - PermissibleValue(text="OPCs/Green Tea/Spirullina/Curcumin/Antrodia Camphorate/Fermented Soymilk Extract Capsule") ) - setattr(cls, "Lipid Nanoparticle Encapsulated mRNAs Encoding Human IL-12A/IL-12B MEDI-1191", - PermissibleValue(text="Lipid Nanoparticle Encapsulated mRNAs Encoding Human IL-12A/IL-12B MEDI-1191") ) - setattr(cls, "Ribonuclease QBI-139", - PermissibleValue(text="Ribonuclease QBI-139") ) - setattr(cls, "Folate Receptor-Targeted Tubulysin Conjugate EC1456", - PermissibleValue(text="Folate Receptor-Targeted Tubulysin Conjugate EC1456") ) - setattr(cls, "Fas Ligand-treated Allogeneic Mobilized Peripheral Blood Cells", - PermissibleValue(text="Fas Ligand-treated Allogeneic Mobilized Peripheral Blood Cells") ) - setattr(cls, "Bruceanol A", - PermissibleValue(text="Bruceanol A") ) - setattr(cls, "Ispinesib Mesylate", - PermissibleValue(text="Ispinesib Mesylate") ) - setattr(cls, "Buthionine Sulfoximine", - PermissibleValue(text="Buthionine Sulfoximine") ) - setattr(cls, "Recombinant Fractalkine", - PermissibleValue(text="Recombinant Fractalkine") ) - setattr(cls, "IDH1(R132) Inhibitor IDH305", - PermissibleValue(text="IDH1(R132) Inhibitor IDH305") ) - setattr(cls, "XBP1-US/XBP1-SP/CD138/CS1 Multipeptide Vaccine PVX-410", - PermissibleValue(text="XBP1-US/XBP1-SP/CD138/CS1 Multipeptide Vaccine PVX-410") ) - setattr(cls, "Anti-GARP Monoclonal Antibody ABBV-151", - PermissibleValue(text="Anti-GARP Monoclonal Antibody ABBV-151") ) - setattr(cls, "NG-nitro-L-arginine", - PermissibleValue(text="NG-nitro-L-arginine") ) - setattr(cls, "FGFR2 Inhibitor RLY-4008", - PermissibleValue(text="FGFR2 Inhibitor RLY-4008") ) - setattr(cls, "Radotinib Hydrochloride", - PermissibleValue(text="Radotinib Hydrochloride") ) - setattr(cls, "Vascular Disrupting Agent BNC105P", - PermissibleValue(text="Vascular Disrupting Agent BNC105P") ) - setattr(cls, "Sustained-release Mitomycin C Hydrogel Formulation UGN-101", - PermissibleValue(text="Sustained-release Mitomycin C Hydrogel Formulation UGN-101") ) - setattr(cls, "Anti-CXCR4 Monoclonal Antibody PF-06747143", - PermissibleValue(text="Anti-CXCR4 Monoclonal Antibody PF-06747143") ) - setattr(cls, "Iodine I-131", - PermissibleValue(text="Iodine I-131") ) - setattr(cls, "iPSC-derived Natural Killer Cells FT500", - PermissibleValue(text="iPSC-derived Natural Killer Cells FT500") ) - setattr(cls, "HDAC8 Inhibitor NBM-BMX", - PermissibleValue(text="HDAC8 Inhibitor NBM-BMX") ) - setattr(cls, "Anti-CLDN6 Monoclonal Antibody ASP1650", - PermissibleValue(text="Anti-CLDN6 Monoclonal Antibody ASP1650") ) - setattr(cls, "Piroxantrone Hydrochloride", - PermissibleValue(text="Piroxantrone Hydrochloride") ) - setattr(cls, "Allogeneic Cellular Vaccine 1650-G", - PermissibleValue(text="Allogeneic Cellular Vaccine 1650-G") ) - setattr(cls, "Bcl-2 Inhibitor S65487", - PermissibleValue(text="Bcl-2 Inhibitor S65487") ) - setattr(cls, "Rhenium Re-186 Hydroxyethylidene Diphosphonate", - PermissibleValue(text="Rhenium Re-186 Hydroxyethylidene Diphosphonate") ) - setattr(cls, "TRK Inhibitor AZD6918", - PermissibleValue(text="TRK Inhibitor AZD6918") ) - setattr(cls, "MCL-1 Inhibitor AMG 176", - PermissibleValue(text="MCL-1 Inhibitor AMG 176") ) - setattr(cls, "Tubulin-Binding Agent SSR97225", - PermissibleValue(text="Tubulin-Binding Agent SSR97225") ) - setattr(cls, "Anti-CD32B Monoclonal Antibody BI-1206", - PermissibleValue(text="Anti-CD32B Monoclonal Antibody BI-1206") ) - setattr(cls, "Metatinib Tromethamine", - PermissibleValue(text="Metatinib Tromethamine") ) - setattr(cls, "Oral Cancer Vaccine V3-OVA", - PermissibleValue(text="Oral Cancer Vaccine V3-OVA") ) - setattr(cls, "Anti-IL-8 Monoclonal Antibody HuMax-IL8", - PermissibleValue(text="Anti-IL-8 Monoclonal Antibody HuMax-IL8") ) - setattr(cls, "Ingenol Mebutate Gel", - PermissibleValue(text="Ingenol Mebutate Gel") ) - setattr(cls, "Docetaxel Polymeric Micelles", - PermissibleValue(text="Docetaxel Polymeric Micelles") ) - setattr(cls, "MEK inhibitor CS3006", - PermissibleValue(text="MEK inhibitor CS3006") ) - setattr(cls, "Sunitinib Malate", - PermissibleValue(text="Sunitinib Malate") ) - setattr(cls, "Autologous ROR2-targeted CAR T-cells CCT301-59", - PermissibleValue(text="Autologous ROR2-targeted CAR T-cells CCT301-59") ) - setattr(cls, "Cell Cycle Checkpoint/DNA Repair Antagonist IC83", - PermissibleValue(text="Cell Cycle Checkpoint/DNA Repair Antagonist IC83") ) - setattr(cls, "Nogapendekin Alfa", - PermissibleValue(text="Nogapendekin Alfa") ) - setattr(cls, "CAR T-Cells AMG 119", - PermissibleValue(text="CAR T-Cells AMG 119") ) - setattr(cls, "Fadrozole Hydrochloride", - PermissibleValue(text="Fadrozole Hydrochloride") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody RC98", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody RC98") ) - setattr(cls, "Etirinotecan Pegol", - PermissibleValue(text="Etirinotecan Pegol") ) - setattr(cls, "Protein Phosphatase 2A Inhibitor LB-100", - PermissibleValue(text="Protein Phosphatase 2A Inhibitor LB-100") ) - setattr(cls, "Calaspargase Pegol-mknl", - PermissibleValue(text="Calaspargase Pegol-mknl") ) - setattr(cls, "Polypodium leucotomos Extract", - PermissibleValue(text="Polypodium leucotomos Extract") ) - setattr(cls, "Tegafur-Uracil", - PermissibleValue(text="Tegafur-Uracil") ) - setattr(cls, "FAK Inhibitor VS-4718", - PermissibleValue(text="FAK Inhibitor VS-4718") ) - setattr(cls, "BTK Inhibitor HZ-A-018", - PermissibleValue(text="BTK Inhibitor HZ-A-018") ) - setattr(cls, "4'-Iodo-4'-Deoxydoxorubicin", - PermissibleValue(text="4'-Iodo-4'-Deoxydoxorubicin") ) - setattr(cls, "PARP Inhibitor E7016", - PermissibleValue(text="PARP Inhibitor E7016") ) - setattr(cls, "Anti-PD-L1/TIM-3 Bispecific Antibody LY3415244", - PermissibleValue(text="Anti-PD-L1/TIM-3 Bispecific Antibody LY3415244") ) - setattr(cls, "Akt/ERK Inhibitor ONC201", - PermissibleValue(text="Akt/ERK Inhibitor ONC201") ) - setattr(cls, "Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01", - PermissibleValue(text="Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01") ) - setattr(cls, "Checkpoint Kinase Inhibitor XL844", - PermissibleValue(text="Checkpoint Kinase Inhibitor XL844") ) - setattr(cls, "Autologous CD19/PD-1 Bispecific CAR-T Cells", - PermissibleValue(text="Autologous CD19/PD-1 Bispecific CAR-T Cells") ) - setattr(cls, "Long Peptide Vaccine 7", - PermissibleValue(text="Long Peptide Vaccine 7") ) - setattr(cls, "Matrix Metalloproteinase Inhibitor MMI270", - PermissibleValue(text="Matrix Metalloproteinase Inhibitor MMI270") ) - setattr(cls, "Bleomycin Sulfate", - PermissibleValue(text="Bleomycin Sulfate") ) - setattr(cls, "EGFR Inhibitor TY-9591", - PermissibleValue(text="EGFR Inhibitor TY-9591") ) - setattr(cls, "Anti-CD30 Monoclonal Antibody MDX-1401", - PermissibleValue(text="Anti-CD30 Monoclonal Antibody MDX-1401") ) - setattr(cls, "Survivin mRNA Antagonist EZN-3042", - PermissibleValue(text="Survivin mRNA Antagonist EZN-3042") ) - setattr(cls, "Anti-VEGF Anticalin PRS-050-PEG40", - PermissibleValue(text="Anti-VEGF Anticalin PRS-050-PEG40") ) - setattr(cls, "LMB-2 Immunotoxin", - PermissibleValue(text="LMB-2 Immunotoxin") ) - setattr(cls, "St. John's Wort", - PermissibleValue(text="St. John's Wort") ) - setattr(cls, "Brequinar Sodium", - PermissibleValue(text="Brequinar Sodium") ) - setattr(cls, "mTOR Kinase Inhibitor PP242", - PermissibleValue(text="mTOR Kinase Inhibitor PP242") ) - setattr(cls, "2-Hydroxyestrone", - PermissibleValue(text="2-Hydroxyestrone") ) - setattr(cls, "Total Androgen Blockade", - PermissibleValue(text="Total Androgen Blockade") ) - setattr(cls, "FGFR/VEGFR/PDGFR/FLT3/SRC Inhibitor XL999", - PermissibleValue(text="FGFR/VEGFR/PDGFR/FLT3/SRC Inhibitor XL999") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody AK105", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody AK105") ) - setattr(cls, "Talaporfin Sodium", - PermissibleValue(text="Talaporfin Sodium") ) - setattr(cls, "PKC-beta Inhibitor MS-553", - PermissibleValue(text="PKC-beta Inhibitor MS-553") ) - setattr(cls, "Autologous Genetically-modified MAGE-A4 C1032 T Cells", - PermissibleValue(text="Autologous Genetically-modified MAGE-A4 C1032 T Cells") ) - setattr(cls, "Zinc Finger Nuclease ZFN-758", - PermissibleValue(text="Zinc Finger Nuclease ZFN-758") ) - setattr(cls, "Prednisolone Sodium Phosphate", - PermissibleValue(text="Prednisolone Sodium Phosphate") ) - setattr(cls, "MUC1-targeted Peptide GO-203-2C", - PermissibleValue(text="MUC1-targeted Peptide GO-203-2C") ) - setattr(cls, "Aminopterin Sodium", - PermissibleValue(text="Aminopterin Sodium") ) - setattr(cls, "2-Hydroxyestradiol", - PermissibleValue(text="2-Hydroxyestradiol") ) - setattr(cls, "Plasmid DNA Vaccine pING-hHER3FL", - PermissibleValue(text="Plasmid DNA Vaccine pING-hHER3FL") ) - setattr(cls, "Ang2/VEGF-Binding Peptides-Antibody Fusion Protein CVX-241", - PermissibleValue(text="Ang2/VEGF-Binding Peptides-Antibody Fusion Protein CVX-241") ) - setattr(cls, "Anti-GRP78 Monoclonal Antibody PAT-SM6", - PermissibleValue(text="Anti-GRP78 Monoclonal Antibody PAT-SM6") ) - setattr(cls, "Anti-LAG-3 Monoclonal Antibody IBI-110", - PermissibleValue(text="Anti-LAG-3 Monoclonal Antibody IBI-110") ) - setattr(cls, "Anti-CD123/CD3 Bispecific Antibody APVO436", - PermissibleValue(text="Anti-CD123/CD3 Bispecific Antibody APVO436") ) - setattr(cls, "Synthetic hTERT DNA Vaccine INO-1401", - PermissibleValue(text="Synthetic hTERT DNA Vaccine INO-1401") ) - setattr(cls, "Infigratinib Mesylate", - PermissibleValue(text="Infigratinib Mesylate") ) - setattr(cls, "Anti-TROP2 Antibody-drug Conjugate BAT8003", - PermissibleValue(text="Anti-TROP2 Antibody-drug Conjugate BAT8003") ) - setattr(cls, "Oxaliplatin-Encapsulated Transferrin-Conjugated N-glutaryl Phosphatidylethanolamine Liposome", - PermissibleValue(text="Oxaliplatin-Encapsulated Transferrin-Conjugated N-glutaryl Phosphatidylethanolamine Liposome") ) - setattr(cls, "Autologous Anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T Lymphocytes GSK3377794", - PermissibleValue(text="Autologous Anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T Lymphocytes GSK3377794") ) - setattr(cls, "HSP90-targeted SN-38 Conjugate PEN-866", - PermissibleValue(text="HSP90-targeted SN-38 Conjugate PEN-866") ) - setattr(cls, "Ras Peptide CYS", - PermissibleValue(text="Ras Peptide CYS") ) - setattr(cls, "SHP2 Inhibitor RMC-4630", - PermissibleValue(text="SHP2 Inhibitor RMC-4630") ) - setattr(cls, "Copper Cu 67 Tyr3-octreotate", - PermissibleValue(text="Copper Cu 67 Tyr3-octreotate") ) - setattr(cls, "Integrin alpha-2 Inhibitor E7820", - PermissibleValue(text="Integrin alpha-2 Inhibitor E7820") ) - setattr(cls, "Survivin Antigen Vaccine DPX-Survivac", - PermissibleValue(text="Survivin Antigen Vaccine DPX-Survivac") ) - setattr(cls, "Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s", - PermissibleValue(text="Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s") ) - setattr(cls, "ALK/TRK Inhibitor TSR-011", - PermissibleValue(text="ALK/TRK Inhibitor TSR-011") ) - setattr(cls, "Anti-PRL-3 Monoclonal Antibody PRL3-zumab", - PermissibleValue(text="Anti-PRL-3 Monoclonal Antibody PRL3-zumab") ) - setattr(cls, "FGFR Inhibitor TAS-120", - PermissibleValue(text="FGFR Inhibitor TAS-120") ) - setattr(cls, "Denintuzumab Mafodotin", - PermissibleValue(text="Denintuzumab Mafodotin") ) - setattr(cls, "PI3K-delta Inhibitor HMPL 689", - PermissibleValue(text="PI3K-delta Inhibitor HMPL 689") ) - setattr(cls, "Topical Betulinic Acid", - PermissibleValue(text="Topical Betulinic Acid") ) - setattr(cls, "Hsp90-targeted Photosensitizer HS-201", - PermissibleValue(text="Hsp90-targeted Photosensitizer HS-201") ) - setattr(cls, "Heparan Sulfate Glycosaminoglycan Mimetic M402", - PermissibleValue(text="Heparan Sulfate Glycosaminoglycan Mimetic M402") ) - setattr(cls, "Hsp90 Inhibitor AB-010", - PermissibleValue(text="Hsp90 Inhibitor AB-010") ) - setattr(cls, "Anti-CD19 iCAR NK Cells", - PermissibleValue(text="Anti-CD19 iCAR NK Cells") ) - setattr(cls, "Polyunsaturated Fatty Acid", - PermissibleValue(text="Polyunsaturated Fatty Acid") ) - setattr(cls, "CAB-ROR2-ADC BA3021", - PermissibleValue(text="CAB-ROR2-ADC BA3021") ) - setattr(cls, "Levothyroxine Sodium", - PermissibleValue(text="Levothyroxine Sodium") ) - setattr(cls, "Triptolide Analog", - PermissibleValue(text="Triptolide Analog") ) - setattr(cls, "Panobinostat Nanoparticle Formulation MTX110", - PermissibleValue(text="Panobinostat Nanoparticle Formulation MTX110") ) - setattr(cls, "HLA-A2-restricted Melanoma-specific Peptides Vaccine GRN-1201", - PermissibleValue(text="HLA-A2-restricted Melanoma-specific Peptides Vaccine GRN-1201") ) - setattr(cls, "Anti-VEGF/ANG2 Nanobody BI 836880", - PermissibleValue(text="Anti-VEGF/ANG2 Nanobody BI 836880") ) - setattr(cls, "Iodine I 131 Derlotuximab Biotin", - PermissibleValue(text="Iodine I 131 Derlotuximab Biotin") ) - setattr(cls, "Nucleotide Analogue GS 9219", - PermissibleValue(text="Nucleotide Analogue GS 9219") ) - setattr(cls, "Anti-CD47 ADC SGN-CD47M", - PermissibleValue(text="Anti-CD47 ADC SGN-CD47M") ) - setattr(cls, "Anti-PSMA/CD3 Monoclonal Antibody MOR209/ES414", - PermissibleValue(text="Anti-PSMA/CD3 Monoclonal Antibody MOR209/ES414") ) - setattr(cls, "Ets-family Transcription Factor Inhibitor TK216", - PermissibleValue(text="Ets-family Transcription Factor Inhibitor TK216") ) - setattr(cls, "Adenosine A2A/A2B Receptor Antagonist AB928", - PermissibleValue(text="Adenosine A2A/A2B Receptor Antagonist AB928") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody TG-1501", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody TG-1501") ) - setattr(cls, "Oral Hsp90 Inhibitor IPI-493", - PermissibleValue(text="Oral Hsp90 Inhibitor IPI-493") ) - setattr(cls, "Anti-PVRIG Monoclonal Antibody COM701", - PermissibleValue(text="Anti-PVRIG Monoclonal Antibody COM701") ) - setattr(cls, "DHEA Mustard", - PermissibleValue(text="DHEA Mustard") ) - setattr(cls, "SSTR2-targeting Protein/DM1 Conjugate PEN-221", - PermissibleValue(text="SSTR2-targeting Protein/DM1 Conjugate PEN-221") ) - setattr(cls, "Anti-CEACAM1 Monoclonal Antibody CM-24", - PermissibleValue(text="Anti-CEACAM1 Monoclonal Antibody CM-24") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody BAT1306", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody BAT1306") ) - setattr(cls, "Raf Kinase Inhibitor HM95573", - PermissibleValue(text="Raf Kinase Inhibitor HM95573") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody MDX-1105", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody MDX-1105") ) - setattr(cls, "Palonosetron Hydrochloride", - PermissibleValue(text="Palonosetron Hydrochloride") ) - setattr(cls, "Gemcitabine-Releasing Intravesical System", - PermissibleValue(text="Gemcitabine-Releasing Intravesical System") ) - setattr(cls, "Allogeneic Anti-CD20-CAR T-cells PBCAR20A", - PermissibleValue(text="Allogeneic Anti-CD20-CAR T-cells PBCAR20A") ) - setattr(cls, "Yttrium Y 90 Colloid", - PermissibleValue(text="Yttrium Y 90 Colloid") ) - setattr(cls, "Colchicine-Site Binding Agent ABT-751", - PermissibleValue(text="Colchicine-Site Binding Agent ABT-751") ) - setattr(cls, "Antineoplastic Agent Combination SM-88", - PermissibleValue(text="Antineoplastic Agent Combination SM-88") ) - setattr(cls, "Pan-AKT Inhibitor ARQ751", - PermissibleValue(text="Pan-AKT Inhibitor ARQ751") ) - setattr(cls, "White Carrot", - PermissibleValue(text="White Carrot") ) - setattr(cls, "HPV 16 E7 Antigen-expressing Lactobacillis casei Vaccine BLS-ILB-E710c", - PermissibleValue(text="HPV 16 E7 Antigen-expressing Lactobacillis casei Vaccine BLS-ILB-E710c") ) - setattr(cls, "Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody BTRC 4017A", - PermissibleValue(text="Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody BTRC 4017A") ) - setattr(cls, "Lutetium Lu 177-DTPA-omburtamab", - PermissibleValue(text="Lutetium Lu 177-DTPA-omburtamab") ) - setattr(cls, "Imetelstat Sodium", - PermissibleValue(text="Imetelstat Sodium") ) - setattr(cls, "Pan-PIM Inhibitor INCB053914", - PermissibleValue(text="Pan-PIM Inhibitor INCB053914") ) - setattr(cls, "Liposomal Curcumin", - PermissibleValue(text="Liposomal Curcumin") ) - setattr(cls, "Cyclodextrin-Based Polymer-Camptothecin CRLX101", - PermissibleValue(text="Cyclodextrin-Based Polymer-Camptothecin CRLX101") ) - setattr(cls, "Anti-BCMA/CD3 BiTE Antibody AMG 701", - PermissibleValue(text="Anti-BCMA/CD3 BiTE Antibody AMG 701") ) - setattr(cls, "Anti-MUC16/CD3 BiTE Antibody REGN4018", - PermissibleValue(text="Anti-MUC16/CD3 BiTE Antibody REGN4018") ) - setattr(cls, "Amuvatinib Hydrochloride", - PermissibleValue(text="Amuvatinib Hydrochloride") ) - setattr(cls, "Sodium Salicylate", - PermissibleValue(text="Sodium Salicylate") ) - setattr(cls, "Anti-TIM3 Monoclonal Antibody SHR-1702", - PermissibleValue(text="Anti-TIM3 Monoclonal Antibody SHR-1702") ) - setattr(cls, "DEC-205/NY-ESO-1 Fusion Protein CDX-1401", - PermissibleValue(text="DEC-205/NY-ESO-1 Fusion Protein CDX-1401") ) - setattr(cls, "Methanol Extraction Residue of BCG", - PermissibleValue(text="Methanol Extraction Residue of BCG") ) - setattr(cls, "Aminoflavone Prodrug AFP464", - PermissibleValue(text="Aminoflavone Prodrug AFP464") ) - setattr(cls, "Autologous BCMA-targeted CAR T Cells CC-98633", - PermissibleValue(text="Autologous BCMA-targeted CAR T Cells CC-98633") ) - setattr(cls, "Autologous Prostate Cancer Antigen-expressing Dendritic Cell Vaccine BPX-101", - PermissibleValue(text="Autologous Prostate Cancer Antigen-expressing Dendritic Cell Vaccine BPX-101") ) - setattr(cls, "Engineered Human Umbilical Vein Endothelial Cells AB-205", - PermissibleValue(text="Engineered Human Umbilical Vein Endothelial Cells AB-205") ) - setattr(cls, "Sodium Phenylbutyrate", - PermissibleValue(text="Sodium Phenylbutyrate") ) - setattr(cls, "FGFR Inhibitor Debio 1347", - PermissibleValue(text="FGFR Inhibitor Debio 1347") ) - setattr(cls, "Pyrotinib Dimaleate", - PermissibleValue(text="Pyrotinib Dimaleate") ) - setattr(cls, "CD40 Agonist Monoclonal Antibody CP-870,893", - PermissibleValue(text="CD40 Agonist Monoclonal Antibody CP-870,893") ) - setattr(cls, "Alpha-Thioguanine Deoxyriboside", - PermissibleValue(text="Alpha-Thioguanine Deoxyriboside") ) - setattr(cls, "Bispecific Antibody 2B1", - PermissibleValue(text="Bispecific Antibody 2B1") ) - setattr(cls, "Rocapuldencel-T", - PermissibleValue(text="Rocapuldencel-T") ) - setattr(cls, "NLRP3 Agonist BMS-986299", - PermissibleValue(text="NLRP3 Agonist BMS-986299") ) - setattr(cls, "Anti-alpha5beta1 Integrin Antibody MINT1526A", - PermissibleValue(text="Anti-alpha5beta1 Integrin Antibody MINT1526A") ) - setattr(cls, "Anti-CD33 Antibody-drug Conjugate IMGN779", - PermissibleValue(text="Anti-CD33 Antibody-drug Conjugate IMGN779") ) - setattr(cls, "Anti-CD20 Monoclonal Antibody MIL62", - PermissibleValue(text="Anti-CD20 Monoclonal Antibody MIL62") ) - setattr(cls, "Anti-FGFR2 Antibody BAY1179470", - PermissibleValue(text="Anti-FGFR2 Antibody BAY1179470") ) - setattr(cls, "Anti-TIM-3 Monoclonal Antibody INCAGN02390", - PermissibleValue(text="Anti-TIM-3 Monoclonal Antibody INCAGN02390") ) - setattr(cls, "Firtecan Pegol", - PermissibleValue(text="Firtecan Pegol") ) - setattr(cls, "BRAF(V600E) Kinase Inhibitor ABM-1310", - PermissibleValue(text="BRAF(V600E) Kinase Inhibitor ABM-1310") ) - setattr(cls, "Salmonella VNP20009", - PermissibleValue(text="Salmonella VNP20009") ) - setattr(cls, "Hyaluronidase-zzxf/Pertuzumab/Trastuzumab", - PermissibleValue(text="Hyaluronidase-zzxf/Pertuzumab/Trastuzumab") ) - setattr(cls, "Belotecan Hydrochloride", - PermissibleValue(text="Belotecan Hydrochloride") ) - setattr(cls, "BET Inhibitor CPI-0610", - PermissibleValue(text="BET Inhibitor CPI-0610") ) - setattr(cls, "Camptothecin-20(S)-O-Propionate Hydrate", - PermissibleValue(text="Camptothecin-20(S)-O-Propionate Hydrate") ) - setattr(cls, "Colloidal Gold-Bound Tumor Necrosis Factor", - PermissibleValue(text="Colloidal Gold-Bound Tumor Necrosis Factor") ) - setattr(cls, "Mitomycin B", - PermissibleValue(text="Mitomycin B") ) - setattr(cls, "Anti-DR5 Agonist Monoclonal Antibody TRA-8", - PermissibleValue(text="Anti-DR5 Agonist Monoclonal Antibody TRA-8") ) - setattr(cls, "Yttrium Y 90 Tabituximab Barzuxetan", - PermissibleValue(text="Yttrium Y 90 Tabituximab Barzuxetan") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody BCD-145", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody BCD-145") ) - setattr(cls, "Iodine I 131 MIP-1095", - PermissibleValue(text="Iodine I 131 MIP-1095") ) - setattr(cls, "Multipeptide Vaccine S-588210", - PermissibleValue(text="Multipeptide Vaccine S-588210") ) - setattr(cls, "Adenoviral Tumor-specific Neoantigen Priming Vaccine GRT-C901", - PermissibleValue(text="Adenoviral Tumor-specific Neoantigen Priming Vaccine GRT-C901") ) - setattr(cls, "Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody JNJ-64007957", - PermissibleValue(text="Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody JNJ-64007957") ) - setattr(cls, "Green Tea Extract-based Antioxidant Supplement", - PermissibleValue(text="Green Tea Extract-based Antioxidant Supplement") ) - setattr(cls, "IDO1/TDO2 Inhibitor DN1406131", - PermissibleValue(text="IDO1/TDO2 Inhibitor DN1406131") ) - setattr(cls, "Anti-EphA2 Antibody-directed Liposomal Docetaxel Prodrug MM-310", - PermissibleValue(text="Anti-EphA2 Antibody-directed Liposomal Docetaxel Prodrug MM-310") ) - setattr(cls, "PDK1 Inhibitor AR-12", - PermissibleValue(text="PDK1 Inhibitor AR-12") ) - setattr(cls, "Topical Gemcitabine Hydrochloride", - PermissibleValue(text="Topical Gemcitabine Hydrochloride") ) - setattr(cls, "Methotrexate-Encapsulating Autologous Tumor-Derived Microparticles", - PermissibleValue(text="Methotrexate-Encapsulating Autologous Tumor-Derived Microparticles") ) - setattr(cls, "Shenqi Fuzheng Injection SQ001", - PermissibleValue(text="Shenqi Fuzheng Injection SQ001") ) - setattr(cls, "Selective Estrogen Receptor Degrader LX-039", - PermissibleValue(text="Selective Estrogen Receptor Degrader LX-039") ) - setattr(cls, "Chk1 Inhibitor GDC-0575", - PermissibleValue(text="Chk1 Inhibitor GDC-0575") ) - setattr(cls, "Lutetium Lu-177 Girentuximab", - PermissibleValue(text="Lutetium Lu-177 Girentuximab") ) - setattr(cls, "Coenzyme Q10", - PermissibleValue(text="Coenzyme Q10") ) - setattr(cls, "ChiNing Decoction", - PermissibleValue(text="ChiNing Decoction") ) - setattr(cls, "Immediate-release Tablet Afuresertib", - PermissibleValue(text="Immediate-release Tablet Afuresertib") ) - setattr(cls, "Anti-GD2 Monoclonal Antibody MORAb-028", - PermissibleValue(text="Anti-GD2 Monoclonal Antibody MORAb-028") ) - setattr(cls, "Holmium Ho 166 Poly(L-Lactic Acid) Microspheres", - PermissibleValue(text="Holmium Ho 166 Poly(L-Lactic Acid) Microspheres") ) - setattr(cls, "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing CD4+/CD8+ T-lymphocytes JCARH125", - PermissibleValue(text="Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing CD4+/CD8+ T-lymphocytes JCARH125") ) - setattr(cls, "Luminespib Mesylate", - PermissibleValue(text="Luminespib Mesylate") ) - setattr(cls, "Sacituzumab Govitecan", - PermissibleValue(text="Sacituzumab Govitecan") ) - setattr(cls, "PLK1 Inhibitor CYC140", - PermissibleValue(text="PLK1 Inhibitor CYC140") ) - setattr(cls, "Gastrin Immunotoxin", - PermissibleValue(text="Gastrin Immunotoxin") ) - setattr(cls, "Anti-B7-H3 Antibody DS-5573a", - PermissibleValue(text="Anti-B7-H3 Antibody DS-5573a") ) - setattr(cls, "mTOR Kinase Inhibitor OSI-027", - PermissibleValue(text="mTOR Kinase Inhibitor OSI-027") ) - setattr(cls, "Beta-Glucan MM-10-001", - PermissibleValue(text="Beta-Glucan MM-10-001") ) - setattr(cls, "Therapeutic Estradiol", - PermissibleValue(text="Therapeutic Estradiol") ) - setattr(cls, "Interleukin-15/Interleukin-15 Receptor Alpha Complex-Fc Fusion Protein XmAb24306", - PermissibleValue(text="Interleukin-15/Interleukin-15 Receptor Alpha Complex-Fc Fusion Protein XmAb24306") ) - setattr(cls, "Tasisulam Sodium", - PermissibleValue(text="Tasisulam Sodium") ) - setattr(cls, "Eniluracil/5-FU Combination Tablet", - PermissibleValue(text="Eniluracil/5-FU Combination Tablet") ) - setattr(cls, "Botanical Agent LEAC-102", - PermissibleValue(text="Botanical Agent LEAC-102") ) - setattr(cls, "Androgen Receptor Antagonist TAS3681", - PermissibleValue(text="Androgen Receptor Antagonist TAS3681") ) - setattr(cls, "Lipid Encapsulated Anti-PLK1 siRNA TKM-PLK1", - PermissibleValue(text="Lipid Encapsulated Anti-PLK1 siRNA TKM-PLK1") ) - setattr(cls, "Exatecan Mesylate Anhydrous", - PermissibleValue(text="Exatecan Mesylate Anhydrous") ) - setattr(cls, "Betulinic Acid", - PermissibleValue(text="Betulinic Acid") ) - setattr(cls, "CD11b Agonist GB1275", - PermissibleValue(text="CD11b Agonist GB1275") ) - setattr(cls, "ROBO1-targeted BiCAR-NKT Cells", - PermissibleValue(text="ROBO1-targeted BiCAR-NKT Cells") ) - setattr(cls, "Attenuated Listeria monocytogenes CRS-100", - PermissibleValue(text="Attenuated Listeria monocytogenes CRS-100") ) - setattr(cls, "Anti-ICOS Monoclonal Antibody MEDI-570", - PermissibleValue(text="Anti-ICOS Monoclonal Antibody MEDI-570") ) - setattr(cls, "10-Deacetyltaxol", - PermissibleValue(text="10-Deacetyltaxol") ) - setattr(cls, "Gemcitabine Hydrochloride Emulsion", - PermissibleValue(text="Gemcitabine Hydrochloride Emulsion") ) - setattr(cls, "Selective Estrogen Receptor Modulator TAS-108", - PermissibleValue(text="Selective Estrogen Receptor Modulator TAS-108") ) - setattr(cls, "Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes ACTR087", - PermissibleValue(text="Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes ACTR087") ) - setattr(cls, "Taxol Analogue SID 530", - PermissibleValue(text="Taxol Analogue SID 530") ) - setattr(cls, "Tisotumab Vedotin", - PermissibleValue(text="Tisotumab Vedotin") ) - setattr(cls, "Y 90 Monoclonal Antibody M195", - PermissibleValue(text="Y 90 Monoclonal Antibody M195") ) - setattr(cls, "SERD G1T48", - PermissibleValue(text="SERD G1T48") ) - setattr(cls, "PARP Inhibitor NMS-03305293", - PermissibleValue(text="PARP Inhibitor NMS-03305293") ) - setattr(cls, "Niraparib Tosylate Monohydrate", - PermissibleValue(text="Niraparib Tosylate Monohydrate") ) - setattr(cls, "Maraba Oncolytic Virus Expressing Mutant HPV E6/E7", - PermissibleValue(text="Maraba Oncolytic Virus Expressing Mutant HPV E6/E7") ) - setattr(cls, "Silicon Phthalocyanine 4", - PermissibleValue(text="Silicon Phthalocyanine 4") ) - setattr(cls, "pan-PI3K/mTOR Inhibitor SF1126", - PermissibleValue(text="pan-PI3K/mTOR Inhibitor SF1126") ) - setattr(cls, "Cortisone Acetate", - PermissibleValue(text="Cortisone Acetate") ) - setattr(cls, "Src Kinase Inhibitor M475271", - PermissibleValue(text="Src Kinase Inhibitor M475271") ) - setattr(cls, "TLR8 Agonist DN1508052", - PermissibleValue(text="TLR8 Agonist DN1508052") ) - setattr(cls, "Gemcitabine Hydrochloride", - PermissibleValue(text="Gemcitabine Hydrochloride") ) - setattr(cls, "Carbon C 14-pamiparib", - PermissibleValue(text="Carbon C 14-pamiparib") ) - setattr(cls, "GSK-3 Inhibitor 9-ING-41", - PermissibleValue(text="GSK-3 Inhibitor 9-ING-41") ) - setattr(cls, "Methylprednisolone Acetate", - PermissibleValue(text="Methylprednisolone Acetate") ) - setattr(cls, "Anti-HER2-DM1 Antibody-drug Conjugate GQ1001", - PermissibleValue(text="Anti-HER2-DM1 Antibody-drug Conjugate GQ1001") ) - setattr(cls, "Genetically Modified Interleukin-12 Transgene-encoding Bifidobacterium longum", - PermissibleValue(text="Genetically Modified Interleukin-12 Transgene-encoding Bifidobacterium longum") ) - setattr(cls, "Brentuximab Vedotin", - PermissibleValue(text="Brentuximab Vedotin") ) - setattr(cls, "EGFR Antisense DNA BB-401", - PermissibleValue(text="EGFR Antisense DNA BB-401") ) - setattr(cls, "Synthetic hTERT DNA Vaccine INO-1400", - PermissibleValue(text="Synthetic hTERT DNA Vaccine INO-1400") ) - setattr(cls, "Black Cohosh", - PermissibleValue(text="Black Cohosh") ) - setattr(cls, "Aprutumab Ixadotin", - PermissibleValue(text="Aprutumab Ixadotin") ) - setattr(cls, "Personalized Neoantigen DNA Vaccine GNOS-PVO2", - PermissibleValue(text="Personalized Neoantigen DNA Vaccine GNOS-PVO2") ) - setattr(cls, "Anti-FLT3 Monoclonal Antibody IMC-EB10", - PermissibleValue(text="Anti-FLT3 Monoclonal Antibody IMC-EB10") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody HBM4003", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody HBM4003") ) - setattr(cls, "Diarylsulfonylurea Compound ILX-295501", - PermissibleValue(text="Diarylsulfonylurea Compound ILX-295501") ) - setattr(cls, "Cordycepin Triphosphate", - PermissibleValue(text="Cordycepin Triphosphate") ) - setattr(cls, "Selective Human Estrogen-receptor Alpha Partial Agonist TTC-352", - PermissibleValue(text="Selective Human Estrogen-receptor Alpha Partial Agonist TTC-352") ) - setattr(cls, "Anti-OX40 Monoclonal Antibody IBI101", - PermissibleValue(text="Anti-OX40 Monoclonal Antibody IBI101") ) - setattr(cls, "Tavokinogene Telseplasmid", - PermissibleValue(text="Tavokinogene Telseplasmid") ) - setattr(cls, "Asparaginase Erwinia chrysanthemi", - PermissibleValue(text="Asparaginase Erwinia chrysanthemi") ) - setattr(cls, "HPV E6/E7-encoding Arenavirus Vaccine HB-201", - PermissibleValue(text="HPV E6/E7-encoding Arenavirus Vaccine HB-201") ) - setattr(cls, "Beta-Thioguanine Deoxyriboside", - PermissibleValue(text="Beta-Thioguanine Deoxyriboside") ) - setattr(cls, "AXL Inhibitor DS-1205c", - PermissibleValue(text="AXL Inhibitor DS-1205c") ) - setattr(cls, "Hsp90 Inhibitor BIIB028", - PermissibleValue(text="Hsp90 Inhibitor BIIB028") ) - setattr(cls, "Iodine I 131 Tositumomab", - PermissibleValue(text="Iodine I 131 Tositumomab") ) - setattr(cls, "Aziridinylbenzoquinone RH1", - PermissibleValue(text="Aziridinylbenzoquinone RH1") ) - setattr(cls, "Lutetium Lu 177 Lilotomab-satetraxetan", - PermissibleValue(text="Lutetium Lu 177 Lilotomab-satetraxetan") ) - setattr(cls, "Trimetrexate Glucuronate", - PermissibleValue(text="Trimetrexate Glucuronate") ) - setattr(cls, "Antimetabolite FF-10502", - PermissibleValue(text="Antimetabolite FF-10502") ) - setattr(cls, "Monoclonal Antibody HuAFP31", - PermissibleValue(text="Monoclonal Antibody HuAFP31") ) - setattr(cls, "Dual IGF-1R/InsR Inhibitor BMS-754807", - PermissibleValue(text="Dual IGF-1R/InsR Inhibitor BMS-754807") ) - setattr(cls, "Synthetic Alkaloid PM00104", - PermissibleValue(text="Synthetic Alkaloid PM00104") ) - setattr(cls, "Anti-TIM-3 Monoclonal Antibody MBG453", - PermissibleValue(text="Anti-TIM-3 Monoclonal Antibody MBG453") ) - setattr(cls, "7-Cyanoquinocarcinol", - PermissibleValue(text="7-Cyanoquinocarcinol") ) - setattr(cls, "Autologous CD19 CAR-expressing CD4+/CD8+ T-cells MB-CART19.1", - PermissibleValue(text="Autologous CD19 CAR-expressing CD4+/CD8+ T-cells MB-CART19.1") ) - setattr(cls, "BTK Inhibitor LOXO-305", - PermissibleValue(text="BTK Inhibitor LOXO-305") ) - setattr(cls, "Annamycin Liposomal", - PermissibleValue(text="Annamycin Liposomal") ) - setattr(cls, "Seneca Valley Virus-001", - PermissibleValue(text="Seneca Valley Virus-001") ) - setattr(cls, "Anti-CD20-engineered Toxin Body MT-3724", - PermissibleValue(text="Anti-CD20-engineered Toxin Body MT-3724") ) - setattr(cls, "GBM Antigens and Alloantigens Immunotherapeutic Vaccine", - PermissibleValue(text="GBM Antigens and Alloantigens Immunotherapeutic Vaccine") ) - setattr(cls, "Nanoparticle-based Paclitaxel Suspension", - PermissibleValue(text="Nanoparticle-based Paclitaxel Suspension") ) - setattr(cls, "Yttrium Y 90-DOTA-Biotin", - PermissibleValue(text="Yttrium Y 90-DOTA-Biotin") ) - setattr(cls, "Adenoviral Transduced hIL-12-expressing Autologous Dendritic Cells INXN-3001 Plus Activator Ligand INXN-1001", - PermissibleValue(text="Adenoviral Transduced hIL-12-expressing Autologous Dendritic Cells INXN-3001 Plus Activator Ligand INXN-1001") ) - setattr(cls, "Metformin Hydrochloride", - PermissibleValue(text="Metformin Hydrochloride") ) - setattr(cls, "Anti-CD27 Agonistic Monoclonal Antibody MK-5890", - PermissibleValue(text="Anti-CD27 Agonistic Monoclonal Antibody MK-5890") ) - setattr(cls, "Spherical Nucleic Acid Nanoparticle NU-0129", - PermissibleValue(text="Spherical Nucleic Acid Nanoparticle NU-0129") ) - setattr(cls, "SN-38-Loaded Polymeric Micelles NK012", - PermissibleValue(text="SN-38-Loaded Polymeric Micelles NK012") ) - setattr(cls, "IMT-1012 Immunotherapeutic Vaccine", - PermissibleValue(text="IMT-1012 Immunotherapeutic Vaccine") ) - setattr(cls, "TP40 Immunotoxin", - PermissibleValue(text="TP40 Immunotoxin") ) - setattr(cls, "TGF-beta Receptor 1 Kinase Inhibitor SH3051", - PermissibleValue(text="TGF-beta Receptor 1 Kinase Inhibitor SH3051") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody A167", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody A167") ) - setattr(cls, "Radgocitabine Hydrochloride", - PermissibleValue(text="Radgocitabine Hydrochloride") ) - setattr(cls, "Anti-HER2 Monoclonal Antibody B002", - PermissibleValue(text="Anti-HER2 Monoclonal Antibody B002") ) - setattr(cls, "Ofranergene Obadenovec", - PermissibleValue(text="Ofranergene Obadenovec") ) - setattr(cls, "Liposomal Docetaxel", - PermissibleValue(text="Liposomal Docetaxel") ) - setattr(cls, "Anti-CSF1R Monoclonal Antibody IMC-CS4", - PermissibleValue(text="Anti-CSF1R Monoclonal Antibody IMC-CS4") ) - setattr(cls, "LV.IL-2/B7.1-Transduced AML Blast Vaccine RFUSIN2-AML1", - PermissibleValue(text="LV.IL-2/B7.1-Transduced AML Blast Vaccine RFUSIN2-AML1") ) - setattr(cls, "Docetaxel-PNP", - PermissibleValue(text="Docetaxel-PNP") ) - setattr(cls, "MET Tyrosine Kinase Inhibitor SAR125844", - PermissibleValue(text="MET Tyrosine Kinase Inhibitor SAR125844") ) - setattr(cls, "LMP7 Inhibitor M3258", - PermissibleValue(text="LMP7 Inhibitor M3258") ) - setattr(cls, "Vincristine Sulfate", - PermissibleValue(text="Vincristine Sulfate") ) - setattr(cls, "Yttrium Y 90-Edotreotide", - PermissibleValue(text="Yttrium Y 90-Edotreotide") ) - setattr(cls, "CK2-targeting Synthetic Peptide CIGB-300", - PermissibleValue(text="CK2-targeting Synthetic Peptide CIGB-300") ) - setattr(cls, "Anti-PD-1/CTLA-4 Bispecific Antibody AK104", - PermissibleValue(text="Anti-PD-1/CTLA-4 Bispecific Antibody AK104") ) - setattr(cls, "ALK Inhibitor RO5424802", - PermissibleValue(text="ALK Inhibitor RO5424802") ) - setattr(cls, "MDM2 Inhibitor AMGMDS3", - PermissibleValue(text="MDM2 Inhibitor AMGMDS3") ) - setattr(cls, "Autologous Peripheral Blood Lymphocytes from Ibrutinib-treated Chronic Lymphocytic Leukemia Patients IOV-2001", - PermissibleValue(text="Autologous Peripheral Blood Lymphocytes from Ibrutinib-treated Chronic Lymphocytic Leukemia Patients IOV-2001") ) - setattr(cls, "PRIMA-1 Analog APR-246", - PermissibleValue(text="PRIMA-1 Analog APR-246") ) - setattr(cls, "BTK Inhibitor DTRMWXHS-12", - PermissibleValue(text="BTK Inhibitor DTRMWXHS-12") ) - setattr(cls, "GS/pan-Notch Inhibitor AL101", - PermissibleValue(text="GS/pan-Notch Inhibitor AL101") ) - setattr(cls, "Monoclonal Antibody 105AD7 Anti-idiotype Vaccine", - PermissibleValue(text="Monoclonal Antibody 105AD7 Anti-idiotype Vaccine") ) - setattr(cls, "Anti-c-Met Monoclonal Antibody HLX55", - PermissibleValue(text="Anti-c-Met Monoclonal Antibody HLX55") ) - setattr(cls, "Combretastatin A1 Diphosphate", - PermissibleValue(text="Combretastatin A1 Diphosphate") ) - setattr(cls, "Anti-CD70 CAR-expressing T Lymphocytes", - PermissibleValue(text="Anti-CD70 CAR-expressing T Lymphocytes") ) - setattr(cls, "NTRK/ROS1 Inhibitor DS-6051b", - PermissibleValue(text="NTRK/ROS1 Inhibitor DS-6051b") ) - setattr(cls, "Nemorubicin Hydrochloride", - PermissibleValue(text="Nemorubicin Hydrochloride") ) - setattr(cls, "Mesothelin/CD3e Tri-specific T-cell Activating Construct HPN536", - PermissibleValue(text="Mesothelin/CD3e Tri-specific T-cell Activating Construct HPN536") ) - setattr(cls, "Muscadine Grape Extract", - PermissibleValue(text="Muscadine Grape Extract") ) - setattr(cls, "Acolbifene Hydrochloride", - PermissibleValue(text="Acolbifene Hydrochloride") ) - setattr(cls, "Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine ICT-107", - PermissibleValue(text="Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine ICT-107") ) - setattr(cls, "Synthetic Hypericin", - PermissibleValue(text="Synthetic Hypericin") ) - setattr(cls, "Toll-like Receptor 7 Agonist DSP-0509", - PermissibleValue(text="Toll-like Receptor 7 Agonist DSP-0509") ) - setattr(cls, "pan-PIM Kinase Inhibitor NVP-LGB-321", - PermissibleValue(text="pan-PIM Kinase Inhibitor NVP-LGB-321") ) - setattr(cls, "Dihydro-5-Azacytidine", - PermissibleValue(text="Dihydro-5-Azacytidine") ) - setattr(cls, "Atorvastatin Calcium", - PermissibleValue(text="Atorvastatin Calcium") ) - setattr(cls, "Immunomodulator OHR/AVR118", - PermissibleValue(text="Immunomodulator OHR/AVR118") ) - setattr(cls, "Anti-HIF-1alpha LNA Antisense Oligonucleotide EZN-2968", - PermissibleValue(text="Anti-HIF-1alpha LNA Antisense Oligonucleotide EZN-2968") ) - setattr(cls, "Mirzotamab Clezutoclax", - PermissibleValue(text="Mirzotamab Clezutoclax") ) - setattr(cls, "PI3K Inhibitor BGT226", - PermissibleValue(text="PI3K Inhibitor BGT226") ) - setattr(cls, "Irinotecan Hydrochloride", - PermissibleValue(text="Irinotecan Hydrochloride") ) - setattr(cls, "Tucotuzumab Celmoleukin", - PermissibleValue(text="Tucotuzumab Celmoleukin") ) - setattr(cls, "MARCKS Protein Inhibitor BIO-11006", - PermissibleValue(text="MARCKS Protein Inhibitor BIO-11006") ) - setattr(cls, "Perflenapent Emulsion", - PermissibleValue(text="Perflenapent Emulsion") ) - setattr(cls, "Anti-prolactin Receptor Antibody LFA102", - PermissibleValue(text="Anti-prolactin Receptor Antibody LFA102") ) - setattr(cls, "9-Ethyl 6-Mercaptopurine", - PermissibleValue(text="9-Ethyl 6-Mercaptopurine") ) - setattr(cls, "CDK Inhibitor R547", - PermissibleValue(text="CDK Inhibitor R547") ) - setattr(cls, "Cathelicidin LL-37", - PermissibleValue(text="Cathelicidin LL-37") ) - setattr(cls, "VEGF Inhibitor PTC299", - PermissibleValue(text="VEGF Inhibitor PTC299") ) - setattr(cls, "Polo-like Kinase 1 Inhibitor NMS-1286937", - PermissibleValue(text="Polo-like Kinase 1 Inhibitor NMS-1286937") ) - setattr(cls, "BCMA-CD19 Compound CAR T Cells", - PermissibleValue(text="BCMA-CD19 Compound CAR T Cells") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody JTX-4014", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody JTX-4014") ) - setattr(cls, "Leucovorin Calcium", - PermissibleValue(text="Leucovorin Calcium") ) - setattr(cls, "Anti-BCMA Antibody-drug Conjugate AMG 224", - PermissibleValue(text="Anti-BCMA Antibody-drug Conjugate AMG 224") ) - setattr(cls, "Forodesine Hydrochloride", - PermissibleValue(text="Forodesine Hydrochloride") ) - setattr(cls, "Bispecific Antibody AGEN1223", - PermissibleValue(text="Bispecific Antibody AGEN1223") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody Sym021", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody Sym021") ) - setattr(cls, "Anti-VEGFR3 Monoclonal Antibody IMC-3C5", - PermissibleValue(text="Anti-VEGFR3 Monoclonal Antibody IMC-3C5") ) - setattr(cls, "Arginine Butyrate", - PermissibleValue(text="Arginine Butyrate") ) - setattr(cls, "pNGVL4a-CRT-E6E7L2 DNA Vaccine", - PermissibleValue(text="pNGVL4a-CRT-E6E7L2 DNA Vaccine") ) - setattr(cls, "Anti-BCMA Antibody SEA-BCMA", - PermissibleValue(text="Anti-BCMA Antibody SEA-BCMA") ) - setattr(cls, "SLC6A8 Inhibitor RGX-202", - PermissibleValue(text="SLC6A8 Inhibitor RGX-202") ) - setattr(cls, "Anti-Met Monoclonal Antibody Mixture Sym015", - PermissibleValue(text="Anti-Met Monoclonal Antibody Mixture Sym015") ) - setattr(cls, "Paclitaxel PPE Microspheres", - PermissibleValue(text="Paclitaxel PPE Microspheres") ) - setattr(cls, "Elesclomol Sodium", - PermissibleValue(text="Elesclomol Sodium") ) - setattr(cls, "Cereblon Modulator CC-90009", - PermissibleValue(text="Cereblon Modulator CC-90009") ) - setattr(cls, "EGFR Inhibitor DBPR112", - PermissibleValue(text="EGFR Inhibitor DBPR112") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody SRF231", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody SRF231") ) - setattr(cls, "Iodine I 131 Rituximab", - PermissibleValue(text="Iodine I 131 Rituximab") ) - setattr(cls, "Lometrexol Sodium", - PermissibleValue(text="Lometrexol Sodium") ) - setattr(cls, "Teloxantrone Hydrochloride", - PermissibleValue(text="Teloxantrone Hydrochloride") ) - setattr(cls, "Human Papillomavirus 16 E7 Peptide/Padre 965.10", - PermissibleValue(text="Human Papillomavirus 16 E7 Peptide/Padre 965.10") ) - setattr(cls, "NY-ESO-B", - PermissibleValue(text="NY-ESO-B") ) - setattr(cls, "Tagraxofusp-erzs", - PermissibleValue(text="Tagraxofusp-erzs") ) - setattr(cls, "Immunomodulatory Oligonucleotide HYB2055", - PermissibleValue(text="Immunomodulatory Oligonucleotide HYB2055") ) - setattr(cls, "Live-attenuated Listeria monocytogenes-encoding EGFRvIII-NY-ESO-1 Vaccine ADU-623", - PermissibleValue(text="Live-attenuated Listeria monocytogenes-encoding EGFRvIII-NY-ESO-1 Vaccine ADU-623") ) - setattr(cls, "Taxane Compound", - PermissibleValue(text="Taxane Compound") ) - setattr(cls, "Squalamine Lactate", - PermissibleValue(text="Squalamine Lactate") ) - setattr(cls, "Cytarabine-asparagine Prodrug BST-236", - PermissibleValue(text="Cytarabine-asparagine Prodrug BST-236") ) - setattr(cls, "Tubulin Binding Agent TTI-237", - PermissibleValue(text="Tubulin Binding Agent TTI-237") ) - setattr(cls, "Anti-CD157 Monoclonal Antibody MEN1112", - PermissibleValue(text="Anti-CD157 Monoclonal Antibody MEN1112") ) - setattr(cls, "Anti-CD33/CD3 Bispecific Antibody GEM 333", - PermissibleValue(text="Anti-CD33/CD3 Bispecific Antibody GEM 333") ) - setattr(cls, "CEA-targeting Agent RG6123", - PermissibleValue(text="CEA-targeting Agent RG6123") ) - setattr(cls, "MOv-gamma Chimeric Receptor Gene", - PermissibleValue(text="MOv-gamma Chimeric Receptor Gene") ) - setattr(cls, "Realgar-Indigo naturalis Formulation", - PermissibleValue(text="Realgar-Indigo naturalis Formulation") ) - setattr(cls, "Fosbretabulin Disodium", - PermissibleValue(text="Fosbretabulin Disodium") ) - setattr(cls, "Sodium-Potassium Adenosine Triphosphatase Inhibitor RX108", - PermissibleValue(text="Sodium-Potassium Adenosine Triphosphatase Inhibitor RX108") ) - setattr(cls, "Tamrintamab Pamozirine", - PermissibleValue(text="Tamrintamab Pamozirine") ) - setattr(cls, "Vadacabtagene Leraleucel", - PermissibleValue(text="Vadacabtagene Leraleucel") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody IMC-002", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody IMC-002") ) - setattr(cls, "Efatutazone Dihydrochloride", - PermissibleValue(text="Efatutazone Dihydrochloride") ) - setattr(cls, "Anti-CD33 Antigen/CD3 Receptor Bispecific Monoclonal Antibody AMV564", - PermissibleValue(text="Anti-CD33 Antigen/CD3 Receptor Bispecific Monoclonal Antibody AMV564") ) - setattr(cls, "MET Kinase Inhibitor OMO-1", - PermissibleValue(text="MET Kinase Inhibitor OMO-1") ) - setattr(cls, "Monoclonal Antibody CC49-delta CH2", - PermissibleValue(text="Monoclonal Antibody CC49-delta CH2") ) - setattr(cls, "Anti-PSMA/PBD ADC MEDI3726", - PermissibleValue(text="Anti-PSMA/PBD ADC MEDI3726") ) - setattr(cls, "N-dihydrogalactochitosan", - PermissibleValue(text="N-dihydrogalactochitosan") ) - setattr(cls, "FPV Vaccine CV301", - PermissibleValue(text="FPV Vaccine CV301") ) - setattr(cls, "Sialyl Tn-KLH Vaccine", - PermissibleValue(text="Sialyl Tn-KLH Vaccine") ) - setattr(cls, "Anti-TGF-beta Monoclonal Antibody SAR-439459", - PermissibleValue(text="Anti-TGF-beta Monoclonal Antibody SAR-439459") ) - setattr(cls, "Sipuleucel-T", - PermissibleValue(text="Sipuleucel-T") ) - setattr(cls, "LSD1 Inhibitor RO7051790", - PermissibleValue(text="LSD1 Inhibitor RO7051790") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody IBI188", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody IBI188") ) - setattr(cls, "PSA/PSMA DNA Plasmid INO-5150", - PermissibleValue(text="PSA/PSMA DNA Plasmid INO-5150") ) - setattr(cls, "hTERT Vaccine V934/V935", - PermissibleValue(text="hTERT Vaccine V934/V935") ) - setattr(cls, "Oxaliplatin Eluting Beads", - PermissibleValue(text="Oxaliplatin Eluting Beads") ) - setattr(cls, "Anti-ICOS Agonist Antibody GSK3359609", - PermissibleValue(text="Anti-ICOS Agonist Antibody GSK3359609") ) - setattr(cls, "Allogeneic CD8+ Leukemia-associated Antigens Specific T Cells NEXI-001", - PermissibleValue(text="Allogeneic CD8+ Leukemia-associated Antigens Specific T Cells NEXI-001") ) - setattr(cls, "CD80-Fc Fusion Protein ALPN-202", - PermissibleValue(text="CD80-Fc Fusion Protein ALPN-202") ) - setattr(cls, "Monoclonal Antibody GD2 Anti-Idiotype Vaccine", - PermissibleValue(text="Monoclonal Antibody GD2 Anti-Idiotype Vaccine") ) - setattr(cls, "dUTPase/DPD Inhibitor TAS-114", - PermissibleValue(text="dUTPase/DPD Inhibitor TAS-114") ) - setattr(cls, "Interferon Alfacon-1", - PermissibleValue(text="Interferon Alfacon-1") ) - setattr(cls, "Antiangiogenic Drug Combination TL-118", - PermissibleValue(text="Antiangiogenic Drug Combination TL-118") ) - setattr(cls, "Cationic Liposome-Encapsulated Paclitaxel", - PermissibleValue(text="Cationic Liposome-Encapsulated Paclitaxel") ) - setattr(cls, "Actinomycin C3", - PermissibleValue(text="Actinomycin C3") ) - setattr(cls, "Methionine Aminopeptidase 2 Inhibitor PPI-2458", - PermissibleValue(text="Methionine Aminopeptidase 2 Inhibitor PPI-2458") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody BCD-100", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody BCD-100") ) - setattr(cls, "ICT-121 Dendritic Cell Vaccine", - PermissibleValue(text="ICT-121 Dendritic Cell Vaccine") ) - setattr(cls, "Obatoclax Mesylate", - PermissibleValue(text="Obatoclax Mesylate") ) - setattr(cls, "PGG Beta-Glucan", - PermissibleValue(text="PGG Beta-Glucan") ) - setattr(cls, "Ibandronate Sodium", - PermissibleValue(text="Ibandronate Sodium") ) - setattr(cls, "PI3K Inhibitor ZSTK474", - PermissibleValue(text="PI3K Inhibitor ZSTK474") ) - setattr(cls, "Prohibitin-Targeting Peptide 1", - PermissibleValue(text="Prohibitin-Targeting Peptide 1") ) - setattr(cls, "Pan-TRK Inhibitor ONO-7579", - PermissibleValue(text="Pan-TRK Inhibitor ONO-7579") ) - setattr(cls, "Nimesulide-Hyaluronic Acid Conjugate CA102N", - PermissibleValue(text="Nimesulide-Hyaluronic Acid Conjugate CA102N") ) - setattr(cls, "Anti-HIV-1 Lentiviral Vector-expressing sh5/C46 Cal-1", - PermissibleValue(text="Anti-HIV-1 Lentiviral Vector-expressing sh5/C46 Cal-1") ) - setattr(cls, "Anti-CD3/Anti-GPRC5D Bispecific Monoclonal Antibody JNJ-64407564", - PermissibleValue(text="Anti-CD3/Anti-GPRC5D Bispecific Monoclonal Antibody JNJ-64407564") ) - setattr(cls, "Recombinant Interleukin-12", - PermissibleValue(text="Recombinant Interleukin-12") ) - setattr(cls, "Jin Fu Kang", - PermissibleValue(text="Jin Fu Kang") ) - setattr(cls, "Cord Blood-derived Expanded Natural Killer Cells PNK-007", - PermissibleValue(text="Cord Blood-derived Expanded Natural Killer Cells PNK-007") ) - setattr(cls, "Fluvastatin Sodium", - PermissibleValue(text="Fluvastatin Sodium") ) - setattr(cls, "Anti-CD123 Monoclonal Antibody CSL360", - PermissibleValue(text="Anti-CD123 Monoclonal Antibody CSL360") ) - setattr(cls, "Recombinant Fas Ligand", - PermissibleValue(text="Recombinant Fas Ligand") ) - setattr(cls, "Therapeutic Breast/Ovarian/Prostate Peptide Cancer Vaccine DPX-0907", - PermissibleValue(text="Therapeutic Breast/Ovarian/Prostate Peptide Cancer Vaccine DPX-0907") ) - setattr(cls, "Axicabtagene Ciloleucel", - PermissibleValue(text="Axicabtagene Ciloleucel") ) - setattr(cls, "Recombinant Tyrosinase-Related Protein-2", - PermissibleValue(text="Recombinant Tyrosinase-Related Protein-2") ) - setattr(cls, "Artemisinin Dimer", - PermissibleValue(text="Artemisinin Dimer") ) - setattr(cls, "DPT/Typhoid/Staphylococcus aureus/Paratyphoid A/Paratyphoid B Vaccine", - PermissibleValue(text="DPT/Typhoid/Staphylococcus aureus/Paratyphoid A/Paratyphoid B Vaccine") ) - setattr(cls, "Mutant-selective EGFR Inhibitor PF-06459988", - PermissibleValue(text="Mutant-selective EGFR Inhibitor PF-06459988") ) - setattr(cls, "Milademetan Tosylate", - PermissibleValue(text="Milademetan Tosylate") ) - setattr(cls, "Light-activated AU-011", - PermissibleValue(text="Light-activated AU-011") ) - setattr(cls, "iPSC-derived CD16-expressing Natural Killer Cells FT516", - PermissibleValue(text="iPSC-derived CD16-expressing Natural Killer Cells FT516") ) - setattr(cls, "Selective Cytokine Inhibitory Drug CC-1088", - PermissibleValue(text="Selective Cytokine Inhibitory Drug CC-1088") ) - setattr(cls, "Clodronic Acid", - PermissibleValue(text="Clodronic Acid") ) - setattr(cls, "Lutetium Lu 177 DOTA-biotin", - PermissibleValue(text="Lutetium Lu 177 DOTA-biotin") ) - setattr(cls, "Batabulin Sodium", - PermissibleValue(text="Batabulin Sodium") ) - setattr(cls, "Compound Kushen Injection", - PermissibleValue(text="Compound Kushen Injection") ) - setattr(cls, "Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa", - PermissibleValue(text="Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa") ) - setattr(cls, "Talimogene Laherparepvec", - PermissibleValue(text="Talimogene Laherparepvec") ) - setattr(cls, "Topotecan Sustained-release Episcleral Plaque", - PermissibleValue(text="Topotecan Sustained-release Episcleral Plaque") ) - setattr(cls, "mRNA-based Personalized Cancer Vaccine mRNA-4157", - PermissibleValue(text="mRNA-based Personalized Cancer Vaccine mRNA-4157") ) - setattr(cls, "CD123-CD33 Compound CAR T Cells", - PermissibleValue(text="CD123-CD33 Compound CAR T Cells") ) - setattr(cls, "mTOR Inhibitor GDC-0349", - PermissibleValue(text="mTOR Inhibitor GDC-0349") ) - setattr(cls, "Polyethylene Glycol Recombinant Endostatin", - PermissibleValue(text="Polyethylene Glycol Recombinant Endostatin") ) - setattr(cls, "Idiotype-Pulsed Autologous Dendritic Cell Vaccine APC8020", - PermissibleValue(text="Idiotype-Pulsed Autologous Dendritic Cell Vaccine APC8020") ) - setattr(cls, "Camptothecin Analogue TLC388", - PermissibleValue(text="Camptothecin Analogue TLC388") ) - setattr(cls, "Picrasinoside H", - PermissibleValue(text="Picrasinoside H") ) - setattr(cls, "Beta-lapachone Prodrug ARQ 761", - PermissibleValue(text="Beta-lapachone Prodrug ARQ 761") ) - setattr(cls, "TRPV6 Calcium Channel Inhibitor SOR-C13", - PermissibleValue(text="TRPV6 Calcium Channel Inhibitor SOR-C13") ) - setattr(cls, "Anti-CD38 Monoclonal Antibody SAR442085", - PermissibleValue(text="Anti-CD38 Monoclonal Antibody SAR442085") ) - setattr(cls, "VEGFR2 Tyrosine Kinase Inhibitor PF-00337210", - PermissibleValue(text="VEGFR2 Tyrosine Kinase Inhibitor PF-00337210") ) - setattr(cls, "13-Deoxydoxorubicin", - PermissibleValue(text="13-Deoxydoxorubicin") ) - setattr(cls, "PLK1 Inhibitor TAK-960", - PermissibleValue(text="PLK1 Inhibitor TAK-960") ) - setattr(cls, "Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001", - PermissibleValue(text="Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001") ) - setattr(cls, "Bcl-2 Inhibitor BCL201", - PermissibleValue(text="Bcl-2 Inhibitor BCL201") ) - setattr(cls, "Oral Azacitidine", - PermissibleValue(text="Oral Azacitidine") ) - setattr(cls, "Yttrium Y 90 Anti-CEA Monoclonal Antibody cT84.66", - PermissibleValue(text="Yttrium Y 90 Anti-CEA Monoclonal Antibody cT84.66") ) - setattr(cls, "RSK1-4 Inhibitor PMD-026", - PermissibleValue(text="RSK1-4 Inhibitor PMD-026") ) - setattr(cls, "Anti-BCMA/PBD ADC MEDI2228", - PermissibleValue(text="Anti-BCMA/PBD ADC MEDI2228") ) - setattr(cls, "Anti-FGFR4 Monoclonal Antibody U3-1784", - PermissibleValue(text="Anti-FGFR4 Monoclonal Antibody U3-1784") ) - setattr(cls, "Monoclonal Antibody RAV12", - PermissibleValue(text="Monoclonal Antibody RAV12") ) - setattr(cls, "BTK Inhibitor CT-1530", - PermissibleValue(text="BTK Inhibitor CT-1530") ) - setattr(cls, "Anti-fucosyl-GM1 Monoclonal Antibody BMS-986012", - PermissibleValue(text="Anti-fucosyl-GM1 Monoclonal Antibody BMS-986012") ) - setattr(cls, "Oxidative Phosphorylation Inhibitor IACS-010759", - PermissibleValue(text="Oxidative Phosphorylation Inhibitor IACS-010759") ) - setattr(cls, "ERK Inhibitor MK-8353", - PermissibleValue(text="ERK Inhibitor MK-8353") ) - setattr(cls, "IGF-methotrexate Conjugate", - PermissibleValue(text="IGF-methotrexate Conjugate") ) - setattr(cls, "NEDD8 Activating Enzyme E1 Inhibitor TAS4464", - PermissibleValue(text="NEDD8 Activating Enzyme E1 Inhibitor TAS4464") ) - setattr(cls, "Naptumomab Estafenatox", - PermissibleValue(text="Naptumomab Estafenatox") ) - setattr(cls, "hTERT-encoding DNA Vaccine INVAC-1", - PermissibleValue(text="hTERT-encoding DNA Vaccine INVAC-1") ) - setattr(cls, "Monoclonal Antibody R24", - PermissibleValue(text="Monoclonal Antibody R24") ) - setattr(cls, "PRMT5 Inhibitor PRT811", - PermissibleValue(text="PRMT5 Inhibitor PRT811") ) - setattr(cls, "Anti-CEA BiTE Monoclonal Antibody AMG211", - PermissibleValue(text="Anti-CEA BiTE Monoclonal Antibody AMG211") ) - setattr(cls, "Liposomal Mitoxantrone Hydrochloride", - PermissibleValue(text="Liposomal Mitoxantrone Hydrochloride") ) - setattr(cls, "RhoC Peptide Vaccine RV001V", - PermissibleValue(text="RhoC Peptide Vaccine RV001V") ) - setattr(cls, "CD44v6-specific CAR T-cells", - PermissibleValue(text="CD44v6-specific CAR T-cells") ) - setattr(cls, "Geranylgeranyltransferase I Inhibitor", - PermissibleValue(text="Geranylgeranyltransferase I Inhibitor") ) - setattr(cls, "SERD SAR439859", - PermissibleValue(text="SERD SAR439859") ) - setattr(cls, "Allogeneic Anti-CD19-CAR T-cells PBCAR0191", - PermissibleValue(text="Allogeneic Anti-CD19-CAR T-cells PBCAR0191") ) - setattr(cls, "Pan-FLT3/Pan-BTK Multi-kinase Inhibitor CG-806", - PermissibleValue(text="Pan-FLT3/Pan-BTK Multi-kinase Inhibitor CG-806") ) - setattr(cls, "Pegylated SN-38 Conjugate PLX038", - PermissibleValue(text="Pegylated SN-38 Conjugate PLX038") ) - setattr(cls, "Autologous AFP Specific T Cell Receptor Transduced T Cells C-TCR055", - PermissibleValue(text="Autologous AFP Specific T Cell Receptor Transduced T Cells C-TCR055") ) - setattr(cls, "Zotiraciclib Citrate", - PermissibleValue(text="Zotiraciclib Citrate") ) - setattr(cls, "Pegylated Recombinant L-asparaginase Erwinia chrysanthemi", - PermissibleValue(text="Pegylated Recombinant L-asparaginase Erwinia chrysanthemi") ) - setattr(cls, "Ningetinib Tosylate", - PermissibleValue(text="Ningetinib Tosylate") ) - setattr(cls, "Dociparstat sodium", - PermissibleValue(text="Dociparstat sodium") ) - setattr(cls, "Methylprednisolone Sodium Succinate", - PermissibleValue(text="Methylprednisolone Sodium Succinate") ) - setattr(cls, "Paclitaxel Liposome", - PermissibleValue(text="Paclitaxel Liposome") ) - setattr(cls, "Varlitinib Tosylate", - PermissibleValue(text="Varlitinib Tosylate") ) - setattr(cls, "HDAC Inhibitor AR-42", - PermissibleValue(text="HDAC Inhibitor AR-42") ) - setattr(cls, "BH3 Mimetic ABT-737", - PermissibleValue(text="BH3 Mimetic ABT-737") ) - setattr(cls, "Atrasentan Hydrochloride", - PermissibleValue(text="Atrasentan Hydrochloride") ) - setattr(cls, "Phenethyl Isothiocyanate", - PermissibleValue(text="Phenethyl Isothiocyanate") ) - setattr(cls, "Autologous Anti-CD19 TAC-T cells TAC01-CD19", - PermissibleValue(text="Autologous Anti-CD19 TAC-T cells TAC01-CD19") ) - setattr(cls, "Anti-C-met Monoclonal Antibody SAIT301", - PermissibleValue(text="Anti-C-met Monoclonal Antibody SAIT301") ) - setattr(cls, "Acai Berry Juice", - PermissibleValue(text="Acai Berry Juice") ) - setattr(cls, "CpG Oligodeoxynucleotide GNKG168", - PermissibleValue(text="CpG Oligodeoxynucleotide GNKG168") ) - setattr(cls, "Tyrosinase Peptide", - PermissibleValue(text="Tyrosinase Peptide") ) - setattr(cls, "Trastuzumab-TLR 7/8 Agonist BDC-1001", - PermissibleValue(text="Trastuzumab-TLR 7/8 Agonist BDC-1001") ) - setattr(cls, "Liposomal NDDP", - PermissibleValue(text="Liposomal NDDP") ) - setattr(cls, "Recombinant Interferon Beta", - PermissibleValue(text="Recombinant Interferon Beta") ) - setattr(cls, "CDK7 Inhibitor CT7001", - PermissibleValue(text="CDK7 Inhibitor CT7001") ) - setattr(cls, "RAF Kinase Inhibitor L-779450", - PermissibleValue(text="RAF Kinase Inhibitor L-779450") ) - setattr(cls, "Microbiome GEN-001", - PermissibleValue(text="Microbiome GEN-001") ) - setattr(cls, "Triptorelin Pamoate", - PermissibleValue(text="Triptorelin Pamoate") ) - setattr(cls, "L-Gossypol", - PermissibleValue(text="L-Gossypol") ) - setattr(cls, "Sodium Dichloroacetate", - PermissibleValue(text="Sodium Dichloroacetate") ) - setattr(cls, "Adenosine A2A Receptor Antagonist AZD4635", - PermissibleValue(text="Adenosine A2A Receptor Antagonist AZD4635") ) - setattr(cls, "Syk Inhibitor HMPL-523", - PermissibleValue(text="Syk Inhibitor HMPL-523") ) - setattr(cls, "Verpasep Caltespen", - PermissibleValue(text="Verpasep Caltespen") ) - setattr(cls, "Autologous TCR-engineered T-cells IMA203", - PermissibleValue(text="Autologous TCR-engineered T-cells IMA203") ) - setattr(cls, "Resiquimod Topical Gel", - PermissibleValue(text="Resiquimod Topical Gel") ) - setattr(cls, "Membrane-Disrupting Peptide EP-100", - PermissibleValue(text="Membrane-Disrupting Peptide EP-100") ) - setattr(cls, "Ciltacabtagene Autoleucel", - PermissibleValue(text="Ciltacabtagene Autoleucel") ) - setattr(cls, "Tyrosine Kinase Inhibitor XL228", - PermissibleValue(text="Tyrosine Kinase Inhibitor XL228") ) - setattr(cls, "Anti-BCMA/CD3 BiTE Antibody AMG 420", - PermissibleValue(text="Anti-BCMA/CD3 BiTE Antibody AMG 420") ) - setattr(cls, "Yttrium Y-90 Ibritumomab Tiuxetan", - PermissibleValue(text="Yttrium Y-90 Ibritumomab Tiuxetan") ) - setattr(cls, "Hsp90 Inhibitor TQB3474", - PermissibleValue(text="Hsp90 Inhibitor TQB3474") ) - setattr(cls, "Hsp90 Inhibitor MPC-3100", - PermissibleValue(text="Hsp90 Inhibitor MPC-3100") ) - setattr(cls, "Albumin-binding Cisplatin Prodrug BTP-114", - PermissibleValue(text="Albumin-binding Cisplatin Prodrug BTP-114") ) - setattr(cls, "EBNA-1 inhibitor VK-2019", - PermissibleValue(text="EBNA-1 inhibitor VK-2019") ) - setattr(cls, "Pictilisib Bismesylate", - PermissibleValue(text="Pictilisib Bismesylate") ) - setattr(cls, "Porfimer Sodium", - PermissibleValue(text="Porfimer Sodium") ) - setattr(cls, "Anti-CD137 Agonistic Monoclonal Antibody CTX-471", - PermissibleValue(text="Anti-CD137 Agonistic Monoclonal Antibody CTX-471") ) - setattr(cls, "STING-activating Cyclic Dinucleotide Agonist MIW815", - PermissibleValue(text="STING-activating Cyclic Dinucleotide Agonist MIW815") ) - setattr(cls, "Androgen Receptor Inhibitor EPI-7386", - PermissibleValue(text="Androgen Receptor Inhibitor EPI-7386") ) - setattr(cls, "Perillyl Alcohol", - PermissibleValue(text="Perillyl Alcohol") ) - setattr(cls, "Neratinib Maleate", - PermissibleValue(text="Neratinib Maleate") ) - setattr(cls, "mTOR1/2 Kinase Inhibitor ME-344", - PermissibleValue(text="mTOR1/2 Kinase Inhibitor ME-344") ) - setattr(cls, "CD20-CD19 Compound CAR T Cells", - PermissibleValue(text="CD20-CD19 Compound CAR T Cells") ) - setattr(cls, "PARP 1/2 Inhibitor IMP4297", - PermissibleValue(text="PARP 1/2 Inhibitor IMP4297") ) - setattr(cls, "Halichondrin B", - PermissibleValue(text="Halichondrin B") ) - setattr(cls, "Amino Acid Injection", - PermissibleValue(text="Amino Acid Injection") ) - setattr(cls, "Iodine I 131 Monoclonal Antibody 81C6", - PermissibleValue(text="Iodine I 131 Monoclonal Antibody 81C6") ) - setattr(cls, "Gamboge Resin Extract TSB-9-W1", - PermissibleValue(text="Gamboge Resin Extract TSB-9-W1") ) - setattr(cls, "Topical Trichloroacetic Acid", - PermissibleValue(text="Topical Trichloroacetic Acid") ) - setattr(cls, "CDK7 Inhibitor SY-5609", - PermissibleValue(text="CDK7 Inhibitor SY-5609") ) - setattr(cls, "SIRPa-Fc Fusion Protein TTI-621", - PermissibleValue(text="SIRPa-Fc Fusion Protein TTI-621") ) - setattr(cls, "Hemiasterlin Analog E7974", - PermissibleValue(text="Hemiasterlin Analog E7974") ) - setattr(cls, "Liothyronine Sodium", - PermissibleValue(text="Liothyronine Sodium") ) - setattr(cls, "Ralaniten Acetate", - PermissibleValue(text="Ralaniten Acetate") ) - setattr(cls, "Anti-IGF-1R Recombinant Monoclonal Antibody BIIB022", - PermissibleValue(text="Anti-IGF-1R Recombinant Monoclonal Antibody BIIB022") ) - setattr(cls, "Anti-HER2 Bi-specific Monoclonal Antibody ZW25", - PermissibleValue(text="Anti-HER2 Bi-specific Monoclonal Antibody ZW25") ) - setattr(cls, "Antibody-drug Conjugate ABBV-838", - PermissibleValue(text="Antibody-drug Conjugate ABBV-838") ) - setattr(cls, "Limonene, (+/-)-", - PermissibleValue(text="Limonene, (+/-)-") ) - setattr(cls, "Bcl-Xs Adenovirus Vaccine", - PermissibleValue(text="Bcl-Xs Adenovirus Vaccine") ) - setattr(cls, "Hsp90 Inhibitor HSP990", - PermissibleValue(text="Hsp90 Inhibitor HSP990") ) - setattr(cls, "Pharmacological Ascorbate", - PermissibleValue(text="Pharmacological Ascorbate") ) - setattr(cls, "Zinostatin Stimalamer", - PermissibleValue(text="Zinostatin Stimalamer") ) - setattr(cls, "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes bb21217", - PermissibleValue(text="Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes bb21217") ) - setattr(cls, "GM-CSF-encoding Oncolytic Adenovirus CGTG-102", - PermissibleValue(text="GM-CSF-encoding Oncolytic Adenovirus CGTG-102") ) - setattr(cls, "Doxorubicin Hydrochloride", - PermissibleValue(text="Doxorubicin Hydrochloride") ) - setattr(cls, "p53-HDM2 Interaction Inhibitor MI-773", - PermissibleValue(text="p53-HDM2 Interaction Inhibitor MI-773") ) - setattr(cls, "Anti-PRAME T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-F106C", - PermissibleValue(text="Anti-PRAME T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-F106C") ) - setattr(cls, "ARC Fusion Protein SL-279252", - PermissibleValue(text="ARC Fusion Protein SL-279252") ) - setattr(cls, "Larotinib Mesylate", - PermissibleValue(text="Larotinib Mesylate") ) - setattr(cls, "Anti-CD40 Agonist Monoclonal Antibody CDX-1140", - PermissibleValue(text="Anti-CD40 Agonist Monoclonal Antibody CDX-1140") ) - setattr(cls, "MEK Inhibitor RO4987655", - PermissibleValue(text="MEK Inhibitor RO4987655") ) - setattr(cls, "Anti-5T4 Antibody-Drug Conjugate PF-06263507", - PermissibleValue(text="Anti-5T4 Antibody-Drug Conjugate PF-06263507") ) - setattr(cls, "Nucleotide Analog Prodrug NUC-3373", - PermissibleValue(text="Nucleotide Analog Prodrug NUC-3373") ) - setattr(cls, "NY-ESO-1-specific TCR Gene-transduced T Lymphocytes TBI-1301", - PermissibleValue(text="NY-ESO-1-specific TCR Gene-transduced T Lymphocytes TBI-1301") ) - setattr(cls, "Phellodendron amurense Bark Extract", - PermissibleValue(text="Phellodendron amurense Bark Extract") ) - setattr(cls, "Anti-GPR20/DXd Antibody-drug Conjugate DS-6157a", - PermissibleValue(text="Anti-GPR20/DXd Antibody-drug Conjugate DS-6157a") ) - setattr(cls, "Monoclonal Antibody ASP1948", - PermissibleValue(text="Monoclonal Antibody ASP1948") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody SYN004", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody SYN004") ) - setattr(cls, "Carmustine in Ethanol", - PermissibleValue(text="Carmustine in Ethanol") ) - setattr(cls, "Androgen Receptor Antisense Oligonucleotide EZN-4176", - PermissibleValue(text="Androgen Receptor Antisense Oligonucleotide EZN-4176") ) - setattr(cls, "Nitric Oxide-Releasing Acetylsalicylic Acid Derivative", - PermissibleValue(text="Nitric Oxide-Releasing Acetylsalicylic Acid Derivative") ) - setattr(cls, "Actinomycin C2", - PermissibleValue(text="Actinomycin C2") ) - setattr(cls, "PSMA-targeted Docetaxel Nanoparticles BIND-014", - PermissibleValue(text="PSMA-targeted Docetaxel Nanoparticles BIND-014") ) - setattr(cls, "Warfarin Sodium", - PermissibleValue(text="Warfarin Sodium") ) - setattr(cls, "XIAP Antisense Oligonucleotide AEG35156", - PermissibleValue(text="XIAP Antisense Oligonucleotide AEG35156") ) - setattr(cls, "Medroxyprogesterone Acetate", - PermissibleValue(text="Medroxyprogesterone Acetate") ) - setattr(cls, "BXQ-350 Nanovesicle Formulation", - PermissibleValue(text="BXQ-350 Nanovesicle Formulation") ) - setattr(cls, "Limonene, (+)-", - PermissibleValue(text="Limonene, (+)-") ) - setattr(cls, "Telatinib Mesylate", - PermissibleValue(text="Telatinib Mesylate") ) - setattr(cls, "Lanreotide Acetate", - PermissibleValue(text="Lanreotide Acetate") ) - setattr(cls, "Bispecific Antibody AMG 509", - PermissibleValue(text="Bispecific Antibody AMG 509") ) - setattr(cls, "Wnt-5a Mimic Hexapeptide Foxy-5", - PermissibleValue(text="Wnt-5a Mimic Hexapeptide Foxy-5") ) - setattr(cls, "Autologous Anti-CD19/CD20 Bispecific Nanobody-based CAR-T cells", - PermissibleValue(text="Autologous Anti-CD19/CD20 Bispecific Nanobody-based CAR-T cells") ) - setattr(cls, "Individualized MVA-based Vaccine TG4050", - PermissibleValue(text="Individualized MVA-based Vaccine TG4050") ) - setattr(cls, "Anti-PD-1/Anti-CTLA4 DART Protein MGD019", - PermissibleValue(text="Anti-PD-1/Anti-CTLA4 DART Protein MGD019") ) - setattr(cls, "Cevipabulin Fumarate", - PermissibleValue(text="Cevipabulin Fumarate") ) - setattr(cls, "Sodium Stibogluconate", - PermissibleValue(text="Sodium Stibogluconate") ) - setattr(cls, "Sorafenib Tosylate", - PermissibleValue(text="Sorafenib Tosylate") ) - setattr(cls, "Bruceanol H", - PermissibleValue(text="Bruceanol H") ) - setattr(cls, "Human Monoclonal Antibody B11-hCG Beta Fusion Protein CDX-1307", - PermissibleValue(text="Human Monoclonal Antibody B11-hCG Beta Fusion Protein CDX-1307") ) - setattr(cls, "Cemadotin Hydrochloride", - PermissibleValue(text="Cemadotin Hydrochloride") ) - setattr(cls, "Anti-VISTA Monoclonal Antibody JNJ 61610588", - PermissibleValue(text="Anti-VISTA Monoclonal Antibody JNJ 61610588") ) - setattr(cls, "N-Methylformamide", - PermissibleValue(text="N-Methylformamide") ) - setattr(cls, "Trimethylcolchicinic Acid", - PermissibleValue(text="Trimethylcolchicinic Acid") ) - setattr(cls, "Monoclonal Antibody AbGn-7", - PermissibleValue(text="Monoclonal Antibody AbGn-7") ) - setattr(cls, "HDAC6 Inhibitor KA2507", - PermissibleValue(text="HDAC6 Inhibitor KA2507") ) - setattr(cls, "PARP Inhibitor CEP-9722", - PermissibleValue(text="PARP Inhibitor CEP-9722") ) - setattr(cls, "Hodgkin's Antigens-GM-CSF-Expressing Cell Vaccine", - PermissibleValue(text="Hodgkin's Antigens-GM-CSF-Expressing Cell Vaccine") ) - setattr(cls, "Tocotrienol-rich Fraction", - PermissibleValue(text="Tocotrienol-rich Fraction") ) - setattr(cls, "Lyophilized Black Raspberry Lozenge", - PermissibleValue(text="Lyophilized Black Raspberry Lozenge") ) - setattr(cls, "Anetumab Ravtansine", - PermissibleValue(text="Anetumab Ravtansine") ) - setattr(cls, "Oncolytic Newcastle Disease Virus MTH-68H", - PermissibleValue(text="Oncolytic Newcastle Disease Virus MTH-68H") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody HX008", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody HX008") ) - setattr(cls, "Porcupine Inhibitor XNW7201", - PermissibleValue(text="Porcupine Inhibitor XNW7201") ) - setattr(cls, "PI3K/mTOR Kinase Inhibitor DS-7423", - PermissibleValue(text="PI3K/mTOR Kinase Inhibitor DS-7423") ) - setattr(cls, "Allogeneic Natural Killer Cell Line MG4101", - PermissibleValue(text="Allogeneic Natural Killer Cell Line MG4101") ) - setattr(cls, "huBC1-huIL12 Fusion Protein AS1409", - PermissibleValue(text="huBC1-huIL12 Fusion Protein AS1409") ) - setattr(cls, "Anti-CD3/Anti-CD20 Trifunctional Bispecific Monoclonal Antibody FBTA05", - PermissibleValue(text="Anti-CD3/Anti-CD20 Trifunctional Bispecific Monoclonal Antibody FBTA05") ) - setattr(cls, "Anti-latent TGF-beta 1 Monoclonal Antibody SRK-181", - PermissibleValue(text="Anti-latent TGF-beta 1 Monoclonal Antibody SRK-181") ) - setattr(cls, "Cedazuridine/Azacitidine Combination Agent ASTX030", - PermissibleValue(text="Cedazuridine/Azacitidine Combination Agent ASTX030") ) - setattr(cls, "Lipid Nanoparticle Encapsulating Glutathione S-transferase P siRNA NBF-006", - PermissibleValue(text="Lipid Nanoparticle Encapsulating Glutathione S-transferase P siRNA NBF-006") ) - setattr(cls, "Pladienolide Derivative E7107", - PermissibleValue(text="Pladienolide Derivative E7107") ) - setattr(cls, "Antineoplaston AS2-1", - PermissibleValue(text="Antineoplaston AS2-1") ) - setattr(cls, "Monoclonal Antibody m170", - PermissibleValue(text="Monoclonal Antibody m170") ) - setattr(cls, "HSP90alpha/beta Inhibitor TAS-116", - PermissibleValue(text="HSP90alpha/beta Inhibitor TAS-116") ) - setattr(cls, "SHP-1 Agonist SC-43", - PermissibleValue(text="SHP-1 Agonist SC-43") ) - setattr(cls, "BTK Inhibitor ARQ 531", - PermissibleValue(text="BTK Inhibitor ARQ 531") ) - setattr(cls, "Ethinyl Estradiol", - PermissibleValue(text="Ethinyl Estradiol") ) - setattr(cls, "Extended Release Flucytosine", - PermissibleValue(text="Extended Release Flucytosine") ) - setattr(cls, "Anti-OX40 Antibody BMS 986178", - PermissibleValue(text="Anti-OX40 Antibody BMS 986178") ) - setattr(cls, "Autologous Monocyte-derived Lysate-pulsed Dendritic Cell Vaccine PV-001-DC", - PermissibleValue(text="Autologous Monocyte-derived Lysate-pulsed Dendritic Cell Vaccine PV-001-DC") ) - setattr(cls, "MET Tyrosine Kinase Inhibitor EMD 1204831", - PermissibleValue(text="MET Tyrosine Kinase Inhibitor EMD 1204831") ) - setattr(cls, "Anti-PD-1 Checkpoint Inhibitor PF-06801591", - PermissibleValue(text="Anti-PD-1 Checkpoint Inhibitor PF-06801591") ) - setattr(cls, "Aphidicoline Glycinate", - PermissibleValue(text="Aphidicoline Glycinate") ) - setattr(cls, "IL-2 Recombinant Fusion Protein ALT-801", - PermissibleValue(text="IL-2 Recombinant Fusion Protein ALT-801") ) - setattr(cls, "Autologous Anti-HLA-A*02/AFP TCRm-expressing T-cells ET140202", - PermissibleValue(text="Autologous Anti-HLA-A*02/AFP TCRm-expressing T-cells ET140202") ) - setattr(cls, "Interleukin-15 Fusion Protein BJ-001", - PermissibleValue(text="Interleukin-15 Fusion Protein BJ-001") ) - setattr(cls, "FLT3/ABL/Aurora Kinase Inhibitor KW-2449", - PermissibleValue(text="FLT3/ABL/Aurora Kinase Inhibitor KW-2449") ) - setattr(cls, "MAGE-A3 Multipeptide Vaccine GL-0817", - PermissibleValue(text="MAGE-A3 Multipeptide Vaccine GL-0817") ) - setattr(cls, "PD-1 Directed Probody CX-188", - PermissibleValue(text="PD-1 Directed Probody CX-188") ) - setattr(cls, "Gemcitabine-Phosphoramidate Hydrochloride NUC-1031", - PermissibleValue(text="Gemcitabine-Phosphoramidate Hydrochloride NUC-1031") ) - setattr(cls, "PI3K/mTOR Kinase Inhibitor VS-5584", - PermissibleValue(text="PI3K/mTOR Kinase Inhibitor VS-5584") ) - setattr(cls, "Canfosfamide Hydrochloride", - PermissibleValue(text="Canfosfamide Hydrochloride") ) - setattr(cls, "Fms/Trk Tyrosine Kinase Inhibitor PLX7486 Tosylate", - PermissibleValue(text="Fms/Trk Tyrosine Kinase Inhibitor PLX7486 Tosylate") ) - setattr(cls, "CYP17/CYP11B2 Inhibitor LAE001", - PermissibleValue(text="CYP17/CYP11B2 Inhibitor LAE001") ) - setattr(cls, "Idarubicin-Eluting Beads", - PermissibleValue(text="Idarubicin-Eluting Beads") ) - setattr(cls, "Anti-TGF-beta Monoclonal Antibody NIS793", - PermissibleValue(text="Anti-TGF-beta Monoclonal Antibody NIS793") ) - setattr(cls, "Ubidecarenone Nanodispersion BPM31510n", - PermissibleValue(text="Ubidecarenone Nanodispersion BPM31510n") ) - setattr(cls, "Melphalan Hydrochloride/Sulfobutyl Ether Beta-Cyclodextrin Complex", - PermissibleValue(text="Melphalan Hydrochloride/Sulfobutyl Ether Beta-Cyclodextrin Complex") ) - setattr(cls, "Smac Mimetic LCL161", - PermissibleValue(text="Smac Mimetic LCL161") ) - setattr(cls, "Allogeneic GM-CSF-secreting Lethally Irradiated Whole Melanoma Cell Vaccine", - PermissibleValue(text="Allogeneic GM-CSF-secreting Lethally Irradiated Whole Melanoma Cell Vaccine") ) - setattr(cls, "CD123-specific Targeting Module TM123", - PermissibleValue(text="CD123-specific Targeting Module TM123") ) - setattr(cls, "BP-Cx1-Platinum Complex BP-C1", - PermissibleValue(text="BP-Cx1-Platinum Complex BP-C1") ) - setattr(cls, "Autologous TCR-engineered T-cells IMA201", - PermissibleValue(text="Autologous TCR-engineered T-cells IMA201") ) - setattr(cls, "Anti-HER2 Monoclonal Antibody CT-P6", - PermissibleValue(text="Anti-HER2 Monoclonal Antibody CT-P6") ) - setattr(cls, "Tomato-Soy Juice", - PermissibleValue(text="Tomato-Soy Juice") ) - setattr(cls, "Samarium Sm 153-DOTMP", - PermissibleValue(text="Samarium Sm 153-DOTMP") ) - setattr(cls, "Natural IFN-alpha OPC-18", - PermissibleValue(text="Natural IFN-alpha OPC-18") ) - setattr(cls, "Interleukin-15 Agonist Fusion Protein SHR1501", - PermissibleValue(text="Interleukin-15 Agonist Fusion Protein SHR1501") ) - setattr(cls, "Smoothened Antagonist BMS-833923", - PermissibleValue(text="Smoothened Antagonist BMS-833923") ) - setattr(cls, "Autologous Anti-CD19 Chimeric Antigen Receptor T-cells AUTO1", - PermissibleValue(text="Autologous Anti-CD19 Chimeric Antigen Receptor T-cells AUTO1") ) - setattr(cls, "CD44 Targeted Agent SPL-108", - PermissibleValue(text="CD44 Targeted Agent SPL-108") ) - setattr(cls, "Cyclopentenyl Cytosine", - PermissibleValue(text="Cyclopentenyl Cytosine") ) - setattr(cls, "Rigosertib Sodium", - PermissibleValue(text="Rigosertib Sodium") ) - setattr(cls, "7-Ethyl-10-Hydroxycamptothecin", - PermissibleValue(text="7-Ethyl-10-Hydroxycamptothecin") ) - setattr(cls, "Bacillus Calmette-Guerin Substrain Connaught Live Antigen", - PermissibleValue(text="Bacillus Calmette-Guerin Substrain Connaught Live Antigen") ) - setattr(cls, "Taxane Analogue TPI 287", - PermissibleValue(text="Taxane Analogue TPI 287") ) - setattr(cls, "Pegylated Deoxycytidine Analogue DFP-14927", - PermissibleValue(text="Pegylated Deoxycytidine Analogue DFP-14927") ) - setattr(cls, "Huaier Extract Granule", - PermissibleValue(text="Huaier Extract Granule") ) - setattr(cls, "Aurora A Kinase/Tyrosine Kinase Inhibitor ENMD-2076", - PermissibleValue(text="Aurora A Kinase/Tyrosine Kinase Inhibitor ENMD-2076") ) - setattr(cls, "Fedratinib Hydrochloride", - PermissibleValue(text="Fedratinib Hydrochloride") ) - setattr(cls, "Pegvorhyaluronidase Alfa", - PermissibleValue(text="Pegvorhyaluronidase Alfa") ) - setattr(cls, "Anti-OX40 Hexavalent Agonist Antibody INBRX-106", - PermissibleValue(text="Anti-OX40 Hexavalent Agonist Antibody INBRX-106") ) - setattr(cls, "Dihydroorotate Dehydrogenase Inhibitor BAY2402234", - PermissibleValue(text="Dihydroorotate Dehydrogenase Inhibitor BAY2402234") ) - setattr(cls, "Ondansetron Hydrochloride", - PermissibleValue(text="Ondansetron Hydrochloride") ) - setattr(cls, "Anti-BTLA Monoclonal Antibody TAB004", - PermissibleValue(text="Anti-BTLA Monoclonal Antibody TAB004") ) - setattr(cls, "BMS-184476", - PermissibleValue(text="BMS-184476") ) - setattr(cls, "Ruthenium Ru-106", - PermissibleValue(text="Ruthenium Ru-106") ) - setattr(cls, "Deuterated Enzalutamide", - PermissibleValue(text="Deuterated Enzalutamide") ) - setattr(cls, "Anti-PRAME Immunotherapeutic GSK2302032A", - PermissibleValue(text="Anti-PRAME Immunotherapeutic GSK2302032A") ) - setattr(cls, "Recombinant Macrophage Colony-Stimulating Factor", - PermissibleValue(text="Recombinant Macrophage Colony-Stimulating Factor") ) - setattr(cls, "HER-2-positive B-cell Peptide Antigen P467-DT-CRM197/Montanide Vaccine IMU-131", - PermissibleValue(text="HER-2-positive B-cell Peptide Antigen P467-DT-CRM197/Montanide Vaccine IMU-131") ) - setattr(cls, "Iodine I 125-Anti-EGFR-425 Monoclonal Antibody", - PermissibleValue(text="Iodine I 125-Anti-EGFR-425 Monoclonal Antibody") ) - setattr(cls, "Carmustine Sustained-Release Implant Wafer", - PermissibleValue(text="Carmustine Sustained-Release Implant Wafer") ) - setattr(cls, "Anti-EGFR TAP Antibody-drug Conjugate IMGN289", - PermissibleValue(text="Anti-EGFR TAP Antibody-drug Conjugate IMGN289") ) - setattr(cls, "Brimonidine Tartrate Nanoemulsion OCU-300", - PermissibleValue(text="Brimonidine Tartrate Nanoemulsion OCU-300") ) - setattr(cls, "Saracatinib Difumarate", - PermissibleValue(text="Saracatinib Difumarate") ) - setattr(cls, "INO-1001", - PermissibleValue(text="INO-1001") ) - setattr(cls, "Src/tubulin Inhibitor KX02", - PermissibleValue(text="Src/tubulin Inhibitor KX02") ) - setattr(cls, "Moxetumomab Pasudotox", - PermissibleValue(text="Moxetumomab Pasudotox") ) - setattr(cls, "Autologous Anti-CD20 CAR Transduced CD4/CD8 Enriched T-cells MB-CART20.1", - PermissibleValue(text="Autologous Anti-CD20 CAR Transduced CD4/CD8 Enriched T-cells MB-CART20.1") ) - setattr(cls, "Broad-Spectrum Human Papillomavirus Vaccine V505", - PermissibleValue(text="Broad-Spectrum Human Papillomavirus Vaccine V505") ) - setattr(cls, "Bushen-Jianpi Decoction", - PermissibleValue(text="Bushen-Jianpi Decoction") ) - setattr(cls, "Eftilagimod Alpha", - PermissibleValue(text="Eftilagimod Alpha") ) - setattr(cls, "PSMA/CD3 Tri-specific T-cell Activating Construct HPN424", - PermissibleValue(text="PSMA/CD3 Tri-specific T-cell Activating Construct HPN424") ) - setattr(cls, "Omacetaxine Mepesuccinate", - PermissibleValue(text="Omacetaxine Mepesuccinate") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody HLX20", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody HLX20") ) - setattr(cls, "BET inhibitor BI 894999", - PermissibleValue(text="BET inhibitor BI 894999") ) - setattr(cls, "Synthetic Long E6/E7 Peptides Vaccine HPV-01", - PermissibleValue(text="Synthetic Long E6/E7 Peptides Vaccine HPV-01") ) - setattr(cls, "Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718", - PermissibleValue(text="Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718") ) - setattr(cls, "Autologous Pancreatic Adenocarcinoma Lysate and mRNA-loaded Dendritic Cell Vaccine", - PermissibleValue(text="Autologous Pancreatic Adenocarcinoma Lysate and mRNA-loaded Dendritic Cell Vaccine") ) - setattr(cls, "CHP-NY-ESO-1 Peptide Vaccine IMF-001", - PermissibleValue(text="CHP-NY-ESO-1 Peptide Vaccine IMF-001") ) - setattr(cls, "Anti-CD3/CD7-Ricin Toxin A Immunotoxin", - PermissibleValue(text="Anti-CD3/CD7-Ricin Toxin A Immunotoxin") ) - setattr(cls, "PI3K Inhibitor GDC0077", - PermissibleValue(text="PI3K Inhibitor GDC0077") ) - setattr(cls, "Anti-NaPi2b Monoclonal Antibody XMT-1535", - PermissibleValue(text="Anti-NaPi2b Monoclonal Antibody XMT-1535") ) - setattr(cls, "Resistant Starch", - PermissibleValue(text="Resistant Starch") ) - setattr(cls, "Polyvalent Melanoma Vaccine", - PermissibleValue(text="Polyvalent Melanoma Vaccine") ) - setattr(cls, "Anti-CD37 Monoclonal Antibody BI 836826", - PermissibleValue(text="Anti-CD37 Monoclonal Antibody BI 836826") ) - setattr(cls, "Babaodan Capsule", - PermissibleValue(text="Babaodan Capsule") ) - setattr(cls, "Anti-CD46 Antibody-drug Conjugate FOR46", - PermissibleValue(text="Anti-CD46 Antibody-drug Conjugate FOR46") ) - setattr(cls, "FGFR4 Antagonist INCB062079", - PermissibleValue(text="FGFR4 Antagonist INCB062079") ) - setattr(cls, "CDK4/6 Inhibitor TQB3616", - PermissibleValue(text="CDK4/6 Inhibitor TQB3616") ) - setattr(cls, "Anti-MUC16/CD3 Bispecific Antibody REGN4018", - PermissibleValue(text="Anti-MUC16/CD3 Bispecific Antibody REGN4018") ) - setattr(cls, "Berubicin Hydrochloride", - PermissibleValue(text="Berubicin Hydrochloride") ) - setattr(cls, "Prednisolone Acetate", - PermissibleValue(text="Prednisolone Acetate") ) - setattr(cls, "Aurora Kinase Inhibitor SNS-314", - PermissibleValue(text="Aurora Kinase Inhibitor SNS-314") ) - setattr(cls, "At 211 Monoclonal Antibody 81C6", - PermissibleValue(text="At 211 Monoclonal Antibody 81C6") ) - setattr(cls, "AE37 Peptide/GM-CSF Vaccine", - PermissibleValue(text="AE37 Peptide/GM-CSF Vaccine") ) - setattr(cls, "Anti-CD19 Monoclonal Antibody MDX-1342", - PermissibleValue(text="Anti-CD19 Monoclonal Antibody MDX-1342") ) - setattr(cls, "Monoclonal Microbial EDP1503", - PermissibleValue(text="Monoclonal Microbial EDP1503") ) - setattr(cls, "Iodine I 131 IPA", - PermissibleValue(text="Iodine I 131 IPA") ) - setattr(cls, "Anti-BTN3A Agonistic Monoclonal Antibody ICT01", - PermissibleValue(text="Anti-BTN3A Agonistic Monoclonal Antibody ICT01") ) - setattr(cls, "Antibody-drug Conjugate SC-002", - PermissibleValue(text="Antibody-drug Conjugate SC-002") ) - setattr(cls, "CDK2/5/9 Inhibitor CYC065", - PermissibleValue(text="CDK2/5/9 Inhibitor CYC065") ) - setattr(cls, "Multi-epitope Anti-folate Receptor Peptide Vaccine TPIV 200", - PermissibleValue(text="Multi-epitope Anti-folate Receptor Peptide Vaccine TPIV 200") ) - setattr(cls, "Glutaminase Inhibitor IPN60090", - PermissibleValue(text="Glutaminase Inhibitor IPN60090") ) - setattr(cls, "HER2 Inhibitor CP-724,714", - PermissibleValue(text="HER2 Inhibitor CP-724,714") ) - setattr(cls, "Indole-3-Carbinol", - PermissibleValue(text="Indole-3-Carbinol") ) - setattr(cls, "Survivin Antigen", - PermissibleValue(text="Survivin Antigen") ) - setattr(cls, "BET Bromodomain Inhibitor ZEN-3694", - PermissibleValue(text="BET Bromodomain Inhibitor ZEN-3694") ) - setattr(cls, "Navy Bean Powder", - PermissibleValue(text="Navy Bean Powder") ) - setattr(cls, "Ceramide Nanoliposome", - PermissibleValue(text="Ceramide Nanoliposome") ) - setattr(cls, "Sacubitril/Valsartan", - PermissibleValue(text="Sacubitril/Valsartan") ) - setattr(cls, "ERa36 Modulator Icaritin", - PermissibleValue(text="ERa36 Modulator Icaritin") ) - setattr(cls, "Belagenpumatucel-L", - PermissibleValue(text="Belagenpumatucel-L") ) - setattr(cls, "Cyclin-dependent Kinase 8/19 Inhibitor BCD 115", - PermissibleValue(text="Cyclin-dependent Kinase 8/19 Inhibitor BCD 115") ) - setattr(cls, "Anti-HER-2 Bispecific Antibody KN026", - PermissibleValue(text="Anti-HER-2 Bispecific Antibody KN026") ) - setattr(cls, "mRNA-based TriMix Melanoma Vaccine ECI-006", - PermissibleValue(text="mRNA-based TriMix Melanoma Vaccine ECI-006") ) - setattr(cls, "Anti-CD40/Anti-TAA Bispecific Monoclonal Antibody ABBV-428", - PermissibleValue(text="Anti-CD40/Anti-TAA Bispecific Monoclonal Antibody ABBV-428") ) - setattr(cls, "SIRPa-IgG4-Fc Fusion Protein TTI-622", - PermissibleValue(text="SIRPa-IgG4-Fc Fusion Protein TTI-622") ) - setattr(cls, "ERK1/2 Inhibitor HH2710", - PermissibleValue(text="ERK1/2 Inhibitor HH2710") ) - setattr(cls, "Exatecan Mesylate", - PermissibleValue(text="Exatecan Mesylate") ) - setattr(cls, "MUC-1/WT1 Peptide-primed Autologous Dendritic Cells", - PermissibleValue(text="MUC-1/WT1 Peptide-primed Autologous Dendritic Cells") ) - setattr(cls, "FLT3 Inhibitor FF-10101 Succinate", - PermissibleValue(text="FLT3 Inhibitor FF-10101 Succinate") ) - setattr(cls, "ATR Kinase Inhibitor VX-803", - PermissibleValue(text="ATR Kinase Inhibitor VX-803") ) - setattr(cls, "DNA-PK inhibitor AZD7648", - PermissibleValue(text="DNA-PK inhibitor AZD7648") ) - setattr(cls, "AKR1C3-activated Prodrug OBI-3424", - PermissibleValue(text="AKR1C3-activated Prodrug OBI-3424") ) - setattr(cls, "Tetanus Toxoid Vaccine", - PermissibleValue(text="Tetanus Toxoid Vaccine") ) - setattr(cls, "Anti-EGFR/HER2/HER3 Monoclonal Antibody Mixture Sym013", - PermissibleValue(text="Anti-EGFR/HER2/HER3 Monoclonal Antibody Mixture Sym013") ) - setattr(cls, "PARP7 Inhibitor RBN-2397", - PermissibleValue(text="PARP7 Inhibitor RBN-2397") ) - setattr(cls, "Rhenium Re-188 Etidronate", - PermissibleValue(text="Rhenium Re-188 Etidronate") ) - setattr(cls, "Anti-ErbB3 Antibody ISU104", - PermissibleValue(text="Anti-ErbB3 Antibody ISU104") ) - setattr(cls, "PEG-interleukin-2", - PermissibleValue(text="PEG-interleukin-2") ) - setattr(cls, "Oligonucleotide SPC2996", - PermissibleValue(text="Oligonucleotide SPC2996") ) - setattr(cls, "Gossypol Acetic Acid", - PermissibleValue(text="Gossypol Acetic Acid") ) - setattr(cls, "pNGVL4a-Sig/E7(detox)/HSP70 DNA and HPV16 L2/E6/E7 Fusion Protein TA-CIN Vaccine PVX-2", - PermissibleValue(text="pNGVL4a-Sig/E7(detox)/HSP70 DNA and HPV16 L2/E6/E7 Fusion Protein TA-CIN Vaccine PVX-2") ) - setattr(cls, "HPV Types 16/18 E6/E7-Adenoviral Transduced Autologous Lymphocytes/alpha-Galactosylceramide Vaccine BVAC-C", - PermissibleValue(text="HPV Types 16/18 E6/E7-Adenoviral Transduced Autologous Lymphocytes/alpha-Galactosylceramide Vaccine BVAC-C") ) - setattr(cls, "HDAC Inhibitor OBP-801", - PermissibleValue(text="HDAC Inhibitor OBP-801") ) - setattr(cls, "Dibrospidium Chloride", - PermissibleValue(text="Dibrospidium Chloride") ) - setattr(cls, "Calcium Release-activated Channels Inhibitor RP4010", - PermissibleValue(text="Calcium Release-activated Channels Inhibitor RP4010") ) - setattr(cls, "Monoclonal Antibody MX35 F(ab')2", - PermissibleValue(text="Monoclonal Antibody MX35 F(ab')2") ) - setattr(cls, "Nab-paclitaxel/Rituximab-coated Nanoparticle AR160", - PermissibleValue(text="Nab-paclitaxel/Rituximab-coated Nanoparticle AR160") ) - setattr(cls, "Estradiol Valerate", - PermissibleValue(text="Estradiol Valerate") ) - setattr(cls, "Ashwagandha Root Powder Extract", - PermissibleValue(text="Ashwagandha Root Powder Extract") ) - setattr(cls, "p97 Inhibitor CB-5339 Tosylate", - PermissibleValue(text="p97 Inhibitor CB-5339 Tosylate") ) - setattr(cls, "Mucoadhesive Paclitaxel Formulation", - PermissibleValue(text="Mucoadhesive Paclitaxel Formulation") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody CK-301", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody CK-301") ) - setattr(cls, "Tubulin Inhibitor ALB-109564", - PermissibleValue(text="Tubulin Inhibitor ALB-109564") ) - setattr(cls, "PI3K Alpha/mTOR Inhibitor PWT33597 Mesylate", - PermissibleValue(text="PI3K Alpha/mTOR Inhibitor PWT33597 Mesylate") ) - setattr(cls, "Anti-NY-ESO-1 Immunotherapeutic GSK-2241658A", - PermissibleValue(text="Anti-NY-ESO-1 Immunotherapeutic GSK-2241658A") ) - setattr(cls, "Anti-CD123 Monoclonal Antibody KHK2823", - PermissibleValue(text="Anti-CD123 Monoclonal Antibody KHK2823") ) - setattr(cls, "Smac Mimetic GDC-0917", - PermissibleValue(text="Smac Mimetic GDC-0917") ) - setattr(cls, "Recombinant Human Papillomavirus Bivalent Vaccine", - PermissibleValue(text="Recombinant Human Papillomavirus Bivalent Vaccine") ) - setattr(cls, "VEGFR-2 DNA Vaccine VXM01", - PermissibleValue(text="VEGFR-2 DNA Vaccine VXM01") ) - setattr(cls, "Immediate-release Onapristone", - PermissibleValue(text="Immediate-release Onapristone") ) - setattr(cls, "Anti-MAGE-A4 T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-C103C", - PermissibleValue(text="Anti-MAGE-A4 T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-C103C") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody SHR-1603", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody SHR-1603") ) - setattr(cls, "Adenoviral Brachyury Vaccine ETBX-051", - PermissibleValue(text="Adenoviral Brachyury Vaccine ETBX-051") ) - setattr(cls, "Antibody-drug Conjugate MEDI7247", - PermissibleValue(text="Antibody-drug Conjugate MEDI7247") ) - setattr(cls, "Palifosfamide Tromethamine", - PermissibleValue(text="Palifosfamide Tromethamine") ) - setattr(cls, "Sodium Iodide I-131", - PermissibleValue(text="Sodium Iodide I-131") ) - setattr(cls, "FGFR4 Inhibitor BLU 9931", - PermissibleValue(text="FGFR4 Inhibitor BLU 9931") ) - setattr(cls, "Rucaparib Camsylate", - PermissibleValue(text="Rucaparib Camsylate") ) - setattr(cls, "Anti-CD45 Monoclonal Antibody AHN-12", - PermissibleValue(text="Anti-CD45 Monoclonal Antibody AHN-12") ) - setattr(cls, "Imidazole-Pyrazole", - PermissibleValue(text="Imidazole-Pyrazole") ) - setattr(cls, "Radium Ra 224-labeled Calcium Carbonate Microparticles", - PermissibleValue(text="Radium Ra 224-labeled Calcium Carbonate Microparticles") ) - setattr(cls, "BL22 Immunotoxin", - PermissibleValue(text="BL22 Immunotoxin") ) - setattr(cls, "MEK Inhibitor PD0325901", - PermissibleValue(text="MEK Inhibitor PD0325901") ) - setattr(cls, "Alpha V Beta 1 Inhibitor ATN-161", - PermissibleValue(text="Alpha V Beta 1 Inhibitor ATN-161") ) - setattr(cls, "Anti-c-Met Antibody-drug Conjugate HTI-1066", - PermissibleValue(text="Anti-c-Met Antibody-drug Conjugate HTI-1066") ) - setattr(cls, "2,6-Diaminopurine", - PermissibleValue(text="2,6-Diaminopurine") ) - setattr(cls, "VGEFR/c-kit/PDGFR Tyrosine Kinase Inhibitor XL820", - PermissibleValue(text="VGEFR/c-kit/PDGFR Tyrosine Kinase Inhibitor XL820") ) - setattr(cls, "Anti-nectin-4 Monoclonal Antibody-Drug Conjugate AGS-22M6E", - PermissibleValue(text="Anti-nectin-4 Monoclonal Antibody-Drug Conjugate AGS-22M6E") ) - setattr(cls, "EGFR Mutant-selective Inhibitor TQB3804", - PermissibleValue(text="EGFR Mutant-selective Inhibitor TQB3804") ) - setattr(cls, "Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01", - PermissibleValue(text="Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01") ) - setattr(cls, "Shared Anti-Idiotype-AB-S006", - PermissibleValue(text="Shared Anti-Idiotype-AB-S006") ) - setattr(cls, "Autologous Anti-FLT3 CAR T Cells AMG 553", - PermissibleValue(text="Autologous Anti-FLT3 CAR T Cells AMG 553") ) - setattr(cls, "Anti-Denatured Collagen Monoclonal Antibody TRC093", - PermissibleValue(text="Anti-Denatured Collagen Monoclonal Antibody TRC093") ) - setattr(cls, "Recombinant Human Adenovirus Type 5 H101", - PermissibleValue(text="Recombinant Human Adenovirus Type 5 H101") ) - setattr(cls, "Allogeneic Anti-BCMA-CAR T-cells PBCAR269A", - PermissibleValue(text="Allogeneic Anti-BCMA-CAR T-cells PBCAR269A") ) - setattr(cls, "Aurora A Kinase Inhibitor TAS-119", - PermissibleValue(text="Aurora A Kinase Inhibitor TAS-119") ) - setattr(cls, "Recombinant MIP1-alpha Variant ECI301", - PermissibleValue(text="Recombinant MIP1-alpha Variant ECI301") ) - setattr(cls, "Personalized Cancer Vaccine RO7198457", - PermissibleValue(text="Personalized Cancer Vaccine RO7198457") ) - setattr(cls, "Vatalanib Succinate", - PermissibleValue(text="Vatalanib Succinate") ) - setattr(cls, "Anti-CD20 Monoclonal Antibody BAT4306F", - PermissibleValue(text="Anti-CD20 Monoclonal Antibody BAT4306F") ) - setattr(cls, "Anti-BCMA/Anti-CD3 Bispecific Antibody REGN5459", - PermissibleValue(text="Anti-BCMA/Anti-CD3 Bispecific Antibody REGN5459") ) - setattr(cls, "Botanical Agent BEL-X-HG", - PermissibleValue(text="Botanical Agent BEL-X-HG") ) - setattr(cls, "Bispecific Antibody MDX447", - PermissibleValue(text="Bispecific Antibody MDX447") ) - setattr(cls, "Anti-OX40 Agonist Monoclonal Antibody PF-04518600", - PermissibleValue(text="Anti-OX40 Agonist Monoclonal Antibody PF-04518600") ) - setattr(cls, "Anti-CD98 Monoclonal Antibody IGN523", - PermissibleValue(text="Anti-CD98 Monoclonal Antibody IGN523") ) - setattr(cls, "Pan-TRK Inhibitor NOV1601", - PermissibleValue(text="Pan-TRK Inhibitor NOV1601") ) - setattr(cls, "Anti-mesothelin/MMAE Antibody-Drug Conjugate DMOT4039A", - PermissibleValue(text="Anti-mesothelin/MMAE Antibody-Drug Conjugate DMOT4039A") ) - setattr(cls, "Microtubule Inhibitor SCB01A", - PermissibleValue(text="Microtubule Inhibitor SCB01A") ) - setattr(cls, "2-Fluoroadenine", - PermissibleValue(text="2-Fluoroadenine") ) - setattr(cls, "c-Met Inhibitor AMG 337", - PermissibleValue(text="c-Met Inhibitor AMG 337") ) - setattr(cls, "Anti-VEGF Monoclonal Antibody hPV19", - PermissibleValue(text="Anti-VEGF Monoclonal Antibody hPV19") ) - setattr(cls, "Thioredoxin-1 Inhibitor PX-12", - PermissibleValue(text="Thioredoxin-1 Inhibitor PX-12") ) - setattr(cls, "Rucaparib Phosphate", - PermissibleValue(text="Rucaparib Phosphate") ) - setattr(cls, "Dabrafenib Mesylate", - PermissibleValue(text="Dabrafenib Mesylate") ) - setattr(cls, "Adenosine A2A Receptor Antagonist NIR178", - PermissibleValue(text="Adenosine A2A Receptor Antagonist NIR178") ) - setattr(cls, "Anti-CLEC12A/CD3 Bispecific Antibody MCLA117", - PermissibleValue(text="Anti-CLEC12A/CD3 Bispecific Antibody MCLA117") ) - setattr(cls, "c-Met Inhibitor JNJ-38877605", - PermissibleValue(text="c-Met Inhibitor JNJ-38877605") ) - setattr(cls, "Glioblastoma Multiforme Multipeptide Vaccine IMA950", - PermissibleValue(text="Glioblastoma Multiforme Multipeptide Vaccine IMA950") ) - setattr(cls, "Allogeneic CD56-positive CD3-negative Natural Killer Cells CYNK-001", - PermissibleValue(text="Allogeneic CD56-positive CD3-negative Natural Killer Cells CYNK-001") ) - setattr(cls, "Custirsen Sodium", - PermissibleValue(text="Custirsen Sodium") ) - setattr(cls, "Amonafide L-Malate", - PermissibleValue(text="Amonafide L-Malate") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody ZKAB001", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody ZKAB001") ) - setattr(cls, "Autologous CD38-4SCAR-expressing T-cells 4SCAR38", - PermissibleValue(text="Autologous CD38-4SCAR-expressing T-cells 4SCAR38") ) - setattr(cls, "Aurora A Kinase Inhibitor LY3295668 Erbumine", - PermissibleValue(text="Aurora A Kinase Inhibitor LY3295668 Erbumine") ) - setattr(cls, "Anti-CD37 Antibody-Drug Conjugate IMGN529", - PermissibleValue(text="Anti-CD37 Antibody-Drug Conjugate IMGN529") ) - setattr(cls, "Agonistic Anti-OX40 Monoclonal Antibody INCAGN01949", - PermissibleValue(text="Agonistic Anti-OX40 Monoclonal Antibody INCAGN01949") ) - setattr(cls, "Zoledronic Acid", - PermissibleValue(text="Zoledronic Acid") ) - setattr(cls, "Dual-affinity B7-H3/CD3-targeted Protein MGD009", - PermissibleValue(text="Dual-affinity B7-H3/CD3-targeted Protein MGD009") ) - setattr(cls, "DKK1-Neutralizing Monoclonal Antibody DKN-01", - PermissibleValue(text="DKK1-Neutralizing Monoclonal Antibody DKN-01") ) - setattr(cls, "CXCR4 Antagonist BL-8040", - PermissibleValue(text="CXCR4 Antagonist BL-8040") ) - setattr(cls, "Conditionally Active Biologic Anti-AXL Antibody-drug Conjugate BA3011", - PermissibleValue(text="Conditionally Active Biologic Anti-AXL Antibody-drug Conjugate BA3011") ) - setattr(cls, "STING Agonist SB 11285", - PermissibleValue(text="STING Agonist SB 11285") ) - setattr(cls, "Immunotoxin CMD-193", - PermissibleValue(text="Immunotoxin CMD-193") ) - setattr(cls, "Irinotecan/P-glycoprotein Inhibitor HM30181AK Combination Tablet", - PermissibleValue(text="Irinotecan/P-glycoprotein Inhibitor HM30181AK Combination Tablet") ) - setattr(cls, "Camptothecin Glycoconjugate BAY 38-3441", - PermissibleValue(text="Camptothecin Glycoconjugate BAY 38-3441") ) - setattr(cls, "CDK4/6 Inhibitor CS3002", - PermissibleValue(text="CDK4/6 Inhibitor CS3002") ) - setattr(cls, "Peginterferon Alfa-2a", - PermissibleValue(text="Peginterferon Alfa-2a") ) - setattr(cls, "Polysaccharide-K", - PermissibleValue(text="Polysaccharide-K") ) - setattr(cls, "Interleukin-2 Liposome", - PermissibleValue(text="Interleukin-2 Liposome") ) - setattr(cls, "Tamoxifen Citrate", - PermissibleValue(text="Tamoxifen Citrate") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody CPGJ 602", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody CPGJ 602") ) - setattr(cls, "Anti-IL-8 Monoclonal Antibody BMS-986253", - PermissibleValue(text="Anti-IL-8 Monoclonal Antibody BMS-986253") ) - setattr(cls, "PI3K Inhibitor ACP-319", - PermissibleValue(text="PI3K Inhibitor ACP-319") ) - setattr(cls, "HER2 ECD+TM Virus-like Replicon Particles Vaccine AVX901", - PermissibleValue(text="HER2 ECD+TM Virus-like Replicon Particles Vaccine AVX901") ) - setattr(cls, "Anti-EGFR/DM1 Antibody-drug Conjugate AVID100", - PermissibleValue(text="Anti-EGFR/DM1 Antibody-drug Conjugate AVID100") ) - setattr(cls, "Rilimogene Galvacirepvec/Rilimogene Glafolivec", - PermissibleValue(text="Rilimogene Galvacirepvec/Rilimogene Glafolivec") ) - setattr(cls, "Thyroid Extract", - PermissibleValue(text="Thyroid Extract") ) - setattr(cls, "Anti-TAG-72 Monoclonal Antibody scFV CC-49/218", - PermissibleValue(text="Anti-TAG-72 Monoclonal Antibody scFV CC-49/218") ) - setattr(cls, "Anti-CEACAM6 Antibody BAY1834942", - PermissibleValue(text="Anti-CEACAM6 Antibody BAY1834942") ) - setattr(cls, "Antibody-drug Conjugate ABBV-011", - PermissibleValue(text="Antibody-drug Conjugate ABBV-011") ) - setattr(cls, "EGFR T790M Antagonist BPI-15086", - PermissibleValue(text="EGFR T790M Antagonist BPI-15086") ) - setattr(cls, "Recombinant Human Hsp110-gp100 Chaperone Complex Vaccine", - PermissibleValue(text="Recombinant Human Hsp110-gp100 Chaperone Complex Vaccine") ) - setattr(cls, "Lavendustin A", - PermissibleValue(text="Lavendustin A") ) - setattr(cls, "GSK-3 Inhibitor LY2090314", - PermissibleValue(text="GSK-3 Inhibitor LY2090314") ) - setattr(cls, "mTORC1/2 Kinase Inhibitor BI 860585", - PermissibleValue(text="mTORC1/2 Kinase Inhibitor BI 860585") ) - setattr(cls, "Triazene Derivative CB10-277", - PermissibleValue(text="Triazene Derivative CB10-277") ) - setattr(cls, "Telaglenastat Hydrochloride", - PermissibleValue(text="Telaglenastat Hydrochloride") ) - setattr(cls, "Triamcinolone Hexacetonide", - PermissibleValue(text="Triamcinolone Hexacetonide") ) - setattr(cls, "Shark Cartilage", - PermissibleValue(text="Shark Cartilage") ) - setattr(cls, "Vascular Disrupting Agent ZD6126", - PermissibleValue(text="Vascular Disrupting Agent ZD6126") ) - setattr(cls, "CSF1R Inhibitor DCC-3014", - PermissibleValue(text="CSF1R Inhibitor DCC-3014") ) - setattr(cls, "Cinrebafusp Alfa", - PermissibleValue(text="Cinrebafusp Alfa") ) - setattr(cls, "STAT3 Inhibitor OPB-51602", - PermissibleValue(text="STAT3 Inhibitor OPB-51602") ) - setattr(cls, "Ralimetinib Mesylate", - PermissibleValue(text="Ralimetinib Mesylate") ) - setattr(cls, "MKC-1", - PermissibleValue(text="MKC-1") ) - setattr(cls, "Paclitaxel Polymeric Micelle Formulation NANT-008", - PermissibleValue(text="Paclitaxel Polymeric Micelle Formulation NANT-008") ) - setattr(cls, "Immunocytokine NHS-IL2-LT", - PermissibleValue(text="Immunocytokine NHS-IL2-LT") ) - setattr(cls, "Coxsackievirus V937", - PermissibleValue(text="Coxsackievirus V937") ) - setattr(cls, "SHP2 Inhibitor TNO155", - PermissibleValue(text="SHP2 Inhibitor TNO155") ) - setattr(cls, "I 131 Monoclonal Antibody F19", - PermissibleValue(text="I 131 Monoclonal Antibody F19") ) - setattr(cls, "Anti-VEGFC Monoclonal Antibody VGX-100", - PermissibleValue(text="Anti-VEGFC Monoclonal Antibody VGX-100") ) - setattr(cls, "Anti-HER3 Antibody-drug Conjugate U3 1402", - PermissibleValue(text="Anti-HER3 Antibody-drug Conjugate U3 1402") ) - setattr(cls, "Methoxyamine Hydrochloride", - PermissibleValue(text="Methoxyamine Hydrochloride") ) - setattr(cls, "Quadrivalent Human Papillomavirus (types 6, 11, 16, 18) Recombinant Vaccine", - PermissibleValue(text="Quadrivalent Human Papillomavirus (types 6, 11, 16, 18) Recombinant Vaccine") ) - setattr(cls, "EGFR Antagonist Hemay022", - PermissibleValue(text="EGFR Antagonist Hemay022") ) - setattr(cls, "Modified Vaccinia Ankara-vectored HPV16/18 Vaccine JNJ-65195208", - PermissibleValue(text="Modified Vaccinia Ankara-vectored HPV16/18 Vaccine JNJ-65195208") ) - setattr(cls, "Autologous Anti-EGFR CAR-transduced CXCR 5-modified T-lymphocytes", - PermissibleValue(text="Autologous Anti-EGFR CAR-transduced CXCR 5-modified T-lymphocytes") ) - setattr(cls, "BET Inhibitor GSK2820151", - PermissibleValue(text="BET Inhibitor GSK2820151") ) - setattr(cls, "Autologous Anti-PSMA CAR-T Cells P-PSMA-101", - PermissibleValue(text="Autologous Anti-PSMA CAR-T Cells P-PSMA-101") ) - setattr(cls, "Autologous CD22-4SCAR-expressing T-cells 4SCAR22", - PermissibleValue(text="Autologous CD22-4SCAR-expressing T-cells 4SCAR22") ) - setattr(cls, "Phosphaplatin PT-112", - PermissibleValue(text="Phosphaplatin PT-112") ) - setattr(cls, "Autologous LMP1/LMP2/EBNA1-specific HLA-A02:01/24:02/11:01-restricted TCR-expressing T-lymphocytes YT-E001", - PermissibleValue(text="Autologous LMP1/LMP2/EBNA1-specific HLA-A02:01/24:02/11:01-restricted TCR-expressing T-lymphocytes YT-E001") ) - setattr(cls, "DNMT1 Inhibitor NTX-301", - PermissibleValue(text="DNMT1 Inhibitor NTX-301") ) - setattr(cls, "Angiogenesis Inhibitor JI-101", - PermissibleValue(text="Angiogenesis Inhibitor JI-101") ) - setattr(cls, "L-methylfolate", - PermissibleValue(text="L-methylfolate") ) - setattr(cls, "Mutant IDH1 Inhibitor DS-1001", - PermissibleValue(text="Mutant IDH1 Inhibitor DS-1001") ) - setattr(cls, "Multikinase Inhibitor 4SC-203", - PermissibleValue(text="Multikinase Inhibitor 4SC-203") ) - setattr(cls, "LMP-2:419-427 Peptide Vaccine", - PermissibleValue(text="LMP-2:419-427 Peptide Vaccine") ) - setattr(cls, "FGFR1/2/3 Inhibitor HMPL-453", - PermissibleValue(text="FGFR1/2/3 Inhibitor HMPL-453") ) - setattr(cls, "Gataparsen Sodium", - PermissibleValue(text="Gataparsen Sodium") ) - setattr(cls, "Recombinant Erwinia asparaginase JZP-458", - PermissibleValue(text="Recombinant Erwinia asparaginase JZP-458") ) - setattr(cls, "MetAP2 Inhibitor APL-1202", - PermissibleValue(text="MetAP2 Inhibitor APL-1202") ) - setattr(cls, "Irradiated Allogeneic Human Lung Cancer Cells Expressing OX40L-Ig Vaccine HS-130", - PermissibleValue(text="Irradiated Allogeneic Human Lung Cancer Cells Expressing OX40L-Ig Vaccine HS-130") ) - setattr(cls, "Antibody-drug Conjugate SC-007", - PermissibleValue(text="Antibody-drug Conjugate SC-007") ) - setattr(cls, "Ansamitomicin P-3", - PermissibleValue(text="Ansamitomicin P-3") ) - setattr(cls, "MET Tyrosine Kinase Inhibitor BMS-777607", - PermissibleValue(text="MET Tyrosine Kinase Inhibitor BMS-777607") ) - setattr(cls, "Axl/Mer Inhibitor PF-07265807", - PermissibleValue(text="Axl/Mer Inhibitor PF-07265807") ) - setattr(cls, "Huang Lian", - PermissibleValue(text="Huang Lian") ) - setattr(cls, "ATR Inhibitor RP-3500", - PermissibleValue(text="ATR Inhibitor RP-3500") ) - setattr(cls, "Peptide 946-Tetanus Peptide Conjugate Melanoma Vaccine", - PermissibleValue(text="Peptide 946-Tetanus Peptide Conjugate Melanoma Vaccine") ) - setattr(cls, "Tezacitabine Anhydrous", - PermissibleValue(text="Tezacitabine Anhydrous") ) - setattr(cls, "Daratumumab and Hyaluronidase-fihj", - PermissibleValue(text="Daratumumab and Hyaluronidase-fihj") ) - setattr(cls, "cis-Urocanic Acid", - PermissibleValue(text="cis-Urocanic Acid") ) - setattr(cls, "Tubulin Inhibitor ALB 109564 Dihydrochloride", - PermissibleValue(text="Tubulin Inhibitor ALB 109564 Dihydrochloride") ) - setattr(cls, "TIGIT-targeting Agent MK-7684", - PermissibleValue(text="TIGIT-targeting Agent MK-7684") ) - setattr(cls, "Anti-CD40 Monoclonal Antibody Chi Lob 7/4", - PermissibleValue(text="Anti-CD40 Monoclonal Antibody Chi Lob 7/4") ) - setattr(cls, "Lyso-Thermosensitive Liposome Doxorubicin", - PermissibleValue(text="Lyso-Thermosensitive Liposome Doxorubicin") ) - setattr(cls, "OxPhos Inhibitor VLX600", - PermissibleValue(text="OxPhos Inhibitor VLX600") ) - setattr(cls, "Anti-CD20 Monoclonal Antibody TL011", - PermissibleValue(text="Anti-CD20 Monoclonal Antibody TL011") ) - setattr(cls, "DNA-dependent Protein Kinase Inhibitor VX-984", - PermissibleValue(text="DNA-dependent Protein Kinase Inhibitor VX-984") ) - setattr(cls, "Liposomal Vinorelbine", - PermissibleValue(text="Liposomal Vinorelbine") ) - setattr(cls, "Vector-peptide Conjugated Paclitaxel", - PermissibleValue(text="Vector-peptide Conjugated Paclitaxel") ) - setattr(cls, "PVA Microporous Hydrospheres/Doxorubicin Hydrochloride", - PermissibleValue(text="PVA Microporous Hydrospheres/Doxorubicin Hydrochloride") ) - setattr(cls, "8-Azaguanine", - PermissibleValue(text="8-Azaguanine") ) - setattr(cls, "MAT2A Inhibitor AG-270", - PermissibleValue(text="MAT2A Inhibitor AG-270") ) - setattr(cls, "Cofetuzumab Pelidotin", - PermissibleValue(text="Cofetuzumab Pelidotin") ) - setattr(cls, "HCV DNA Vaccine INO-8000", - PermissibleValue(text="HCV DNA Vaccine INO-8000") ) - setattr(cls, "PI3K-delta Inhibitor YY-20394", - PermissibleValue(text="PI3K-delta Inhibitor YY-20394") ) - setattr(cls, "A2A Receptor Antagonist EOS100850", - PermissibleValue(text="A2A Receptor Antagonist EOS100850") ) - setattr(cls, "Renal Cell Carcinoma Peptides Vaccine IMA901", - PermissibleValue(text="Renal Cell Carcinoma Peptides Vaccine IMA901") ) - setattr(cls, "Autologous Genetically-modified MAGE-A4 C1032 CD8alpha T Cells", - PermissibleValue(text="Autologous Genetically-modified MAGE-A4 C1032 CD8alpha T Cells") ) - setattr(cls, "Protein Kinase C Inhibitor IDE196", - PermissibleValue(text="Protein Kinase C Inhibitor IDE196") ) - setattr(cls, "Androgen Receptor Antagonist SHR3680", - PermissibleValue(text="Androgen Receptor Antagonist SHR3680") ) - setattr(cls, "Cabozantinib S-malate", - PermissibleValue(text="Cabozantinib S-malate") ) - setattr(cls, "Bruceanol F", - PermissibleValue(text="Bruceanol F") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody REGN4659", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody REGN4659") ) - setattr(cls, "Recombinant Super-compound Interferon", - PermissibleValue(text="Recombinant Super-compound Interferon") ) - setattr(cls, "Topoisomerase I Inhibitor LMP776", - PermissibleValue(text="Topoisomerase I Inhibitor LMP776") ) - setattr(cls, "Oncolytic Measles Virus Encoding Helicobacter pylori Neutrophil-activating Protein", - PermissibleValue(text="Oncolytic Measles Virus Encoding Helicobacter pylori Neutrophil-activating Protein") ) - setattr(cls, "Hu14.18-IL2 Fusion Protein EMD 273063", - PermissibleValue(text="Hu14.18-IL2 Fusion Protein EMD 273063") ) - setattr(cls, "Anti-HER2/MMAE Antibody-drug Conjugate MRG002", - PermissibleValue(text="Anti-HER2/MMAE Antibody-drug Conjugate MRG002") ) - setattr(cls, "Pamidronic Acid", - PermissibleValue(text="Pamidronic Acid") ) - setattr(cls, "Antibody-drug Conjugate SC-005", - PermissibleValue(text="Antibody-drug Conjugate SC-005") ) - setattr(cls, "Anti-TF Monoclonal Antibody ALT-836", - PermissibleValue(text="Anti-TF Monoclonal Antibody ALT-836") ) - setattr(cls, "Nanoscale Coordination Polymer Nanoparticles CPI-100", - PermissibleValue(text="Nanoscale Coordination Polymer Nanoparticles CPI-100") ) - setattr(cls, "Epitinib Succinate", - PermissibleValue(text="Epitinib Succinate") ) - setattr(cls, "Folate Receptor-Targeted Vinca Alkaloid EC0489", - PermissibleValue(text="Folate Receptor-Targeted Vinca Alkaloid EC0489") ) - setattr(cls, "CHK1 Inhibitor PF-477736", - PermissibleValue(text="CHK1 Inhibitor PF-477736") ) - setattr(cls, "TGFbeta Inhibitor LY3200882", - PermissibleValue(text="TGFbeta Inhibitor LY3200882") ) - setattr(cls, "Imidazole Mustard", - PermissibleValue(text="Imidazole Mustard") ) - setattr(cls, "Hsp90 Inhibitor SNX-5422 Mesylate", - PermissibleValue(text="Hsp90 Inhibitor SNX-5422 Mesylate") ) - setattr(cls, "Allogeneic Melanoma Vaccine AGI-101H", - PermissibleValue(text="Allogeneic Melanoma Vaccine AGI-101H") ) - setattr(cls, "Phosphorus P-32", - PermissibleValue(text="Phosphorus P-32") ) - setattr(cls, "Magnesium Valproate", - PermissibleValue(text="Magnesium Valproate") ) - setattr(cls, "Vaccinium myrtillus/Macleaya cordata/Echinacea angustifolia Extract Granules", - PermissibleValue(text="Vaccinium myrtillus/Macleaya cordata/Echinacea angustifolia Extract Granules") ) - setattr(cls, "Oncolytic HSV-1 Expressing IL-12 and Anti-PD-1 Antibody T3011", - PermissibleValue(text="Oncolytic HSV-1 Expressing IL-12 and Anti-PD-1 Antibody T3011") ) - setattr(cls, "Inotuzumab Ozogamicin", - PermissibleValue(text="Inotuzumab Ozogamicin") ) - setattr(cls, "Azintuxizumab Vedotin", - PermissibleValue(text="Azintuxizumab Vedotin") ) - setattr(cls, "Lutetium Lu 177 Dotatate", - PermissibleValue(text="Lutetium Lu 177 Dotatate") ) - setattr(cls, "Autologous Anti-CD19 T-cell Receptor T cells ET190L1", - PermissibleValue(text="Autologous Anti-CD19 T-cell Receptor T cells ET190L1") ) - setattr(cls, "Anti-CD73 Monoclonal Antibody CPI-006", - PermissibleValue(text="Anti-CD73 Monoclonal Antibody CPI-006") ) - setattr(cls, "Anti-PD-1/Anti-PD-L1 Bispecific Antibody LY3434172", - PermissibleValue(text="Anti-PD-1/Anti-PD-L1 Bispecific Antibody LY3434172") ) - setattr(cls, "EGFR/HER2 Inhibitor AP32788", - PermissibleValue(text="EGFR/HER2 Inhibitor AP32788") ) - setattr(cls, "SR-BP1/HSI Inhibitor SR31747A", - PermissibleValue(text="SR-BP1/HSI Inhibitor SR31747A") ) - setattr(cls, "Anti-LGR5 Monoclonal Antibody BNC101", - PermissibleValue(text="Anti-LGR5 Monoclonal Antibody BNC101") ) - setattr(cls, "Mixed Bacteria Vaccine", - PermissibleValue(text="Mixed Bacteria Vaccine") ) - setattr(cls, "Ancitabine Hydrochloride", - PermissibleValue(text="Ancitabine Hydrochloride") ) - setattr(cls, "siG12D LODER", - PermissibleValue(text="siG12D LODER") ) - setattr(cls, "Attenuated Live Listeria Encoding HPV 16 E7 Vaccine ADXS11-001", - PermissibleValue(text="Attenuated Live Listeria Encoding HPV 16 E7 Vaccine ADXS11-001") ) - setattr(cls, "Fludarabine Phosphate", - PermissibleValue(text="Fludarabine Phosphate") ) - setattr(cls, "Prostate Cancer Vaccine ONY-P1", - PermissibleValue(text="Prostate Cancer Vaccine ONY-P1") ) - setattr(cls, "Opolimogene Capmilisbac", - PermissibleValue(text="Opolimogene Capmilisbac") ) - setattr(cls, "MALT1 Inhibitor JNJ-67856633", - PermissibleValue(text="MALT1 Inhibitor JNJ-67856633") ) - setattr(cls, "S1P Receptor Agonist KRP203", - PermissibleValue(text="S1P Receptor Agonist KRP203") ) - setattr(cls, "Nicotinamide Riboside", - PermissibleValue(text="Nicotinamide Riboside") ) - setattr(cls, "Peptide 946 Melanoma Vaccine", - PermissibleValue(text="Peptide 946 Melanoma Vaccine") ) - setattr(cls, "DNA Plasmid-encoding Interleukin-12 INO-9012/PSA/PSMA DNA Plasmids INO-5150 Formulation INO-5151", - PermissibleValue(text="DNA Plasmid-encoding Interleukin-12 INO-9012/PSA/PSMA DNA Plasmids INO-5150 Formulation INO-5151") ) - setattr(cls, "Chimeric Monoclonal Antibody 81C6", - PermissibleValue(text="Chimeric Monoclonal Antibody 81C6") ) - setattr(cls, "Pan-Mutant-IDH1 Inhibitor Bay-1436032", - PermissibleValue(text="Pan-Mutant-IDH1 Inhibitor Bay-1436032") ) - setattr(cls, "Methotrexate-E Therapeutic Implant", - PermissibleValue(text="Methotrexate-E Therapeutic Implant") ) - setattr(cls, "Cetuximab-loaded Ethylcellulose Polymeric Nanoparticles Decorated with Octreotide (SY)", - PermissibleValue(text="Cetuximab-loaded Ethylcellulose Polymeric Nanoparticles Decorated with Octreotide (SY)") ) - setattr(cls, "FAP/4-1BB-targeting Fusion Protein RO7122290", - PermissibleValue(text="FAP/4-1BB-targeting Fusion Protein RO7122290") ) - setattr(cls, "CDK Inhibitor SNS-032", - PermissibleValue(text="CDK Inhibitor SNS-032") ) - setattr(cls, "Anti-LAG3 Monoclonal Antibody MK-4280", - PermissibleValue(text="Anti-LAG3 Monoclonal Antibody MK-4280") ) - setattr(cls, "EGFR Mutant-specific Inhibitor CK-101", - PermissibleValue(text="EGFR Mutant-specific Inhibitor CK-101") ) - setattr(cls, "EZH1/2 Inhibitor HH2853", - PermissibleValue(text="EZH1/2 Inhibitor HH2853") ) - setattr(cls, "CYP17/Androgen Receptor Inhibitor ODM 204", - PermissibleValue(text="CYP17/Androgen Receptor Inhibitor ODM 204") ) - setattr(cls, "FGFR4 Inhibitor H3B-6527", - PermissibleValue(text="FGFR4 Inhibitor H3B-6527") ) - setattr(cls, "ERK Inhibitor LTT462", - PermissibleValue(text="ERK Inhibitor LTT462") ) - setattr(cls, "PI3K-gamma Inhibitor IPI-549", - PermissibleValue(text="PI3K-gamma Inhibitor IPI-549") ) - setattr(cls, "Monoclonal Antibody CAL", - PermissibleValue(text="Monoclonal Antibody CAL") ) - setattr(cls, "Anti-MUC17/CD3 BiTE Antibody AMG 199", - PermissibleValue(text="Anti-MUC17/CD3 BiTE Antibody AMG 199") ) - setattr(cls, "PI3K Inhibitor GSK1059615", - PermissibleValue(text="PI3K Inhibitor GSK1059615") ) - setattr(cls, "Acridine Carboxamide", - PermissibleValue(text="Acridine Carboxamide") ) - setattr(cls, "Autologous Anti-CD19 CAR T-cells 19(T2)28z1xx", - PermissibleValue(text="Autologous Anti-CD19 CAR T-cells 19(T2)28z1xx") ) - setattr(cls, "Aryl Hydrocarbon Receptor Inhibitor IK-175", - PermissibleValue(text="Aryl Hydrocarbon Receptor Inhibitor IK-175") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody SHR-1316", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody SHR-1316") ) - setattr(cls, "Carubicin Hydrochloride", - PermissibleValue(text="Carubicin Hydrochloride") ) - setattr(cls, "Antrodia cinnamomea Supplement", - PermissibleValue(text="Antrodia cinnamomea Supplement") ) - setattr(cls, "TRK Inhibitor TQB3558", - PermissibleValue(text="TRK Inhibitor TQB3558") ) - setattr(cls, "Recombinant Oncolytic Poliovirus PVS-RIPO", - PermissibleValue(text="Recombinant Oncolytic Poliovirus PVS-RIPO") ) - setattr(cls, "Dopamine-Somatostatin Chimeric Molecule BIM-23A760", - PermissibleValue(text="Dopamine-Somatostatin Chimeric Molecule BIM-23A760") ) - setattr(cls, "Sparfosate Sodium", - PermissibleValue(text="Sparfosate Sodium") ) - setattr(cls, "BR96-Doxorubicin Immunoconjugate", - PermissibleValue(text="BR96-Doxorubicin Immunoconjugate") ) - setattr(cls, "Prostaglandin E2 EP4 Receptor Inhibitor AN0025", - PermissibleValue(text="Prostaglandin E2 EP4 Receptor Inhibitor AN0025") ) - setattr(cls, "Anti-FCRH5/CD3 BiTE Antibody BFCR4350A", - PermissibleValue(text="Anti-FCRH5/CD3 BiTE Antibody BFCR4350A") ) - setattr(cls, "HDAC inhibitor CG200745", - PermissibleValue(text="HDAC inhibitor CG200745") ) - setattr(cls, "Vocimagene Amiretrorepvec", - PermissibleValue(text="Vocimagene Amiretrorepvec") ) - setattr(cls, "SNS01-T Nanoparticles", - PermissibleValue(text="SNS01-T Nanoparticles") ) - setattr(cls, "Immunoconjugate RO5479599", - PermissibleValue(text="Immunoconjugate RO5479599") ) - setattr(cls, "Anti-CTLA-4/LAG-3 Bispecific Antibody XmAb22841", - PermissibleValue(text="Anti-CTLA-4/LAG-3 Bispecific Antibody XmAb22841") ) - setattr(cls, "TLR Agonist BSG-001", - PermissibleValue(text="TLR Agonist BSG-001") ) - setattr(cls, "Enfortumab Vedotin", - PermissibleValue(text="Enfortumab Vedotin") ) - setattr(cls, "PI3K Inhibitor WX-037", - PermissibleValue(text="PI3K Inhibitor WX-037") ) - setattr(cls, "Ziv-Aflibercept", - PermissibleValue(text="Ziv-Aflibercept") ) - setattr(cls, "Anti-EGFR/c-Met Bispecific Antibody JNJ-61186372", - PermissibleValue(text="Anti-EGFR/c-Met Bispecific Antibody JNJ-61186372") ) - setattr(cls, "Porcupine Inhibitor WNT974", - PermissibleValue(text="Porcupine Inhibitor WNT974") ) - setattr(cls, "Antigen-presenting Cells-expressing HPV16 E6/E7 SQZ-PBMC-HPV", - PermissibleValue(text="Antigen-presenting Cells-expressing HPV16 E6/E7 SQZ-PBMC-HPV") ) - setattr(cls, "Phospholipid Ether-drug Conjugate CLR 131", - PermissibleValue(text="Phospholipid Ether-drug Conjugate CLR 131") ) - setattr(cls, "Beta-elemene", - PermissibleValue(text="Beta-elemene") ) - setattr(cls, "Glutathione Pegylated Liposomal Doxorubicin Hydrochloride Formulation 2B3-101", - PermissibleValue(text="Glutathione Pegylated Liposomal Doxorubicin Hydrochloride Formulation 2B3-101") ) - setattr(cls, "Anti-CD38 Antibody-drug Conjugate STI-6129", - PermissibleValue(text="Anti-CD38 Antibody-drug Conjugate STI-6129") ) - setattr(cls, "Liposome-encapsulated OSI-7904", - PermissibleValue(text="Liposome-encapsulated OSI-7904") ) - setattr(cls, "Cold Contaminant-free Iobenguane I-131", - PermissibleValue(text="Cold Contaminant-free Iobenguane I-131") ) - setattr(cls, "I 131 Monoclonal Antibody A33", - PermissibleValue(text="I 131 Monoclonal Antibody A33") ) - setattr(cls, "Beta-Glucan", - PermissibleValue(text="Beta-Glucan") ) - setattr(cls, "STING Agonist BMS-986301", - PermissibleValue(text="STING Agonist BMS-986301") ) - setattr(cls, "NA17.A2 Peptide Vaccine", - PermissibleValue(text="NA17.A2 Peptide Vaccine") ) - setattr(cls, "Allogeneic CD22-specific Universal CAR-expressing T-lymphocytes UCART22", - PermissibleValue(text="Allogeneic CD22-specific Universal CAR-expressing T-lymphocytes UCART22") ) - setattr(cls, "Alpha-tocopheryloxyacetic Acid", - PermissibleValue(text="Alpha-tocopheryloxyacetic Acid") ) - setattr(cls, "Autologous TCRm-expressing T-cells ET140203", - PermissibleValue(text="Autologous TCRm-expressing T-cells ET140203") ) - setattr(cls, "Enadenotucirev-expressing Anti-CD40 Agonistic Monoclonal Antibody NG-350A", - PermissibleValue(text="Enadenotucirev-expressing Anti-CD40 Agonistic Monoclonal Antibody NG-350A") ) - setattr(cls, "Multikinase Inhibitor AT9283", - PermissibleValue(text="Multikinase Inhibitor AT9283") ) - setattr(cls, "Anti-Glypican 3/CD3 Bispecific Antibody ERY974", - PermissibleValue(text="Anti-Glypican 3/CD3 Bispecific Antibody ERY974") ) - setattr(cls, "Anti-PD-1/Anti-LAG-3 DART Protein MGD013", - PermissibleValue(text="Anti-PD-1/Anti-LAG-3 DART Protein MGD013") ) - setattr(cls, "Antisense Oligonucleotide GTI-2040", - PermissibleValue(text="Antisense Oligonucleotide GTI-2040") ) - setattr(cls, "PH20 Hyaluronidase-expressing Adenovirus VCN-01", - PermissibleValue(text="PH20 Hyaluronidase-expressing Adenovirus VCN-01") ) - setattr(cls, "Anti-CD3 Immunotoxin A-dmDT390-bisFv(UCHT1)", - PermissibleValue(text="Anti-CD3 Immunotoxin A-dmDT390-bisFv(UCHT1)") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody TSR-042", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody TSR-042") ) - setattr(cls, "Anti-APRIL Monoclonal Antibody BION-1301", - PermissibleValue(text="Anti-APRIL Monoclonal Antibody BION-1301") ) - setattr(cls, "Gusperimus Trihydrochloride", - PermissibleValue(text="Gusperimus Trihydrochloride") ) - setattr(cls, "Blueberry Powder Supplement", - PermissibleValue(text="Blueberry Powder Supplement") ) - setattr(cls, "Monoclonal Antibody 4B5 Anti-Idiotype Vaccine", - PermissibleValue(text="Monoclonal Antibody 4B5 Anti-Idiotype Vaccine") ) - setattr(cls, "Epipodophyllotoxin Analog GL331", - PermissibleValue(text="Epipodophyllotoxin Analog GL331") ) - setattr(cls, "Anti-Ganglioside GM2 Monoclonal Antibody BIW-8962", - PermissibleValue(text="Anti-Ganglioside GM2 Monoclonal Antibody BIW-8962") ) - setattr(cls, "Simalikalactone D", - PermissibleValue(text="Simalikalactone D") ) - setattr(cls, "Pegylated Liposomal Mitomycin C Lipid-based Prodrug", - PermissibleValue(text="Pegylated Liposomal Mitomycin C Lipid-based Prodrug") ) - setattr(cls, "VEGFR Inhibitor KRN951", - PermissibleValue(text="VEGFR Inhibitor KRN951") ) - setattr(cls, "SERD ZN-c5", - PermissibleValue(text="SERD ZN-c5") ) - setattr(cls, "Submicron Particle Paclitaxel Sterile Suspension", - PermissibleValue(text="Submicron Particle Paclitaxel Sterile Suspension") ) - setattr(cls, "Taurultam Analogue GP-2250", - PermissibleValue(text="Taurultam Analogue GP-2250") ) - setattr(cls, "IDH1 Mutant Inhibitor LY3410738", - PermissibleValue(text="IDH1 Mutant Inhibitor LY3410738") ) - setattr(cls, "Anti-CD44 Monoclonal Antibody RO5429083", - PermissibleValue(text="Anti-CD44 Monoclonal Antibody RO5429083") ) - setattr(cls, "Topical Fluorouracil", - PermissibleValue(text="Topical Fluorouracil") ) - setattr(cls, "N-(5-tert-butyl-3-isoxazolyl)-N-(4-(4-pyridinyl)oxyphenyl) Urea", - PermissibleValue(text="N-(5-tert-butyl-3-isoxazolyl)-N-(4-(4-pyridinyl)oxyphenyl) Urea") ) - setattr(cls, "Pegylated Liposomal Irinotecan", - PermissibleValue(text="Pegylated Liposomal Irinotecan") ) - setattr(cls, "Anti-CCR7 Antibody-drug Conjugate JBH492", - PermissibleValue(text="Anti-CCR7 Antibody-drug Conjugate JBH492") ) - setattr(cls, "Anti-HGF Monoclonal Antibody TAK-701", - PermissibleValue(text="Anti-HGF Monoclonal Antibody TAK-701") ) - setattr(cls, "Anhydrous Enol-oxaloacetate", - PermissibleValue(text="Anhydrous Enol-oxaloacetate") ) - setattr(cls, "Yttrium Y 90 Resin Microspheres", - PermissibleValue(text="Yttrium Y 90 Resin Microspheres") ) - setattr(cls, "Lurtotecan Liposome", - PermissibleValue(text="Lurtotecan Liposome") ) - setattr(cls, "Anti-CEA/Anti-HSG Bispecific Monoclonal Antibody TF2", - PermissibleValue(text="Anti-CEA/Anti-HSG Bispecific Monoclonal Antibody TF2") ) - setattr(cls, "Y 90 Monoclonal Antibody Lym-1", - PermissibleValue(text="Y 90 Monoclonal Antibody Lym-1") ) - setattr(cls, "Anti-HER2-DM1 ADC B003", - PermissibleValue(text="Anti-HER2-DM1 ADC B003") ) - setattr(cls, "JAK2 Inhibitor XL019", - PermissibleValue(text="JAK2 Inhibitor XL019") ) - setattr(cls, "Trastuzumab/Tesirine Antibody-drug Conjugate ADCT-502", - PermissibleValue(text="Trastuzumab/Tesirine Antibody-drug Conjugate ADCT-502") ) - setattr(cls, "Peplomycin Sulfate", - PermissibleValue(text="Peplomycin Sulfate") ) - setattr(cls, "Fluorine F 18 Ara-G", - PermissibleValue(text="Fluorine F 18 Ara-G") ) - setattr(cls, "Anti-CD38-targeted IgG4-attenuated IFNa TAK-573", - PermissibleValue(text="Anti-CD38-targeted IgG4-attenuated IFNa TAK-573") ) - setattr(cls, "Topoisomerase-II-beta Inhibitor Racemic XK469", - PermissibleValue(text="Topoisomerase-II-beta Inhibitor Racemic XK469") ) - setattr(cls, "Hedgehog Inhibitor IPI-609", - PermissibleValue(text="Hedgehog Inhibitor IPI-609") ) - setattr(cls, "Doxorubicin Prodrug/Prodrug-activating Biomaterial SQ3370", - PermissibleValue(text="Doxorubicin Prodrug/Prodrug-activating Biomaterial SQ3370") ) - setattr(cls, "Brachyury-expressing Yeast Vaccine GI-6301", - PermissibleValue(text="Brachyury-expressing Yeast Vaccine GI-6301") ) - setattr(cls, "Pan-IDH Mutant Inhibitor AG-881", - PermissibleValue(text="Pan-IDH Mutant Inhibitor AG-881") ) - setattr(cls, "Mechlorethamine Hydrochloride", - PermissibleValue(text="Mechlorethamine Hydrochloride") ) - setattr(cls, "MDM2/MDMX Inhibitor ALRN-6924", - PermissibleValue(text="MDM2/MDMX Inhibitor ALRN-6924") ) - setattr(cls, "Anti-5T4 Antibody-drug Conjugate SYD1875", - PermissibleValue(text="Anti-5T4 Antibody-drug Conjugate SYD1875") ) - setattr(cls, "DACH Polymer Platinate AP5346", - PermissibleValue(text="DACH Polymer Platinate AP5346") ) - setattr(cls, "STING-expressing E. coli SYNB1891", - PermissibleValue(text="STING-expressing E. coli SYNB1891") ) - setattr(cls, "Autologous HPV16 E7-specific HLA-A*02:01-restricted TCR Gene Engineered Lymphocytes KITE-439", - PermissibleValue(text="Autologous HPV16 E7-specific HLA-A*02:01-restricted TCR Gene Engineered Lymphocytes KITE-439") ) - setattr(cls, "Coltuximab Ravtansine", - PermissibleValue(text="Coltuximab Ravtansine") ) - setattr(cls, "RET/SRC Inhibitor TPX-0046", - PermissibleValue(text="RET/SRC Inhibitor TPX-0046") ) - setattr(cls, "Triciribine Phosphate", - PermissibleValue(text="Triciribine Phosphate") ) - setattr(cls, "Microparticle-encapsulated CYP1B1-encoding DNA Vaccine ZYC300", - PermissibleValue(text="Microparticle-encapsulated CYP1B1-encoding DNA Vaccine ZYC300") ) - setattr(cls, "Autologous Bispecific CD19/CD22-targeted CAR-T Cells GC022", - PermissibleValue(text="Autologous Bispecific CD19/CD22-targeted CAR-T Cells GC022") ) - setattr(cls, "Mitoxantrone Hydrochloride", - PermissibleValue(text="Mitoxantrone Hydrochloride") ) - setattr(cls, "Monoclonal Antibody A27.15", - PermissibleValue(text="Monoclonal Antibody A27.15") ) - setattr(cls, "I 131 Monoclonal Antibody Lym-1", - PermissibleValue(text="I 131 Monoclonal Antibody Lym-1") ) - setattr(cls, "Ursolic Acid", - PermissibleValue(text="Ursolic Acid") ) - setattr(cls, "Oncolytic HSV-1 rQNestin34.5v.2", - PermissibleValue(text="Oncolytic HSV-1 rQNestin34.5v.2") ) - setattr(cls, "Palladium Pd-103", - PermissibleValue(text="Palladium Pd-103") ) - setattr(cls, "Anti-PD-L1/CD137 Bispecific Antibody MCLA-145", - PermissibleValue(text="Anti-PD-L1/CD137 Bispecific Antibody MCLA-145") ) - setattr(cls, "Anti-Lewis B/Lewis Y Monoclonal Antibody GNX102", - PermissibleValue(text="Anti-Lewis B/Lewis Y Monoclonal Antibody GNX102") ) - setattr(cls, "Iodine I 131 Monoclonal Antibody BC8", - PermissibleValue(text="Iodine I 131 Monoclonal Antibody BC8") ) - setattr(cls, "Radix Angelicae Sinensis/Radix Astragali Herbal Supplement", - PermissibleValue(text="Radix Angelicae Sinensis/Radix Astragali Herbal Supplement") ) - setattr(cls, "LMP-2:340-349 Peptide Vaccine", - PermissibleValue(text="LMP-2:340-349 Peptide Vaccine") ) - setattr(cls, "Anti-A33 Monoclonal Antibody KRN330", - PermissibleValue(text="Anti-A33 Monoclonal Antibody KRN330") ) - setattr(cls, "PEG-PEI-cholesterol Lipopolymer-encased IL-12 DNA Plasmid Vector GEN-1", - PermissibleValue(text="PEG-PEI-cholesterol Lipopolymer-encased IL-12 DNA Plasmid Vector GEN-1") ) - setattr(cls, "Sitimagene Ceradenovec", - PermissibleValue(text="Sitimagene Ceradenovec") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody LZM009", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody LZM009") ) - setattr(cls, "Carmustine Implant", - PermissibleValue(text="Carmustine Implant") ) - setattr(cls, "Allovectin-7", - PermissibleValue(text="Allovectin-7") ) - setattr(cls, "Telomerase Inhibitor FJ5002", - PermissibleValue(text="Telomerase Inhibitor FJ5002") ) - setattr(cls, "Recombinant Human 6Ckine", - PermissibleValue(text="Recombinant Human 6Ckine") ) - setattr(cls, "Topotecan Hydrochloride Liposomes", - PermissibleValue(text="Topotecan Hydrochloride Liposomes") ) - setattr(cls, "Cryptophycin 52", - PermissibleValue(text="Cryptophycin 52") ) - setattr(cls, "Phenytoin Sodium", - PermissibleValue(text="Phenytoin Sodium") ) - setattr(cls, "Anti-ROR1/PNU-159682 Derivative Antibody-drug Conjugate NBE-002", - PermissibleValue(text="Anti-ROR1/PNU-159682 Derivative Antibody-drug Conjugate NBE-002") ) - setattr(cls, "Enterococcus gallinarum Strain MRx0518", - PermissibleValue(text="Enterococcus gallinarum Strain MRx0518") ) - setattr(cls, "Recombinant Bacterial Minicells VAX014", - PermissibleValue(text="Recombinant Bacterial Minicells VAX014") ) - setattr(cls, "VEGFR/PDGFR Tyrosine Kinase Inhibitor TAK-593", - PermissibleValue(text="VEGFR/PDGFR Tyrosine Kinase Inhibitor TAK-593") ) - setattr(cls, "Dovitinib Lactate", - PermissibleValue(text="Dovitinib Lactate") ) - setattr(cls, "I 131 Antiferritin Immunoglobulin", - PermissibleValue(text="I 131 Antiferritin Immunoglobulin") ) - setattr(cls, "Bromocriptine Mesylate", - PermissibleValue(text="Bromocriptine Mesylate") ) - setattr(cls, "Vaccine-Sensitized Draining Lymph Node Cells", - PermissibleValue(text="Vaccine-Sensitized Draining Lymph Node Cells") ) - setattr(cls, "CDK4/6 Inhibitor SHR6390", - PermissibleValue(text="CDK4/6 Inhibitor SHR6390") ) - setattr(cls, "EGFR Mutant-specific Inhibitor D-0316", - PermissibleValue(text="EGFR Mutant-specific Inhibitor D-0316") ) - setattr(cls, "Monoclonal Antibody TRK-950", - PermissibleValue(text="Monoclonal Antibody TRK-950") ) - setattr(cls, "Notch Signaling Pathway Inhibitor MK0752", - PermissibleValue(text="Notch Signaling Pathway Inhibitor MK0752") ) - setattr(cls, "Anti-CD40 Agonist Monoclonal Antibody ABBV-927", - PermissibleValue(text="Anti-CD40 Agonist Monoclonal Antibody ABBV-927") ) - setattr(cls, "Vinorelbine Tartrate", - PermissibleValue(text="Vinorelbine Tartrate") ) - setattr(cls, "p53-HDM2 Protein-protein Interaction Inhibitor APG-115", - PermissibleValue(text="p53-HDM2 Protein-protein Interaction Inhibitor APG-115") ) - setattr(cls, "Lutetium Lu 177 Anti-CA19-9 Monoclonal Antibody 5B1", - PermissibleValue(text="Lutetium Lu 177 Anti-CA19-9 Monoclonal Antibody 5B1") ) - setattr(cls, "EGFR/HER2 Inhibitor DZD9008", - PermissibleValue(text="EGFR/HER2 Inhibitor DZD9008") ) - setattr(cls, "Bivalent BRD4 Inhibitor AZD5153", - PermissibleValue(text="Bivalent BRD4 Inhibitor AZD5153") ) - setattr(cls, "BRAF/EGFR Inhibitor BGB-283", - PermissibleValue(text="BRAF/EGFR Inhibitor BGB-283") ) - setattr(cls, "PRMT1 Inhibitor GSK3368715", - PermissibleValue(text="PRMT1 Inhibitor GSK3368715") ) - setattr(cls, "Sotrastaurin Acetate", - PermissibleValue(text="Sotrastaurin Acetate") ) - setattr(cls, "Kunecatechins Ointment", - PermissibleValue(text="Kunecatechins Ointment") ) - setattr(cls, "Anti-CD33 Monoclonal Antibody-DM4 Conjugate AVE9633", - PermissibleValue(text="Anti-CD33 Monoclonal Antibody-DM4 Conjugate AVE9633") ) - setattr(cls, "Black Raspberry Nectar", - PermissibleValue(text="Black Raspberry Nectar") ) - setattr(cls, "Oncolytic HSV-1 G207", - PermissibleValue(text="Oncolytic HSV-1 G207") ) - setattr(cls, "IDO1 Inhibitor MK-7162", - PermissibleValue(text="IDO1 Inhibitor MK-7162") ) - setattr(cls, "Short Chain Fatty Acid HQK-1004", - PermissibleValue(text="Short Chain Fatty Acid HQK-1004") ) - setattr(cls, "Imipramine Blue", - PermissibleValue(text="Imipramine Blue") ) - setattr(cls, "Astatine At 211 Anti-CD45 Monoclonal Antibody BC8-B10", - PermissibleValue(text="Astatine At 211 Anti-CD45 Monoclonal Antibody BC8-B10") ) - setattr(cls, "cEt KRAS Antisense Oligonucleotide AZD4785", - PermissibleValue(text="cEt KRAS Antisense Oligonucleotide AZD4785") ) - setattr(cls, "Cereblon E3 Ubiquitin Ligase Modulating Agent CC-99282", - PermissibleValue(text="Cereblon E3 Ubiquitin Ligase Modulating Agent CC-99282") ) - setattr(cls, "Anti-HER2 Monoclonal Antibody/Anti-CD137Anticalin Bispecific Fusion Protein PRS-343", - PermissibleValue(text="Anti-HER2 Monoclonal Antibody/Anti-CD137Anticalin Bispecific Fusion Protein PRS-343") ) - setattr(cls, "Glioblastoma Cancer Vaccine ERC1671", - PermissibleValue(text="Glioblastoma Cancer Vaccine ERC1671") ) - setattr(cls, "DPX-E7 HPV Vaccine", - PermissibleValue(text="DPX-E7 HPV Vaccine") ) - setattr(cls, "Liarozole Hydrochloride", - PermissibleValue(text="Liarozole Hydrochloride") ) - setattr(cls, "Anti-CLEVER-1 Monoclonal Antibody FP-1305", - PermissibleValue(text="Anti-CLEVER-1 Monoclonal Antibody FP-1305") ) - setattr(cls, "Pemetrexed Disodium", - PermissibleValue(text="Pemetrexed Disodium") ) - setattr(cls, "Alpha Galactosylceramide", - PermissibleValue(text="Alpha Galactosylceramide") ) - setattr(cls, "Esperamicin A1", - PermissibleValue(text="Esperamicin A1") ) - setattr(cls, "3'-dA Phosphoramidate NUC-7738", - PermissibleValue(text="3'-dA Phosphoramidate NUC-7738") ) - setattr(cls, "Gemtuzumab Ozogamicin", - PermissibleValue(text="Gemtuzumab Ozogamicin") ) - setattr(cls, "Sodium Butyrate", - PermissibleValue(text="Sodium Butyrate") ) - setattr(cls, "P-cadherin Inhibitor PCA062", - PermissibleValue(text="P-cadherin Inhibitor PCA062") ) - setattr(cls, "Pol I Inhibitor CX5461", - PermissibleValue(text="Pol I Inhibitor CX5461") ) - setattr(cls, "Pirarubicin Hydrochloride", - PermissibleValue(text="Pirarubicin Hydrochloride") ) - setattr(cls, "Mps1 Inhibitor BAY 1217389", - PermissibleValue(text="Mps1 Inhibitor BAY 1217389") ) - setattr(cls, "Glioma-associated Peptide-loaded Dendritic Cell Vaccine SL-701", - PermissibleValue(text="Glioma-associated Peptide-loaded Dendritic Cell Vaccine SL-701") ) - setattr(cls, "Methionine Aminopeptidase 2 Inhibitor M8891", - PermissibleValue(text="Methionine Aminopeptidase 2 Inhibitor M8891") ) - setattr(cls, "PSA/IL-2/GM-CSF Vaccine", - PermissibleValue(text="PSA/IL-2/GM-CSF Vaccine") ) - setattr(cls, "Anti-HB-EGF Monoclonal Antibody KHK2866", - PermissibleValue(text="Anti-HB-EGF Monoclonal Antibody KHK2866") ) - setattr(cls, "Anti-c-MET Monoclonal Antibody LY2875358", - PermissibleValue(text="Anti-c-MET Monoclonal Antibody LY2875358") ) - setattr(cls, "Nimustine Hydrochloride", - PermissibleValue(text="Nimustine Hydrochloride") ) - setattr(cls, "Interferon Alfa-N3", - PermissibleValue(text="Interferon Alfa-N3") ) - setattr(cls, "HDAC Inhibitor CHR-2845", - PermissibleValue(text="HDAC Inhibitor CHR-2845") ) - setattr(cls, "Anti-ILT4 Monoclonal Antibody MK-4830", - PermissibleValue(text="Anti-ILT4 Monoclonal Antibody MK-4830") ) - setattr(cls, "Vitamin E Compound", - PermissibleValue(text="Vitamin E Compound") ) - setattr(cls, "VLP-encapsulated TLR9 Agonist CMP-001", - PermissibleValue(text="VLP-encapsulated TLR9 Agonist CMP-001") ) - setattr(cls, "Milk Thistle", - PermissibleValue(text="Milk Thistle") ) - setattr(cls, "Glycooptimized Trastuzumab-GEX", - PermissibleValue(text="Glycooptimized Trastuzumab-GEX") ) - setattr(cls, "Denileukin Diftitox", - PermissibleValue(text="Denileukin Diftitox") ) - setattr(cls, "Ribosome-Inactivating Protein CY503", - PermissibleValue(text="Ribosome-Inactivating Protein CY503") ) - setattr(cls, "BC-819 Plasmid/Polyethylenimine Complex", - PermissibleValue(text="BC-819 Plasmid/Polyethylenimine Complex") ) - setattr(cls, "Anti-CD74 Antibody-drug Conjugate STRO-001", - PermissibleValue(text="Anti-CD74 Antibody-drug Conjugate STRO-001") ) - setattr(cls, "HIF-2alpha Inhibitor PT2977", - PermissibleValue(text="HIF-2alpha Inhibitor PT2977") ) - setattr(cls, "Monoclonal Antibody Lym-1", - PermissibleValue(text="Monoclonal Antibody Lym-1") ) - setattr(cls, "Docetaxel Lipid Microspheres", - PermissibleValue(text="Docetaxel Lipid Microspheres") ) - setattr(cls, "Listeria monocytogenes-LLO-PSA Vaccine ADXS31-142", - PermissibleValue(text="Listeria monocytogenes-LLO-PSA Vaccine ADXS31-142") ) - setattr(cls, "Macrocycle-bridged STING Agonist E7766", - PermissibleValue(text="Macrocycle-bridged STING Agonist E7766") ) - setattr(cls, "Smac Mimetic GDC-0152", - PermissibleValue(text="Smac Mimetic GDC-0152") ) - setattr(cls, "Mitomycin C Analog KW-2149", - PermissibleValue(text="Mitomycin C Analog KW-2149") ) - setattr(cls, "Topical Celecoxib", - PermissibleValue(text="Topical Celecoxib") ) - setattr(cls, "Cedazuridine/Decitabine Combination Agent ASTX727", - PermissibleValue(text="Cedazuridine/Decitabine Combination Agent ASTX727") ) - setattr(cls, "Nilotinib Hydrochloride Monohydrate", - PermissibleValue(text="Nilotinib Hydrochloride Monohydrate") ) - setattr(cls, "Anti-ICOS Monoclonal Antibody KY1044", - PermissibleValue(text="Anti-ICOS Monoclonal Antibody KY1044") ) - setattr(cls, "Yangzheng Xiaoji Extract", - PermissibleValue(text="Yangzheng Xiaoji Extract") ) - setattr(cls, "TLR7 agonist BNT411", - PermissibleValue(text="TLR7 agonist BNT411") ) - setattr(cls, "Zoptarelin Doxorubicin", - PermissibleValue(text="Zoptarelin Doxorubicin") ) - setattr(cls, "Selatinib Ditosilate", - PermissibleValue(text="Selatinib Ditosilate") ) - setattr(cls, "Colorectal Tumor-Associated Peptides Vaccine IMA910", - PermissibleValue(text="Colorectal Tumor-Associated Peptides Vaccine IMA910") ) - setattr(cls, "KRAS G12C Inhibitor LY3499446", - PermissibleValue(text="KRAS G12C Inhibitor LY3499446") ) - setattr(cls, "Bcl-2 Inhibitor LP-108", - PermissibleValue(text="Bcl-2 Inhibitor LP-108") ) - setattr(cls, "Anti-PSMA Monoclonal Antibody-MMAE Conjugate", - PermissibleValue(text="Anti-PSMA Monoclonal Antibody-MMAE Conjugate") ) - setattr(cls, "HPV 16 E6/E7-encoding Arenavirus Vaccine HB-202", - PermissibleValue(text="HPV 16 E6/E7-encoding Arenavirus Vaccine HB-202") ) - setattr(cls, "Fosbretabulin Tromethamine", - PermissibleValue(text="Fosbretabulin Tromethamine") ) - setattr(cls, "Hypoxia-activated Prodrug TH-4000", - PermissibleValue(text="Hypoxia-activated Prodrug TH-4000") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody Hu5F9-G4", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody Hu5F9-G4") ) - setattr(cls, "Oncolytic Virus RP1", - PermissibleValue(text="Oncolytic Virus RP1") ) - setattr(cls, "Anti-DKK-1 Monoclonal Antibody LY2812176", - PermissibleValue(text="Anti-DKK-1 Monoclonal Antibody LY2812176") ) - setattr(cls, "Amsacrine Lactate", - PermissibleValue(text="Amsacrine Lactate") ) - setattr(cls, "Epratuzumab-cys-tesirine", - PermissibleValue(text="Epratuzumab-cys-tesirine") ) - setattr(cls, "Gold Sodium Thiomalate", - PermissibleValue(text="Gold Sodium Thiomalate") ) - setattr(cls, "Hsp90 Antagonist KW-2478", - PermissibleValue(text="Hsp90 Antagonist KW-2478") ) - setattr(cls, "Flt3/MerTK Inhibitor MRX-2843", - PermissibleValue(text="Flt3/MerTK Inhibitor MRX-2843") ) - setattr(cls, "Mannosylerythritol Lipid", - PermissibleValue(text="Mannosylerythritol Lipid") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody MSB2311", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody MSB2311") ) - setattr(cls, "Oncolytic HSV-1 rRp450", - PermissibleValue(text="Oncolytic HSV-1 rRp450") ) - setattr(cls, "Thorium Th 227 Anti-PSMA Monoclonal Antibody BAY 2315497", - PermissibleValue(text="Thorium Th 227 Anti-PSMA Monoclonal Antibody BAY 2315497") ) - setattr(cls, "BCMA/CD3e Tri-specific T-cell Activating Construct HPN217", - PermissibleValue(text="BCMA/CD3e Tri-specific T-cell Activating Construct HPN217") ) - setattr(cls, "Pegylated Liposomal Mitoxantrone Hydrochloride", - PermissibleValue(text="Pegylated Liposomal Mitoxantrone Hydrochloride") ) - setattr(cls, "Olvimulogene Nanivacirepvec", - PermissibleValue(text="Olvimulogene Nanivacirepvec") ) - setattr(cls, "pan-RAF Kinase Inhibitor CCT3833", - PermissibleValue(text="pan-RAF Kinase Inhibitor CCT3833") ) - setattr(cls, "CEA-MUC-1-TRICOM Vaccine CV301", - PermissibleValue(text="CEA-MUC-1-TRICOM Vaccine CV301") ) - setattr(cls, "ATR Kinase Inhibitor M6620", - PermissibleValue(text="ATR Kinase Inhibitor M6620") ) - setattr(cls, "Anti-mesothelin Antibody-drug Conjugate BMS-986148", - PermissibleValue(text="Anti-mesothelin Antibody-drug Conjugate BMS-986148") ) - setattr(cls, "Anti-CD3/Anti-5T4 Bispecific Antibody GEN1044", - PermissibleValue(text="Anti-CD3/Anti-5T4 Bispecific Antibody GEN1044") ) - setattr(cls, "BCG Vaccine", - PermissibleValue(text="BCG Vaccine") ) - setattr(cls, "Yttrium Y 90 Monoclonal Antibody B3", - PermissibleValue(text="Yttrium Y 90 Monoclonal Antibody B3") ) - setattr(cls, "Anti-TIGIT Monoclonal Antibody AB154", - PermissibleValue(text="Anti-TIGIT Monoclonal Antibody AB154") ) - setattr(cls, "Anti-IRF4 Antisense Oligonucleotide ION251", - PermissibleValue(text="Anti-IRF4 Antisense Oligonucleotide ION251") ) - setattr(cls, "JAK Inhibitor INCB047986", - PermissibleValue(text="JAK Inhibitor INCB047986") ) - setattr(cls, "Dioscorea nipponica Makino Extract DNE3", - PermissibleValue(text="Dioscorea nipponica Makino Extract DNE3") ) - setattr(cls, "HER2-targeted Liposomal Doxorubicin Hydrochloride MM-302", - PermissibleValue(text="HER2-targeted Liposomal Doxorubicin Hydrochloride MM-302") ) - setattr(cls, "Hsp90 Inhibitor SNX-5542 Mesylate", - PermissibleValue(text="Hsp90 Inhibitor SNX-5542 Mesylate") ) - setattr(cls, "Liposomal Cytarabine", - PermissibleValue(text="Liposomal Cytarabine") ) - setattr(cls, "Lutetium Lu 177-DOTA-EB-TATE", - PermissibleValue(text="Lutetium Lu 177-DOTA-EB-TATE") ) - setattr(cls, "Anti-LAG-3 Monoclonal Antibody INCAGN02385", - PermissibleValue(text="Anti-LAG-3 Monoclonal Antibody INCAGN02385") ) - setattr(cls, "Anti-CD123-Pyrrolobenzodiazepine Dimer Antibody Drug Conjugate SGN-CD123A", - PermissibleValue(text="Anti-CD123-Pyrrolobenzodiazepine Dimer Antibody Drug Conjugate SGN-CD123A") ) - setattr(cls, "Anti-HER2-vc0101 ADC PF-06804103", - PermissibleValue(text="Anti-HER2-vc0101 ADC PF-06804103") ) - setattr(cls, "Ganglioside GM2", - PermissibleValue(text="Ganglioside GM2") ) - setattr(cls, "Lorvotuzumab Mertansine", - PermissibleValue(text="Lorvotuzumab Mertansine") ) - setattr(cls, "Phenethyl Isothiocyanate-containing Watercress Juice", - PermissibleValue(text="Phenethyl Isothiocyanate-containing Watercress Juice") ) - setattr(cls, "EZH2 Inhibitor SHR2554", - PermissibleValue(text="EZH2 Inhibitor SHR2554") ) - setattr(cls, "Methyl-5-Aminolevulinate Hydrochloride Cream", - PermissibleValue(text="Methyl-5-Aminolevulinate Hydrochloride Cream") ) - setattr(cls, "Immunotherapeutic Combination Product CMB305", - PermissibleValue(text="Immunotherapeutic Combination Product CMB305") ) - setattr(cls, "Anti-PD-1/CD47 Infusion Protein HX009", - PermissibleValue(text="Anti-PD-1/CD47 Infusion Protein HX009") ) - setattr(cls, "Anti-Met/EGFR Monoclonal Antibody LY3164530", - PermissibleValue(text="Anti-Met/EGFR Monoclonal Antibody LY3164530") ) - setattr(cls, "Menin-MLL Interaction Inhibitor SNDX-5613", - PermissibleValue(text="Menin-MLL Interaction Inhibitor SNDX-5613") ) - setattr(cls, "Benzaldehyde Dimethane Sulfonate", - PermissibleValue(text="Benzaldehyde Dimethane Sulfonate") ) - setattr(cls, "MAGE-A3-specific Immunotherapeutic GSK 2132231A", - PermissibleValue(text="MAGE-A3-specific Immunotherapeutic GSK 2132231A") ) - setattr(cls, "Anti-DLL4 Monoclonal Antibody MEDI0639", - PermissibleValue(text="Anti-DLL4 Monoclonal Antibody MEDI0639") ) - setattr(cls, "Anti-HER2/Anti-HER3 Bispecific Monoclonal Antibody MCLA-128", - PermissibleValue(text="Anti-HER2/Anti-HER3 Bispecific Monoclonal Antibody MCLA-128") ) - setattr(cls, "Nutraceutical TBL-12", - PermissibleValue(text="Nutraceutical TBL-12") ) - setattr(cls, "Oral Myoma Vaccine V3-myoma", - PermissibleValue(text="Oral Myoma Vaccine V3-myoma") ) - setattr(cls, "Tiomolibdate Diammonium", - PermissibleValue(text="Tiomolibdate Diammonium") ) - setattr(cls, "Retaspimycin Hydrochloride", - PermissibleValue(text="Retaspimycin Hydrochloride") ) - setattr(cls, "Anti-SIRPa Monoclonal Antibody CC-95251", - PermissibleValue(text="Anti-SIRPa Monoclonal Antibody CC-95251") ) - setattr(cls, "PI3K/BET Inhibitor LY294002", - PermissibleValue(text="PI3K/BET Inhibitor LY294002") ) - setattr(cls, "Agatolimod Sodium", - PermissibleValue(text="Agatolimod Sodium") ) - setattr(cls, "Anti-PD-1 Fusion Protein AMP-224", - PermissibleValue(text="Anti-PD-1 Fusion Protein AMP-224") ) - setattr(cls, "NY-ESO-1/GLA-SE Vaccine ID-G305", - PermissibleValue(text="NY-ESO-1/GLA-SE Vaccine ID-G305") ) - setattr(cls, "IL-12-expressing HSV-1 NSC 733972", - PermissibleValue(text="IL-12-expressing HSV-1 NSC 733972") ) - setattr(cls, "Angiogenesis/Heparanase Inhibitor PG545", - PermissibleValue(text="Angiogenesis/Heparanase Inhibitor PG545") ) - setattr(cls, "Puquitinib Mesylate", - PermissibleValue(text="Puquitinib Mesylate") ) - setattr(cls, "BET Inhibitor CC-90010", - PermissibleValue(text="BET Inhibitor CC-90010") ) - setattr(cls, "Threonine Tyrosine Kinase Inhibitor CFI-402257", - PermissibleValue(text="Threonine Tyrosine Kinase Inhibitor CFI-402257") ) - setattr(cls, "Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19", - PermissibleValue(text="Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19") ) - setattr(cls, "Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707", - PermissibleValue(text="Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707") ) - setattr(cls, "Rhenium Re 188 BMEDA-labeled Liposomes", - PermissibleValue(text="Rhenium Re 188 BMEDA-labeled Liposomes") ) - setattr(cls, "Nanocell-encapsulated miR-16-based microRNA Mimic", - PermissibleValue(text="Nanocell-encapsulated miR-16-based microRNA Mimic") ) - setattr(cls, "Interferon Beta-1A", - PermissibleValue(text="Interferon Beta-1A") ) - setattr(cls, "Fas Receptor Agonist APO010", - PermissibleValue(text="Fas Receptor Agonist APO010") ) - setattr(cls, "Superagonist Interleukin-15:Interleukin-15 Receptor alphaSu/Fc Fusion Complex ALT-803", - PermissibleValue(text="Superagonist Interleukin-15:Interleukin-15 Receptor alphaSu/Fc Fusion Complex ALT-803") ) - setattr(cls, "Lactoferrin-derived Lytic Peptide LTX-315", - PermissibleValue(text="Lactoferrin-derived Lytic Peptide LTX-315") ) - setattr(cls, "CD4-specific Telomerase Peptide Vaccine UCPVax", - PermissibleValue(text="CD4-specific Telomerase Peptide Vaccine UCPVax") ) - setattr(cls, "Anti-FLT3 Antibody-drug Conjugate AGS62P1", - PermissibleValue(text="Anti-FLT3 Antibody-drug Conjugate AGS62P1") ) - setattr(cls, "HLA-A*2402-Restricted Multipeptide Vaccine S-488410", - PermissibleValue(text="HLA-A*2402-Restricted Multipeptide Vaccine S-488410") ) - setattr(cls, "Chk1 Inhibitor CCT245737", - PermissibleValue(text="Chk1 Inhibitor CCT245737") ) - setattr(cls, "Halichondrin Analogue E7130", - PermissibleValue(text="Halichondrin Analogue E7130") ) - setattr(cls, "Human MHC Non-Restricted Cytotoxic T-Cell Line TALL-104", - PermissibleValue(text="Human MHC Non-Restricted Cytotoxic T-Cell Line TALL-104") ) - setattr(cls, "Smoothened Antagonist LEQ506", - PermissibleValue(text="Smoothened Antagonist LEQ506") ) - setattr(cls, "Clomiphene Citrate", - PermissibleValue(text="Clomiphene Citrate") ) - setattr(cls, "5-Aza-4'-thio-2'-deoxycytidine", - PermissibleValue(text="5-Aza-4'-thio-2'-deoxycytidine") ) - setattr(cls, "Recombinant Thyrotropin Alfa", - PermissibleValue(text="Recombinant Thyrotropin Alfa") ) - setattr(cls, "Anti-FGFR3 Antibody-drug Conjugate LY3076226", - PermissibleValue(text="Anti-FGFR3 Antibody-drug Conjugate LY3076226") ) - setattr(cls, "Pegylated Recombinant Human Hyaluronidase PH20", - PermissibleValue(text="Pegylated Recombinant Human Hyaluronidase PH20") ) - setattr(cls, "Oncolytic Herpes Simplex Virus-1 ONCR-177", - PermissibleValue(text="Oncolytic Herpes Simplex Virus-1 ONCR-177") ) - setattr(cls, "Pomegranate Juice", - PermissibleValue(text="Pomegranate Juice") ) - setattr(cls, "Anti-HBEGF Monoclonal Antibody U3-1565", - PermissibleValue(text="Anti-HBEGF Monoclonal Antibody U3-1565") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody AO-176", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody AO-176") ) - setattr(cls, "CXCR1/2 Inhibitor SX-682", - PermissibleValue(text="CXCR1/2 Inhibitor SX-682") ) - setattr(cls, "Autologous CD19-targeted CAR-T Cells GC007F", - PermissibleValue(text="Autologous CD19-targeted CAR-T Cells GC007F") ) - setattr(cls, "Ropeginterferon Alfa-2B", - PermissibleValue(text="Ropeginterferon Alfa-2B") ) - setattr(cls, "Larotrectinib Sulfate", - PermissibleValue(text="Larotrectinib Sulfate") ) - setattr(cls, "CHK1 Inhibitor MK-8776", - PermissibleValue(text="CHK1 Inhibitor MK-8776") ) - setattr(cls, "DNA Interference Oligonucleotide PNT2258", - PermissibleValue(text="DNA Interference Oligonucleotide PNT2258") ) - setattr(cls, "Aryl Hydrocarbon Receptor Antagonist BAY2416964", - PermissibleValue(text="Aryl Hydrocarbon Receptor Antagonist BAY2416964") ) - setattr(cls, "Beta Alethine", - PermissibleValue(text="Beta Alethine") ) - setattr(cls, "STAT3 Inhibitor TTI-101", - PermissibleValue(text="STAT3 Inhibitor TTI-101") ) - setattr(cls, "Yttrium Y 90 Anti-CD45 Monoclonal Antibody AHN-12", - PermissibleValue(text="Yttrium Y 90 Anti-CD45 Monoclonal Antibody AHN-12") ) - setattr(cls, "Anti-mesothelin/MMAE Antibody-drug Conjugate RC88", - PermissibleValue(text="Anti-mesothelin/MMAE Antibody-drug Conjugate RC88") ) - setattr(cls, "Atorvastatin Sodium", - PermissibleValue(text="Atorvastatin Sodium") ) - setattr(cls, "Polyamine Analogue SBP-101", - PermissibleValue(text="Polyamine Analogue SBP-101") ) - setattr(cls, "TLR7 Agonist LHC165", - PermissibleValue(text="TLR7 Agonist LHC165") ) - setattr(cls, "Dactolisib Tosylate", - PermissibleValue(text="Dactolisib Tosylate") ) - setattr(cls, "Yiqi-yangyin-jiedu Herbal Decoction", - PermissibleValue(text="Yiqi-yangyin-jiedu Herbal Decoction") ) - setattr(cls, "MELK Inhibitor OTS167", - PermissibleValue(text="MELK Inhibitor OTS167") ) - setattr(cls, "Hormone Therapy", - PermissibleValue(text="Hormone Therapy") ) - setattr(cls, "Anti-PD-1/CTLA-4 Bispecific Antibody MEDI5752", - PermissibleValue(text="Anti-PD-1/CTLA-4 Bispecific Antibody MEDI5752") ) - setattr(cls, "BRAFV600/PI3K Inhibitor ASN003", - PermissibleValue(text="BRAFV600/PI3K Inhibitor ASN003") ) - setattr(cls, "Ciclopirox Prodrug CPX-POM", - PermissibleValue(text="Ciclopirox Prodrug CPX-POM") ) - setattr(cls, "Peginterferon Alfa-2b", - PermissibleValue(text="Peginterferon Alfa-2b") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody CC-90002", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody CC-90002") ) - setattr(cls, "EED Inhibitor MAK683", - PermissibleValue(text="EED Inhibitor MAK683") ) - setattr(cls, "EZH2 Inhibitor PF-06821497", - PermissibleValue(text="EZH2 Inhibitor PF-06821497") ) - setattr(cls, "mTORC 1/2 Inhibitor LXI-15029", - PermissibleValue(text="mTORC 1/2 Inhibitor LXI-15029") ) - setattr(cls, "Gastrin/cholecystokinin Type B Receptor Inhibitor Z-360", - PermissibleValue(text="Gastrin/cholecystokinin Type B Receptor Inhibitor Z-360") ) - setattr(cls, "Recombinant Leukocyte Interleukin", - PermissibleValue(text="Recombinant Leukocyte Interleukin") ) - setattr(cls, "Wnt Signaling Inhibitor SM04755", - PermissibleValue(text="Wnt Signaling Inhibitor SM04755") ) - setattr(cls, "Anti-FAP/Interleukin-2 Fusion Protein RO6874281", - PermissibleValue(text="Anti-FAP/Interleukin-2 Fusion Protein RO6874281") ) - setattr(cls, "Clinical Trial", - PermissibleValue(text="Clinical Trial") ) - setattr(cls, "Amustaline Dihydrochloride", - PermissibleValue(text="Amustaline Dihydrochloride") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody FAZ053", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody FAZ053") ) - setattr(cls, "Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101", - PermissibleValue(text="Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101") ) - setattr(cls, "MEK Inhibitor TAK-733", - PermissibleValue(text="MEK Inhibitor TAK-733") ) - setattr(cls, "Multi-epitope HER2 Peptide Vaccine H2NVAC", - PermissibleValue(text="Multi-epitope HER2 Peptide Vaccine H2NVAC") ) - setattr(cls, "IAP Inhibitor HGS1029", - PermissibleValue(text="IAP Inhibitor HGS1029") ) - setattr(cls, "Cediranib Maleate", - PermissibleValue(text="Cediranib Maleate") ) - setattr(cls, "Alpha-lactalbumin-derived Synthetic Peptide-lipid Complex Alpha1H", - PermissibleValue(text="Alpha-lactalbumin-derived Synthetic Peptide-lipid Complex Alpha1H") ) - setattr(cls, "Androgen Receptor Antagonist TRC253", - PermissibleValue(text="Androgen Receptor Antagonist TRC253") ) - setattr(cls, "Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody PF-06863135", - PermissibleValue(text="Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody PF-06863135") ) - setattr(cls, "Gamma-Secretase Inhibitor LY3039478", - PermissibleValue(text="Gamma-Secretase Inhibitor LY3039478") ) - setattr(cls, "Tropomyosin Receptor Kinase Inhibitor AZD7451", - PermissibleValue(text="Tropomyosin Receptor Kinase Inhibitor AZD7451") ) - setattr(cls, "Lutetium Lu 177 PP-F11N", - PermissibleValue(text="Lutetium Lu 177 PP-F11N") ) - setattr(cls, "Personalized and Adjusted Neoantigen Peptide Vaccine PANDA-VAC", - PermissibleValue(text="Personalized and Adjusted Neoantigen Peptide Vaccine PANDA-VAC") ) - setattr(cls, "Anti-CD228/MMAE Antibody-drug Conjugate SGN-CD228A", - PermissibleValue(text="Anti-CD228/MMAE Antibody-drug Conjugate SGN-CD228A") ) - setattr(cls, "Phosphorodiamidate Morpholino Oligomer AVI-4126", - PermissibleValue(text="Phosphorodiamidate Morpholino Oligomer AVI-4126") ) - setattr(cls, "EP4 Antagonist ONO-4578", - PermissibleValue(text="EP4 Antagonist ONO-4578") ) - setattr(cls, "HER2 Inhibitor DZD1516", - PermissibleValue(text="HER2 Inhibitor DZD1516") ) - setattr(cls, "Yttrium Y 90 Anti-CDH3 Monoclonal Antibody FF-21101", - PermissibleValue(text="Yttrium Y 90 Anti-CDH3 Monoclonal Antibody FF-21101") ) - setattr(cls, "Eg5 Kinesin-Related Motor Protein Inhibitor 4SC-205", - PermissibleValue(text="Eg5 Kinesin-Related Motor Protein Inhibitor 4SC-205") ) - setattr(cls, "BRAF Inhibitor", - PermissibleValue(text="BRAF Inhibitor") ) - setattr(cls, "Anti-Tissue Factor Monoclonal Antibody MORAb-066", - PermissibleValue(text="Anti-Tissue Factor Monoclonal Antibody MORAb-066") ) - setattr(cls, "Orvacabtagene Autoleucel", - PermissibleValue(text="Orvacabtagene Autoleucel") ) - setattr(cls, "O-Chloroacetylcarbamoylfumagillol", - PermissibleValue(text="O-Chloroacetylcarbamoylfumagillol") ) - setattr(cls, "CD73 Inhibitor AB680", - PermissibleValue(text="CD73 Inhibitor AB680") ) - setattr(cls, "Lutetium Lu 177 DOTA-Tetulomab", - PermissibleValue(text="Lutetium Lu 177 DOTA-Tetulomab") ) - setattr(cls, "Liposome-encapsulated TAAs mRNA Vaccine W_ova1", - PermissibleValue(text="Liposome-encapsulated TAAs mRNA Vaccine W_ova1") ) - setattr(cls, "LSD1 Inhibitor GSK2879552", - PermissibleValue(text="LSD1 Inhibitor GSK2879552") ) - setattr(cls, "Anti-CD38 Monoclonal Antibody TAK-079", - PermissibleValue(text="Anti-CD38 Monoclonal Antibody TAK-079") ) - setattr(cls, "Modakafusp Alfa", - PermissibleValue(text="Modakafusp Alfa") ) - setattr(cls, "Melphalan Hydrochloride", - PermissibleValue(text="Melphalan Hydrochloride") ) - setattr(cls, "Pegylated Interferon Alfa", - PermissibleValue(text="Pegylated Interferon Alfa") ) - setattr(cls, "Anti-DR5 Agonistic Monoclonal Antibody INBRX-109", - PermissibleValue(text="Anti-DR5 Agonistic Monoclonal Antibody INBRX-109") ) - setattr(cls, "Selective Androgen Receptor Modulator RAD140", - PermissibleValue(text="Selective Androgen Receptor Modulator RAD140") ) - setattr(cls, "Hsp90 Inhibitor DS-2248", - PermissibleValue(text="Hsp90 Inhibitor DS-2248") ) - setattr(cls, "LAIR-2 Fusion Protein NC410", - PermissibleValue(text="LAIR-2 Fusion Protein NC410") ) - setattr(cls, "Interleukin Therapy", - PermissibleValue(text="Interleukin Therapy") ) - setattr(cls, "Anti-PSCA Monoclonal Antibody AGS-1C4D4", - PermissibleValue(text="Anti-PSCA Monoclonal Antibody AGS-1C4D4") ) - setattr(cls, "Anti-CD73 Monoclonal Antibody TJ4309", - PermissibleValue(text="Anti-CD73 Monoclonal Antibody TJ4309") ) - setattr(cls, "Autologous Anti-CD19 CAR T-cells IM19", - PermissibleValue(text="Autologous Anti-CD19 CAR T-cells IM19") ) - setattr(cls, "2-Methoxyestrone", - PermissibleValue(text="2-Methoxyestrone") ) - setattr(cls, "Enasidenib Mesylate", - PermissibleValue(text="Enasidenib Mesylate") ) - setattr(cls, "Yang Yin Fu Zheng", - PermissibleValue(text="Yang Yin Fu Zheng") ) - setattr(cls, "Tetraphenyl Chlorin Disulfonate", - PermissibleValue(text="Tetraphenyl Chlorin Disulfonate") ) - setattr(cls, "11D10 AluGel Anti-Idiotype Monoclonal Antibody", - PermissibleValue(text="11D10 AluGel Anti-Idiotype Monoclonal Antibody") ) - setattr(cls, "Docetaxel Nanoparticle CPC634", - PermissibleValue(text="Docetaxel Nanoparticle CPC634") ) - setattr(cls, "CXCR4 Inhibitor Q-122", - PermissibleValue(text="CXCR4 Inhibitor Q-122") ) - setattr(cls, "Checkpoint Kinase Inhibitor AZD7762", - PermissibleValue(text="Checkpoint Kinase Inhibitor AZD7762") ) - setattr(cls, "Boanmycin Hydrochloride", - PermissibleValue(text="Boanmycin Hydrochloride") ) - setattr(cls, "Anti-CD48/MMAE Antibody-drug Conjugate SGN-CD48A", - PermissibleValue(text="Anti-CD48/MMAE Antibody-drug Conjugate SGN-CD48A") ) - setattr(cls, "c-Met Inhibitor MSC2156119J", - PermissibleValue(text="c-Met Inhibitor MSC2156119J") ) - setattr(cls, "TGFa-PE38 Immunotoxin", - PermissibleValue(text="TGFa-PE38 Immunotoxin") ) - setattr(cls, "Globo H-DT Vaccine OBI-833", - PermissibleValue(text="Globo H-DT Vaccine OBI-833") ) - setattr(cls, "Indocyanine Green-labeled Polymeric Micelles ONM-100", - PermissibleValue(text="Indocyanine Green-labeled Polymeric Micelles ONM-100") ) - setattr(cls, "Y 90 Monoclonal Antibody CC49", - PermissibleValue(text="Y 90 Monoclonal Antibody CC49") ) - setattr(cls, "Recombinant Human Papillomavirus 11-valent Vaccine", - PermissibleValue(text="Recombinant Human Papillomavirus 11-valent Vaccine") ) - setattr(cls, "Anti-ROR1 ADC VLS-101", - PermissibleValue(text="Anti-ROR1 ADC VLS-101") ) - setattr(cls, "Bryostatin 1", - PermissibleValue(text="Bryostatin 1") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody GR1405", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody GR1405") ) - setattr(cls, "Chrysanthemum morifolium/Ganoderma lucidum/Glycyrrhiza glabra/Isatis indigotica/Panax pseudoginseng/Rabdosia rubescens/Scutellaria baicalensis/Serona repens Supplement", - PermissibleValue(text="Chrysanthemum morifolium/Ganoderma lucidum/Glycyrrhiza glabra/Isatis indigotica/Panax pseudoginseng/Rabdosia rubescens/Scutellaria baicalensis/Serona repens Supplement") ) - setattr(cls, "SR-T100 Gel", - PermissibleValue(text="SR-T100 Gel") ) - setattr(cls, "Tankyrase Inhibitor STP1002", - PermissibleValue(text="Tankyrase Inhibitor STP1002") ) - setattr(cls, "BET Inhibitor GS-5829", - PermissibleValue(text="BET Inhibitor GS-5829") ) - setattr(cls, "Cisplatin Liposomal", - PermissibleValue(text="Cisplatin Liposomal") ) - setattr(cls, "KRAS-MAPK Signaling Pathway Inhibitor JAB-3312", - PermissibleValue(text="KRAS-MAPK Signaling Pathway Inhibitor JAB-3312") ) - setattr(cls, "TrkA Inhibitor VMD-928", - PermissibleValue(text="TrkA Inhibitor VMD-928") ) - setattr(cls, "ERK1/2 Inhibitor LY3214996", - PermissibleValue(text="ERK1/2 Inhibitor LY3214996") ) - setattr(cls, "Xiaoai Jiedu Decoction", - PermissibleValue(text="Xiaoai Jiedu Decoction") ) - setattr(cls, "Phosphoramide Mustard", - PermissibleValue(text="Phosphoramide Mustard") ) - setattr(cls, "Recombinant CD40-Ligand", - PermissibleValue(text="Recombinant CD40-Ligand") ) - setattr(cls, "Rituximab Conjugate CON-4619", - PermissibleValue(text="Rituximab Conjugate CON-4619") ) - setattr(cls, "CCR2/CCR5 Antagonist BMS-813160", - PermissibleValue(text="CCR2/CCR5 Antagonist BMS-813160") ) - setattr(cls, "Bardoxolone Methyl", - PermissibleValue(text="Bardoxolone Methyl") ) - setattr(cls, "MEK 1/2 Inhibitor AS703988/MSC2015103B", - PermissibleValue(text="MEK 1/2 Inhibitor AS703988/MSC2015103B") ) - setattr(cls, "Concentrated Lingzhi Mushroom Extract", - PermissibleValue(text="Concentrated Lingzhi Mushroom Extract") ) - setattr(cls, "Anti-VEGFR2 Monoclonal Antibody MSB0254", - PermissibleValue(text="Anti-VEGFR2 Monoclonal Antibody MSB0254") ) - setattr(cls, "Androgen Receptor Downregulator AZD3514", - PermissibleValue(text="Androgen Receptor Downregulator AZD3514") ) - setattr(cls, "PEG-Proline-Interferon Alfa-2b", - PermissibleValue(text="PEG-Proline-Interferon Alfa-2b") ) - setattr(cls, "Idecabtagene Vicleucel", - PermissibleValue(text="Idecabtagene Vicleucel") ) - setattr(cls, "Anti-CD20 Monoclonal Antibody SCT400", - PermissibleValue(text="Anti-CD20 Monoclonal Antibody SCT400") ) - setattr(cls, "Pyruvate Kinase Inhibitor TLN-232", - PermissibleValue(text="Pyruvate Kinase Inhibitor TLN-232") ) - setattr(cls, "LSD1 Inhibitor SYHA1807", - PermissibleValue(text="LSD1 Inhibitor SYHA1807") ) - setattr(cls, "Partially Engineered T-regulatory Cell Donor Graft TRGFT-201", - PermissibleValue(text="Partially Engineered T-regulatory Cell Donor Graft TRGFT-201") ) - setattr(cls, "P-p68 Inhibitor RX-5902", - PermissibleValue(text="P-p68 Inhibitor RX-5902") ) - setattr(cls, "ERK1/2 Inhibitor ASN007", - PermissibleValue(text="ERK1/2 Inhibitor ASN007") ) - setattr(cls, "CYP11A1 inhibitor ODM-208", - PermissibleValue(text="CYP11A1 inhibitor ODM-208") ) - setattr(cls, "Anti-OX40 Agonist Monoclonal Antibody BGB-A445", - PermissibleValue(text="Anti-OX40 Agonist Monoclonal Antibody BGB-A445") ) - setattr(cls, "Heparin Derivative SST0001", - PermissibleValue(text="Heparin Derivative SST0001") ) - setattr(cls, "Autologous NKG2D CAR T-cells CYAD-02", - PermissibleValue(text="Autologous NKG2D CAR T-cells CYAD-02") ) - setattr(cls, "Iodine I 131 Monoclonal Antibody F16SIP", - PermissibleValue(text="Iodine I 131 Monoclonal Antibody F16SIP") ) - setattr(cls, "Prostatic Acid Phosphatase-Sargramostim Fusion Protein PA2024", - PermissibleValue(text="Prostatic Acid Phosphatase-Sargramostim Fusion Protein PA2024") ) - setattr(cls, "Maackia amurensis Seed Lectin", - PermissibleValue(text="Maackia amurensis Seed Lectin") ) - setattr(cls, "IDO1 Inhibitor KHK2455", - PermissibleValue(text="IDO1 Inhibitor KHK2455") ) - setattr(cls, "Autologous Anti-BCMA CAR T-cells PHE885", - PermissibleValue(text="Autologous Anti-BCMA CAR T-cells PHE885") ) - setattr(cls, "BTK Inhibitor M7583", - PermissibleValue(text="BTK Inhibitor M7583") ) - setattr(cls, "Trastuzumab/Hyaluronidase-oysk", - PermissibleValue(text="Trastuzumab/Hyaluronidase-oysk") ) - setattr(cls, "CYL-02 Plasmid DNA", - PermissibleValue(text="CYL-02 Plasmid DNA") ) - setattr(cls, "HPV6/11-targeted DNA Plasmid Vaccine INO-3107", - PermissibleValue(text="HPV6/11-targeted DNA Plasmid Vaccine INO-3107") ) - setattr(cls, "Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3006", - PermissibleValue(text="Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3006") ) - setattr(cls, "Trastuzumab Monomethyl Auristatin F", - PermissibleValue(text="Trastuzumab Monomethyl Auristatin F") ) - setattr(cls, "Telapristone Acetate", - PermissibleValue(text="Telapristone Acetate") ) - setattr(cls, "Anti-PD1/CTLA4 Bispecific Antibody XmAb20717", - PermissibleValue(text="Anti-PD1/CTLA4 Bispecific Antibody XmAb20717") ) - setattr(cls, "Melapuldencel-T", - PermissibleValue(text="Melapuldencel-T") ) - setattr(cls, "Akt Inhibitor LY2780301", - PermissibleValue(text="Akt Inhibitor LY2780301") ) - setattr(cls, "ERK1/2 Inhibitor JSI-1187", - PermissibleValue(text="ERK1/2 Inhibitor JSI-1187") ) - setattr(cls, "Anti-claudin18.2 Monoclonal Antibody AB011", - PermissibleValue(text="Anti-claudin18.2 Monoclonal Antibody AB011") ) - setattr(cls, "Hydroxyprogesterone Caproate", - PermissibleValue(text="Hydroxyprogesterone Caproate") ) - setattr(cls, "PRMT5 Inhibitor JNJ-64619178", - PermissibleValue(text="PRMT5 Inhibitor JNJ-64619178") ) - setattr(cls, "Y 90 Monoclonal Antibody HMFG1", - PermissibleValue(text="Y 90 Monoclonal Antibody HMFG1") ) - setattr(cls, "Anti-ILDR2 Monoclonal Antibody BAY 1905254", - PermissibleValue(text="Anti-ILDR2 Monoclonal Antibody BAY 1905254") ) - setattr(cls, "ITK Inhibitor CPI-818", - PermissibleValue(text="ITK Inhibitor CPI-818") ) - setattr(cls, "Anti-BCMA/CD3 BiTE Antibody REGN5458", - PermissibleValue(text="Anti-BCMA/CD3 BiTE Antibody REGN5458") ) - setattr(cls, "Anti-TIM3 Monoclonal Antibody LY3321367", - PermissibleValue(text="Anti-TIM3 Monoclonal Antibody LY3321367") ) - setattr(cls, "CD80-Fc Fusion Protein FPT155", - PermissibleValue(text="CD80-Fc Fusion Protein FPT155") ) - setattr(cls, "Thymidylate Synthase Inhibitor DFP-11207", - PermissibleValue(text="Thymidylate Synthase Inhibitor DFP-11207") ) - setattr(cls, "Anti-DLL3/CD3 BiTE Antibody AMG 757", - PermissibleValue(text="Anti-DLL3/CD3 BiTE Antibody AMG 757") ) - setattr(cls, "p53 Peptide Vaccine MPS-128", - PermissibleValue(text="p53 Peptide Vaccine MPS-128") ) - setattr(cls, "APE1/Ref-1 Redox Inhibitor APX3330", - PermissibleValue(text="APE1/Ref-1 Redox Inhibitor APX3330") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody AGEN1181", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody AGEN1181") ) - setattr(cls, "IL-12sc, IL-15sushi, IFNa and GM-CSF mRNA-based Immunotherapeutic Agent SAR441000", - PermissibleValue(text="IL-12sc, IL-15sushi, IFNa and GM-CSF mRNA-based Immunotherapeutic Agent SAR441000") ) - setattr(cls, "Ganoderma lucidum Spores Powder Capsule", - PermissibleValue(text="Ganoderma lucidum Spores Powder Capsule") ) - setattr(cls, "Anti-B7-H4 Monoclonal Antibody FPA150", - PermissibleValue(text="Anti-B7-H4 Monoclonal Antibody FPA150") ) - setattr(cls, "FLT3/KIT Kinase Inhibitor AKN-028", - PermissibleValue(text="FLT3/KIT Kinase Inhibitor AKN-028") ) - setattr(cls, "Ruthenium-based Transferrin Targeting Agent NKP-1339", - PermissibleValue(text="Ruthenium-based Transferrin Targeting Agent NKP-1339") ) - setattr(cls, "Multitargeted Tyrosine Kinase Inhibitor JNJ-26483327", - PermissibleValue(text="Multitargeted Tyrosine Kinase Inhibitor JNJ-26483327") ) - setattr(cls, "Camidanlumab Tesirine", - PermissibleValue(text="Camidanlumab Tesirine") ) - setattr(cls, "Fenretinide Lipid Matrix", - PermissibleValue(text="Fenretinide Lipid Matrix") ) - setattr(cls, "Anti-EGFR/CD16A Bispecific Antibody AFM24", - PermissibleValue(text="Anti-EGFR/CD16A Bispecific Antibody AFM24") ) - setattr(cls, "Anti-hepcidin Monoclonal Antibody LY2787106", - PermissibleValue(text="Anti-hepcidin Monoclonal Antibody LY2787106") ) - setattr(cls, "Anti-mesothelin-Pseudomonas Exotoxin 24 Cytolytic Fusion Protein LMB-100", - PermissibleValue(text="Anti-mesothelin-Pseudomonas Exotoxin 24 Cytolytic Fusion Protein LMB-100") ) - setattr(cls, "Hafnium Oxide-containing Nanoparticles NBTXR3", - PermissibleValue(text="Hafnium Oxide-containing Nanoparticles NBTXR3") ) - setattr(cls, "B-Raf/VEGFR-2 Inhibitor RAF265", - PermissibleValue(text="B-Raf/VEGFR-2 Inhibitor RAF265") ) - setattr(cls, "FGFR Inhibitor CPL304110", - PermissibleValue(text="FGFR Inhibitor CPL304110") ) - setattr(cls, "Monoclonal Antibody 7C11", - PermissibleValue(text="Monoclonal Antibody 7C11") ) - setattr(cls, "Anti-LAG3 Monoclonal Antibody BI 754111", - PermissibleValue(text="Anti-LAG3 Monoclonal Antibody BI 754111") ) - setattr(cls, "Recombinant Interferon Alfa", - PermissibleValue(text="Recombinant Interferon Alfa") ) - setattr(cls, "Cord Blood Derived CAR T-Cells", - PermissibleValue(text="Cord Blood Derived CAR T-Cells") ) - setattr(cls, "JAK1 Inhibitor INCB052793", - PermissibleValue(text="JAK1 Inhibitor INCB052793") ) - setattr(cls, "Therapeutic Liver Cancer Peptide Vaccine IMA970A", - PermissibleValue(text="Therapeutic Liver Cancer Peptide Vaccine IMA970A") ) - setattr(cls, "Ioflubenzamide I-131", - PermissibleValue(text="Ioflubenzamide I-131") ) - setattr(cls, "Pan HER/VEGFR2 Receptor Tyrosine Kinase Inhibitor BMS-690514", - PermissibleValue(text="Pan HER/VEGFR2 Receptor Tyrosine Kinase Inhibitor BMS-690514") ) - setattr(cls, "OX40L-expressing Oncolytic Adenovirus DNX-2440", - PermissibleValue(text="OX40L-expressing Oncolytic Adenovirus DNX-2440") ) - setattr(cls, "Berberine Chloride", - PermissibleValue(text="Berberine Chloride") ) - setattr(cls, "Recombinant Interleukin-6", - PermissibleValue(text="Recombinant Interleukin-6") ) - setattr(cls, "Briciclib Sodium", - PermissibleValue(text="Briciclib Sodium") ) - setattr(cls, "Deslorelin Acetate", - PermissibleValue(text="Deslorelin Acetate") ) - setattr(cls, "Personalized ALL-specific Multi-HLA-binding Peptide Vaccine", - PermissibleValue(text="Personalized ALL-specific Multi-HLA-binding Peptide Vaccine") ) - setattr(cls, "Cyclin-dependent Kinase Inhibitor PF-06873600", - PermissibleValue(text="Cyclin-dependent Kinase Inhibitor PF-06873600") ) - setattr(cls, "Docetaxel Formulation CKD-810", - PermissibleValue(text="Docetaxel Formulation CKD-810") ) - setattr(cls, "Sustained-release Mitomycin C Hydrogel Formulation UGN-102", - PermissibleValue(text="Sustained-release Mitomycin C Hydrogel Formulation UGN-102") ) - setattr(cls, "BiTE Antibody AMG 910", - PermissibleValue(text="BiTE Antibody AMG 910") ) - setattr(cls, "AKT Inhibitor ARQ 092", - PermissibleValue(text="AKT Inhibitor ARQ 092") ) - setattr(cls, "Antisense Oligonucleotide QR-313", - PermissibleValue(text="Antisense Oligonucleotide QR-313") ) - setattr(cls, "LmddA-LLO-chHER2 Fusion Protein-secreting Live-attenuated Listeria Cancer Vaccine ADXS31-164", - PermissibleValue(text="LmddA-LLO-chHER2 Fusion Protein-secreting Live-attenuated Listeria Cancer Vaccine ADXS31-164") ) - setattr(cls, "Enzastaurin Hydrochloride", - PermissibleValue(text="Enzastaurin Hydrochloride") ) - setattr(cls, "BTK inhibitor TG-1701", - PermissibleValue(text="BTK inhibitor TG-1701") ) - setattr(cls, "Yttrium Y 90 Monoclonal Antibody MN-14", - PermissibleValue(text="Yttrium Y 90 Monoclonal Antibody MN-14") ) - setattr(cls, "c-Met Inhibitor AL2846", - PermissibleValue(text="c-Met Inhibitor AL2846") ) - setattr(cls, "mRNA-based Personalized Cancer Vaccine NCI-4650", - PermissibleValue(text="mRNA-based Personalized Cancer Vaccine NCI-4650") ) - setattr(cls, "Protein Arginine Methyltransferase 5 Inhibitor PF-06939999", - PermissibleValue(text="Protein Arginine Methyltransferase 5 Inhibitor PF-06939999") ) - setattr(cls, "Anti-HER2 Antibody Conjugated Natural Killer Cells ACE1702", - PermissibleValue(text="Anti-HER2 Antibody Conjugated Natural Killer Cells ACE1702") ) - setattr(cls, "CCR2 Antagonist CCX872-B", - PermissibleValue(text="CCR2 Antagonist CCX872-B") ) - setattr(cls, "MNK1/2 Inhibitor ETC-1907206", - PermissibleValue(text="MNK1/2 Inhibitor ETC-1907206") ) - setattr(cls, "Liver X Receptor beta Agonist RGX-104", - PermissibleValue(text="Liver X Receptor beta Agonist RGX-104") ) - setattr(cls, "Procarbazine Hydrochloride", - PermissibleValue(text="Procarbazine Hydrochloride") ) - setattr(cls, "EP4 Antagonist INV-1120", - PermissibleValue(text="EP4 Antagonist INV-1120") ) - setattr(cls, "Anti-C5aR Monoclonal Antibody IPH5401", - PermissibleValue(text="Anti-C5aR Monoclonal Antibody IPH5401") ) - setattr(cls, "SHP2 Inhibitor RLY-1971", - PermissibleValue(text="SHP2 Inhibitor RLY-1971") ) - setattr(cls, "Carboxyamidotriazole Orotate", - PermissibleValue(text="Carboxyamidotriazole Orotate") ) - setattr(cls, "D-methionine Formulation MRX-1024", - PermissibleValue(text="D-methionine Formulation MRX-1024") ) - setattr(cls, "Anti-CD33/CD3 Bispecific Antibody JNJ-67571244", - PermissibleValue(text="Anti-CD33/CD3 Bispecific Antibody JNJ-67571244") ) - setattr(cls, "Enteric-Coated TRPM8 Agonist D-3263 Hydrochloride", - PermissibleValue(text="Enteric-Coated TRPM8 Agonist D-3263 Hydrochloride") ) - setattr(cls, "ISS 1018 CpG Oligodeoxynucleotide", - PermissibleValue(text="ISS 1018 CpG Oligodeoxynucleotide") ) - setattr(cls, "Melanoma Monoclonal Antibody hIgG2A", - PermissibleValue(text="Melanoma Monoclonal Antibody hIgG2A") ) - setattr(cls, "STAT3 Inhibitor DSP-0337", - PermissibleValue(text="STAT3 Inhibitor DSP-0337") ) - setattr(cls, "Anti-TIGIT Monoclonal Antibody SGN-TGT", - PermissibleValue(text="Anti-TIGIT Monoclonal Antibody SGN-TGT") ) - setattr(cls, "Anti-HER2 ADC DS-8201a", - PermissibleValue(text="Anti-HER2 ADC DS-8201a") ) - setattr(cls, "Epirubicin Hydrochloride", - PermissibleValue(text="Epirubicin Hydrochloride") ) - setattr(cls, "Synthetic Glioblastoma Tumor-associated Peptides Vaccine Therapy APVAC1", - PermissibleValue(text="Synthetic Glioblastoma Tumor-associated Peptides Vaccine Therapy APVAC1") ) - setattr(cls, "ALK Inhibitor PLB 1003", - PermissibleValue(text="ALK Inhibitor PLB 1003") ) - setattr(cls, "Anti-DLL4/VEGF Bispecific Monoclonal Antibody OMP-305B83", - PermissibleValue(text="Anti-DLL4/VEGF Bispecific Monoclonal Antibody OMP-305B83") ) - setattr(cls, "NY-ESO-1 Plasmid DNA Cancer Vaccine pPJV7611", - PermissibleValue(text="NY-ESO-1 Plasmid DNA Cancer Vaccine pPJV7611") ) - setattr(cls, "Pegylated Recombinant Human Arginase I BCT-100", - PermissibleValue(text="Pegylated Recombinant Human Arginase I BCT-100") ) - setattr(cls, "Burixafor Hydrobromide", - PermissibleValue(text="Burixafor Hydrobromide") ) - setattr(cls, "EGFR/VEGFR/RET Inhibitor HA121-28", - PermissibleValue(text="EGFR/VEGFR/RET Inhibitor HA121-28") ) - setattr(cls, "pan-PIM Kinase Inhibitor AZD1208", - PermissibleValue(text="pan-PIM Kinase Inhibitor AZD1208") ) - setattr(cls, "BMI1 Inhibitor PTC596", - PermissibleValue(text="BMI1 Inhibitor PTC596") ) - setattr(cls, "MEK/Aurora Kinase Inhibitor BI 847325", - PermissibleValue(text="MEK/Aurora Kinase Inhibitor BI 847325") ) - setattr(cls, "Yttrium Y 90-labeled Anti-FZD10 Monoclonal Antibody OTSA101", - PermissibleValue(text="Yttrium Y 90-labeled Anti-FZD10 Monoclonal Antibody OTSA101") ) - setattr(cls, "Anti-TWEAK Monoclonal Antibody RG7212", - PermissibleValue(text="Anti-TWEAK Monoclonal Antibody RG7212") ) - setattr(cls, "Cetuximab-IR700 Conjugate RM-1929", - PermissibleValue(text="Cetuximab-IR700 Conjugate RM-1929") ) - setattr(cls, "Imatinib Mesylate", - PermissibleValue(text="Imatinib Mesylate") ) - setattr(cls, "Endothelin Receptor Type A Antagonist YM598", - PermissibleValue(text="Endothelin Receptor Type A Antagonist YM598") ) - setattr(cls, "LMB-7 Immunotoxin", - PermissibleValue(text="LMB-7 Immunotoxin") ) - setattr(cls, "CAIX Inhibitor SLC-0111", - PermissibleValue(text="CAIX Inhibitor SLC-0111") ) - setattr(cls, "GITR Agonist MEDI1873", - PermissibleValue(text="GITR Agonist MEDI1873") ) - setattr(cls, "Fc-engineered Anti-CD40 Agonist Antibody 2141-V11", - PermissibleValue(text="Fc-engineered Anti-CD40 Agonist Antibody 2141-V11") ) - setattr(cls, "Dynemicin A", - PermissibleValue(text="Dynemicin A") ) - setattr(cls, "Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19", - PermissibleValue(text="Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19") ) - setattr(cls, "Polyamine Analog SL11093", - PermissibleValue(text="Polyamine Analog SL11093") ) - setattr(cls, "Denibulin Hydrochloride", - PermissibleValue(text="Denibulin Hydrochloride") ) - setattr(cls, "ALK Inhibitor", - PermissibleValue(text="ALK Inhibitor") ) - setattr(cls, "Topoisomerase I Inhibitor Genz-644282", - PermissibleValue(text="Topoisomerase I Inhibitor Genz-644282") ) - setattr(cls, "MMP Inhibitor S-3304", - PermissibleValue(text="MMP Inhibitor S-3304") ) - setattr(cls, "PAK4 Inhibitor PF-03758309", - PermissibleValue(text="PAK4 Inhibitor PF-03758309") ) - setattr(cls, "Anti-GITR Agonistic Monoclonal Antibody ASP1951", - PermissibleValue(text="Anti-GITR Agonistic Monoclonal Antibody ASP1951") ) - setattr(cls, "Choline Kinase Alpha Inhibitor TCD-717", - PermissibleValue(text="Choline Kinase Alpha Inhibitor TCD-717") ) - setattr(cls, "Arsenic Trioxide Capsule Formulation ORH 2014", - PermissibleValue(text="Arsenic Trioxide Capsule Formulation ORH 2014") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody RO5083945", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody RO5083945") ) - setattr(cls, "c-Met Inhibitor MK2461", - PermissibleValue(text="c-Met Inhibitor MK2461") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody GLS-010", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody GLS-010") ) - setattr(cls, "KRAS G12C Inhibitor MRTX849", - PermissibleValue(text="KRAS G12C Inhibitor MRTX849") ) - setattr(cls, "Dendritic Cell Vaccine", - PermissibleValue(text="Dendritic Cell Vaccine") ) - setattr(cls, "CAIX Inhibitor DTP348", - PermissibleValue(text="CAIX Inhibitor DTP348") ) - setattr(cls, "FGFR/CSF-1R Inhibitor 3D185", - PermissibleValue(text="FGFR/CSF-1R Inhibitor 3D185") ) - setattr(cls, "mTOR Kinase Inhibitor CC-223", - PermissibleValue(text="mTOR Kinase Inhibitor CC-223") ) - setattr(cls, "Lead Pb 212 TCMC-trastuzumab", - PermissibleValue(text="Lead Pb 212 TCMC-trastuzumab") ) - setattr(cls, "Axalimogene Filolisbac", - PermissibleValue(text="Axalimogene Filolisbac") ) - setattr(cls, "Anti-CD33/CD3 BiTE Antibody AMG 330", - PermissibleValue(text="Anti-CD33/CD3 BiTE Antibody AMG 330") ) - setattr(cls, "Oncolytic Adenovirus Ad5-DNX-2401", - PermissibleValue(text="Oncolytic Adenovirus Ad5-DNX-2401") ) - setattr(cls, "Smoothened Antagonist LDE225 Topical", - PermissibleValue(text="Smoothened Antagonist LDE225 Topical") ) - setattr(cls, "MYC-targeting siRNA DCR-MYC", - PermissibleValue(text="MYC-targeting siRNA DCR-MYC") ) - setattr(cls, "c-Kit Inhibitor PLX9486", - PermissibleValue(text="c-Kit Inhibitor PLX9486") ) - setattr(cls, "MEK Inhibitor WX-554", - PermissibleValue(text="MEK Inhibitor WX-554") ) - setattr(cls, "Megestrol Acetate", - PermissibleValue(text="Megestrol Acetate") ) - setattr(cls, "Qilisheng Immunoregulatory Oral Solution", - PermissibleValue(text="Qilisheng Immunoregulatory Oral Solution") ) - setattr(cls, "Ovine Submaxillary Mucin", - PermissibleValue(text="Ovine Submaxillary Mucin") ) - setattr(cls, "MetAP2 Inhibitor SDX-7320", - PermissibleValue(text="MetAP2 Inhibitor SDX-7320") ) - setattr(cls, "Anti-FLT3/CD3 BiTE Antibody AMG 427", - PermissibleValue(text="Anti-FLT3/CD3 BiTE Antibody AMG 427") ) - setattr(cls, "CDK4/6 Inhibitor FCN-437", - PermissibleValue(text="CDK4/6 Inhibitor FCN-437") ) - setattr(cls, "Anti-PD-1/Anti-LAG-3 Bispecific Antibody RO7247669", - PermissibleValue(text="Anti-PD-1/Anti-LAG-3 Bispecific Antibody RO7247669") ) - setattr(cls, "Anti-HER2/Auristatin Payload Antibody-drug Conjugate XMT-1522", - PermissibleValue(text="Anti-HER2/Auristatin Payload Antibody-drug Conjugate XMT-1522") ) - setattr(cls, "Commensal Bacterial Strain Formulation VE800", - PermissibleValue(text="Commensal Bacterial Strain Formulation VE800") ) - setattr(cls, "Synthetic Plumbagin PCUR-101", - PermissibleValue(text="Synthetic Plumbagin PCUR-101") ) - setattr(cls, "Personalized Neoantigen Peptide Vaccine iNeo-Vac-P01", - PermissibleValue(text="Personalized Neoantigen Peptide Vaccine iNeo-Vac-P01") ) - setattr(cls, "Anti-CD73 Monoclonal Antibody BMS-986179", - PermissibleValue(text="Anti-CD73 Monoclonal Antibody BMS-986179") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody CS1001", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody CS1001") ) - setattr(cls, "Staphylococcal Enterotoxin A", - PermissibleValue(text="Staphylococcal Enterotoxin A") ) - setattr(cls, "Anti-PSMA Monoclonal Antibody MDX1201-A488", - PermissibleValue(text="Anti-PSMA Monoclonal Antibody MDX1201-A488") ) - setattr(cls, "Sorghum bicolor Supplement", - PermissibleValue(text="Sorghum bicolor Supplement") ) - setattr(cls, "mRNA-derived Lung Cancer Vaccine BI 1361849", - PermissibleValue(text="mRNA-derived Lung Cancer Vaccine BI 1361849") ) - setattr(cls, "BET Inhibitor BAY1238097", - PermissibleValue(text="BET Inhibitor BAY1238097") ) - setattr(cls, "CT2584 HMS", - PermissibleValue(text="CT2584 HMS") ) - setattr(cls, "Wnt Signaling Pathway Inhibitor SM08502", - PermissibleValue(text="Wnt Signaling Pathway Inhibitor SM08502") ) - setattr(cls, "CDK2 Inhibitor PF-07104091", - PermissibleValue(text="CDK2 Inhibitor PF-07104091") ) - setattr(cls, "Dendritic Cell-Autologous Lung Tumor Vaccine", - PermissibleValue(text="Dendritic Cell-Autologous Lung Tumor Vaccine") ) - setattr(cls, "Anti-AG7 Antibody Drug Conjugate AbGn-107", - PermissibleValue(text="Anti-AG7 Antibody Drug Conjugate AbGn-107") ) - setattr(cls, "Antibody-drug Conjugate SC-004", - PermissibleValue(text="Antibody-drug Conjugate SC-004") ) - setattr(cls, "Adenoviral MUC1 Vaccine ETBX-061", - PermissibleValue(text="Adenoviral MUC1 Vaccine ETBX-061") ) - setattr(cls, "Vinzolidine Sulfate", - PermissibleValue(text="Vinzolidine Sulfate") ) - setattr(cls, "Suramin Sodium", - PermissibleValue(text="Suramin Sodium") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody MGA012", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody MGA012") ) - setattr(cls, "TLR-Directed Cationic Lipid-DNA Complex JVRS-100", - PermissibleValue(text="TLR-Directed Cationic Lipid-DNA Complex JVRS-100") ) - setattr(cls, "p300/CBP Bromodomain Inhibitor CCS1477", - PermissibleValue(text="p300/CBP Bromodomain Inhibitor CCS1477") ) - setattr(cls, "MCL-1 Inhibitor ABBV-467", - PermissibleValue(text="MCL-1 Inhibitor ABBV-467") ) - setattr(cls, "Serclutamab Talirine", - PermissibleValue(text="Serclutamab Talirine") ) - setattr(cls, "BET Inhibitor BMS-986158", - PermissibleValue(text="BET Inhibitor BMS-986158") ) - setattr(cls, "Anti-PSMA/CD3 Bispecific Antibody JNJ-63898081", - PermissibleValue(text="Anti-PSMA/CD3 Bispecific Antibody JNJ-63898081") ) - setattr(cls, "Anti-IL-15 Monoclonal Antibody AMG 714", - PermissibleValue(text="Anti-IL-15 Monoclonal Antibody AMG 714") ) - setattr(cls, "Recombinant Modified Vaccinia Ankara-5T4 Vaccine", - PermissibleValue(text="Recombinant Modified Vaccinia Ankara-5T4 Vaccine") ) - setattr(cls, "Annonaceous Acetogenins", - PermissibleValue(text="Annonaceous Acetogenins") ) - setattr(cls, "Bi-functional Alkylating Agent VAL-083", - PermissibleValue(text="Bi-functional Alkylating Agent VAL-083") ) - setattr(cls, "Oral Milataxel", - PermissibleValue(text="Oral Milataxel") ) - setattr(cls, "Bromebric Acid", - PermissibleValue(text="Bromebric Acid") ) - setattr(cls, "Estrogens, Conjugated", - PermissibleValue(text="Estrogens, Conjugated") ) - setattr(cls, "Wobe-Mugos E", - PermissibleValue(text="Wobe-Mugos E") ) - setattr(cls, "Radium Ra 223 Dichloride", - PermissibleValue(text="Radium Ra 223 Dichloride") ) - setattr(cls, "DHA-Paclitaxel", - PermissibleValue(text="DHA-Paclitaxel") ) - setattr(cls, "Glucocorticoid Receptor Antagonist ORIC-101", - PermissibleValue(text="Glucocorticoid Receptor Antagonist ORIC-101") ) - setattr(cls, "Vitamin D3 Analogue ILX23-7553", - PermissibleValue(text="Vitamin D3 Analogue ILX23-7553") ) - setattr(cls, "CCR2 Antagonist PF-04136309", - PermissibleValue(text="CCR2 Antagonist PF-04136309") ) - setattr(cls, "Bcl-2 Inhibitor APG 2575", - PermissibleValue(text="Bcl-2 Inhibitor APG 2575") ) - setattr(cls, "Anti-ICAM-1 Monoclonal Antibody BI-505", - PermissibleValue(text="Anti-ICAM-1 Monoclonal Antibody BI-505") ) - setattr(cls, "Alacizumab Pegol", - PermissibleValue(text="Alacizumab Pegol") ) - setattr(cls, "Anti-c-Met Antibody-drug Conjugate TR1801", - PermissibleValue(text="Anti-c-Met Antibody-drug Conjugate TR1801") ) - setattr(cls, "Rolinsatamab Talirine", - PermissibleValue(text="Rolinsatamab Talirine") ) - setattr(cls, "Multi-kinase Inhibitor XL092", - PermissibleValue(text="Multi-kinase Inhibitor XL092") ) - setattr(cls, "Ibritumomab Tiuxetan", - PermissibleValue(text="Ibritumomab Tiuxetan") ) - setattr(cls, "Autologous Anti-ICAM-1-CAR-CD28-4-1BB-CD3zeta-expressing T-cells AIC100", - PermissibleValue(text="Autologous Anti-ICAM-1-CAR-CD28-4-1BB-CD3zeta-expressing T-cells AIC100") ) - setattr(cls, "Anti-Melanin Monoclonal Antibody PTI-6D2", - PermissibleValue(text="Anti-Melanin Monoclonal Antibody PTI-6D2") ) - setattr(cls, "Estrogen Receptor Agonist GTx-758", - PermissibleValue(text="Estrogen Receptor Agonist GTx-758") ) - setattr(cls, "Liposomal Rhenium Re 186", - PermissibleValue(text="Liposomal Rhenium Re 186") ) - setattr(cls, "MOF Compound RiMO-301", - PermissibleValue(text="MOF Compound RiMO-301") ) - setattr(cls, "Anti-IGF-1R Monoclonal Antibody AVE1642", - PermissibleValue(text="Anti-IGF-1R Monoclonal Antibody AVE1642") ) - setattr(cls, "Isobrucein B", - PermissibleValue(text="Isobrucein B") ) - setattr(cls, "Allogeneic Anti-CD20 CAR T-cells LUCAR-20S", - PermissibleValue(text="Allogeneic Anti-CD20 CAR T-cells LUCAR-20S") ) - setattr(cls, "EGFR Inhibitor BIBX 1382", - PermissibleValue(text="EGFR Inhibitor BIBX 1382") ) - setattr(cls, "Tyrosinase:146-156 Peptide", - PermissibleValue(text="Tyrosinase:146-156 Peptide") ) - setattr(cls, "STING Agonist MK-1454", - PermissibleValue(text="STING Agonist MK-1454") ) - setattr(cls, "Lupartumab Amadotin", - PermissibleValue(text="Lupartumab Amadotin") ) - setattr(cls, "Autologous Anti-BCMA CAR-transduced T-cells KITE-585", - PermissibleValue(text="Autologous Anti-BCMA CAR-transduced T-cells KITE-585") ) - setattr(cls, "Rilimogene Glafolivec", - PermissibleValue(text="Rilimogene Glafolivec") ) - setattr(cls, "BMS-188797", - PermissibleValue(text="BMS-188797") ) - setattr(cls, "Fluorouracil Implant", - PermissibleValue(text="Fluorouracil Implant") ) - setattr(cls, "Futuximab/Modotuximab Mixture", - PermissibleValue(text="Futuximab/Modotuximab Mixture") ) - setattr(cls, "Rexinoid NRX 194204", - PermissibleValue(text="Rexinoid NRX 194204") ) - setattr(cls, "2,6-Dimethoxyquinone", - PermissibleValue(text="2,6-Dimethoxyquinone") ) - setattr(cls, "Clinical Trial Agent", - PermissibleValue(text="Clinical Trial Agent") ) - setattr(cls, "HAAH Lambda phage Vaccine SNS-301", - PermissibleValue(text="HAAH Lambda phage Vaccine SNS-301") ) - setattr(cls, "Milatuzumab-Doxorubicin Antibody-Drug Conjugate IMMU-110", - PermissibleValue(text="Milatuzumab-Doxorubicin Antibody-Drug Conjugate IMMU-110") ) - setattr(cls, "Anti-FLT3 Monoclonal Antibody 4G8-SDIEM", - PermissibleValue(text="Anti-FLT3 Monoclonal Antibody 4G8-SDIEM") ) - setattr(cls, "ATR Kinase Inhibitor BAY1895344", - PermissibleValue(text="ATR Kinase Inhibitor BAY1895344") ) - setattr(cls, "Actinomycin F1", - PermissibleValue(text="Actinomycin F1") ) - setattr(cls, "PD-L1 Inhibitor INCB086550", - PermissibleValue(text="PD-L1 Inhibitor INCB086550") ) - setattr(cls, "Anti-CD19 Antibody-T-cell Receptor-expressing T-cells ET019003", - PermissibleValue(text="Anti-CD19 Antibody-T-cell Receptor-expressing T-cells ET019003") ) - setattr(cls, "Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous PSMA-specific Prostate Cancer Vaccine BPX-201", - PermissibleValue(text="Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous PSMA-specific Prostate Cancer Vaccine BPX-201") ) - setattr(cls, "Allogeneic Renal Cell Carcinoma Vaccine MGN1601", - PermissibleValue(text="Allogeneic Renal Cell Carcinoma Vaccine MGN1601") ) - setattr(cls, "Docetaxel/Ritonavir", - PermissibleValue(text="Docetaxel/Ritonavir") ) - setattr(cls, "FLT3 Tyrosine Kinase Inhibitor TTT-3002", - PermissibleValue(text="FLT3 Tyrosine Kinase Inhibitor TTT-3002") ) - setattr(cls, "Anti-PD-L1/Anti-4-1BB Bispecific Monoclonal Antibody GEN1046", - PermissibleValue(text="Anti-PD-L1/Anti-4-1BB Bispecific Monoclonal Antibody GEN1046") ) - setattr(cls, "Recombinant PRAME Protein Plus AS15 Adjuvant GSK2302025A", - PermissibleValue(text="Recombinant PRAME Protein Plus AS15 Adjuvant GSK2302025A") ) - setattr(cls, "Polymeric Camptothecin Prodrug XMT-1001", - PermissibleValue(text="Polymeric Camptothecin Prodrug XMT-1001") ) - setattr(cls, "Aurora kinase A/B inhibitor TT-00420", - PermissibleValue(text="Aurora kinase A/B inhibitor TT-00420") ) - setattr(cls, "CXCR4/E-selectin Antagonist GMI-1359", - PermissibleValue(text="CXCR4/E-selectin Antagonist GMI-1359") ) - setattr(cls, "ssRNA-based Immunomodulator CV8102", - PermissibleValue(text="ssRNA-based Immunomodulator CV8102") ) - setattr(cls, "iNKT Cell Agonist ABX196", - PermissibleValue(text="iNKT Cell Agonist ABX196") ) - setattr(cls, "Anti-TRAILR2/CDH17 Tetravalent Bispecific Antibody BI 905711", - PermissibleValue(text="Anti-TRAILR2/CDH17 Tetravalent Bispecific Antibody BI 905711") ) - setattr(cls, "Oncolytic Adenovirus ORCA-010", - PermissibleValue(text="Oncolytic Adenovirus ORCA-010") ) - setattr(cls, "Encapsulated Rapamycin", - PermissibleValue(text="Encapsulated Rapamycin") ) - setattr(cls, "ERK Inhibitor GDC-0994", - PermissibleValue(text="ERK Inhibitor GDC-0994") ) - setattr(cls, "DAB389 Epidermal Growth Factor", - PermissibleValue(text="DAB389 Epidermal Growth Factor") ) - setattr(cls, "Activin Type 2B Receptor Fc Fusion Protein STM 434", - PermissibleValue(text="Activin Type 2B Receptor Fc Fusion Protein STM 434") ) - setattr(cls, "CDK9 Inhibitor AZD4573", - PermissibleValue(text="CDK9 Inhibitor AZD4573") ) - setattr(cls, "Yttrium-90 Polycarbonate Brachytherapy Plaque", - PermissibleValue(text="Yttrium-90 Polycarbonate Brachytherapy Plaque") ) - setattr(cls, "Foritinib Succinate", - PermissibleValue(text="Foritinib Succinate") ) - setattr(cls, "C-myb Antisense Oligonucleotide G4460", - PermissibleValue(text="C-myb Antisense Oligonucleotide G4460") ) - setattr(cls, "Chloroquinoxaline Sulfonamide", - PermissibleValue(text="Chloroquinoxaline Sulfonamide") ) - setattr(cls, "Avitinib Maleate", - PermissibleValue(text="Avitinib Maleate") ) - setattr(cls, "FGFR4 Inhibitor ICP-105", - PermissibleValue(text="FGFR4 Inhibitor ICP-105") ) - setattr(cls, "DTRMWXHS-12/Everolimus/Pomalidomide Combination Agent DTRM-555", - PermissibleValue(text="DTRMWXHS-12/Everolimus/Pomalidomide Combination Agent DTRM-555") ) - setattr(cls, "Anti-B7H3 Antibody-drug Conjugate MGC018", - PermissibleValue(text="Anti-B7H3 Antibody-drug Conjugate MGC018") ) - setattr(cls, "Bleomycin A2", - PermissibleValue(text="Bleomycin A2") ) - setattr(cls, "Autologous Anti-CD19 CAR-CD28 T-cells ET019002", - PermissibleValue(text="Autologous Anti-CD19 CAR-CD28 T-cells ET019002") ) - setattr(cls, "Autologous Anti-kappa Light Chain CAR-CD28-expressing T-lymphocytes", - PermissibleValue(text="Autologous Anti-kappa Light Chain CAR-CD28-expressing T-lymphocytes") ) - setattr(cls, "Anti-ETBR/MMAE Antibody-Drug Conjugate DEDN6526A", - PermissibleValue(text="Anti-ETBR/MMAE Antibody-Drug Conjugate DEDN6526A") ) - setattr(cls, "Apilimod Dimesylate Capsule", - PermissibleValue(text="Apilimod Dimesylate Capsule") ) - setattr(cls, "Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo", - PermissibleValue(text="Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo") ) - setattr(cls, "Monoclonal Antibody HeFi-1", - PermissibleValue(text="Monoclonal Antibody HeFi-1") ) - setattr(cls, "TGF-beta Receptor 1 Inhibitor PF-06952229", - PermissibleValue(text="TGF-beta Receptor 1 Inhibitor PF-06952229") ) - setattr(cls, "17beta-Hydroxysteroid Dehydrogenase Type 5 Inhibitor ASP9521", - PermissibleValue(text="17beta-Hydroxysteroid Dehydrogenase Type 5 Inhibitor ASP9521") ) - setattr(cls, "Erythrocyte-encapsulated L-asparaginase Suspension", - PermissibleValue(text="Erythrocyte-encapsulated L-asparaginase Suspension") ) - setattr(cls, "Telisotuzumab Vedotin", - PermissibleValue(text="Telisotuzumab Vedotin") ) - setattr(cls, "Arginase Inhibitor INCB001158", - PermissibleValue(text="Arginase Inhibitor INCB001158") ) - setattr(cls, "Superoxide Dismutase Mimetic GC4711", - PermissibleValue(text="Superoxide Dismutase Mimetic GC4711") ) - setattr(cls, "Anti-LILRB4 Monoclonal Antibody IO-202", - PermissibleValue(text="Anti-LILRB4 Monoclonal Antibody IO-202") ) - setattr(cls, "Cereblon E3 Ubiquitin Ligase Modulating Agent CC-92480", - PermissibleValue(text="Cereblon E3 Ubiquitin Ligase Modulating Agent CC-92480") ) - setattr(cls, "Z-Endoxifen Hydrochloride", - PermissibleValue(text="Z-Endoxifen Hydrochloride") ) - setattr(cls, "Anti-TROP2 Antibody-drug Conjugate SKB264", - PermissibleValue(text="Anti-TROP2 Antibody-drug Conjugate SKB264") ) - setattr(cls, "Notch Signaling Inhibitor PF-06650808", - PermissibleValue(text="Notch Signaling Inhibitor PF-06650808") ) - setattr(cls, "HPV DNA Plasmids Therapeutic Vaccine VGX-3100", - PermissibleValue(text="HPV DNA Plasmids Therapeutic Vaccine VGX-3100") ) - setattr(cls, "G-Quadruplex Stabilizer BMVC", - PermissibleValue(text="G-Quadruplex Stabilizer BMVC") ) - setattr(cls, "Anti-CD123/CD3 BiTE Antibody SAR440234", - PermissibleValue(text="Anti-CD123/CD3 BiTE Antibody SAR440234") ) - setattr(cls, "Anti-PD-1/Anti-PD-L1 Bispecific Antibody IBI318", - PermissibleValue(text="Anti-PD-1/Anti-PD-L1 Bispecific Antibody IBI318") ) - setattr(cls, "Tinzaparin Sodium", - PermissibleValue(text="Tinzaparin Sodium") ) - setattr(cls, "Multifunctional/Multitargeted Anticancer Agent OMN54", - PermissibleValue(text="Multifunctional/Multitargeted Anticancer Agent OMN54") ) - setattr(cls, "WT1/PSMA/hTERT-encoding Plasmid DNA INO-5401", - PermissibleValue(text="WT1/PSMA/hTERT-encoding Plasmid DNA INO-5401") ) - setattr(cls, "Polyamine Transport Inhibitor AMXT-1501 Dicaprate", - PermissibleValue(text="Polyamine Transport Inhibitor AMXT-1501 Dicaprate") ) - setattr(cls, "RAD51 Inhibitor CYT-0851", - PermissibleValue(text="RAD51 Inhibitor CYT-0851") ) - setattr(cls, "Neoantigen-based Renal Cell Carcinoma-Poly-ICLC Vaccine", - PermissibleValue(text="Neoantigen-based Renal Cell Carcinoma-Poly-ICLC Vaccine") ) - setattr(cls, "H-ras Antisense Oligodeoxynucleotide ISIS 2503", - PermissibleValue(text="H-ras Antisense Oligodeoxynucleotide ISIS 2503") ) - setattr(cls, "Anti-OX40 Agonist Monoclonal Antibody ABBV-368", - PermissibleValue(text="Anti-OX40 Agonist Monoclonal Antibody ABBV-368") ) - setattr(cls, "Iodine I 131 Monoclonal Antibody CC49-deltaCH2", - PermissibleValue(text="Iodine I 131 Monoclonal Antibody CC49-deltaCH2") ) - setattr(cls, "DI-Leu16-IL2 Immunocytokine", - PermissibleValue(text="DI-Leu16-IL2 Immunocytokine") ) - setattr(cls, "Anti-CD25-PBD Antibody-drug Conjugate ADCT-301", - PermissibleValue(text="Anti-CD25-PBD Antibody-drug Conjugate ADCT-301") ) - setattr(cls, "Betaglucin Gel", - PermissibleValue(text="Betaglucin Gel") ) - setattr(cls, "XPO1 Inhibitor SL-801", - PermissibleValue(text="XPO1 Inhibitor SL-801") ) - setattr(cls, "Recombinant Interferon Alfa-2a", - PermissibleValue(text="Recombinant Interferon Alfa-2a") ) - setattr(cls, "EGFR Inhibitor AZD3759", - PermissibleValue(text="EGFR Inhibitor AZD3759") ) - setattr(cls, "Monoclonal Antibody 3622W94", - PermissibleValue(text="Monoclonal Antibody 3622W94") ) - setattr(cls, "Selective Estrogen Receptor Modulator CC-8490", - PermissibleValue(text="Selective Estrogen Receptor Modulator CC-8490") ) - setattr(cls, "Neoantigen-based Therapeutic Cancer Vaccine GRT-C903", - PermissibleValue(text="Neoantigen-based Therapeutic Cancer Vaccine GRT-C903") ) - setattr(cls, "Mutant p53 Activator COTI-2", - PermissibleValue(text="Mutant p53 Activator COTI-2") ) - setattr(cls, "Tetradecanoylphorbol Acetate", - PermissibleValue(text="Tetradecanoylphorbol Acetate") ) - setattr(cls, "Deoxycytidine Analogue TAS-109 Hydrochloride", - PermissibleValue(text="Deoxycytidine Analogue TAS-109 Hydrochloride") ) - setattr(cls, "Actinium Ac-225 Anti-PSMA Monoclonal Antibody J591", - PermissibleValue(text="Actinium Ac-225 Anti-PSMA Monoclonal Antibody J591") ) - setattr(cls, "Adagloxad Simolenin", - PermissibleValue(text="Adagloxad Simolenin") ) - setattr(cls, "WT1 Peptide Vaccine OCV-501", - PermissibleValue(text="WT1 Peptide Vaccine OCV-501") ) - setattr(cls, "Lapatinib Ditosylate", - PermissibleValue(text="Lapatinib Ditosylate") ) - setattr(cls, "HDAC/EGFR/HER2 Inhibitor CUDC-101", - PermissibleValue(text="HDAC/EGFR/HER2 Inhibitor CUDC-101") ) - setattr(cls, "Liposomal Bcl-2 Antisense Oligonucleotide BP1002", - PermissibleValue(text="Liposomal Bcl-2 Antisense Oligonucleotide BP1002") ) - setattr(cls, "Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1", - PermissibleValue(text="Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1") ) - setattr(cls, "Anti-HER2/PBD-MA Antibody-drug Conjugate DHES0815A", - PermissibleValue(text="Anti-HER2/PBD-MA Antibody-drug Conjugate DHES0815A") ) - setattr(cls, "Allogeneic CRISPR-Cas9 Engineered Anti-CD70 CAR-T Cells CTX130", - PermissibleValue(text="Allogeneic CRISPR-Cas9 Engineered Anti-CD70 CAR-T Cells CTX130") ) - setattr(cls, "Agonistic Anti-OX40 Monoclonal Antibody MEDI6469", - PermissibleValue(text="Agonistic Anti-OX40 Monoclonal Antibody MEDI6469") ) - setattr(cls, "IDO-1 Inhibitor LY3381916", - PermissibleValue(text="IDO-1 Inhibitor LY3381916") ) - setattr(cls, "TGFbeta Receptor Ectodomain-IgG Fc Fusion Protein AVID200", - PermissibleValue(text="TGFbeta Receptor Ectodomain-IgG Fc Fusion Protein AVID200") ) - setattr(cls, "LRP5/6 Antagonist BI 905677", - PermissibleValue(text="LRP5/6 Antagonist BI 905677") ) - setattr(cls, "Doxorubicin-loaded EGFR-targeting Nanocells", - PermissibleValue(text="Doxorubicin-loaded EGFR-targeting Nanocells") ) - setattr(cls, "HER2-targeted DARPin MP0274", - PermissibleValue(text="HER2-targeted DARPin MP0274") ) - setattr(cls, "Paclitaxel Poliglumex", - PermissibleValue(text="Paclitaxel Poliglumex") ) - setattr(cls, "Recombinant Bispecific Single-Chain Antibody rM28", - PermissibleValue(text="Recombinant Bispecific Single-Chain Antibody rM28") ) - setattr(cls, "Yttrium Y 90 Glass Microspheres", - PermissibleValue(text="Yttrium Y 90 Glass Microspheres") ) - setattr(cls, "HPV E6/E7 DNA Vaccine GX-188E", - PermissibleValue(text="HPV E6/E7 DNA Vaccine GX-188E") ) - setattr(cls, "Enclomiphene Citrate", - PermissibleValue(text="Enclomiphene Citrate") ) - setattr(cls, "Dexamethasone Sodium Phosphate", - PermissibleValue(text="Dexamethasone Sodium Phosphate") ) - setattr(cls, "Aurora Kinase/VEGFR2 Inhibitor CYC116", - PermissibleValue(text="Aurora Kinase/VEGFR2 Inhibitor CYC116") ) - setattr(cls, "BET Inhibitor FT-1101", - PermissibleValue(text="BET Inhibitor FT-1101") ) - setattr(cls, "Bcr-Abl Kinase Inhibitor PF-114", - PermissibleValue(text="Bcr-Abl Kinase Inhibitor PF-114") ) - setattr(cls, "CD47 Antagonist ALX148", - PermissibleValue(text="CD47 Antagonist ALX148") ) - setattr(cls, "Abexinostat Tosylate", - PermissibleValue(text="Abexinostat Tosylate") ) - setattr(cls, "Staphylococcal Enterotoxin B", - PermissibleValue(text="Staphylococcal Enterotoxin B") ) - setattr(cls, "BET Inhibitor ABBV-744", - PermissibleValue(text="BET Inhibitor ABBV-744") ) - setattr(cls, "DACH-Platin Micelle NC-4016", - PermissibleValue(text="DACH-Platin Micelle NC-4016") ) - setattr(cls, "Proapoptotic Sulindac Analog CP-461", - PermissibleValue(text="Proapoptotic Sulindac Analog CP-461") ) - setattr(cls, "Anti-CD70 Antibody-Drug Conjugate MDX-1203", - PermissibleValue(text="Anti-CD70 Antibody-Drug Conjugate MDX-1203") ) - setattr(cls, "Degarelix Acetate", - PermissibleValue(text="Degarelix Acetate") ) - setattr(cls, "Anti-DR5 Agonistic Antibody DS-8273a", - PermissibleValue(text="Anti-DR5 Agonistic Antibody DS-8273a") ) - setattr(cls, "Ingenol Mebutate", - PermissibleValue(text="Ingenol Mebutate") ) - setattr(cls, "Anti-CD33 Monoclonal Antibody BI 836858", - PermissibleValue(text="Anti-CD33 Monoclonal Antibody BI 836858") ) - setattr(cls, "Recombinant Vesicular Stomatitis Virus-expressing Human Interferon Beta and Sodium-Iodide Symporter", - PermissibleValue(text="Recombinant Vesicular Stomatitis Virus-expressing Human Interferon Beta and Sodium-Iodide Symporter") ) - setattr(cls, "Allosteric ErbB Inhibitor BDTX-189", - PermissibleValue(text="Allosteric ErbB Inhibitor BDTX-189") ) - setattr(cls, "Neoantigen-based Glioblastoma Vaccine", - PermissibleValue(text="Neoantigen-based Glioblastoma Vaccine") ) - setattr(cls, "CEBPA-targeting saRNA MTL-CEBPA Liposome", - PermissibleValue(text="CEBPA-targeting saRNA MTL-CEBPA Liposome") ) - setattr(cls, "Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901", - PermissibleValue(text="Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901") ) - setattr(cls, "TLR7 Agonist 852A", - PermissibleValue(text="TLR7 Agonist 852A") ) - setattr(cls, "Antibody-drug Conjugate SC-006", - PermissibleValue(text="Antibody-drug Conjugate SC-006") ) - setattr(cls, "CL 246738", - PermissibleValue(text="CL 246738") ) - setattr(cls, "Xisomab 3G3", - PermissibleValue(text="Xisomab 3G3") ) - setattr(cls, "HDM2 Inhibitor MK-8242", - PermissibleValue(text="HDM2 Inhibitor MK-8242") ) - setattr(cls, "Anti-PD-1/Anti-HER2 Bispecific Antibody IBI315", - PermissibleValue(text="Anti-PD-1/Anti-HER2 Bispecific Antibody IBI315") ) - setattr(cls, "Anti-PKN3 siRNA Atu027", - PermissibleValue(text="Anti-PKN3 siRNA Atu027") ) - setattr(cls, "LSD1 Inhibitor CC-90011", - PermissibleValue(text="LSD1 Inhibitor CC-90011") ) - setattr(cls, "Deferoxamine Mesylate", - PermissibleValue(text="Deferoxamine Mesylate") ) - setattr(cls, "Monoclonal Antibody D6.12", - PermissibleValue(text="Monoclonal Antibody D6.12") ) - setattr(cls, "PARP 1/2 Inhibitor NOV1401", - PermissibleValue(text="PARP 1/2 Inhibitor NOV1401") ) - setattr(cls, "Liposome-encapsulated Daunorubicin-Cytarabine", - PermissibleValue(text="Liposome-encapsulated Daunorubicin-Cytarabine") ) - setattr(cls, "Bovine Cartilage", - PermissibleValue(text="Bovine Cartilage") ) - setattr(cls, "LMP2-specific T Cell Receptor-transduced Autologous T-lymphocytes", - PermissibleValue(text="LMP2-specific T Cell Receptor-transduced Autologous T-lymphocytes") ) - setattr(cls, "PPAR Alpha Antagonist TPST-1120", - PermissibleValue(text="PPAR Alpha Antagonist TPST-1120") ) - setattr(cls, "Nanoparticle-encapsulated Doxorubicin Hydrochloride", - PermissibleValue(text="Nanoparticle-encapsulated Doxorubicin Hydrochloride") ) - setattr(cls, "Anti-CD38/CD3 Bispecific Monoclonal Antibody GBR 1342", - PermissibleValue(text="Anti-CD38/CD3 Bispecific Monoclonal Antibody GBR 1342") ) - setattr(cls, "Immunocytokine NHS-IL12", - PermissibleValue(text="Immunocytokine NHS-IL12") ) - setattr(cls, "Valproic Acid", - PermissibleValue(text="Valproic Acid") ) - setattr(cls, "AXL Receptor Tyrosine Kinase/cMET Inhibitor BPI-9016M", - PermissibleValue(text="AXL Receptor Tyrosine Kinase/cMET Inhibitor BPI-9016M") ) - setattr(cls, "Retinoic Acid Agent Ro 16-9100", - PermissibleValue(text="Retinoic Acid Agent Ro 16-9100") ) - setattr(cls, "Polyamine Analogue PG11047", - PermissibleValue(text="Polyamine Analogue PG11047") ) - setattr(cls, "Anti-CD3/CD38 Bispecific Monoclonal Antibody AMG 424", - PermissibleValue(text="Anti-CD3/CD38 Bispecific Monoclonal Antibody AMG 424") ) - setattr(cls, "Pan-RAF Inhibitor LY3009120", - PermissibleValue(text="Pan-RAF Inhibitor LY3009120") ) - setattr(cls, "Pemlimogene Merolisbac", - PermissibleValue(text="Pemlimogene Merolisbac") ) - setattr(cls, "MAGE-10.A2", - PermissibleValue(text="MAGE-10.A2") ) - setattr(cls, "c-Met Inhibitor ABN401", - PermissibleValue(text="c-Met Inhibitor ABN401") ) - setattr(cls, "Anti-AGS-16 Monoclonal Antibody AGS-16M18", - PermissibleValue(text="Anti-AGS-16 Monoclonal Antibody AGS-16M18") ) - setattr(cls, "Anti-TIM-3 Monoclonal Antibody BGB-A425", - PermissibleValue(text="Anti-TIM-3 Monoclonal Antibody BGB-A425") ) - setattr(cls, "KSP Inhibitor SB-743921", - PermissibleValue(text="KSP Inhibitor SB-743921") ) - setattr(cls, "Silmitasertib Sodium", - PermissibleValue(text="Silmitasertib Sodium") ) - setattr(cls, "Autologous B-cell/Monocyte-presenting HER2/neu Antigen Vaccine BVAC-B", - PermissibleValue(text="Autologous B-cell/Monocyte-presenting HER2/neu Antigen Vaccine BVAC-B") ) - setattr(cls, "Porcupine Inhibitor CGX1321", - PermissibleValue(text="Porcupine Inhibitor CGX1321") ) - setattr(cls, "Autologous CD19-targeted CAR T Cells JWCAR029", - PermissibleValue(text="Autologous CD19-targeted CAR T Cells JWCAR029") ) - setattr(cls, "Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo", - PermissibleValue(text="Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo") ) - setattr(cls, "Allogeneic GM-CSF-secreting Lethally Irradiated Prostate Cancer Vaccine", - PermissibleValue(text="Allogeneic GM-CSF-secreting Lethally Irradiated Prostate Cancer Vaccine") ) - setattr(cls, "Yttrium Y 90 Basiliximab", - PermissibleValue(text="Yttrium Y 90 Basiliximab") ) - setattr(cls, "Irinotecan-Eluting Beads", - PermissibleValue(text="Irinotecan-Eluting Beads") ) - setattr(cls, "Oral Topotecan Hydrochloride", - PermissibleValue(text="Oral Topotecan Hydrochloride") ) - setattr(cls, "STING Agonist IMSA101", - PermissibleValue(text="STING Agonist IMSA101") ) - setattr(cls, "mRNA-Derived Prostate Cancer Vaccine CV9103", - PermissibleValue(text="mRNA-Derived Prostate Cancer Vaccine CV9103") ) - setattr(cls, "WT1 Protein-derived Peptide Vaccine DSP-7888", - PermissibleValue(text="WT1 Protein-derived Peptide Vaccine DSP-7888") ) - setattr(cls, "SERD D-0502", - PermissibleValue(text="SERD D-0502") ) - setattr(cls, "2-O, 3-O Desulfated Heparin", - PermissibleValue(text="2-O, 3-O Desulfated Heparin") ) - setattr(cls, "Doxorubicin-Eluting Beads", - PermissibleValue(text="Doxorubicin-Eluting Beads") ) - setattr(cls, "Lipid Nanoparticle Encapsulating mRNAs Encoding Human OX40L/IL-23/IL-36gamma mRNA-2752", - PermissibleValue(text="Lipid Nanoparticle Encapsulating mRNAs Encoding Human OX40L/IL-23/IL-36gamma mRNA-2752") ) - setattr(cls, "hTERT Multipeptide/Montanide ISA-51 VG/Imiquimod Vaccine GX 301", - PermissibleValue(text="hTERT Multipeptide/Montanide ISA-51 VG/Imiquimod Vaccine GX 301") ) - setattr(cls, "HPV16 E7-specific HLA-A*02:01-restricted IgG1-Fc Fusion Protein CUE-101", - PermissibleValue(text="HPV16 E7-specific HLA-A*02:01-restricted IgG1-Fc Fusion Protein CUE-101") ) - setattr(cls, "TLR Agonist BDB001", - PermissibleValue(text="TLR Agonist BDB001") ) - setattr(cls, "MET Tyrosine Kinase Inhibitor SGX523", - PermissibleValue(text="MET Tyrosine Kinase Inhibitor SGX523") ) - setattr(cls, "PTEF-b/CDK9 Inhibitor BAY1251152", - PermissibleValue(text="PTEF-b/CDK9 Inhibitor BAY1251152") ) - setattr(cls, "Ribociclib/Letrozole", - PermissibleValue(text="Ribociclib/Letrozole") ) - setattr(cls, "Rebastinib Tosylate", - PermissibleValue(text="Rebastinib Tosylate") ) - setattr(cls, "Hydralazine Hydrochloride", - PermissibleValue(text="Hydralazine Hydrochloride") ) - setattr(cls, "Henatinib Maleate", - PermissibleValue(text="Henatinib Maleate") ) - setattr(cls, "Cinacalcet Hydrochloride", - PermissibleValue(text="Cinacalcet Hydrochloride") ) - setattr(cls, "Vandetanib-eluting Radiopaque Bead BTG-002814", - PermissibleValue(text="Vandetanib-eluting Radiopaque Bead BTG-002814") ) - setattr(cls, "Anti-CTLA4 Antibody Fc Fusion Protein KN044", - PermissibleValue(text="Anti-CTLA4 Antibody Fc Fusion Protein KN044") ) - setattr(cls, "Polymer-encapsulated Luteolin Nanoparticle", - PermissibleValue(text="Polymer-encapsulated Luteolin Nanoparticle") ) - setattr(cls, "PD-L1/PD-L2/VISTA Antagonist CA-170", - PermissibleValue(text="PD-L1/PD-L2/VISTA Antagonist CA-170") ) - setattr(cls, "Anti-c-fms Monoclonal Antibody AMG 820", - PermissibleValue(text="Anti-c-fms Monoclonal Antibody AMG 820") ) - setattr(cls, "Anti-CSF1R Monoclonal Antibody SNDX-6352", - PermissibleValue(text="Anti-CSF1R Monoclonal Antibody SNDX-6352") ) - setattr(cls, "Anti-EGFR/PBD Antibody-drug Conjugate ABBV-321", - PermissibleValue(text="Anti-EGFR/PBD Antibody-drug Conjugate ABBV-321") ) - setattr(cls, "Anti-CD3/CD20 Bispecific Antibody GEN3013", - PermissibleValue(text="Anti-CD3/CD20 Bispecific Antibody GEN3013") ) - setattr(cls, "Anti-PD-1/TIM-3 Bispecific Antibody RO7121661", - PermissibleValue(text="Anti-PD-1/TIM-3 Bispecific Antibody RO7121661") ) - setattr(cls, "Oncolytic Newcastle Disease Virus Strain PV701", - PermissibleValue(text="Oncolytic Newcastle Disease Virus Strain PV701") ) - setattr(cls, "Anti-GCC Antibody-Drug Conjugate TAK-164", - PermissibleValue(text="Anti-GCC Antibody-Drug Conjugate TAK-164") ) - setattr(cls, "Anti-CD19 Monoclonal Antibody XmAb5574", - PermissibleValue(text="Anti-CD19 Monoclonal Antibody XmAb5574") ) - setattr(cls, "Synthetic Long HPV16 E6/E7 Peptides Vaccine ISA101b", - PermissibleValue(text="Synthetic Long HPV16 E6/E7 Peptides Vaccine ISA101b") ) - setattr(cls, "Intermediate-affinity Interleukin-2 Receptor Agonist ALKS 4230", - PermissibleValue(text="Intermediate-affinity Interleukin-2 Receptor Agonist ALKS 4230") ) - setattr(cls, "Bleomycin B2", - PermissibleValue(text="Bleomycin B2") ) - setattr(cls, "Anti-HER2 Antibody-drug Conjugate BAT8001", - PermissibleValue(text="Anti-HER2 Antibody-drug Conjugate BAT8001") ) - setattr(cls, "CYP11A1 Inhibitor ODM-209", - PermissibleValue(text="CYP11A1 Inhibitor ODM-209") ) - setattr(cls, "Topical Potassium Dobesilate", - PermissibleValue(text="Topical Potassium Dobesilate") ) - setattr(cls, "PIM Kinase Inhibitor LGH447", - PermissibleValue(text="PIM Kinase Inhibitor LGH447") ) - setattr(cls, "Monoclonal Antibody CEP-37250/KHK2804", - PermissibleValue(text="Monoclonal Antibody CEP-37250/KHK2804") ) - setattr(cls, "Axl/Mer Inhibitor INCB081776", - PermissibleValue(text="Axl/Mer Inhibitor INCB081776") ) - setattr(cls, "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells C-CAR088", - PermissibleValue(text="Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells C-CAR088") ) - setattr(cls, "Lutetium Lu 177 Satoreotide Tetraxetan", - PermissibleValue(text="Lutetium Lu 177 Satoreotide Tetraxetan") ) - setattr(cls, "Autologous Bispecific BCMA/CD19-targeted CAR-T Cells GC012F", - PermissibleValue(text="Autologous Bispecific BCMA/CD19-targeted CAR-T Cells GC012F") ) - setattr(cls, "Bispecific Antibody GS-1423", - PermissibleValue(text="Bispecific Antibody GS-1423") ) - setattr(cls, "Edodekin alfa", - PermissibleValue(text="Edodekin alfa") ) - setattr(cls, "Lung-targeted Immunomodulator QBKPN", - PermissibleValue(text="Lung-targeted Immunomodulator QBKPN") ) - setattr(cls, "Anti-EphA2 Monoclonal Antibody-MMAF Immunoconjugate MEDI-547", - PermissibleValue(text="Anti-EphA2 Monoclonal Antibody-MMAF Immunoconjugate MEDI-547") ) - setattr(cls, "Autologous Tumor Infiltrating Lymphocytes LN-145", - PermissibleValue(text="Autologous Tumor Infiltrating Lymphocytes LN-145") ) - setattr(cls, "Flumatinib Mesylate", - PermissibleValue(text="Flumatinib Mesylate") ) - setattr(cls, "Monoclonal Antibody 1F5", - PermissibleValue(text="Monoclonal Antibody 1F5") ) - setattr(cls, "Adenosine A2B Receptor Antagonist PBF-1129", - PermissibleValue(text="Adenosine A2B Receptor Antagonist PBF-1129") ) - setattr(cls, "Lutetium Lu 177 Monoclonal Antibody CC49", - PermissibleValue(text="Lutetium Lu 177 Monoclonal Antibody CC49") ) - setattr(cls, "Androgen Receptor Degrader CC-94676", - PermissibleValue(text="Androgen Receptor Degrader CC-94676") ) - setattr(cls, "North American Ginseng Extract AFX-2", - PermissibleValue(text="North American Ginseng Extract AFX-2") ) - setattr(cls, "Anti-CD123 x Anti-CD3 Bispecific Antibody XmAb1404", - PermissibleValue(text="Anti-CD123 x Anti-CD3 Bispecific Antibody XmAb1404") ) - setattr(cls, "Fenretinide Phospholipid Suspension ST-001", - PermissibleValue(text="Fenretinide Phospholipid Suspension ST-001") ) - setattr(cls, "Aurora Kinase Inhibitor TTP607", - PermissibleValue(text="Aurora Kinase Inhibitor TTP607") ) - setattr(cls, "Anti-AXL/PBD Antibody-drug Conjugate ADCT-601", - PermissibleValue(text="Anti-AXL/PBD Antibody-drug Conjugate ADCT-601") ) - setattr(cls, "Adenovirus Serotype 26-expressing HPV18 Vaccine JNJ-63682931", - PermissibleValue(text="Adenovirus Serotype 26-expressing HPV18 Vaccine JNJ-63682931") ) - setattr(cls, "Anti-CD40/Anti-4-1BB Bispecific Agonist Monoclonal Antibody GEN1042", - PermissibleValue(text="Anti-CD40/Anti-4-1BB Bispecific Agonist Monoclonal Antibody GEN1042") ) - setattr(cls, "Mycophenolic Acid", - PermissibleValue(text="Mycophenolic Acid") ) - setattr(cls, "Pyruvate Kinase M2 Isoform Activator TP-1454", - PermissibleValue(text="Pyruvate Kinase M2 Isoform Activator TP-1454") ) - setattr(cls, "Lutetium Lu-177 PSMA-R2", - PermissibleValue(text="Lutetium Lu-177 PSMA-R2") ) - setattr(cls, "Adenovirus-mediated Human Interleukin-12 INXN-2001 Plus Activator Ligand INXN-1001", - PermissibleValue(text="Adenovirus-mediated Human Interleukin-12 INXN-2001 Plus Activator Ligand INXN-1001") ) - setattr(cls, "Bcr-Abl Kinase Inhibitor K0706", - PermissibleValue(text="Bcr-Abl Kinase Inhibitor K0706") ) - setattr(cls, "Chk1 Inhibitor GDC-0425", - PermissibleValue(text="Chk1 Inhibitor GDC-0425") ) - setattr(cls, "Vorsetzumab Mafodotin", - PermissibleValue(text="Vorsetzumab Mafodotin") ) - setattr(cls, "Recombinant KSA Glycoprotein CO17-1A", - PermissibleValue(text="Recombinant KSA Glycoprotein CO17-1A") ) - setattr(cls, "Anti-HER2 Bispecific Antibody-drug Conjugate ZW49", - PermissibleValue(text="Anti-HER2 Bispecific Antibody-drug Conjugate ZW49") ) - setattr(cls, "Estramustine Phosphate Sodium", - PermissibleValue(text="Estramustine Phosphate Sodium") ) - setattr(cls, "Amolimogene Bepiplasmid", - PermissibleValue(text="Amolimogene Bepiplasmid") ) - setattr(cls, "Yttrium Y 90 Anti-CD45 Monoclonal Antibody BC8", - PermissibleValue(text="Yttrium Y 90 Anti-CD45 Monoclonal Antibody BC8") ) - setattr(cls, "Autologous Dendritic Cell Vaccine ACT2001", - PermissibleValue(text="Autologous Dendritic Cell Vaccine ACT2001") ) - setattr(cls, "Lenalidomide Analog KPG-121", - PermissibleValue(text="Lenalidomide Analog KPG-121") ) - setattr(cls, "Therapeutic Hydrocortisone", - PermissibleValue(text="Therapeutic Hydrocortisone") ) - setattr(cls, "TLR9 Agonist AST-008", - PermissibleValue(text="TLR9 Agonist AST-008") ) - setattr(cls, "Liposomal Vinorelbine Tartrate", - PermissibleValue(text="Liposomal Vinorelbine Tartrate") ) - setattr(cls, "Autologous Clonal Neoantigen T Cells ATL001", - PermissibleValue(text="Autologous Clonal Neoantigen T Cells ATL001") ) - setattr(cls, "JAK1 Inhibitor AZD4205", - PermissibleValue(text="JAK1 Inhibitor AZD4205") ) - setattr(cls, "ALK Inhibitor ASP3026", - PermissibleValue(text="ALK Inhibitor ASP3026") ) - setattr(cls, "Allogeneic Anti-CD19 CAR T-cells ALLO-501A", - PermissibleValue(text="Allogeneic Anti-CD19 CAR T-cells ALLO-501A") ) - setattr(cls, "pan-PI3K Inhibitor CLR457", - PermissibleValue(text="pan-PI3K Inhibitor CLR457") ) - setattr(cls, "Bruceanol G", - PermissibleValue(text="Bruceanol G") ) - setattr(cls, "Trientine Hydrochloride", - PermissibleValue(text="Trientine Hydrochloride") ) - setattr(cls, "Etoposide Phosphate", - PermissibleValue(text="Etoposide Phosphate") ) - setattr(cls, "Mechlorethamine Hydrochloride Gel", - PermissibleValue(text="Mechlorethamine Hydrochloride Gel") ) - setattr(cls, "Recombinant Interleukin-13", - PermissibleValue(text="Recombinant Interleukin-13") ) - setattr(cls, "Pazopanib Hydrochloride", - PermissibleValue(text="Pazopanib Hydrochloride") ) - setattr(cls, "Cidan Herbal Capsule", - PermissibleValue(text="Cidan Herbal Capsule") ) - setattr(cls, "Zinc Finger Nuclease ZFN-603", - PermissibleValue(text="Zinc Finger Nuclease ZFN-603") ) - setattr(cls, "Bushen Culuan Decoction", - PermissibleValue(text="Bushen Culuan Decoction") ) - setattr(cls, "7-Hydroxystaurosporine", - PermissibleValue(text="7-Hydroxystaurosporine") ) - setattr(cls, "P-TEFb Inhibitor BAY1143572", - PermissibleValue(text="P-TEFb Inhibitor BAY1143572") ) - setattr(cls, "Progestational IUD", - PermissibleValue(text="Progestational IUD") ) - setattr(cls, "Sofituzumab Vedotin", - PermissibleValue(text="Sofituzumab Vedotin") ) - setattr(cls, "Recombinant Human Apolipoprotein(a) Kringle V MG1102", - PermissibleValue(text="Recombinant Human Apolipoprotein(a) Kringle V MG1102") ) - setattr(cls, "Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central Memory T-lymphocytes JCAR014", - PermissibleValue(text="Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central Memory T-lymphocytes JCAR014") ) - setattr(cls, "Antineoplaston A10", - PermissibleValue(text="Antineoplaston A10") ) - setattr(cls, "Anti-A5B1 Integrin Monoclonal Antibody PF-04605412", - PermissibleValue(text="Anti-A5B1 Integrin Monoclonal Antibody PF-04605412") ) - setattr(cls, "TORC1/2 Kinase Inhibitor DS-3078a", - PermissibleValue(text="TORC1/2 Kinase Inhibitor DS-3078a") ) - setattr(cls, "Liposomal c-raf Antisense Oligonucleotide", - PermissibleValue(text="Liposomal c-raf Antisense Oligonucleotide") ) - setattr(cls, "HIF-1alpha Inhibitor PX-478", - PermissibleValue(text="HIF-1alpha Inhibitor PX-478") ) - setattr(cls, "Docetaxel-loaded Nanopharmaceutical CRLX301", - PermissibleValue(text="Docetaxel-loaded Nanopharmaceutical CRLX301") ) - setattr(cls, "MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201", - PermissibleValue(text="MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201") ) - setattr(cls, "Interferon Gamma-1b", - PermissibleValue(text="Interferon Gamma-1b") ) - setattr(cls, "Tyrosine Kinase Inhibitor TL-895", - PermissibleValue(text="Tyrosine Kinase Inhibitor TL-895") ) - setattr(cls, "Anti-TIGIT Monoclonal Antibody COM902", - PermissibleValue(text="Anti-TIGIT Monoclonal Antibody COM902") ) - setattr(cls, "Anti-EGFR/c-Met Bispecific Antibody EMB-01", - PermissibleValue(text="Anti-EGFR/c-Met Bispecific Antibody EMB-01") ) - setattr(cls, "Serine/Threonine Kinase Inhibitor XL418", - PermissibleValue(text="Serine/Threonine Kinase Inhibitor XL418") ) - setattr(cls, "Akt Inhibitor SR13668", - PermissibleValue(text="Akt Inhibitor SR13668") ) - setattr(cls, "BCG Tokyo-172 Strain Solution", - PermissibleValue(text="BCG Tokyo-172 Strain Solution") ) - setattr(cls, "c-Met Inhibitor HS-10241", - PermissibleValue(text="c-Met Inhibitor HS-10241") ) - setattr(cls, "Ladiratuzumab Vedotin", - PermissibleValue(text="Ladiratuzumab Vedotin") ) - setattr(cls, "Brivanib Alaninate", - PermissibleValue(text="Brivanib Alaninate") ) - setattr(cls, "EGFR Mutant-specific Inhibitor ZN-e4", - PermissibleValue(text="EGFR Mutant-specific Inhibitor ZN-e4") ) - setattr(cls, "MVX-1-loaded Macrocapsule/autologous Tumor Cell Vaccine MVX-ONCO-1", - PermissibleValue(text="MVX-1-loaded Macrocapsule/autologous Tumor Cell Vaccine MVX-ONCO-1") ) - setattr(cls, "2-Hydroxyoleic Acid", - PermissibleValue(text="2-Hydroxyoleic Acid") ) - setattr(cls, "Inactivated Oncolytic Virus Particle GEN0101", - PermissibleValue(text="Inactivated Oncolytic Virus Particle GEN0101") ) - setattr(cls, "Autologous TCR-engineered T-cells IMA202", - PermissibleValue(text="Autologous TCR-engineered T-cells IMA202") ) - setattr(cls, "Thorium Th 227 Anti-HER2 Monoclonal Antibody BAY2701439", - PermissibleValue(text="Thorium Th 227 Anti-HER2 Monoclonal Antibody BAY2701439") ) - setattr(cls, "BRD4 Inhibitor PLX2853", - PermissibleValue(text="BRD4 Inhibitor PLX2853") ) - setattr(cls, "Anti-GITR Agonistic Monoclonal Antibody INCAGN01876", - PermissibleValue(text="Anti-GITR Agonistic Monoclonal Antibody INCAGN01876") ) - setattr(cls, "RORgamma Agonist LYC-55716", - PermissibleValue(text="RORgamma Agonist LYC-55716") ) - setattr(cls, "Anti-B7-H3/DXd Antibody-drug Conjugate DS-7300a", - PermissibleValue(text="Anti-B7-H3/DXd Antibody-drug Conjugate DS-7300a") ) - setattr(cls, "Monoclonal Antibody AK002", - PermissibleValue(text="Monoclonal Antibody AK002") ) - setattr(cls, "Iodine I 131 Monoclonal Antibody muJ591", - PermissibleValue(text="Iodine I 131 Monoclonal Antibody muJ591") ) - setattr(cls, "Human Combinatorial Antibody Library-based Monoclonal Antibody VAY736", - PermissibleValue(text="Human Combinatorial Antibody Library-based Monoclonal Antibody VAY736") ) - setattr(cls, "CXCR4 Antagonist USL311", - PermissibleValue(text="CXCR4 Antagonist USL311") ) - setattr(cls, "Opioid Growth Factor", - PermissibleValue(text="Opioid Growth Factor") ) - setattr(cls, "PI3K-delta Inhibitor AMG 319", - PermissibleValue(text="PI3K-delta Inhibitor AMG 319") ) - setattr(cls, "PAK4/NAMPT Inhibitor KPT-9274", - PermissibleValue(text="PAK4/NAMPT Inhibitor KPT-9274") ) - setattr(cls, "FLT3 Inhibitor SKI-G-801", - PermissibleValue(text="FLT3 Inhibitor SKI-G-801") ) - setattr(cls, "Anti-LAG-3/PD-L1 Bispecific Antibody FS118", - PermissibleValue(text="Anti-LAG-3/PD-L1 Bispecific Antibody FS118") ) - setattr(cls, "Anti-nf-P2X7 Antibody Ointment BIL-010t", - PermissibleValue(text="Anti-nf-P2X7 Antibody Ointment BIL-010t") ) - setattr(cls, "E2F1 Pathway Activator ARQ 171", - PermissibleValue(text="E2F1 Pathway Activator ARQ 171") ) - setattr(cls, "Inosine Monophosphate Dehydrogenase Inhibitor AVN944", - PermissibleValue(text="Inosine Monophosphate Dehydrogenase Inhibitor AVN944") ) - setattr(cls, "Elliptinium Acetate", - PermissibleValue(text="Elliptinium Acetate") ) - setattr(cls, "Autologous Multi-lineage Potential Cells", - PermissibleValue(text="Autologous Multi-lineage Potential Cells") ) - setattr(cls, "Motesanib Diphosphate", - PermissibleValue(text="Motesanib Diphosphate") ) - setattr(cls, "Cintredekin Besudotox", - PermissibleValue(text="Cintredekin Besudotox") ) - setattr(cls, "Tecogalan Sodium", - PermissibleValue(text="Tecogalan Sodium") ) - setattr(cls, "Anti-CD70 Monoclonal Antibody MDX-1411", - PermissibleValue(text="Anti-CD70 Monoclonal Antibody MDX-1411") ) - setattr(cls, "Anti-MUC1 Monoclonal Antibody BTH1704", - PermissibleValue(text="Anti-MUC1 Monoclonal Antibody BTH1704") ) - setattr(cls, "Bizalimogene Ralaplasmid", - PermissibleValue(text="Bizalimogene Ralaplasmid") ) - setattr(cls, "RET Mutation/Fusion Inhibitor BLU-667", - PermissibleValue(text="RET Mutation/Fusion Inhibitor BLU-667") ) - setattr(cls, "Anti-ANG2 Monoclonal Antibody MEDI-3617", - PermissibleValue(text="Anti-ANG2 Monoclonal Antibody MEDI-3617") ) - setattr(cls, "Monoclonal Antibody 14G2A", - PermissibleValue(text="Monoclonal Antibody 14G2A") ) - setattr(cls, "Melphalan Flufenamide", - PermissibleValue(text="Melphalan Flufenamide") ) - setattr(cls, "Antineoplastic Vaccine", - PermissibleValue(text="Antineoplastic Vaccine") ) - setattr(cls, "CXC Chemokine Receptor 2 Antagonist AZD5069", - PermissibleValue(text="CXC Chemokine Receptor 2 Antagonist AZD5069") ) - setattr(cls, "Tris-acryl Gelatin Microspheres", - PermissibleValue(text="Tris-acryl Gelatin Microspheres") ) - setattr(cls, "EGFR/HER2 Inhibitor AV-412", - PermissibleValue(text="EGFR/HER2 Inhibitor AV-412") ) - setattr(cls, "Microbiome-derived Peptide Vaccine EO2401", - PermissibleValue(text="Microbiome-derived Peptide Vaccine EO2401") ) - setattr(cls, "Anti-AGS-8 Monoclonal Antibody AGS-8M4", - PermissibleValue(text="Anti-AGS-8 Monoclonal Antibody AGS-8M4") ) - setattr(cls, "Immunomodulatory Agent CC-11006", - PermissibleValue(text="Immunomodulatory Agent CC-11006") ) - setattr(cls, "FLT3/KIT/CSF1R Inhibitor NMS-03592088", - PermissibleValue(text="FLT3/KIT/CSF1R Inhibitor NMS-03592088") ) - setattr(cls, "Rilimogene Galvacirepvec", - PermissibleValue(text="Rilimogene Galvacirepvec") ) - setattr(cls, "Anti-CD47/CD19 Bispecific Monoclonal Antibody TG-1801", - PermissibleValue(text="Anti-CD47/CD19 Bispecific Monoclonal Antibody TG-1801") ) - setattr(cls, "Recombinant Human TRAIL-Trimer Fusion Protein SCB-313", - PermissibleValue(text="Recombinant Human TRAIL-Trimer Fusion Protein SCB-313") ) - setattr(cls, "Calcium Saccharate", - PermissibleValue(text="Calcium Saccharate") ) - setattr(cls, "Anti-CTLA-4/Anti-PD-1 Monoclonal Antibody Combination BCD-217", - PermissibleValue(text="Anti-CTLA-4/Anti-PD-1 Monoclonal Antibody Combination BCD-217") ) - setattr(cls, "SHP2 Inhibitor JAB-3068", - PermissibleValue(text="SHP2 Inhibitor JAB-3068") ) - setattr(cls, "THL-P", - PermissibleValue(text="THL-P") ) - setattr(cls, "PBN Derivative OKN-007", - PermissibleValue(text="PBN Derivative OKN-007") ) - setattr(cls, "Multi-kinase Inhibitor TPX-0022", - PermissibleValue(text="Multi-kinase Inhibitor TPX-0022") ) - setattr(cls, "Gamma-delta Tocotrienol", - PermissibleValue(text="Gamma-delta Tocotrienol") ) - setattr(cls, "2'-F-ara-deoxyuridine", - PermissibleValue(text="2'-F-ara-deoxyuridine") ) - setattr(cls, "Vandortuzumab Vedotin", - PermissibleValue(text="Vandortuzumab Vedotin") ) - setattr(cls, "Allodepleted T Cell Immunotherapeutic ATIR101", - PermissibleValue(text="Allodepleted T Cell Immunotherapeutic ATIR101") ) - setattr(cls, "Tegafur-gimeracil-oteracil Potassium", - PermissibleValue(text="Tegafur-gimeracil-oteracil Potassium") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody 609A", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody 609A") ) - setattr(cls, "Goserelin Acetate Extended-release Microspheres LY01005", - PermissibleValue(text="Goserelin Acetate Extended-release Microspheres LY01005") ) - setattr(cls, "IDO1/TDO2 Inhibitor M4112", - PermissibleValue(text="IDO1/TDO2 Inhibitor M4112") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody ADU-1604", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody ADU-1604") ) - setattr(cls, "FASN Inhibitor TVB-2640", - PermissibleValue(text="FASN Inhibitor TVB-2640") ) - setattr(cls, "Urokinase-Derived Peptide A6", - PermissibleValue(text="Urokinase-Derived Peptide A6") ) - setattr(cls, "Amrubicin Hydrochloride", - PermissibleValue(text="Amrubicin Hydrochloride") ) - setattr(cls, "Fumagillin-Derived Polymer Conjugate XMT-1107", - PermissibleValue(text="Fumagillin-Derived Polymer Conjugate XMT-1107") ) - setattr(cls, "2-Deoxy-D-glucose", - PermissibleValue(text="2-Deoxy-D-glucose") ) - setattr(cls, "Recombinant Humanized Anti-HER-2 Bispecific Monoclonal Antibody MBS301", - PermissibleValue(text="Recombinant Humanized Anti-HER-2 Bispecific Monoclonal Antibody MBS301") ) - setattr(cls, "Anti-GITR Monoclonal Antibody MK-4166", - PermissibleValue(text="Anti-GITR Monoclonal Antibody MK-4166") ) - setattr(cls, "Pixantrone Dimaleate", - PermissibleValue(text="Pixantrone Dimaleate") ) - setattr(cls, "ERK 1/2 Inhibitor ASTX029", - PermissibleValue(text="ERK 1/2 Inhibitor ASTX029") ) - setattr(cls, "pan-HER Kinase Inhibitor AC480", - PermissibleValue(text="pan-HER Kinase Inhibitor AC480") ) - setattr(cls, "AR Antagonist BMS-641988", - PermissibleValue(text="AR Antagonist BMS-641988") ) - setattr(cls, "EP2/EP4 Antagonist TPST-1495", - PermissibleValue(text="EP2/EP4 Antagonist TPST-1495") ) - setattr(cls, "Neoantigen-based Therapeutic Cancer Vaccine GRT-R904", - PermissibleValue(text="Neoantigen-based Therapeutic Cancer Vaccine GRT-R904") ) - setattr(cls, "Anti-CD26 Monoclonal Antibody YS110", - PermissibleValue(text="Anti-CD26 Monoclonal Antibody YS110") ) - setattr(cls, "Anti-IL-13 Humanized Monoclonal Antibody TNX-650", - PermissibleValue(text="Anti-IL-13 Humanized Monoclonal Antibody TNX-650") ) - setattr(cls, "Anti-TIGIT Monoclonal Antibody BGB-A1217", - PermissibleValue(text="Anti-TIGIT Monoclonal Antibody BGB-A1217") ) - setattr(cls, "Shu Yu Wan Formula", - PermissibleValue(text="Shu Yu Wan Formula") ) - setattr(cls, "Hematoporphyrin Derivative", - PermissibleValue(text="Hematoporphyrin Derivative") ) - setattr(cls, "Strontium Chloride Sr-89", - PermissibleValue(text="Strontium Chloride Sr-89") ) - setattr(cls, "Ras Peptide VAL", - PermissibleValue(text="Ras Peptide VAL") ) - setattr(cls, "CBP/beta-catenin Modulator E7386", - PermissibleValue(text="CBP/beta-catenin Modulator E7386") ) - setattr(cls, "12-Allyldeoxoartemisinin", - PermissibleValue(text="12-Allyldeoxoartemisinin") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody AMG 404", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody AMG 404") ) - setattr(cls, "Anti-PSMA/CD28 Bispecific Antibody REGN5678", - PermissibleValue(text="Anti-PSMA/CD28 Bispecific Antibody REGN5678") ) - setattr(cls, "Angiopoietin-2-specific Fusion Protein PF-04856884", - PermissibleValue(text="Angiopoietin-2-specific Fusion Protein PF-04856884") ) - setattr(cls, "Anti-CD3/Anti-GUCY2C Bispecific Antibody PF-07062119", - PermissibleValue(text="Anti-CD3/Anti-GUCY2C Bispecific Antibody PF-07062119") ) - setattr(cls, "Anti-DKK1 Monoclonal Antibody BHQ880", - PermissibleValue(text="Anti-DKK1 Monoclonal Antibody BHQ880") ) - setattr(cls, "PI3K-delta Inhibitor INCB050465", - PermissibleValue(text="PI3K-delta Inhibitor INCB050465") ) - setattr(cls, "Brostacillin Hydrochloride", - PermissibleValue(text="Brostacillin Hydrochloride") ) - setattr(cls, "Trametinib Dimethyl Sulfoxide", - PermissibleValue(text="Trametinib Dimethyl Sulfoxide") ) - setattr(cls, "Immunotherapy Regimen MKC-1106-MT", - PermissibleValue(text="Immunotherapy Regimen MKC-1106-MT") ) - setattr(cls, "Autologous Anti-CD19/CD22 CAR T-cells AUTO3", - PermissibleValue(text="Autologous Anti-CD19/CD22 CAR T-cells AUTO3") ) - setattr(cls, "Fimaporfin A", - PermissibleValue(text="Fimaporfin A") ) - setattr(cls, "Recombinant Saccharomyces Cerevisia-CEA(610D)-Expressing Vaccine GI-6207", - PermissibleValue(text="Recombinant Saccharomyces Cerevisia-CEA(610D)-Expressing Vaccine GI-6207") ) - setattr(cls, "Parvovirus H-1", - PermissibleValue(text="Parvovirus H-1") ) - setattr(cls, "Vinflunine Ditartrate", - PermissibleValue(text="Vinflunine Ditartrate") ) - setattr(cls, "Oral Docetaxel", - PermissibleValue(text="Oral Docetaxel") ) - setattr(cls, "IRAK4 Inhibitor CA-4948", - PermissibleValue(text="IRAK4 Inhibitor CA-4948") ) - setattr(cls, "Anti-CD166 Probody-drug Conjugate CX-2009", - PermissibleValue(text="Anti-CD166 Probody-drug Conjugate CX-2009") ) - setattr(cls, "Oncolytic Virus ASP9801", - PermissibleValue(text="Oncolytic Virus ASP9801") ) - setattr(cls, "Cantuzumab Ravtansine", - PermissibleValue(text="Cantuzumab Ravtansine") ) - setattr(cls, "siRNA-transfected Peripheral Blood Mononuclear Cells APN401", - PermissibleValue(text="siRNA-transfected Peripheral Blood Mononuclear Cells APN401") ) - setattr(cls, "Retrovector Encoding Mutant Anti-Cyclin G1", - PermissibleValue(text="Retrovector Encoding Mutant Anti-Cyclin G1") ) - setattr(cls, "Cytidine Analog RX-3117", - PermissibleValue(text="Cytidine Analog RX-3117") ) - setattr(cls, "Anti-CD20 Monoclonal Antibody PRO131921", - PermissibleValue(text="Anti-CD20 Monoclonal Antibody PRO131921") ) - setattr(cls, "LMB-9 Immunotoxin", - PermissibleValue(text="LMB-9 Immunotoxin") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody MK-1308", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody MK-1308") ) - setattr(cls, "Paclitaxel Vitamin E-Based Emulsion", - PermissibleValue(text="Paclitaxel Vitamin E-Based Emulsion") ) - setattr(cls, "Anti-CD137 Agonistic Monoclonal Antibody ADG106", - PermissibleValue(text="Anti-CD137 Agonistic Monoclonal Antibody ADG106") ) - setattr(cls, "Monoclonal Antibody 11D10 Anti-Idiotype Vaccine", - PermissibleValue(text="Monoclonal Antibody 11D10 Anti-Idiotype Vaccine") ) - setattr(cls, "MCL-1 inhibitor AMG 397", - PermissibleValue(text="MCL-1 inhibitor AMG 397") ) - setattr(cls, "Allogeneic Anti-BCMA/CS1 Bispecific CAR-T Cells", - PermissibleValue(text="Allogeneic Anti-BCMA/CS1 Bispecific CAR-T Cells") ) - setattr(cls, "Monoclonal Antibody IMMU-14", - PermissibleValue(text="Monoclonal Antibody IMMU-14") ) - setattr(cls, "Artemether Sublingual Spray", - PermissibleValue(text="Artemether Sublingual Spray") ) - setattr(cls, "MAGE-A3 Peptide Vaccine", - PermissibleValue(text="MAGE-A3 Peptide Vaccine") ) - setattr(cls, "Baltaleucel-T", - PermissibleValue(text="Baltaleucel-T") ) - setattr(cls, "Selective Estrogen Receptor Degrader AZD9833", - PermissibleValue(text="Selective Estrogen Receptor Degrader AZD9833") ) - setattr(cls, "Mitomycin A", - PermissibleValue(text="Mitomycin A") ) - setattr(cls, "IL-2/9/15 Gamma Chain Receptor Inhibitor BNZ-1", - PermissibleValue(text="IL-2/9/15 Gamma Chain Receptor Inhibitor BNZ-1") ) - setattr(cls, "Integrin Receptor Antagonist GLPG0187", - PermissibleValue(text="Integrin Receptor Antagonist GLPG0187") ) - setattr(cls, "Ponatinib Hydrochloride", - PermissibleValue(text="Ponatinib Hydrochloride") ) - setattr(cls, "Mivobulin Isethionate", - PermissibleValue(text="Mivobulin Isethionate") ) - setattr(cls, "Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells", - PermissibleValue(text="Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells") ) - setattr(cls, "R-(-)-Gossypol Acetic Acid", - PermissibleValue(text="R-(-)-Gossypol Acetic Acid") ) - setattr(cls, "Apoptosis Inducer GCS-100", - PermissibleValue(text="Apoptosis Inducer GCS-100") ) - setattr(cls, "PI3K-beta Inhibitor SAR260301", - PermissibleValue(text="PI3K-beta Inhibitor SAR260301") ) - setattr(cls, "Glioma Lysate Vaccine GBM6-AD", - PermissibleValue(text="Glioma Lysate Vaccine GBM6-AD") ) - setattr(cls, "Modified Vitamin D Binding Protein Macrophage Activator EF-022", - PermissibleValue(text="Modified Vitamin D Binding Protein Macrophage Activator EF-022") ) - setattr(cls, "Hydrocortisone Sodium Succinate", - PermissibleValue(text="Hydrocortisone Sodium Succinate") ) - setattr(cls, "Anti-TIM-3 Monoclonal Antibody Sym023", - PermissibleValue(text="Anti-TIM-3 Monoclonal Antibody Sym023") ) - setattr(cls, "iNOS Dimerization Inhibitor ASP9853", - PermissibleValue(text="iNOS Dimerization Inhibitor ASP9853") ) - setattr(cls, "Adenoviral Cancer Vaccine PF-06936308", - PermissibleValue(text="Adenoviral Cancer Vaccine PF-06936308") ) - setattr(cls, "Antibody-drug Conjugate ABBV-155", - PermissibleValue(text="Antibody-drug Conjugate ABBV-155") ) - setattr(cls, "Aerosolized Aldesleukin", - PermissibleValue(text="Aerosolized Aldesleukin") ) - setattr(cls, "Anti-TIM-3 Monoclonal Antibody TSR-022", - PermissibleValue(text="Anti-TIM-3 Monoclonal Antibody TSR-022") ) - setattr(cls, "CK1alpha/CDK7/CDK9 Inhibitor BTX-A51", - PermissibleValue(text="CK1alpha/CDK7/CDK9 Inhibitor BTX-A51") ) - setattr(cls, "Abiraterone Acetate", - PermissibleValue(text="Abiraterone Acetate") ) - setattr(cls, "Anti-ENPP3/MMAF Antibody-Drug Conjugate AGS-16M8F", - PermissibleValue(text="Anti-ENPP3/MMAF Antibody-Drug Conjugate AGS-16M8F") ) - setattr(cls, "G Protein-coupled Estrogen Receptor Agonist LNS8801", - PermissibleValue(text="G Protein-coupled Estrogen Receptor Agonist LNS8801") ) - setattr(cls, "Androgen Receptor Antagonist BAY 1161116", - PermissibleValue(text="Androgen Receptor Antagonist BAY 1161116") ) - setattr(cls, "Pegylated Recombinant Interleukin-2 THOR-707", - PermissibleValue(text="Pegylated Recombinant Interleukin-2 THOR-707") ) - setattr(cls, "Linoleyl Carbonate-Paclitaxel", - PermissibleValue(text="Linoleyl Carbonate-Paclitaxel") ) - setattr(cls, "Astuprotimut-R", - PermissibleValue(text="Astuprotimut-R") ) - setattr(cls, "Pyridyl Cyanoguanidine CHS 828", - PermissibleValue(text="Pyridyl Cyanoguanidine CHS 828") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody ADG116", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody ADG116") ) - setattr(cls, "PIM Kinase Inhibitor TP-3654", - PermissibleValue(text="PIM Kinase Inhibitor TP-3654") ) - setattr(cls, "Lipid Nanoparticle Encapsulated OX40L mRNA-2416", - PermissibleValue(text="Lipid Nanoparticle Encapsulated OX40L mRNA-2416") ) - setattr(cls, "CXCR2 Antagonist QBM076", - PermissibleValue(text="CXCR2 Antagonist QBM076") ) - setattr(cls, "pDNA-encoding Emm55 Autologous Cancer Cell Vaccine IFx-Hu2.0", - PermissibleValue(text="pDNA-encoding Emm55 Autologous Cancer Cell Vaccine IFx-Hu2.0") ) - setattr(cls, "Galectin-1 Inhibitor OTX008", - PermissibleValue(text="Galectin-1 Inhibitor OTX008") ) - setattr(cls, "Androgen Receptor Antisense Oligonucleotide AZD5312", - PermissibleValue(text="Androgen Receptor Antisense Oligonucleotide AZD5312") ) - setattr(cls, "Arnebia Indigo Jade Pearl Topical Cream", - PermissibleValue(text="Arnebia Indigo Jade Pearl Topical Cream") ) - setattr(cls, "Guanabenz Acetate", - PermissibleValue(text="Guanabenz Acetate") ) - setattr(cls, "Anti-CD33/CD3 BiTE Antibody AMG 673", - PermissibleValue(text="Anti-CD33/CD3 BiTE Antibody AMG 673") ) - setattr(cls, "Anti-TGF-beta RII Monoclonal Antibody IMC-TR1", - PermissibleValue(text="Anti-TGF-beta RII Monoclonal Antibody IMC-TR1") ) - setattr(cls, "9H-Purine-6Thio-98D", - PermissibleValue(text="9H-Purine-6Thio-98D") ) - setattr(cls, "Retinyl Acetate", - PermissibleValue(text="Retinyl Acetate") ) - setattr(cls, "Recombinant Human Papillomavirus Nonavalent Vaccine", - PermissibleValue(text="Recombinant Human Papillomavirus Nonavalent Vaccine") ) - setattr(cls, "Galectin Inhibitor GR-MD-02", - PermissibleValue(text="Galectin Inhibitor GR-MD-02") ) - setattr(cls, "Troxacitabine Nucleotide Prodrug MIV-818", - PermissibleValue(text="Troxacitabine Nucleotide Prodrug MIV-818") ) - setattr(cls, "Tretinoin Liposome", - PermissibleValue(text="Tretinoin Liposome") ) - setattr(cls, "mRNA-derived KRAS-targeted Vaccine V941", - PermissibleValue(text="mRNA-derived KRAS-targeted Vaccine V941") ) - setattr(cls, "KSP Inhibitor AZD4877", - PermissibleValue(text="KSP Inhibitor AZD4877") ) - setattr(cls, "EGFR/EGFRvIII Inhibitor WSD0922-FU", - PermissibleValue(text="EGFR/EGFRvIII Inhibitor WSD0922-FU") ) - setattr(cls, "Immune Checkpoint Inhibitor ASP8374", - PermissibleValue(text="Immune Checkpoint Inhibitor ASP8374") ) - setattr(cls, "SMAC Mimetic BI 891065", - PermissibleValue(text="SMAC Mimetic BI 891065") ) - setattr(cls, "Anti-CTGF Monoclonal Antibody FG-3019", - PermissibleValue(text="Anti-CTGF Monoclonal Antibody FG-3019") ) - setattr(cls, "Talotrexin Ammonium", - PermissibleValue(text="Talotrexin Ammonium") ) - setattr(cls, "Sodium Metaarsenite", - PermissibleValue(text="Sodium Metaarsenite") ) - setattr(cls, "Itacitinib Adipate", - PermissibleValue(text="Itacitinib Adipate") ) - setattr(cls, "Pegylated Liposomal Doxorubicin Hydrochloride", - PermissibleValue(text="Pegylated Liposomal Doxorubicin Hydrochloride") ) - setattr(cls, "Oral Microencapsulated Diindolylmethane", - PermissibleValue(text="Oral Microencapsulated Diindolylmethane") ) - setattr(cls, "FGFR Inhibitor ASP5878", - PermissibleValue(text="FGFR Inhibitor ASP5878") ) - setattr(cls, "Synchrovax SEM Plasmid DNA Vaccine", - PermissibleValue(text="Synchrovax SEM Plasmid DNA Vaccine") ) - setattr(cls, "Racemetyrosine/Methoxsalen/Phenytoin/Sirolimus SM-88", - PermissibleValue(text="Racemetyrosine/Methoxsalen/Phenytoin/Sirolimus SM-88") ) - setattr(cls, "Alvocidib Prodrug TP-1287", - PermissibleValue(text="Alvocidib Prodrug TP-1287") ) - setattr(cls, "IDO1 Inhibitor PF-06840003", - PermissibleValue(text="IDO1 Inhibitor PF-06840003") ) - setattr(cls, "Anti-CD20/CD3 Monoclonal Antibody XmAb13676", - PermissibleValue(text="Anti-CD20/CD3 Monoclonal Antibody XmAb13676") ) - setattr(cls, "Crenolanib Besylate", - PermissibleValue(text="Crenolanib Besylate") ) - setattr(cls, "Src Kinase Inhibitor KX2-391 Ointment", - PermissibleValue(text="Src Kinase Inhibitor KX2-391 Ointment") ) - setattr(cls, "MDM2 Antagonist RO5045337", - PermissibleValue(text="MDM2 Antagonist RO5045337") ) - setattr(cls, "Gonadotropin-releasing Hormone Analog", - PermissibleValue(text="Gonadotropin-releasing Hormone Analog") ) - setattr(cls, "Lisocabtagene Maraleucel", - PermissibleValue(text="Lisocabtagene Maraleucel") ) - setattr(cls, "CDK4/6 Inhibitor BPI-16350", - PermissibleValue(text="CDK4/6 Inhibitor BPI-16350") ) - setattr(cls, "Multi-neo-epitope Vaccine OSE 2101", - PermissibleValue(text="Multi-neo-epitope Vaccine OSE 2101") ) - setattr(cls, "Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody GBR 1302", - PermissibleValue(text="Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody GBR 1302") ) - setattr(cls, "Autologous Bi-epitope BCMA-targeted CAR T-cells JNJ-68284528", - PermissibleValue(text="Autologous Bi-epitope BCMA-targeted CAR T-cells JNJ-68284528") ) - setattr(cls, "STING Agonist GSK3745417", - PermissibleValue(text="STING Agonist GSK3745417") ) - setattr(cls, "Anti-LAMP1 Antibody-drug Conjugate SAR428926", - PermissibleValue(text="Anti-LAMP1 Antibody-drug Conjugate SAR428926") ) - setattr(cls, "Monoclonal Antibody F19", - PermissibleValue(text="Monoclonal Antibody F19") ) - setattr(cls, "Carboxyphenyl Retinamide", - PermissibleValue(text="Carboxyphenyl Retinamide") ) - setattr(cls, "Anti-CD117 Monoclonal Antibody JSP191", - PermissibleValue(text="Anti-CD117 Monoclonal Antibody JSP191") ) - setattr(cls, "LOXL2 Inhibitor PAT-1251", - PermissibleValue(text="LOXL2 Inhibitor PAT-1251") ) - setattr(cls, "Bosutinib Monohydrate", - PermissibleValue(text="Bosutinib Monohydrate") ) - setattr(cls, "Personalized Peptide Cancer Vaccine NEO-PV-01", - PermissibleValue(text="Personalized Peptide Cancer Vaccine NEO-PV-01") ) - setattr(cls, "Monoclonal Antibody 3F8", - PermissibleValue(text="Monoclonal Antibody 3F8") ) - setattr(cls, "Anti-CD352 Antibody-drug Conjugate SGN-CD352A", - PermissibleValue(text="Anti-CD352 Antibody-drug Conjugate SGN-CD352A") ) - setattr(cls, "Monoclonal Antibody E2.3", - PermissibleValue(text="Monoclonal Antibody E2.3") ) - setattr(cls, "Nanoparticle Albumin-bound Thiocolchicine Dimer nab-5404", - PermissibleValue(text="Nanoparticle Albumin-bound Thiocolchicine Dimer nab-5404") ) - setattr(cls, "CSF1R Inhibitor PLX73086", - PermissibleValue(text="CSF1R Inhibitor PLX73086") ) - setattr(cls, "GI-4000 Vaccine", - PermissibleValue(text="GI-4000 Vaccine") ) - setattr(cls, "Anti-CD19/CD3 Tetravalent Antibody AFM11", - PermissibleValue(text="Anti-CD19/CD3 Tetravalent Antibody AFM11") ) - setattr(cls, "Tozasertib Lactate", - PermissibleValue(text="Tozasertib Lactate") ) - setattr(cls, "STING Agonist TAK-676", - PermissibleValue(text="STING Agonist TAK-676") ) - setattr(cls, "Labetuzumab Govitecan", - PermissibleValue(text="Labetuzumab Govitecan") ) - setattr(cls, "Synthetic Glioblastoma Mutated Tumor-specific Peptides Vaccine Therapy APVAC2", - PermissibleValue(text="Synthetic Glioblastoma Mutated Tumor-specific Peptides Vaccine Therapy APVAC2") ) - setattr(cls, "Monoclonal Antibody 11D10", - PermissibleValue(text="Monoclonal Antibody 11D10") ) - setattr(cls, "Allogeneic Third-party Suicide Gene-transduced Anti-HLA-DPB1*0401 CD4+ T-cells CTL 19", - PermissibleValue(text="Allogeneic Third-party Suicide Gene-transduced Anti-HLA-DPB1*0401 CD4+ T-cells CTL 19") ) - setattr(cls, "BMS-275183", - PermissibleValue(text="BMS-275183") ) - setattr(cls, "PD-L1 Inhibitor GS-4224", - PermissibleValue(text="PD-L1 Inhibitor GS-4224") ) - setattr(cls, "VEGF/HGF-targeting DARPin MP0250", - PermissibleValue(text="VEGF/HGF-targeting DARPin MP0250") ) - setattr(cls, "HIF-2alpha Inhibitor PT2385", - PermissibleValue(text="HIF-2alpha Inhibitor PT2385") ) - setattr(cls, "Aerosolized Liposomal Rubitecan", - PermissibleValue(text="Aerosolized Liposomal Rubitecan") ) - setattr(cls, "Recombinant Transforming Growth Factor-Beta-2", - PermissibleValue(text="Recombinant Transforming Growth Factor-Beta-2") ) - setattr(cls, "Folic Acid", - PermissibleValue(text="Folic Acid") ) - setattr(cls, "Rivoceranib Mesylate", - PermissibleValue(text="Rivoceranib Mesylate") ) - setattr(cls, "Arugula Seed Powder", - PermissibleValue(text="Arugula Seed Powder") ) - setattr(cls, "Interferon Alfa-N1", - PermissibleValue(text="Interferon Alfa-N1") ) - setattr(cls, "Oral Fludarabine Phosphate", - PermissibleValue(text="Oral Fludarabine Phosphate") ) - setattr(cls, "Anti-EGP-2 Immunotoxin MOC31-PE", - PermissibleValue(text="Anti-EGP-2 Immunotoxin MOC31-PE") ) - setattr(cls, "Oncolytic HSV-1 NV1020", - PermissibleValue(text="Oncolytic HSV-1 NV1020") ) - setattr(cls, "ER alpha Proteolysis-targeting Chimera Protein Degrader ARV-471", - PermissibleValue(text="ER alpha Proteolysis-targeting Chimera Protein Degrader ARV-471") ) - setattr(cls, "Pan-FGFR Inhibitor LY2874455", - PermissibleValue(text="Pan-FGFR Inhibitor LY2874455") ) - setattr(cls, "ALK/c-Met Inhibitor TQ-B3139", - PermissibleValue(text="ALK/c-Met Inhibitor TQ-B3139") ) - setattr(cls, "Alpha-Gal AGI-134", - PermissibleValue(text="Alpha-Gal AGI-134") ) - setattr(cls, "Trastuzumab Conjugate BI-CON-02", - PermissibleValue(text="Trastuzumab Conjugate BI-CON-02") ) - setattr(cls, "PI3K/mTORC1/mTORC2 Inhibitor DCBCI0901", - PermissibleValue(text="PI3K/mTORC1/mTORC2 Inhibitor DCBCI0901") ) - setattr(cls, "Akt Inhibitor MK2206", - PermissibleValue(text="Akt Inhibitor MK2206") ) - setattr(cls, "Pegylated Liposomal Belotecan", - PermissibleValue(text="Pegylated Liposomal Belotecan") ) - setattr(cls, "Monoclonal Antibody muJ591", - PermissibleValue(text="Monoclonal Antibody muJ591") ) - setattr(cls, "S-equol", - PermissibleValue(text="S-equol") ) - setattr(cls, "Pioglitazone Hydrochloride", - PermissibleValue(text="Pioglitazone Hydrochloride") ) - setattr(cls, "IGF-1R Inhibitor PL225B", - PermissibleValue(text="IGF-1R Inhibitor PL225B") ) - setattr(cls, "PI3K p110beta/delta Inhibitor KA2237", - PermissibleValue(text="PI3K p110beta/delta Inhibitor KA2237") ) - setattr(cls, "Paclitaxel Ceribate", - PermissibleValue(text="Paclitaxel Ceribate") ) - setattr(cls, "Algenpantucel-L", - PermissibleValue(text="Algenpantucel-L") ) - setattr(cls, "ALK-FAK Inhibitor CEP-37440", - PermissibleValue(text="ALK-FAK Inhibitor CEP-37440") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody GT-MAB 5.2-GEX", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody GT-MAB 5.2-GEX") ) - setattr(cls, "Dendritic Cell-targeting Lentiviral Vector ID-LV305", - PermissibleValue(text="Dendritic Cell-targeting Lentiviral Vector ID-LV305") ) - setattr(cls, "RFT5-dgA Immunotoxin IMTOX25", - PermissibleValue(text="RFT5-dgA Immunotoxin IMTOX25") ) - setattr(cls, "Brivudine Phosphoramidate", - PermissibleValue(text="Brivudine Phosphoramidate") ) - setattr(cls, "Anti-BCMA Antibody-drug Conjugate CC-99712", - PermissibleValue(text="Anti-BCMA Antibody-drug Conjugate CC-99712") ) - setattr(cls, "Allogeneic Natural Killer Cell Line NK-92", - PermissibleValue(text="Allogeneic Natural Killer Cell Line NK-92") ) - setattr(cls, "Adenosine A2A Receptor Antagonist/Phosphodiesterase 10A PBF-999", - PermissibleValue(text="Adenosine A2A Receptor Antagonist/Phosphodiesterase 10A PBF-999") ) - setattr(cls, "PARP/Tankyrase Inhibitor 2X-121", - PermissibleValue(text="PARP/Tankyrase Inhibitor 2X-121") ) - setattr(cls, "Capecitabine Rapidly Disintegrating Tablet", - PermissibleValue(text="Capecitabine Rapidly Disintegrating Tablet") ) - setattr(cls, "Combretastatin A-1", - PermissibleValue(text="Combretastatin A-1") ) - setattr(cls, "Receptor Tyrosine Kinase Inhibitor R1530", - PermissibleValue(text="Receptor Tyrosine Kinase Inhibitor R1530") ) - setattr(cls, "Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143", - PermissibleValue(text="Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143") ) - setattr(cls, "Amblyomin-X", - PermissibleValue(text="Amblyomin-X") ) - setattr(cls, "Trastuzumab Emtansine", - PermissibleValue(text="Trastuzumab Emtansine") ) - setattr(cls, "Copanlisib Hydrochloride", - PermissibleValue(text="Copanlisib Hydrochloride") ) - setattr(cls, "Recombinant Interleukin-18", - PermissibleValue(text="Recombinant Interleukin-18") ) - setattr(cls, "ALK Inhibitor TAE684", - PermissibleValue(text="ALK Inhibitor TAE684") ) - setattr(cls, "PARP Inhibitor AZD2461", - PermissibleValue(text="PARP Inhibitor AZD2461") ) - setattr(cls, "Adenoviral PSA Vaccine ETBX-071", - PermissibleValue(text="Adenoviral PSA Vaccine ETBX-071") ) - setattr(cls, "3'-C-ethynylcytidine", - PermissibleValue(text="3'-C-ethynylcytidine") ) - setattr(cls, "Parsaclisib Hydrochloride", - PermissibleValue(text="Parsaclisib Hydrochloride") ) - setattr(cls, "Ruxolitinib Phosphate", - PermissibleValue(text="Ruxolitinib Phosphate") ) - setattr(cls, "CDK Inhibitor AT7519", - PermissibleValue(text="CDK Inhibitor AT7519") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody HLX-07", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody HLX-07") ) - setattr(cls, "DNMT1 Mixed-Backbone Antisense Oligonucleotide MG 98", - PermissibleValue(text="DNMT1 Mixed-Backbone Antisense Oligonucleotide MG 98") ) - setattr(cls, "Ruthenium-based Small Molecule Therapeutic BOLD-100", - PermissibleValue(text="Ruthenium-based Small Molecule Therapeutic BOLD-100") ) - setattr(cls, "Mibefradil Dihydrochloride", - PermissibleValue(text="Mibefradil Dihydrochloride") ) - setattr(cls, "USP14/UCHL5 Inhibitor VLX1570", - PermissibleValue(text="USP14/UCHL5 Inhibitor VLX1570") ) - setattr(cls, "Talactoferrin Alfa", - PermissibleValue(text="Talactoferrin Alfa") ) - setattr(cls, "Anti-gpA33/CD3 Monoclonal Antibody MGD007", - PermissibleValue(text="Anti-gpA33/CD3 Monoclonal Antibody MGD007") ) - setattr(cls, "Porcupine Inhibitor RXC004", - PermissibleValue(text="Porcupine Inhibitor RXC004") ) - setattr(cls, "c-Met Inhibitor AMG 208", - PermissibleValue(text="c-Met Inhibitor AMG 208") ) - setattr(cls, "BCMA x CD3 T-cell Engaging Antibody CC-93269", - PermissibleValue(text="BCMA x CD3 T-cell Engaging Antibody CC-93269") ) - setattr(cls, "MEK Inhibitor HL-085", - PermissibleValue(text="MEK Inhibitor HL-085") ) - setattr(cls, "Rhenium Re-188 Ethiodized Oil", - PermissibleValue(text="Rhenium Re-188 Ethiodized Oil") ) - setattr(cls, "Trastuzumab Deruxtecan", - PermissibleValue(text="Trastuzumab Deruxtecan") ) - setattr(cls, "Eftozanermin Alfa", - PermissibleValue(text="Eftozanermin Alfa") ) - setattr(cls, "Indusatumab Vedotin", - PermissibleValue(text="Indusatumab Vedotin") ) - setattr(cls, "CDC7 Inhibitor TAK-931", - PermissibleValue(text="CDC7 Inhibitor TAK-931") ) - setattr(cls, "Liposome-encapsulated RB94 Plasmid DNA Gene Therapy Agent SGT-94", - PermissibleValue(text="Liposome-encapsulated RB94 Plasmid DNA Gene Therapy Agent SGT-94") ) - setattr(cls, "Autologous CRISPR-edited Anti-CD19 CAR T Cells XYF19", - PermissibleValue(text="Autologous CRISPR-edited Anti-CD19 CAR T Cells XYF19") ) - setattr(cls, "Uncaria tomentosa Extract", - PermissibleValue(text="Uncaria tomentosa Extract") ) - setattr(cls, "Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and CD8+ T-cells FH-MCVA2TCR", - PermissibleValue(text="Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and CD8+ T-cells FH-MCVA2TCR") ) - setattr(cls, "CDK2/4/6/FLT3 Inhibitor FN-1501", - PermissibleValue(text="CDK2/4/6/FLT3 Inhibitor FN-1501") ) - setattr(cls, "Foslinanib Disodium", - PermissibleValue(text="Foslinanib Disodium") ) - setattr(cls, "MDM2 Antagonist ASTX295", - PermissibleValue(text="MDM2 Antagonist ASTX295") ) - setattr(cls, "Anti-alpha BCMA/Anti-alpha CD3 T-cell Engaging Bispecific Antibody TNB-383B", - PermissibleValue(text="Anti-alpha BCMA/Anti-alpha CD3 T-cell Engaging Bispecific Antibody TNB-383B") ) - setattr(cls, "EZH2 inhibitor CPI-0209", - PermissibleValue(text="EZH2 inhibitor CPI-0209") ) - setattr(cls, "Liposomal Eribulin Mesylate", - PermissibleValue(text="Liposomal Eribulin Mesylate") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody SCT-I10A", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody SCT-I10A") ) - setattr(cls, "Copper Gluconate", - PermissibleValue(text="Copper Gluconate") ) - setattr(cls, "ncmtRNA Oligonucleotide Andes-1537", - PermissibleValue(text="ncmtRNA Oligonucleotide Andes-1537") ) - setattr(cls, "SIRPa-4-1BBL Fusion Protein DSP107", - PermissibleValue(text="SIRPa-4-1BBL Fusion Protein DSP107") ) - setattr(cls, "HPV16 L2/E6/E7 Fusion Protein Vaccine TA-CIN", - PermissibleValue(text="HPV16 L2/E6/E7 Fusion Protein Vaccine TA-CIN") ) - setattr(cls, "Therapeutic Cancer Vaccine ATP128", - PermissibleValue(text="Therapeutic Cancer Vaccine ATP128") ) - setattr(cls, "Adenoviral Tumor-specific Neoantigen Priming Vaccine GAd-209-FSP", - PermissibleValue(text="Adenoviral Tumor-specific Neoantigen Priming Vaccine GAd-209-FSP") ) - setattr(cls, "Aminocamptothecin Colloidal Dispersion", - PermissibleValue(text="Aminocamptothecin Colloidal Dispersion") ) - setattr(cls, "FGFR4 Inhibitor FGF401", - PermissibleValue(text="FGFR4 Inhibitor FGF401") ) - setattr(cls, "ALK-2 Inhibitor TP-0184", - PermissibleValue(text="ALK-2 Inhibitor TP-0184") ) - setattr(cls, "Molibresib Besylate", - PermissibleValue(text="Molibresib Besylate") ) - setattr(cls, "Liposomal SN-38", - PermissibleValue(text="Liposomal SN-38") ) - setattr(cls, "Atiprimod Dimaleate", - PermissibleValue(text="Atiprimod Dimaleate") ) - setattr(cls, "Iodine I 131 Omburtamab", - PermissibleValue(text="Iodine I 131 Omburtamab") ) - setattr(cls, "Src Kinase Inhibitor KX2-391", - PermissibleValue(text="Src Kinase Inhibitor KX2-391") ) - setattr(cls, "Lutetium Lu-177 Rituximab", - PermissibleValue(text="Lutetium Lu-177 Rituximab") ) - setattr(cls, "Anti-TIGIT Monoclonal Antibody OMP-313M32", - PermissibleValue(text="Anti-TIGIT Monoclonal Antibody OMP-313M32") ) - setattr(cls, "Aurora Kinase Inhibitor AMG 900", - PermissibleValue(text="Aurora Kinase Inhibitor AMG 900") ) - setattr(cls, "Liposomal Daunorubicin Citrate", - PermissibleValue(text="Liposomal Daunorubicin Citrate") ) - setattr(cls, "Recombinant Tumor Necrosis Factor-Alpha", - PermissibleValue(text="Recombinant Tumor Necrosis Factor-Alpha") ) - setattr(cls, "Transferrin Receptor-Targeted Liposomal p53 cDNA", - PermissibleValue(text="Transferrin Receptor-Targeted Liposomal p53 cDNA") ) - setattr(cls, "Glembatumumab Vedotin", - PermissibleValue(text="Glembatumumab Vedotin") ) - setattr(cls, "CD73 Inhibitor LY3475070", - PermissibleValue(text="CD73 Inhibitor LY3475070") ) - setattr(cls, "Oncolytic HSV-1 C134", - PermissibleValue(text="Oncolytic HSV-1 C134") ) - setattr(cls, "WT1 Peptide Vaccine WT2725", - PermissibleValue(text="WT1 Peptide Vaccine WT2725") ) - setattr(cls, "Doxorubicin-Magnetic Targeted Carrier Complex", - PermissibleValue(text="Doxorubicin-Magnetic Targeted Carrier Complex") ) - setattr(cls, "Autologous Deep IL-15 Primed T-cells TRQ15-01", - PermissibleValue(text="Autologous Deep IL-15 Primed T-cells TRQ15-01") ) - setattr(cls, "CDK/JAK2/FLT3 Inhibitor TG02 Citrate", - PermissibleValue(text="CDK/JAK2/FLT3 Inhibitor TG02 Citrate") ) - setattr(cls, "Engineered Toxin Body Targeting HER2 MT-5111", - PermissibleValue(text="Engineered Toxin Body Targeting HER2 MT-5111") ) - setattr(cls, "TLC ELL-12", - PermissibleValue(text="TLC ELL-12") ) - setattr(cls, "Nanoparticle Albumin-Bound Rapamycin", - PermissibleValue(text="Nanoparticle Albumin-Bound Rapamycin") ) - setattr(cls, "Etidronate-Cytarabine Conjugate MBC-11", - PermissibleValue(text="Etidronate-Cytarabine Conjugate MBC-11") ) - setattr(cls, "CD28/ICOS Antagonist ALPN-101", - PermissibleValue(text="CD28/ICOS Antagonist ALPN-101") ) - setattr(cls, "Micro Needle Array-Doxorubicin", - PermissibleValue(text="Micro Needle Array-Doxorubicin") ) - setattr(cls, "Testosterone Enanthate", - PermissibleValue(text="Testosterone Enanthate") ) - setattr(cls, "DM4-Conjugated Anti-Cripto Monoclonal Antibody BIIB015", - PermissibleValue(text="DM4-Conjugated Anti-Cripto Monoclonal Antibody BIIB015") ) - setattr(cls, "Broccoli Sprout/Broccoli Seed Extract Supplement", - PermissibleValue(text="Broccoli Sprout/Broccoli Seed Extract Supplement") ) - setattr(cls, "Cisplatin/Vinblastine/Cell Penetration Enhancer Formulation INT230-6", - PermissibleValue(text="Cisplatin/Vinblastine/Cell Penetration Enhancer Formulation INT230-6") ) - setattr(cls, "Bendamustine Hydrochloride", - PermissibleValue(text="Bendamustine Hydrochloride") ) - setattr(cls, "MVA-FCU1 TG4023", - PermissibleValue(text="MVA-FCU1 TG4023") ) - setattr(cls, "Cetuximab Sarotalocan", - PermissibleValue(text="Cetuximab Sarotalocan") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody GC1118", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody GC1118") ) - setattr(cls, "Interferon-gamma-expressing Adenovirus Vaccine ASN-002", - PermissibleValue(text="Interferon-gamma-expressing Adenovirus Vaccine ASN-002") ) - setattr(cls, "Anti-Ep-CAM Monoclonal Antibody ING-1", - PermissibleValue(text="Anti-Ep-CAM Monoclonal Antibody ING-1") ) - setattr(cls, "Gamma-Secretase Inhibitor RO4929097", - PermissibleValue(text="Gamma-Secretase Inhibitor RO4929097") ) - setattr(cls, "Platinum Compound", - PermissibleValue(text="Platinum Compound") ) - setattr(cls, "Pexastimogene Devacirepvec", - PermissibleValue(text="Pexastimogene Devacirepvec") ) - setattr(cls, "mTORC1/mTORC2/DHFR Inhibitor ABTL0812", - PermissibleValue(text="mTORC1/mTORC2/DHFR Inhibitor ABTL0812") ) - setattr(cls, "Aurora B Serine/Threonine Kinase Inhibitor TAK-901", - PermissibleValue(text="Aurora B Serine/Threonine Kinase Inhibitor TAK-901") ) - setattr(cls, "Plk1 Inhibitor BI 2536", - PermissibleValue(text="Plk1 Inhibitor BI 2536") ) - setattr(cls, "Protease-activated Anti-PD-L1 Antibody Prodrug CX-072", - PermissibleValue(text="Protease-activated Anti-PD-L1 Antibody Prodrug CX-072") ) - setattr(cls, "Canertinib Dihydrochloride", - PermissibleValue(text="Canertinib Dihydrochloride") ) - setattr(cls, "Monoclonal T-cell Receptor Anti-CD3 scFv Fusion Protein IMCgp100", - PermissibleValue(text="Monoclonal T-cell Receptor Anti-CD3 scFv Fusion Protein IMCgp100") ) - setattr(cls, "Chromomycin A3", - PermissibleValue(text="Chromomycin A3") ) - setattr(cls, "Mycobacterium w", - PermissibleValue(text="Mycobacterium w") ) - setattr(cls, "Anti-Myeloma Monoclonal Antibody-DM4 Immunoconjugate BT-062", - PermissibleValue(text="Anti-Myeloma Monoclonal Antibody-DM4 Immunoconjugate BT-062") ) - setattr(cls, "Transdermal 17beta-Estradiol Gel BHR-200", - PermissibleValue(text="Transdermal 17beta-Estradiol Gel BHR-200") ) - setattr(cls, "BET Inhibitor RO6870810", - PermissibleValue(text="BET Inhibitor RO6870810") ) - setattr(cls, "Class 1/4 Histone Deacetylase Inhibitor OKI-179", - PermissibleValue(text="Class 1/4 Histone Deacetylase Inhibitor OKI-179") ) - setattr(cls, "BRAF(V600E) Kinase Inhibitor RO5212054", - PermissibleValue(text="BRAF(V600E) Kinase Inhibitor RO5212054") ) - setattr(cls, "Lyophilized Black Raspberry Saliva Substitute", - PermissibleValue(text="Lyophilized Black Raspberry Saliva Substitute") ) - setattr(cls, "MEK 1/2 Inhibitor FCN-159", - PermissibleValue(text="MEK 1/2 Inhibitor FCN-159") ) - setattr(cls, "PGLA/PEG Copolymer-Based Paclitaxel", - PermissibleValue(text="PGLA/PEG Copolymer-Based Paclitaxel") ) - setattr(cls, "Sepantronium Bromide", - PermissibleValue(text="Sepantronium Bromide") ) - setattr(cls, "Anti-CD205 Antibody-drug Conjugate OBT076", - PermissibleValue(text="Anti-CD205 Antibody-drug Conjugate OBT076") ) - setattr(cls, "Anti-HER3 Monoclonal Antibody GSK2849330", - PermissibleValue(text="Anti-HER3 Monoclonal Antibody GSK2849330") ) - setattr(cls, "Dexrazoxane Hydrochloride", - PermissibleValue(text="Dexrazoxane Hydrochloride") ) - setattr(cls, "Recombinant Interferon Alpha 2b-like Protein", - PermissibleValue(text="Recombinant Interferon Alpha 2b-like Protein") ) - setattr(cls, "Dual Variable Domain Immunoglobulin ABT-165", - PermissibleValue(text="Dual Variable Domain Immunoglobulin ABT-165") ) - setattr(cls, "Anti-PD-L1/IL-15 Fusion Protein KD033", - PermissibleValue(text="Anti-PD-L1/IL-15 Fusion Protein KD033") ) - setattr(cls, "FAP/4-1BB-targeting DARPin MP0310", - PermissibleValue(text="FAP/4-1BB-targeting DARPin MP0310") ) - setattr(cls, "Flt3 Ligand/Anti-CTLA-4 Antibody/IL-12 Engineered Oncolytic Vaccinia Virus RIVAL-01", - PermissibleValue(text="Flt3 Ligand/Anti-CTLA-4 Antibody/IL-12 Engineered Oncolytic Vaccinia Virus RIVAL-01") ) - setattr(cls, "Anti-CD19/CD22 CAR NK Cells", - PermissibleValue(text="Anti-CD19/CD22 CAR NK Cells") ) - setattr(cls, "mRNA-derived Prostate Cancer Vaccine CV9104", - PermissibleValue(text="mRNA-derived Prostate Cancer Vaccine CV9104") ) - setattr(cls, "Apoptosis Inducer MPC-2130", - PermissibleValue(text="Apoptosis Inducer MPC-2130") ) - setattr(cls, "Anti-SLITRK6 Monoclonal Antibody-MMAE Conjugate AGS15E", - PermissibleValue(text="Anti-SLITRK6 Monoclonal Antibody-MMAE Conjugate AGS15E") ) - setattr(cls, "Octreotide Pamoate", - PermissibleValue(text="Octreotide Pamoate") ) - setattr(cls, "Anti-human GITR Monoclonal Antibody TRX518", - PermissibleValue(text="Anti-human GITR Monoclonal Antibody TRX518") ) - setattr(cls, "DNA-PK/TOR Kinase Inhibitor CC-115", - PermissibleValue(text="DNA-PK/TOR Kinase Inhibitor CC-115") ) - setattr(cls, "Anti-PD-1/VEGF Bispecific Antibody AK112", - PermissibleValue(text="Anti-PD-1/VEGF Bispecific Antibody AK112") ) - setattr(cls, "Histrelin Acetate", - PermissibleValue(text="Histrelin Acetate") ) - setattr(cls, "IGF-1R/IR Inhibitor KW-2450", - PermissibleValue(text="IGF-1R/IR Inhibitor KW-2450") ) - setattr(cls, "Double-armed TMZ-CD40L/4-1BBL Oncolytic Ad5/35 Adenovirus LOAd703", - PermissibleValue(text="Double-armed TMZ-CD40L/4-1BBL Oncolytic Ad5/35 Adenovirus LOAd703") ) - setattr(cls, "Nelipepimut-S Plus GM-CSF Vaccine", - PermissibleValue(text="Nelipepimut-S Plus GM-CSF Vaccine") ) - setattr(cls, "CDK7 Inhibitor SY-1365", - PermissibleValue(text="CDK7 Inhibitor SY-1365") ) - setattr(cls, "FMS Inhibitor JNJ-40346527", - PermissibleValue(text="FMS Inhibitor JNJ-40346527") ) - setattr(cls, "Anti-RANKL Monoclonal Antibody JMT103", - PermissibleValue(text="Anti-RANKL Monoclonal Antibody JMT103") ) - setattr(cls, "CDK1 Inhibitor BEY1107", - PermissibleValue(text="CDK1 Inhibitor BEY1107") ) - setattr(cls, "Anti-CD30/DM1 Antibody-drug Conjugate F0002", - PermissibleValue(text="Anti-CD30/DM1 Antibody-drug Conjugate F0002") ) - setattr(cls, "4-Nitroestrone 3-Methyl Ether", - PermissibleValue(text="4-Nitroestrone 3-Methyl Ether") ) - setattr(cls, "LMB-1 Immunotoxin", - PermissibleValue(text="LMB-1 Immunotoxin") ) - setattr(cls, "Samrotamab Vedotin", - PermissibleValue(text="Samrotamab Vedotin") ) - setattr(cls, "Topotecan Hydrochloride", - PermissibleValue(text="Topotecan Hydrochloride") ) - setattr(cls, "2-Ethylhydrazide", - PermissibleValue(text="2-Ethylhydrazide") ) - setattr(cls, "Azurin:50-77 Cell Penetrating Peptide p28", - PermissibleValue(text="Azurin:50-77 Cell Penetrating Peptide p28") ) - setattr(cls, "Anti-CD122 Humanized Monoclonal Antibody Mik-Beta-1", - PermissibleValue(text="Anti-CD122 Humanized Monoclonal Antibody Mik-Beta-1") ) - setattr(cls, "NA17-A Antigen", - PermissibleValue(text="NA17-A Antigen") ) - setattr(cls, "Eicosapentaenoic Acid", - PermissibleValue(text="Eicosapentaenoic Acid") ) - setattr(cls, "Tergenpumatucel-L", - PermissibleValue(text="Tergenpumatucel-L") ) - setattr(cls, "Wee1 Inhibitor ZN-c3", - PermissibleValue(text="Wee1 Inhibitor ZN-c3") ) - setattr(cls, "PIM/FLT3 Kinase Inhibitor SEL24", - PermissibleValue(text="PIM/FLT3 Kinase Inhibitor SEL24") ) - setattr(cls, "Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic T Lymphocytes GRm13Z40-2", - PermissibleValue(text="Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic T Lymphocytes GRm13Z40-2") ) - setattr(cls, "FLT3/CDK4/6 Inhibitor FLX925", - PermissibleValue(text="FLT3/CDK4/6 Inhibitor FLX925") ) - setattr(cls, "Anti-HER2 Antibody-drug Conjugate RC48", - PermissibleValue(text="Anti-HER2 Antibody-drug Conjugate RC48") ) - setattr(cls, "Autologous Anti-CD19 CAR-4-1BB-CD3zeta-expressing T-cells CNCT19", - PermissibleValue(text="Autologous Anti-CD19 CAR-4-1BB-CD3zeta-expressing T-cells CNCT19") ) - setattr(cls, "Triazene Derivative TriN2755", - PermissibleValue(text="Triazene Derivative TriN2755") ) - setattr(cls, "Glutaminase Inhibitor CB-839", - PermissibleValue(text="Glutaminase Inhibitor CB-839") ) - setattr(cls, "Lorukafusp alfa", - PermissibleValue(text="Lorukafusp alfa") ) - setattr(cls, "Anti-HER2 Monoclonal Antibody HLX22", - PermissibleValue(text="Anti-HER2 Monoclonal Antibody HLX22") ) - setattr(cls, "Ovapuldencel-T", - PermissibleValue(text="Ovapuldencel-T") ) - setattr(cls, "CYP17 Inhibitor CFG920", - PermissibleValue(text="CYP17 Inhibitor CFG920") ) - setattr(cls, "Idarubicin Hydrochloride", - PermissibleValue(text="Idarubicin Hydrochloride") ) - setattr(cls, "Glyco-engineered Anti-CD20 Monoclonal Antibody CHO H01", - PermissibleValue(text="Glyco-engineered Anti-CD20 Monoclonal Antibody CHO H01") ) - setattr(cls, "Wee1 Kinase Inhibitor Debio 0123", - PermissibleValue(text="Wee1 Kinase Inhibitor Debio 0123") ) - setattr(cls, "Anti-CEACAM6 AFAIKL2 Antibody Fragment/Jack Bean Urease Immunoconjugate L-DOS47", - PermissibleValue(text="Anti-CEACAM6 AFAIKL2 Antibody Fragment/Jack Bean Urease Immunoconjugate L-DOS47") ) - setattr(cls, "Prostaglandin E2 EP4 Receptor Inhibitor E7046", - PermissibleValue(text="Prostaglandin E2 EP4 Receptor Inhibitor E7046") ) - setattr(cls, "Anti-myostatin Monoclonal Antibody LY2495655", - PermissibleValue(text="Anti-myostatin Monoclonal Antibody LY2495655") ) - setattr(cls, "4-Thio-2-deoxycytidine", - PermissibleValue(text="4-Thio-2-deoxycytidine") ) - setattr(cls, "Oligo-fucoidan", - PermissibleValue(text="Oligo-fucoidan") ) - setattr(cls, "Dolastatin 15", - PermissibleValue(text="Dolastatin 15") ) - setattr(cls, "Liothyronine I-131", - PermissibleValue(text="Liothyronine I-131") ) - setattr(cls, "Anti-CD20/Anti-CD3 Bispecific IgM Antibody IGM2323", - PermissibleValue(text="Anti-CD20/Anti-CD3 Bispecific IgM Antibody IGM2323") ) - setattr(cls, "Alpha V Beta 8 Antagonist PF-06940434", - PermissibleValue(text="Alpha V Beta 8 Antagonist PF-06940434") ) - setattr(cls, "Anti-CD137 Agonistic Monoclonal Antibody AGEN2373", - PermissibleValue(text="Anti-CD137 Agonistic Monoclonal Antibody AGEN2373") ) - setattr(cls, "STAT Inhibitor OPB-111077", - PermissibleValue(text="STAT Inhibitor OPB-111077") ) - setattr(cls, "Interleukin-12-Fc Fusion Protein DF6002", - PermissibleValue(text="Interleukin-12-Fc Fusion Protein DF6002") ) - setattr(cls, "S-Adenosylmethionine", - PermissibleValue(text="S-Adenosylmethionine") ) - setattr(cls, "Yttrium Y 90 Monoclonal Antibody BrE-3", - PermissibleValue(text="Yttrium Y 90 Monoclonal Antibody BrE-3") ) - setattr(cls, "Esorubicin Hydrochloride", - PermissibleValue(text="Esorubicin Hydrochloride") ) - setattr(cls, "Nadofaragene Firadenovec", - PermissibleValue(text="Nadofaragene Firadenovec") ) - setattr(cls, "Anti-ErbB3 Monoclonal Antibody AV-203", - PermissibleValue(text="Anti-ErbB3 Monoclonal Antibody AV-203") ) - setattr(cls, "Interleukin-15/Interleukin-15 Receptor Alpha Sushi+ Domain Fusion Protein SO-C101", - PermissibleValue(text="Interleukin-15/Interleukin-15 Receptor Alpha Sushi+ Domain Fusion Protein SO-C101") ) - setattr(cls, "FGFR Inhibitor AZD4547", - PermissibleValue(text="FGFR Inhibitor AZD4547") ) - setattr(cls, "Transferrin-CRM107", - PermissibleValue(text="Transferrin-CRM107") ) - setattr(cls, "PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701", - PermissibleValue(text="PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701") ) - setattr(cls, "Doxorubicin Prodrug L-377,202", - PermissibleValue(text="Doxorubicin Prodrug L-377,202") ) - setattr(cls, "Live-Attenuated Listeria Encoding Human Mesothelin Vaccine CRS-207", - PermissibleValue(text="Live-Attenuated Listeria Encoding Human Mesothelin Vaccine CRS-207") ) - setattr(cls, "Recombinant Interleukin-2", - PermissibleValue(text="Recombinant Interleukin-2") ) - setattr(cls, "Multi-epitope HER2 Peptide Vaccine TPIV100", - PermissibleValue(text="Multi-epitope HER2 Peptide Vaccine TPIV100") ) - setattr(cls, "Boronophenylalanine-Fructose Complex", - PermissibleValue(text="Boronophenylalanine-Fructose Complex") ) - setattr(cls, "Synthetic Long E6 Peptide-Toll-like Receptor Ligand Conjugate Vaccine ISA201", - PermissibleValue(text="Synthetic Long E6 Peptide-Toll-like Receptor Ligand Conjugate Vaccine ISA201") ) - setattr(cls, "IGF-1R Inhibitor", - PermissibleValue(text="IGF-1R Inhibitor") ) - setattr(cls, "Depatuxizumab Mafodotin", - PermissibleValue(text="Depatuxizumab Mafodotin") ) - setattr(cls, "Autologous Tetravalent Dendritic Cell Vaccine MIDRIX4-LUNG", - PermissibleValue(text="Autologous Tetravalent Dendritic Cell Vaccine MIDRIX4-LUNG") ) - setattr(cls, "PKA Regulatory Subunit RIalpha Mixed-Backbone Antisense Oligonucleotide GEM 231", - PermissibleValue(text="PKA Regulatory Subunit RIalpha Mixed-Backbone Antisense Oligonucleotide GEM 231") ) - setattr(cls, "pan FGFR Inhibitor PRN1371", - PermissibleValue(text="pan FGFR Inhibitor PRN1371") ) - setattr(cls, "Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1", - PermissibleValue(text="Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1") ) - setattr(cls, "HER2 Tri-specific Natural Killer Cell Engager DF1001", - PermissibleValue(text="HER2 Tri-specific Natural Killer Cell Engager DF1001") ) - setattr(cls, "Tiomolibdate Choline", - PermissibleValue(text="Tiomolibdate Choline") ) - setattr(cls, "Nucleolin Antagonist IPP-204106N", - PermissibleValue(text="Nucleolin Antagonist IPP-204106N") ) - setattr(cls, "Ras Inhibitor", - PermissibleValue(text="Ras Inhibitor") ) - setattr(cls, "Motexafin Gadolinium", - PermissibleValue(text="Motexafin Gadolinium") ) - setattr(cls, "Nab-paclitaxel", - PermissibleValue(text="Nab-paclitaxel") ) - setattr(cls, "Trastuzumab Duocarmazine", - PermissibleValue(text="Trastuzumab Duocarmazine") ) - setattr(cls, "Anti-CD39 Monoclonal Antibody TTX-030", - PermissibleValue(text="Anti-CD39 Monoclonal Antibody TTX-030") ) - setattr(cls, "Paclitaxel-Loaded Polymeric Micelle", - PermissibleValue(text="Paclitaxel-Loaded Polymeric Micelle") ) - setattr(cls, "Anti-sCLU Monoclonal Antibody AB-16B5", - PermissibleValue(text="Anti-sCLU Monoclonal Antibody AB-16B5") ) - setattr(cls, "ALK/ROS1/Met Inhibitor TQ-B3101", - PermissibleValue(text="ALK/ROS1/Met Inhibitor TQ-B3101") ) - setattr(cls, "EGFR/HER1/HER2 Inhibitor PKI166", - PermissibleValue(text="EGFR/HER1/HER2 Inhibitor PKI166") ) - setattr(cls, "CDK4/6 Inhibitor HS-10342", - PermissibleValue(text="CDK4/6 Inhibitor HS-10342") ) - setattr(cls, "BMS-214662", - PermissibleValue(text="BMS-214662") ) - setattr(cls, "Yttrium Y 90-DOTA-di-HSG Peptide IMP-288", - PermissibleValue(text="Yttrium Y 90-DOTA-di-HSG Peptide IMP-288") ) - setattr(cls, "V930 Vaccine", - PermissibleValue(text="V930 Vaccine") ) - setattr(cls, "Ad-RTS-hIL-12", - PermissibleValue(text="Ad-RTS-hIL-12") ) - setattr(cls, "Autologous AXL-targeted CAR T-cells CCT301-38", - PermissibleValue(text="Autologous AXL-targeted CAR T-cells CCT301-38") ) - setattr(cls, "Mitosis Inhibitor T 1101 Tosylate", - PermissibleValue(text="Mitosis Inhibitor T 1101 Tosylate") ) - setattr(cls, "Anti-ICOS Agonist Monoclonal Antibody BMS-986226", - PermissibleValue(text="Anti-ICOS Agonist Monoclonal Antibody BMS-986226") ) - setattr(cls, "HPV-16 E6 Peptides Vaccine/Candida albicans Extract", - PermissibleValue(text="HPV-16 E6 Peptides Vaccine/Candida albicans Extract") ) - setattr(cls, "Eg5 Kinesin-Related Motor Protein Inhibitor ARQ 621", - PermissibleValue(text="Eg5 Kinesin-Related Motor Protein Inhibitor ARQ 621") ) - setattr(cls, "Glecaprevir/Pibrentasvir", - PermissibleValue(text="Glecaprevir/Pibrentasvir") ) - setattr(cls, "Extended-release Onapristone", - PermissibleValue(text="Extended-release Onapristone") ) - setattr(cls, "PEOX-based Polymer Encapsulated Paclitaxel FID-007", - PermissibleValue(text="PEOX-based Polymer Encapsulated Paclitaxel FID-007") ) - setattr(cls, "PI3Kalpha Inhibitor AZD8835", - PermissibleValue(text="PI3Kalpha Inhibitor AZD8835") ) - setattr(cls, "Tipiracil Hydrochloride", - PermissibleValue(text="Tipiracil Hydrochloride") ) - setattr(cls, "Rosiglitazone Maleate", - PermissibleValue(text="Rosiglitazone Maleate") ) - setattr(cls, "EZH2 Inhibitor CPI-1205", - PermissibleValue(text="EZH2 Inhibitor CPI-1205") ) - setattr(cls, "GS/pan-Notch Inhibitor BMS-986115", - PermissibleValue(text="GS/pan-Notch Inhibitor BMS-986115") ) - setattr(cls, "Tyrosine Kinase Inhibitor OSI-930", - PermissibleValue(text="Tyrosine Kinase Inhibitor OSI-930") ) - setattr(cls, "Anti-CD38 Monoclonal Antibody MOR03087", - PermissibleValue(text="Anti-CD38 Monoclonal Antibody MOR03087") ) - setattr(cls, "HDAC Inhibitor CKD-581", - PermissibleValue(text="HDAC Inhibitor CKD-581") ) - setattr(cls, "PI3K Inhibitor GDC-0084", - PermissibleValue(text="PI3K Inhibitor GDC-0084") ) - setattr(cls, "PI3Kbeta Inhibitor AZD8186", - PermissibleValue(text="PI3Kbeta Inhibitor AZD8186") ) - setattr(cls, "C-VISA BikDD:Liposome", - PermissibleValue(text="C-VISA BikDD:Liposome") ) - setattr(cls, "Recombinant Adenovirus-p53 SCH-58500", - PermissibleValue(text="Recombinant Adenovirus-p53 SCH-58500") ) - setattr(cls, "Clodronate Disodium", - PermissibleValue(text="Clodronate Disodium") ) - setattr(cls, "Isocoumarin NM-3", - PermissibleValue(text="Isocoumarin NM-3") ) - setattr(cls, "EGFR/HER2 Kinase Inhibitor TAK-285", - PermissibleValue(text="EGFR/HER2 Kinase Inhibitor TAK-285") ) - setattr(cls, "Apoptosis Inducer BZL101", - PermissibleValue(text="Apoptosis Inducer BZL101") ) - setattr(cls, "IAP Inhibitor APG-1387", - PermissibleValue(text="IAP Inhibitor APG-1387") ) - setattr(cls, "Prostate Health Cocktail Dietary Supplement", - PermissibleValue(text="Prostate Health Cocktail Dietary Supplement") ) - setattr(cls, "PEP-3-KLH Conjugate Vaccine", - PermissibleValue(text="PEP-3-KLH Conjugate Vaccine") ) - setattr(cls, "NAMPT Inhibitor OT-82", - PermissibleValue(text="NAMPT Inhibitor OT-82") ) - setattr(cls, "Viagenpumatucel-L", - PermissibleValue(text="Viagenpumatucel-L") ) - setattr(cls, "BRD4 Inhibitor PLX51107", - PermissibleValue(text="BRD4 Inhibitor PLX51107") ) - setattr(cls, "Yttrium Y 90 Monoclonal Antibody Hu3S193", - PermissibleValue(text="Yttrium Y 90 Monoclonal Antibody Hu3S193") ) - setattr(cls, "Multikinase Inhibitor AEE788", - PermissibleValue(text="Multikinase Inhibitor AEE788") ) - setattr(cls, "Risperidone Formulation in Rumenic Acid", - PermissibleValue(text="Risperidone Formulation in Rumenic Acid") ) - setattr(cls, "LRP5 Antagonist BI 905681", - PermissibleValue(text="LRP5 Antagonist BI 905681") ) - setattr(cls, "LSD1 Inhibitor IMG-7289", - PermissibleValue(text="LSD1 Inhibitor IMG-7289") ) - setattr(cls, "Antibody-drug Conjugate PF-06664178", - PermissibleValue(text="Antibody-drug Conjugate PF-06664178") ) - setattr(cls, "Allogeneic Irradiated Melanoma Cell Vaccine CSF470", - PermissibleValue(text="Allogeneic Irradiated Melanoma Cell Vaccine CSF470") ) - setattr(cls, "Palbociclib Isethionate", - PermissibleValue(text="Palbociclib Isethionate") ) - setattr(cls, "Endothelin B Receptor Blocker ENB 003", - PermissibleValue(text="Endothelin B Receptor Blocker ENB 003") ) - setattr(cls, "Aerosol Gemcitabine", - PermissibleValue(text="Aerosol Gemcitabine") ) - setattr(cls, "Live-attenuated Double-deleted Listeria monocytogenes Bacteria JNJ-64041809", - PermissibleValue(text="Live-attenuated Double-deleted Listeria monocytogenes Bacteria JNJ-64041809") ) - setattr(cls, "Corticorelin Acetate", - PermissibleValue(text="Corticorelin Acetate") ) - setattr(cls, "Ex Vivo-expanded Autologous T Cells IMA101", - PermissibleValue(text="Ex Vivo-expanded Autologous T Cells IMA101") ) - setattr(cls, "Protein Arginine Methyltransferase 5 Inhibitor PRT543", - PermissibleValue(text="Protein Arginine Methyltransferase 5 Inhibitor PRT543") ) - setattr(cls, "Inosine 5'-monophosphate Dehydrogenase Inhibitor FF-10501-01", - PermissibleValue(text="Inosine 5'-monophosphate Dehydrogenase Inhibitor FF-10501-01") ) - setattr(cls, "Oncolytic Newcastle Disease Virus MEDI5395", - PermissibleValue(text="Oncolytic Newcastle Disease Virus MEDI5395") ) - setattr(cls, "Maekmoondong-tang", - PermissibleValue(text="Maekmoondong-tang") ) - setattr(cls, "Anti-CA6-DM4 Immunoconjugate SAR566658", - PermissibleValue(text="Anti-CA6-DM4 Immunoconjugate SAR566658") ) - setattr(cls, "Phaleria macrocarpa Extract DLBS-1425", - PermissibleValue(text="Phaleria macrocarpa Extract DLBS-1425") ) - setattr(cls, "EGFR Inhibitor PD-168393", - PermissibleValue(text="EGFR Inhibitor PD-168393") ) - setattr(cls, "Nanoparticle Paclitaxel Ointment SOR007", - PermissibleValue(text="Nanoparticle Paclitaxel Ointment SOR007") ) - setattr(cls, "Anti-CD38/CD28xCD3 Tri-specific Monoclonal Antibody SAR442257", - PermissibleValue(text="Anti-CD38/CD28xCD3 Tri-specific Monoclonal Antibody SAR442257") ) - setattr(cls, "Anti-5T4 Antibody-drug Conjugate ASN004", - PermissibleValue(text="Anti-5T4 Antibody-drug Conjugate ASN004") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Anti-Nucleolin Aptamer AS1411", - PermissibleValue(text="Anti-Nucleolin Aptamer AS1411") ) - setattr(cls, "Polymer-conjugated IL-15 Receptor Agonist NKTR-255", - PermissibleValue(text="Polymer-conjugated IL-15 Receptor Agonist NKTR-255") ) - setattr(cls, "ERK1/2 Inhibitor KO-947", - PermissibleValue(text="ERK1/2 Inhibitor KO-947") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody F520", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody F520") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody BCD-135", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody BCD-135") ) - setattr(cls, "Anti-CD123 ADC IMGN632", - PermissibleValue(text="Anti-CD123 ADC IMGN632") ) - setattr(cls, "Aurora A Kinase Inhibitor MK5108", - PermissibleValue(text="Aurora A Kinase Inhibitor MK5108") ) - setattr(cls, "Anti-PGF Monoclonal Antibody RO5323441", - PermissibleValue(text="Anti-PGF Monoclonal Antibody RO5323441") ) - setattr(cls, "Alflutinib Mesylate", - PermissibleValue(text="Alflutinib Mesylate") ) - setattr(cls, "CDK4/6 Inhibitor", - PermissibleValue(text="CDK4/6 Inhibitor") ) - setattr(cls, "Daunorubicin Citrate", - PermissibleValue(text="Daunorubicin Citrate") ) - setattr(cls, "Dihydroorotate Dehydrogenase Inhibitor AG-636", - PermissibleValue(text="Dihydroorotate Dehydrogenase Inhibitor AG-636") ) - setattr(cls, "Mitoguazone Dihydrochloride", - PermissibleValue(text="Mitoguazone Dihydrochloride") ) - setattr(cls, "Nucleoside Analog DFP-10917", - PermissibleValue(text="Nucleoside Analog DFP-10917") ) - setattr(cls, "EGFR Mutant-specific Inhibitor BPI-7711", - PermissibleValue(text="EGFR Mutant-specific Inhibitor BPI-7711") ) - setattr(cls, "ALK Inhibitor WX-0593", - PermissibleValue(text="ALK Inhibitor WX-0593") ) - setattr(cls, "Anti-GCC Antibody-Drug Conjugate MLN0264", - PermissibleValue(text="Anti-GCC Antibody-Drug Conjugate MLN0264") ) - setattr(cls, "Tubulin Polymerization Inhibitor VERU-111", - PermissibleValue(text="Tubulin Polymerization Inhibitor VERU-111") ) - setattr(cls, "Anti-VEGF/TGF-beta 1 Fusion Protein HB-002T", - PermissibleValue(text="Anti-VEGF/TGF-beta 1 Fusion Protein HB-002T") ) - setattr(cls, "Iodine I 131 Anti-Fibronectin Antibody Fragment L19-SIP", - PermissibleValue(text="Iodine I 131 Anti-Fibronectin Antibody Fragment L19-SIP") ) - setattr(cls, "ATM Kinase Inhibitor AZD1390", - PermissibleValue(text="ATM Kinase Inhibitor AZD1390") ) - setattr(cls, "Anti-HER2 Antibody-drug Conjugate DP303c", - PermissibleValue(text="Anti-HER2 Antibody-drug Conjugate DP303c") ) - setattr(cls, "Daunorubicin Hydrochloride", - PermissibleValue(text="Daunorubicin Hydrochloride") ) - setattr(cls, "Anti-CTLA4 Monoclonal Antibody BMS-986218", - PermissibleValue(text="Anti-CTLA4 Monoclonal Antibody BMS-986218") ) - setattr(cls, "Anti-CD37 MMAE Antibody-drug Conjugate AGS67E", - PermissibleValue(text="Anti-CD37 MMAE Antibody-drug Conjugate AGS67E") ) - setattr(cls, "CD40 Agonistic Monoclonal Antibody APX005M", - PermissibleValue(text="CD40 Agonistic Monoclonal Antibody APX005M") ) - setattr(cls, "Human MOAB LICO 28a32", - PermissibleValue(text="Human MOAB LICO 28a32") ) - setattr(cls, "Anti-Integrin Monoclonal Antibody-DM4 Immunoconjugate IMGN388", - PermissibleValue(text="Anti-Integrin Monoclonal Antibody-DM4 Immunoconjugate IMGN388") ) - setattr(cls, "Bruceanol B", - PermissibleValue(text="Bruceanol B") ) - setattr(cls, "Factor VII-targeting Immunoconjugate Protein ICON-1", - PermissibleValue(text="Factor VII-targeting Immunoconjugate Protein ICON-1") ) - setattr(cls, "JAK Inhibitor", - PermissibleValue(text="JAK Inhibitor") ) - setattr(cls, "Vinorelbine Tartrate Emulsion", - PermissibleValue(text="Vinorelbine Tartrate Emulsion") ) - setattr(cls, "Anti-CD19 Monoclonal Antibody DI-B4", - PermissibleValue(text="Anti-CD19 Monoclonal Antibody DI-B4") ) - setattr(cls, "Letetresgene Autoleucel", - PermissibleValue(text="Letetresgene Autoleucel") ) - setattr(cls, "SERD GDC-9545", - PermissibleValue(text="SERD GDC-9545") ) - setattr(cls, "Octreotide Acetate", - PermissibleValue(text="Octreotide Acetate") ) - setattr(cls, "Yttrium Y-90 Epratuzumab Tetraxetan", - PermissibleValue(text="Yttrium Y-90 Epratuzumab Tetraxetan") ) - setattr(cls, "Dichloroallyl Lawsone", - PermissibleValue(text="Dichloroallyl Lawsone") ) - setattr(cls, "Triamcinolone Acetonide", - PermissibleValue(text="Triamcinolone Acetonide") ) - setattr(cls, "Radiolabeled CC49", - PermissibleValue(text="Radiolabeled CC49") ) - setattr(cls, "PI3K/mTOR Kinase Inhibitor WXFL10030390", - PermissibleValue(text="PI3K/mTOR Kinase Inhibitor WXFL10030390") ) - setattr(cls, "Anti-CD22 ADC TRPH-222", - PermissibleValue(text="Anti-CD22 ADC TRPH-222") ) - setattr(cls, "ATR Kinase Inhibitor M1774", - PermissibleValue(text="ATR Kinase Inhibitor M1774") ) - setattr(cls, "Anti-PD-1 Antibody-interleukin-21 Mutein Fusion Protein AMG 256", - PermissibleValue(text="Anti-PD-1 Antibody-interleukin-21 Mutein Fusion Protein AMG 256") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody CS1003", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody CS1003") ) - setattr(cls, "Defactinib Hydrochloride", - PermissibleValue(text="Defactinib Hydrochloride") ) - setattr(cls, "Cyclophosphamide Anhydrous", - PermissibleValue(text="Cyclophosphamide Anhydrous") ) - setattr(cls, "Indatuximab Ravtansine", - PermissibleValue(text="Indatuximab Ravtansine") ) - setattr(cls, "Aurora Kinase Inhibitor PF-03814735", - PermissibleValue(text="Aurora Kinase Inhibitor PF-03814735") ) - setattr(cls, "Monoclonal Antibody HuPAM4", - PermissibleValue(text="Monoclonal Antibody HuPAM4") ) - setattr(cls, "Asulacrine Isethionate", - PermissibleValue(text="Asulacrine Isethionate") ) - setattr(cls, "eIF4E Antisense Oligonucleotide ISIS 183750", - PermissibleValue(text="eIF4E Antisense Oligonucleotide ISIS 183750") ) - setattr(cls, "Ginsenoside Rg3 Capsule", - PermissibleValue(text="Ginsenoside Rg3 Capsule") ) - setattr(cls, "Autologous Universal CAR-expressing T-lymphocytes UniCAR02-T", - PermissibleValue(text="Autologous Universal CAR-expressing T-lymphocytes UniCAR02-T") ) - setattr(cls, "Anti-CDH6 Antibody-drug Conjugate HKT288", - PermissibleValue(text="Anti-CDH6 Antibody-drug Conjugate HKT288") ) - setattr(cls, "cFMS Tyrosine Kinase Inhibitor ARRY-382", - PermissibleValue(text="cFMS Tyrosine Kinase Inhibitor ARRY-382") ) - setattr(cls, "Anti-LAG3 Monoclonal Antibody TSR-033", - PermissibleValue(text="Anti-LAG3 Monoclonal Antibody TSR-033") ) - setattr(cls, "Everolimus Tablets for Oral Suspension", - PermissibleValue(text="Everolimus Tablets for Oral Suspension") ) - setattr(cls, "Folate Receptor Targeted Epothilone BMS753493", - PermissibleValue(text="Folate Receptor Targeted Epothilone BMS753493") ) - setattr(cls, "Liarozole Fumarate", - PermissibleValue(text="Liarozole Fumarate") ) - setattr(cls, "EGFR/FLT3/Abl Inhibitor SKLB1028", - PermissibleValue(text="EGFR/FLT3/Abl Inhibitor SKLB1028") ) - setattr(cls, "Oral Aminolevulinic Acid Hydrochloride", - PermissibleValue(text="Oral Aminolevulinic Acid Hydrochloride") ) - setattr(cls, "Antibody-Drug Conjugate DFRF4539A", - PermissibleValue(text="Antibody-Drug Conjugate DFRF4539A") ) - setattr(cls, "Calculus bovis/Moschus/Olibanum/Myrrha Capsule", - PermissibleValue(text="Calculus bovis/Moschus/Olibanum/Myrrha Capsule") ) - setattr(cls, "Anti-CD20 Monoclonal Antibody-Interferon-alpha Fusion Protein IGN002", - PermissibleValue(text="Anti-CD20 Monoclonal Antibody-Interferon-alpha Fusion Protein IGN002") ) - setattr(cls, "Recombinant Human Angiotensin Converting Enzyme 2 APN01", - PermissibleValue(text="Recombinant Human Angiotensin Converting Enzyme 2 APN01") ) - setattr(cls, "Innate Immunostimulator rBBX-01", - PermissibleValue(text="Innate Immunostimulator rBBX-01") ) - setattr(cls, "Anti-ErbB3 Monoclonal Antibody REGN1400", - PermissibleValue(text="Anti-ErbB3 Monoclonal Antibody REGN1400") ) - setattr(cls, "Oportuzumab Monatox", - PermissibleValue(text="Oportuzumab Monatox") ) - setattr(cls, "Cisplatin-E Therapeutic Implant", - PermissibleValue(text="Cisplatin-E Therapeutic Implant") ) - setattr(cls, "FGF/FGFR Pathway Inhibitor E7090", - PermissibleValue(text="FGF/FGFR Pathway Inhibitor E7090") ) - setattr(cls, "FPV-Brachyury-TRICOM Vaccine", - PermissibleValue(text="FPV-Brachyury-TRICOM Vaccine") ) - setattr(cls, "Epothilone KOS-1584", - PermissibleValue(text="Epothilone KOS-1584") ) - setattr(cls, "CENP-E Inhibitor GSK-923295", - PermissibleValue(text="CENP-E Inhibitor GSK-923295") ) - setattr(cls, "Nitroglycerin Transdermal Patch", - PermissibleValue(text="Nitroglycerin Transdermal Patch") ) - setattr(cls, "Autologous Prostate Stem Cell Antigen-specific CAR T Cells BPX-601", - PermissibleValue(text="Autologous Prostate Stem Cell Antigen-specific CAR T Cells BPX-601") ) - setattr(cls, "Herba Scutellaria Barbata", - PermissibleValue(text="Herba Scutellaria Barbata") ) - setattr(cls, "Adenovirus 5/F35-Human Guanylyl Cyclase C-PADRE", - PermissibleValue(text="Adenovirus 5/F35-Human Guanylyl Cyclase C-PADRE") ) - setattr(cls, "Rituximab and Hyaluronidase Human", - PermissibleValue(text="Rituximab and Hyaluronidase Human") ) - setattr(cls, "TSP-1 Mimetic ABT-510", - PermissibleValue(text="TSP-1 Mimetic ABT-510") ) - setattr(cls, "Anti-PSMA Monoclonal Antibody MLN591-DM1 Immunoconjugate MLN2704", - PermissibleValue(text="Anti-PSMA Monoclonal Antibody MLN591-DM1 Immunoconjugate MLN2704") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody CBT-502", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody CBT-502") ) - setattr(cls, "Prime Cancer Vaccine MVA-BN-CV301", - PermissibleValue(text="Prime Cancer Vaccine MVA-BN-CV301") ) - setattr(cls, "Sustained-release Lipid Inhaled Cisplatin", - PermissibleValue(text="Sustained-release Lipid Inhaled Cisplatin") ) - setattr(cls, "Camptothecin Sodium", - PermissibleValue(text="Camptothecin Sodium") ) - setattr(cls, "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells CT053", - PermissibleValue(text="Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells CT053") ) - setattr(cls, "Anti-CD71/vcMMAE Probody-drug Conjugate CX-2029", - PermissibleValue(text="Anti-CD71/vcMMAE Probody-drug Conjugate CX-2029") ) - setattr(cls, "WT1-A10/AS01B Immunotherapeutic GSK2130579A", - PermissibleValue(text="WT1-A10/AS01B Immunotherapeutic GSK2130579A") ) - setattr(cls, "Allogeneic CS1-specific Universal CAR-expressing T-lymphocytes UCARTCS1A", - PermissibleValue(text="Allogeneic CS1-specific Universal CAR-expressing T-lymphocytes UCARTCS1A") ) - setattr(cls, "VEGFR2/PDGFR/c-Kit/Flt-3 Inhibitor SU014813", - PermissibleValue(text="VEGFR2/PDGFR/c-Kit/Flt-3 Inhibitor SU014813") ) - setattr(cls, "MET Tyrosine Kinase Inhibitor PF-04217903", - PermissibleValue(text="MET Tyrosine Kinase Inhibitor PF-04217903") ) - setattr(cls, "Lutetium Lu 177-Edotreotide", - PermissibleValue(text="Lutetium Lu 177-Edotreotide") ) - setattr(cls, "Rice Bran", - PermissibleValue(text="Rice Bran") ) - setattr(cls, "Coriolus Versicolor Extract", - PermissibleValue(text="Coriolus Versicolor Extract") ) - setattr(cls, "Aurora Kinase Inhibitor MLN8054", - PermissibleValue(text="Aurora Kinase Inhibitor MLN8054") ) - setattr(cls, "ATM Inhibitor M 3541", - PermissibleValue(text="ATM Inhibitor M 3541") ) - setattr(cls, "Soy Isoflavones", - PermissibleValue(text="Soy Isoflavones") ) - setattr(cls, "Folate-FITC", - PermissibleValue(text="Folate-FITC") ) - setattr(cls, "pan-RAF Kinase Inhibitor TAK-580", - PermissibleValue(text="pan-RAF Kinase Inhibitor TAK-580") ) - setattr(cls, "Iodine I 131 Monoclonal Antibody G-250", - PermissibleValue(text="Iodine I 131 Monoclonal Antibody G-250") ) - setattr(cls, "Actinium Ac 225 Lintuzumab", - PermissibleValue(text="Actinium Ac 225 Lintuzumab") ) - setattr(cls, "ERK Inhibitor CC-90003", - PermissibleValue(text="ERK Inhibitor CC-90003") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody BI 754091", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody BI 754091") ) - setattr(cls, "PI3K-delta Inhibitor SHC014748M", - PermissibleValue(text="PI3K-delta Inhibitor SHC014748M") ) - setattr(cls, "Copper Cu 64-ATSM", - PermissibleValue(text="Copper Cu 64-ATSM") ) - setattr(cls, "Lm-tLLO-neoantigens Vaccine ADXS-NEO", - PermissibleValue(text="Lm-tLLO-neoantigens Vaccine ADXS-NEO") ) - setattr(cls, "Anti-c-Met Monoclonal Antibody ABT-700", - PermissibleValue(text="Anti-c-Met Monoclonal Antibody ABT-700") ) - setattr(cls, "Anti-CD37 Bispecific Monoclonal Antibody GEN3009", - PermissibleValue(text="Anti-CD37 Bispecific Monoclonal Antibody GEN3009") ) - setattr(cls, "Aclacinomycin B", - PermissibleValue(text="Aclacinomycin B") ) - setattr(cls, "Personalized Neoantigen DNA Vaccine GNOS-PV01", - PermissibleValue(text="Personalized Neoantigen DNA Vaccine GNOS-PV01") ) - setattr(cls, "Poly-gamma Glutamic Acid", - PermissibleValue(text="Poly-gamma Glutamic Acid") ) - setattr(cls, "Eflornithine Hydrochloride", - PermissibleValue(text="Eflornithine Hydrochloride") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody LY3300054", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody LY3300054") ) - setattr(cls, "Fascin Inhibitor NP-G2-044", - PermissibleValue(text="Fascin Inhibitor NP-G2-044") ) - setattr(cls, "MVA Tumor-specific Neoantigen Boosting Vaccine MVA-209-FSP", - PermissibleValue(text="MVA Tumor-specific Neoantigen Boosting Vaccine MVA-209-FSP") ) - setattr(cls, "Hsp90 Inhibitor XL888", - PermissibleValue(text="Hsp90 Inhibitor XL888") ) - setattr(cls, "RET Inhibitor DS-5010", - PermissibleValue(text="RET Inhibitor DS-5010") ) - setattr(cls, "Topoisomerase I Inhibitor LMP400", - PermissibleValue(text="Topoisomerase I Inhibitor LMP400") ) - setattr(cls, "IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051", - PermissibleValue(text="IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051") ) - setattr(cls, "MEK Inhibitor SHR 7390", - PermissibleValue(text="MEK Inhibitor SHR 7390") ) - setattr(cls, "KRAS G12C Inhibitor GDC-6036", - PermissibleValue(text="KRAS G12C Inhibitor GDC-6036") ) - setattr(cls, "Docetaxel Anhydrous", - PermissibleValue(text="Docetaxel Anhydrous") ) - setattr(cls, "Onalespib Lactate", - PermissibleValue(text="Onalespib Lactate") ) - setattr(cls, "FLT3 Inhibitor HM43239", - PermissibleValue(text="FLT3 Inhibitor HM43239") ) - setattr(cls, "Monoclonal Antibody SGN-14", - PermissibleValue(text="Monoclonal Antibody SGN-14") ) - setattr(cls, "Anti-CD19/Anti-CD22 Bispecific Immunotoxin DT2219ARL", - PermissibleValue(text="Anti-CD19/Anti-CD22 Bispecific Immunotoxin DT2219ARL") ) - setattr(cls, "Quinacrine Hydrochloride", - PermissibleValue(text="Quinacrine Hydrochloride") ) - setattr(cls, "Masitinib Mesylate", - PermissibleValue(text="Masitinib Mesylate") ) - setattr(cls, "PI3K-delta Inhibitor PWT143", - PermissibleValue(text="PI3K-delta Inhibitor PWT143") ) - setattr(cls, "PI3K-beta Inhibitor GSK2636771", - PermissibleValue(text="PI3K-beta Inhibitor GSK2636771") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody SCT200", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody SCT200") ) - setattr(cls, "Src/Abl Kinase Inhibitor AZD0424", - PermissibleValue(text="Src/Abl Kinase Inhibitor AZD0424") ) - setattr(cls, "XIAP/cIAP1 Antagonist ASTX660", - PermissibleValue(text="XIAP/cIAP1 Antagonist ASTX660") ) - setattr(cls, "Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100", - PermissibleValue(text="Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100") ) - setattr(cls, "Praluzatamab Ravtansine", - PermissibleValue(text="Praluzatamab Ravtansine") ) - setattr(cls, "Icotinib Hydrochloride", - PermissibleValue(text="Icotinib Hydrochloride") ) - setattr(cls, "O6-Benzylguanine", - PermissibleValue(text="O6-Benzylguanine") ) - setattr(cls, "CDK4 Inhibitor P1446A-05", - PermissibleValue(text="CDK4 Inhibitor P1446A-05") ) - setattr(cls, "Liposome-encapsulated miR-34 Mimic MRX34", - PermissibleValue(text="Liposome-encapsulated miR-34 Mimic MRX34") ) - setattr(cls, "Actinium Ac 225-FPI-1434", - PermissibleValue(text="Actinium Ac 225-FPI-1434") ) - setattr(cls, "Autologous Mesenchymal Stem Cells Apceth_101", - PermissibleValue(text="Autologous Mesenchymal Stem Cells Apceth_101") ) - setattr(cls, "Antibody-drug Conjugate ABBV-176", - PermissibleValue(text="Antibody-drug Conjugate ABBV-176") ) - setattr(cls, "Bispecific Antibody MDX-H210", - PermissibleValue(text="Bispecific Antibody MDX-H210") ) - setattr(cls, "Topoisomerase I/II Inhibitor NEV-801", - PermissibleValue(text="Topoisomerase I/II Inhibitor NEV-801") ) - setattr(cls, "TM4SF1-CAR/EpCAM-CAR-expressing Autologous T Cells", - PermissibleValue(text="TM4SF1-CAR/EpCAM-CAR-expressing Autologous T Cells") ) - setattr(cls, "Src Kinase Inhibitor AP 23846", - PermissibleValue(text="Src Kinase Inhibitor AP 23846") ) - setattr(cls, "Sialyl Tn Antigen", - PermissibleValue(text="Sialyl Tn Antigen") ) - setattr(cls, "Recombinant Thyroglobulin", - PermissibleValue(text="Recombinant Thyroglobulin") ) - setattr(cls, "Telomerase-specific Type 5 Adenovirus OBP-301", - PermissibleValue(text="Telomerase-specific Type 5 Adenovirus OBP-301") ) - setattr(cls, "MDM2 Inhibitor AMG-232", - PermissibleValue(text="MDM2 Inhibitor AMG-232") ) - setattr(cls, "RARalpha Agonist IRX5183", - PermissibleValue(text="RARalpha Agonist IRX5183") ) - setattr(cls, "Piperine Extract (Standardized)", - PermissibleValue(text="Piperine Extract (Standardized)") ) - setattr(cls, "BCR-ABL/KIT/AKT/ERK Inhibitor HQP1351", - PermissibleValue(text="BCR-ABL/KIT/AKT/ERK Inhibitor HQP1351") ) - setattr(cls, "Phenyl Acetate", - PermissibleValue(text="Phenyl Acetate") ) - setattr(cls, "Radioactive Iodine", - PermissibleValue(text="Radioactive Iodine") ) - setattr(cls, "CDC7 Kinase Inhibitor NMS-1116354", - PermissibleValue(text="CDC7 Kinase Inhibitor NMS-1116354") ) - setattr(cls, "Polysialic Acid", - PermissibleValue(text="Polysialic Acid") ) - setattr(cls, "Patidegib Topical Gel", - PermissibleValue(text="Patidegib Topical Gel") ) - setattr(cls, "Serine/Threonine Kinase Inhibitor CBP501", - PermissibleValue(text="Serine/Threonine Kinase Inhibitor CBP501") ) - setattr(cls, "Anti-PLGF Monoclonal Antibody TB-403", - PermissibleValue(text="Anti-PLGF Monoclonal Antibody TB-403") ) - setattr(cls, "Lutetium Lu 177-PSMA-617", - PermissibleValue(text="Lutetium Lu 177-PSMA-617") ) - setattr(cls, "Neoantigen-HSP70 Peptide Cancer Vaccine AGEN2017", - PermissibleValue(text="Neoantigen-HSP70 Peptide Cancer Vaccine AGEN2017") ) - setattr(cls, "PI3K-alpha Inhibitor MEN1611", - PermissibleValue(text="PI3K-alpha Inhibitor MEN1611") ) - setattr(cls, "Anti-Ly6E Antibody-Drug Conjugate RG 7841", - PermissibleValue(text="Anti-Ly6E Antibody-Drug Conjugate RG 7841") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody HLX10", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody HLX10") ) - setattr(cls, "Yttrium Y 90 Daclizumab", - PermissibleValue(text="Yttrium Y 90 Daclizumab") ) - setattr(cls, "Lutetium Lu-177 Capromab", - PermissibleValue(text="Lutetium Lu-177 Capromab") ) - setattr(cls, "Halofuginone Hydrobromide", - PermissibleValue(text="Halofuginone Hydrobromide") ) - setattr(cls, "p38 MAPK Inhibitor LY3007113", - PermissibleValue(text="p38 MAPK Inhibitor LY3007113") ) - setattr(cls, "Monomethyl Auristatin E", - PermissibleValue(text="Monomethyl Auristatin E") ) - setattr(cls, "Androgen Receptor Degrader ARV-110", - PermissibleValue(text="Androgen Receptor Degrader ARV-110") ) - setattr(cls, "c-Met Inhibitor GST-HG161", - PermissibleValue(text="c-Met Inhibitor GST-HG161") ) - setattr(cls, "Atiprimod Dihydrochloride", - PermissibleValue(text="Atiprimod Dihydrochloride") ) - setattr(cls, "Aurora Kinase Inhibitor BI 811283", - PermissibleValue(text="Aurora Kinase Inhibitor BI 811283") ) - setattr(cls, "Anti-human GITR Monoclonal Antibody AMG 228", - PermissibleValue(text="Anti-human GITR Monoclonal Antibody AMG 228") ) - setattr(cls, "Puromycin Hydrochloride", - PermissibleValue(text="Puromycin Hydrochloride") ) - setattr(cls, "Anti-CD47 Monoclonal Antibody TJC4", - PermissibleValue(text="Anti-CD47 Monoclonal Antibody TJC4") ) - setattr(cls, "Anti-Folate Receptor-alpha Antibody Drug Conjugate STRO-002", - PermissibleValue(text="Anti-Folate Receptor-alpha Antibody Drug Conjugate STRO-002") ) - setattr(cls, "Personalized Neoepitope Yeast Vaccine YE-NEO-001", - PermissibleValue(text="Personalized Neoepitope Yeast Vaccine YE-NEO-001") ) - setattr(cls, "Noscapine Hydrochloride", - PermissibleValue(text="Noscapine Hydrochloride") ) - setattr(cls, "Monoclonal Antibody Me1-14 F(ab')2", - PermissibleValue(text="Monoclonal Antibody Me1-14 F(ab')2") ) - setattr(cls, "Calicheamicin Gamma 1I", - PermissibleValue(text="Calicheamicin Gamma 1I") ) - setattr(cls, "Iridium Ir 192", - PermissibleValue(text="Iridium Ir 192") ) - setattr(cls, "mTOR Kinase Inhibitor AZD8055", - PermissibleValue(text="mTOR Kinase Inhibitor AZD8055") ) - setattr(cls, "Autologous Tumor Infiltrating Lymphocytes LN-145-S1", - PermissibleValue(text="Autologous Tumor Infiltrating Lymphocytes LN-145-S1") ) - setattr(cls, "Liposome-Encapsulated Doxorubicin Citrate", - PermissibleValue(text="Liposome-Encapsulated Doxorubicin Citrate") ) - setattr(cls, "Bruceanol C", - PermissibleValue(text="Bruceanol C") ) - setattr(cls, "PR1 Leukemia Peptide Vaccine", - PermissibleValue(text="PR1 Leukemia Peptide Vaccine") ) - setattr(cls, "Pamidronate Disodium", - PermissibleValue(text="Pamidronate Disodium") ) - setattr(cls, "KRASG12C Inhibitor JNJ-74699157", - PermissibleValue(text="KRASG12C Inhibitor JNJ-74699157") ) - setattr(cls, "Anti-CD19 Antibody-drug Conjugate SGN-CD19B", - PermissibleValue(text="Anti-CD19 Antibody-drug Conjugate SGN-CD19B") ) - setattr(cls, "Anti-AXL Fusion Protein AVB-S6-500", - PermissibleValue(text="Anti-AXL Fusion Protein AVB-S6-500") ) - setattr(cls, "STAT3 Inhibitor WP1066", - PermissibleValue(text="STAT3 Inhibitor WP1066") ) - setattr(cls, "Pan-mutation-selective EGFR Inhibitor CLN-081", - PermissibleValue(text="Pan-mutation-selective EGFR Inhibitor CLN-081") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody Mixture MM-151", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody Mixture MM-151") ) - setattr(cls, "MDR Modulator CBT-1", - PermissibleValue(text="MDR Modulator CBT-1") ) - setattr(cls, "C/EBP Beta Antagonist ST101", - PermissibleValue(text="C/EBP Beta Antagonist ST101") ) - setattr(cls, "Recombinant Erythropoietin", - PermissibleValue(text="Recombinant Erythropoietin") ) - setattr(cls, "Autologous BCMA-targeted CAR T Cells LCAR-B4822M", - PermissibleValue(text="Autologous BCMA-targeted CAR T Cells LCAR-B4822M") ) - setattr(cls, "JNK Inhibitor CC-401", - PermissibleValue(text="JNK Inhibitor CC-401") ) - setattr(cls, "Caffeic Acid Phenethyl Ester", - PermissibleValue(text="Caffeic Acid Phenethyl Ester") ) - setattr(cls, "Anti-CD30/CD16A Monoclonal Antibody AFM13", - PermissibleValue(text="Anti-CD30/CD16A Monoclonal Antibody AFM13") ) - setattr(cls, "CSF-1R Inhibitor BLZ945", - PermissibleValue(text="CSF-1R Inhibitor BLZ945") ) - setattr(cls, "PI3K/mTOR Kinase Inhibitor PF-04691502", - PermissibleValue(text="PI3K/mTOR Kinase Inhibitor PF-04691502") ) - setattr(cls, "Heterodimeric Interleukin-15", - PermissibleValue(text="Heterodimeric Interleukin-15") ) - setattr(cls, "Immunotherapeutic GSK1572932A", - PermissibleValue(text="Immunotherapeutic GSK1572932A") ) - setattr(cls, "Sumoylation Inhibitor TAK-981", - PermissibleValue(text="Sumoylation Inhibitor TAK-981") ) - setattr(cls, "CDK1/2/4 Inhibitor AG-024322", - PermissibleValue(text="CDK1/2/4 Inhibitor AG-024322") ) - setattr(cls, "Allogeneic Large Multivalent Immunogen Melanoma Vaccine LP2307", - PermissibleValue(text="Allogeneic Large Multivalent Immunogen Melanoma Vaccine LP2307") ) - setattr(cls, "Pibrozelesin Hydrobromide", - PermissibleValue(text="Pibrozelesin Hydrobromide") ) - setattr(cls, "Anti-CD19 Monoclonal Antibody MEDI-551", - PermissibleValue(text="Anti-CD19 Monoclonal Antibody MEDI-551") ) - setattr(cls, "Recombinant Human Plasminogen Kringle 5 Domain ABT 828", - PermissibleValue(text="Recombinant Human Plasminogen Kringle 5 Domain ABT 828") ) - setattr(cls, "Zirconium Zr 89 Panitumumab", - PermissibleValue(text="Zirconium Zr 89 Panitumumab") ) - setattr(cls, "Antineoplastic Vaccine GV-1301", - PermissibleValue(text="Antineoplastic Vaccine GV-1301") ) - setattr(cls, "Vincristine Liposomal", - PermissibleValue(text="Vincristine Liposomal") ) - setattr(cls, "Protein Tyrosine Kinase 2 Inhibitor IN10018", - PermissibleValue(text="Protein Tyrosine Kinase 2 Inhibitor IN10018") ) - setattr(cls, "MET x MET Bispecific Antibody REGN5093", - PermissibleValue(text="MET x MET Bispecific Antibody REGN5093") ) - setattr(cls, "Autologous Tumor Infiltrating Lymphocytes LN-144", - PermissibleValue(text="Autologous Tumor Infiltrating Lymphocytes LN-144") ) - setattr(cls, "Anti-KIR Monoclonal Antibody IPH 2101", - PermissibleValue(text="Anti-KIR Monoclonal Antibody IPH 2101") ) - setattr(cls, "2-Methoxyestradiol", - PermissibleValue(text="2-Methoxyestradiol") ) - setattr(cls, "BRAF Inhibitor PLX8394", - PermissibleValue(text="BRAF Inhibitor PLX8394") ) - setattr(cls, "Anti-PSMA/CD3 Bispecific Antibody CCW702", - PermissibleValue(text="Anti-PSMA/CD3 Bispecific Antibody CCW702") ) - setattr(cls, "Colorectal Cancer Peptide Vaccine PolyPEPI1018", - PermissibleValue(text="Colorectal Cancer Peptide Vaccine PolyPEPI1018") ) - setattr(cls, "Anti-HER2 Antibody-drug Conjugate MEDI4276", - PermissibleValue(text="Anti-HER2 Antibody-drug Conjugate MEDI4276") ) - setattr(cls, "Anti-AGS-5 Antibody-Drug Conjugate ASG-5ME", - PermissibleValue(text="Anti-AGS-5 Antibody-Drug Conjugate ASG-5ME") ) - setattr(cls, "Iodine I 131 Tenatumomab", - PermissibleValue(text="Iodine I 131 Tenatumomab") ) - setattr(cls, "Pinatuzumab Vedotin", - PermissibleValue(text="Pinatuzumab Vedotin") ) - setattr(cls, "Anti-HER2 Immune Stimulator-antibody Conjugate NJH395", - PermissibleValue(text="Anti-HER2 Immune Stimulator-antibody Conjugate NJH395") ) - setattr(cls, "SBIL-2", - PermissibleValue(text="SBIL-2") ) - setattr(cls, "Etoposide Toniribate", - PermissibleValue(text="Etoposide Toniribate") ) - setattr(cls, "Enadenotucirev-expressing FAP/CD3 Bispecific FAP-TAc NG-641", - PermissibleValue(text="Enadenotucirev-expressing FAP/CD3 Bispecific FAP-TAc NG-641") ) - setattr(cls, "Mps1 Inhibitor BOS172722", - PermissibleValue(text="Mps1 Inhibitor BOS172722") ) - setattr(cls, "Y 90 Monoclonal Antibody m170", - PermissibleValue(text="Y 90 Monoclonal Antibody m170") ) - setattr(cls, "PIM Kinase Inhibitor SGI-1776", - PermissibleValue(text="PIM Kinase Inhibitor SGI-1776") ) - setattr(cls, "Yttrium Y-90 Clivatuzumab Tetraxetan", - PermissibleValue(text="Yttrium Y-90 Clivatuzumab Tetraxetan") ) - setattr(cls, "Adenosine A2A Receptor Antagonist CS3005", - PermissibleValue(text="Adenosine A2A Receptor Antagonist CS3005") ) - setattr(cls, "Afatinib Dimaleate", - PermissibleValue(text="Afatinib Dimaleate") ) - setattr(cls, "Losoxantrone Hydrochloride", - PermissibleValue(text="Losoxantrone Hydrochloride") ) - setattr(cls, "Oral Picoplatin", - PermissibleValue(text="Oral Picoplatin") ) - setattr(cls, "Alvespimycin Hydrochloride", - PermissibleValue(text="Alvespimycin Hydrochloride") ) - setattr(cls, "Yttrium Y 90 Anti-CD19 Monoclonal Antibody BU12", - PermissibleValue(text="Yttrium Y 90 Anti-CD19 Monoclonal Antibody BU12") ) - setattr(cls, "Methylmercaptopurine Riboside", - PermissibleValue(text="Methylmercaptopurine Riboside") ) - setattr(cls, "PI3Kdelta Inhibitor GS-9901", - PermissibleValue(text="PI3Kdelta Inhibitor GS-9901") ) - setattr(cls, "Rose Bengal Solution PV-10", - PermissibleValue(text="Rose Bengal Solution PV-10") ) - setattr(cls, "Anti c-KIT Antibody-drug Conjugate LOP628", - PermissibleValue(text="Anti c-KIT Antibody-drug Conjugate LOP628") ) - setattr(cls, "Polatuzumab Vedotin", - PermissibleValue(text="Polatuzumab Vedotin") ) - setattr(cls, "SIRPa-Fc-CD40L Fusion Protein SL-172154", - PermissibleValue(text="SIRPa-Fc-CD40L Fusion Protein SL-172154") ) - setattr(cls, "Nelipepimut-S", - PermissibleValue(text="Nelipepimut-S") ) - setattr(cls, "TSP-1 Mimetic Fusion Protein CVX-045", - PermissibleValue(text="TSP-1 Mimetic Fusion Protein CVX-045") ) - setattr(cls, "Polo-like Kinase 4 Inhibitor CFI-400945 Fumarate", - PermissibleValue(text="Polo-like Kinase 4 Inhibitor CFI-400945 Fumarate") ) - setattr(cls, "BET Inhibitor INCB054329", - PermissibleValue(text="BET Inhibitor INCB054329") ) - setattr(cls, "Sedoxantrone Trihydrochloride", - PermissibleValue(text="Sedoxantrone Trihydrochloride") ) - setattr(cls, "Lapuleucel-T", - PermissibleValue(text="Lapuleucel-T") ) - setattr(cls, "11C Topotecan", - PermissibleValue(text="11C Topotecan") ) - setattr(cls, "c-Met Inhibitor MK8033", - PermissibleValue(text="c-Met Inhibitor MK8033") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody BGB-A333", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody BGB-A333") ) - setattr(cls, "HER2 Inhibitor TAS0728", - PermissibleValue(text="HER2 Inhibitor TAS0728") ) - setattr(cls, "Anti-CD52 Monoclonal Antibody ALLO-647", - PermissibleValue(text="Anti-CD52 Monoclonal Antibody ALLO-647") ) - setattr(cls, "MAGE-A1-specific T Cell Receptor-transduced Autologous T-cells", - PermissibleValue(text="MAGE-A1-specific T Cell Receptor-transduced Autologous T-cells") ) - setattr(cls, "CTLA-4-directed Probody BMS-986249", - PermissibleValue(text="CTLA-4-directed Probody BMS-986249") ) - setattr(cls, "MEK-1/MEKK-1 Inhibitor E6201", - PermissibleValue(text="MEK-1/MEKK-1 Inhibitor E6201") ) - setattr(cls, "Neoantigen Vaccine GEN-009", - PermissibleValue(text="Neoantigen Vaccine GEN-009") ) - setattr(cls, "Anti-LAG-3 Monoclonal Antibody REGN3767", - PermissibleValue(text="Anti-LAG-3 Monoclonal Antibody REGN3767") ) - setattr(cls, "JAK2 Inhibitor BMS-911543", - PermissibleValue(text="JAK2 Inhibitor BMS-911543") ) - setattr(cls, "Demplatin Pegraglumer", - PermissibleValue(text="Demplatin Pegraglumer") ) - setattr(cls, "Multikinase Inhibitor SAR103168", - PermissibleValue(text="Multikinase Inhibitor SAR103168") ) - setattr(cls, "Autologous CD19-targeted CAR T Cells CC-97540", - PermissibleValue(text="Autologous CD19-targeted CAR T Cells CC-97540") ) - setattr(cls, "Anti-CA19-9 Monoclonal Antibody 5B1", - PermissibleValue(text="Anti-CA19-9 Monoclonal Antibody 5B1") ) - setattr(cls, "Naratuximab Emtansine", - PermissibleValue(text="Naratuximab Emtansine") ) - setattr(cls, "IDO/TDO Inhibitor HTI-1090", - PermissibleValue(text="IDO/TDO Inhibitor HTI-1090") ) - setattr(cls, "Paclitaxel Trevatide", - PermissibleValue(text="Paclitaxel Trevatide") ) - setattr(cls, "c-raf Antisense Oligonucleotide ISIS 5132", - PermissibleValue(text="c-raf Antisense Oligonucleotide ISIS 5132") ) - setattr(cls, "VEGFR/FGFR Inhibitor ODM-203", - PermissibleValue(text="VEGFR/FGFR Inhibitor ODM-203") ) - setattr(cls, "Antroquinonol Capsule", - PermissibleValue(text="Antroquinonol Capsule") ) - setattr(cls, "HIF2a RNAi ARO-HIF2", - PermissibleValue(text="HIF2a RNAi ARO-HIF2") ) - setattr(cls, "Monoclonal Antibody A1G4 Anti-Idiotype Vaccine", - PermissibleValue(text="Monoclonal Antibody A1G4 Anti-Idiotype Vaccine") ) - setattr(cls, "IL4-Pseudomonas Exotoxin Fusion Protein MDNA55", - PermissibleValue(text="IL4-Pseudomonas Exotoxin Fusion Protein MDNA55") ) - setattr(cls, "Recombinant Leukoregulin", - PermissibleValue(text="Recombinant Leukoregulin") ) - setattr(cls, "Antitumor B Key Active Component-alpha", - PermissibleValue(text="Antitumor B Key Active Component-alpha") ) - setattr(cls, "Mitochondrial Oxidative Phosphorylation Inhibitor ATR-101", - PermissibleValue(text="Mitochondrial Oxidative Phosphorylation Inhibitor ATR-101") ) - setattr(cls, "HDAC Class I/IIb Inhibitor HG146", - PermissibleValue(text="HDAC Class I/IIb Inhibitor HG146") ) - setattr(cls, "Pravastatin Sodium", - PermissibleValue(text="Pravastatin Sodium") ) - setattr(cls, "Anti-CD73 Monoclonal Antibody NZV930", - PermissibleValue(text="Anti-CD73 Monoclonal Antibody NZV930") ) - setattr(cls, "Tyrosine Kinase Inhibitor SU5402", - PermissibleValue(text="Tyrosine Kinase Inhibitor SU5402") ) - setattr(cls, "Recombinant Interferon Alfa-1b", - PermissibleValue(text="Recombinant Interferon Alfa-1b") ) - setattr(cls, "Oncolytic HSV1716", - PermissibleValue(text="Oncolytic HSV1716") ) - setattr(cls, "Anti-BCMA Antibody-drug Conjugate GSK2857916", - PermissibleValue(text="Anti-BCMA Antibody-drug Conjugate GSK2857916") ) - setattr(cls, "Milciclib Maleate", - PermissibleValue(text="Milciclib Maleate") ) - setattr(cls, "Engineered Red Blood Cells Co-expressing 4-1BBL and IL-15TP RTX-240", - PermissibleValue(text="Engineered Red Blood Cells Co-expressing 4-1BBL and IL-15TP RTX-240") ) - setattr(cls, "JAK2/Src Inhibitor NS-018", - PermissibleValue(text="JAK2/Src Inhibitor NS-018") ) - setattr(cls, "Glutaminase Inhibitor CB-839 Hydrochloride", - PermissibleValue(text="Glutaminase Inhibitor CB-839 Hydrochloride") ) - setattr(cls, "Abemaciclib Mesylate", - PermissibleValue(text="Abemaciclib Mesylate") ) - setattr(cls, "Iodine I 131 TM-601", - PermissibleValue(text="Iodine I 131 TM-601") ) - setattr(cls, "DNA Plasmid-encoding Interleukin-12/HPV DNA Plasmids Therapeutic Vaccine MEDI0457", - PermissibleValue(text="DNA Plasmid-encoding Interleukin-12/HPV DNA Plasmids Therapeutic Vaccine MEDI0457") ) - setattr(cls, "Crystalline Genistein Formulation AXP107-11", - PermissibleValue(text="Crystalline Genistein Formulation AXP107-11") ) - setattr(cls, "Hsp90 Inhibitor Debio 0932", - PermissibleValue(text="Hsp90 Inhibitor Debio 0932") ) - setattr(cls, "pan-RAF Inhibitor LXH254", - PermissibleValue(text="pan-RAF Inhibitor LXH254") ) - setattr(cls, "Sodium Borocaptate", - PermissibleValue(text="Sodium Borocaptate") ) - setattr(cls, "Anti-CD20 Monoclonal Antibody B001", - PermissibleValue(text="Anti-CD20 Monoclonal Antibody B001") ) - setattr(cls, "P-cadherin Antagonist PF-03732010", - PermissibleValue(text="P-cadherin Antagonist PF-03732010") ) - setattr(cls, "SRPK1/ABCG2 Inhibitor SCO-101", - PermissibleValue(text="SRPK1/ABCG2 Inhibitor SCO-101") ) - setattr(cls, "Elbasvir/Grazoprevir", - PermissibleValue(text="Elbasvir/Grazoprevir") ) - setattr(cls, "Selumetinib Sulfate", - PermissibleValue(text="Selumetinib Sulfate") ) - setattr(cls, "Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3005", - PermissibleValue(text="Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3005") ) - setattr(cls, "Thioguanine Anhydrous", - PermissibleValue(text="Thioguanine Anhydrous") ) - setattr(cls, "Anti-EGFR Monoclonal Antibody EMD 55900", - PermissibleValue(text="Anti-EGFR Monoclonal Antibody EMD 55900") ) - setattr(cls, "Histone-Lysine N-Methyltransferase EZH2 Inhibitor GSK2816126", - PermissibleValue(text="Histone-Lysine N-Methyltransferase EZH2 Inhibitor GSK2816126") ) - setattr(cls, "Anti-ErbB3/Anti-IGF-1R Bispecific Monoclonal Antibody MM-141", - PermissibleValue(text="Anti-ErbB3/Anti-IGF-1R Bispecific Monoclonal Antibody MM-141") ) - setattr(cls, "HDAC Inhibitor MPT0E028", - PermissibleValue(text="HDAC Inhibitor MPT0E028") ) - setattr(cls, "Ganglioside GD2", - PermissibleValue(text="Ganglioside GD2") ) - setattr(cls, "p53/HDM2 Interaction Inhibitor CGM097", - PermissibleValue(text="p53/HDM2 Interaction Inhibitor CGM097") ) - setattr(cls, "Ras Peptide ASP", - PermissibleValue(text="Ras Peptide ASP") ) - setattr(cls, "FAK Inhibitor PF-00562271", - PermissibleValue(text="FAK Inhibitor PF-00562271") ) - setattr(cls, "DM-CHOC-PEN", - PermissibleValue(text="DM-CHOC-PEN") ) - setattr(cls, "Anti-HLA-DR Monoclonal Antibody IMMU-114", - PermissibleValue(text="Anti-HLA-DR Monoclonal Antibody IMMU-114") ) - setattr(cls, "Anti-PD-1 Monoclonal Antibody MEDI0680", - PermissibleValue(text="Anti-PD-1 Monoclonal Antibody MEDI0680") ) - setattr(cls, "Farnesyltransferase/Geranylgeranyltransferase Inhibitor L-778,123", - PermissibleValue(text="Farnesyltransferase/Geranylgeranyltransferase Inhibitor L-778,123") ) - setattr(cls, "Antibody-drug Conjugate PF-06647263", - PermissibleValue(text="Antibody-drug Conjugate PF-06647263") ) - setattr(cls, "Autologous Rapamycin-resistant Th1/Tc1 Cells RAPA-201", - PermissibleValue(text="Autologous Rapamycin-resistant Th1/Tc1 Cells RAPA-201") ) - setattr(cls, "Hexamethylene Bisacetamide", - PermissibleValue(text="Hexamethylene Bisacetamide") ) - setattr(cls, "SLCT Inhibitor GNS561", - PermissibleValue(text="SLCT Inhibitor GNS561") ) - setattr(cls, "Anti-IL-1 alpha Monoclonal Antibody MABp1", - PermissibleValue(text="Anti-IL-1 alpha Monoclonal Antibody MABp1") ) - setattr(cls, "Delolimogene Mupadenorepvec", - PermissibleValue(text="Delolimogene Mupadenorepvec") ) - setattr(cls, "Alvocidib Hydrochloride", - PermissibleValue(text="Alvocidib Hydrochloride") ) - setattr(cls, "Morinda Citrifolia Fruit Extract", - PermissibleValue(text="Morinda Citrifolia Fruit Extract") ) - setattr(cls, "Topoisomerase-1 Inhibitor LMP744", - PermissibleValue(text="Topoisomerase-1 Inhibitor LMP744") ) - setattr(cls, "Erlotinib Hydrochloride", - PermissibleValue(text="Erlotinib Hydrochloride") ) - setattr(cls, "Uracil Ointment", - PermissibleValue(text="Uracil Ointment") ) - setattr(cls, "Bruceanol E", - PermissibleValue(text="Bruceanol E") ) - setattr(cls, "Mycobacterium tuberculosis Arabinomannan Z-100", - PermissibleValue(text="Mycobacterium tuberculosis Arabinomannan Z-100") ) - setattr(cls, "MVA-BN Smallpox Vaccine", - PermissibleValue(text="MVA-BN Smallpox Vaccine") ) - setattr(cls, "6-Phosphofructo-2-kinase/fructose-2,6-bisphosphatases Isoform 3 Inhibitor ACT-PFK-158", - PermissibleValue(text="6-Phosphofructo-2-kinase/fructose-2,6-bisphosphatases Isoform 3 Inhibitor ACT-PFK-158") ) - setattr(cls, "Anti-CD19-DM4 Immunoconjugate SAR3419", - PermissibleValue(text="Anti-CD19-DM4 Immunoconjugate SAR3419") ) - setattr(cls, "TAM/c-Met Inhibitor RXDX-106", - PermissibleValue(text="TAM/c-Met Inhibitor RXDX-106") ) - setattr(cls, "Lifastuzumab Vedotin", - PermissibleValue(text="Lifastuzumab Vedotin") ) - setattr(cls, "Bisnafide Dimesylate", - PermissibleValue(text="Bisnafide Dimesylate") ) - setattr(cls, "Allogeneic Anti-CD19 Universal CAR-T Cells CTA101", - PermissibleValue(text="Allogeneic Anti-CD19 Universal CAR-T Cells CTA101") ) - setattr(cls, "Resveratrol Formulation SRT501", - PermissibleValue(text="Resveratrol Formulation SRT501") ) - setattr(cls, "Trimeric GITRL-Fc OMP-336B11", - PermissibleValue(text="Trimeric GITRL-Fc OMP-336B11") ) - setattr(cls, "Belantamab Mafodotin", - PermissibleValue(text="Belantamab Mafodotin") ) - setattr(cls, "Fluorouracil-E Therapeutic Implant", - PermissibleValue(text="Fluorouracil-E Therapeutic Implant") ) - setattr(cls, "Polyethyleneglycol-7-ethyl-10-hydroxycamptothecin DFP-13318", - PermissibleValue(text="Polyethyleneglycol-7-ethyl-10-hydroxycamptothecin DFP-13318") ) - setattr(cls, "Inodiftagene Vixteplasmid", - PermissibleValue(text="Inodiftagene Vixteplasmid") ) - setattr(cls, "Caricotamide/Tretazicar", - PermissibleValue(text="Caricotamide/Tretazicar") ) - setattr(cls, "Therapeutic Angiotensin-(1-7)", - PermissibleValue(text="Therapeutic Angiotensin-(1-7)") ) - setattr(cls, "Raloxifene Hydrochloride", - PermissibleValue(text="Raloxifene Hydrochloride") ) - setattr(cls, "Tubulin Polymerization Inhibitor AEZS 112", - PermissibleValue(text="Tubulin Polymerization Inhibitor AEZS 112") ) - setattr(cls, "Aurora A Kinase Inhibitor LY3295668", - PermissibleValue(text="Aurora A Kinase Inhibitor LY3295668") ) - setattr(cls, "Anti-S15 Monoclonal Antibody NC318", - PermissibleValue(text="Anti-S15 Monoclonal Antibody NC318") ) - setattr(cls, "IDO/TDO Inhibitor LY-01013", - PermissibleValue(text="IDO/TDO Inhibitor LY-01013") ) - setattr(cls, "Nilotinib Hydrochloride Anhydrous", - PermissibleValue(text="Nilotinib Hydrochloride Anhydrous") ) - setattr(cls, "Androgen Receptor/Glucocorticoid Receptor Antagonist CB-03-10", - PermissibleValue(text="Androgen Receptor/Glucocorticoid Receptor Antagonist CB-03-10") ) - setattr(cls, "SDF-1 Receptor Antagonist PTX-9908", - PermissibleValue(text="SDF-1 Receptor Antagonist PTX-9908") ) - setattr(cls, "Allogeneic Plasmacytoid Dendritic Cells Expressing Lung Tumor Antigens PDC*lung01", - PermissibleValue(text="Allogeneic Plasmacytoid Dendritic Cells Expressing Lung Tumor Antigens PDC*lung01") ) - setattr(cls, "Liposomal Irinotecan", - PermissibleValue(text="Liposomal Irinotecan") ) - setattr(cls, "FAK/ALK/ROS1 Inhibitor APG-2449", - PermissibleValue(text="FAK/ALK/ROS1 Inhibitor APG-2449") ) - setattr(cls, "Iodine I 131 Apamistamab", - PermissibleValue(text="Iodine I 131 Apamistamab") ) - setattr(cls, "5-Fluoro-2-Deoxycytidine", - PermissibleValue(text="5-Fluoro-2-Deoxycytidine") ) - setattr(cls, "Recombinant Platelet Factor 4", - PermissibleValue(text="Recombinant Platelet Factor 4") ) - setattr(cls, "Autologous Anti-PD-1 Antibody-activated Tumor-infiltrating Lymphocytes", - PermissibleValue(text="Autologous Anti-PD-1 Antibody-activated Tumor-infiltrating Lymphocytes") ) - setattr(cls, "Hsp90 Inhibitor PU-H71", - PermissibleValue(text="Hsp90 Inhibitor PU-H71") ) - setattr(cls, "Anti-TIGIT Monoclonal Antibody BMS-986207", - PermissibleValue(text="Anti-TIGIT Monoclonal Antibody BMS-986207") ) - setattr(cls, "Zorubicin Hydrochloride", - PermissibleValue(text="Zorubicin Hydrochloride") ) - setattr(cls, "DNA Plasmid Encoding Interleukin-12 INO-9012", - PermissibleValue(text="DNA Plasmid Encoding Interleukin-12 INO-9012") ) - setattr(cls, "BCG Solution", - PermissibleValue(text="BCG Solution") ) - setattr(cls, "Sodium Selenite", - PermissibleValue(text="Sodium Selenite") ) - setattr(cls, "Astatine At 211 Anti-CD38 Monoclonal Antibody OKT10-B10", - PermissibleValue(text="Astatine At 211 Anti-CD38 Monoclonal Antibody OKT10-B10") ) - setattr(cls, "Motexafin Lutetium", - PermissibleValue(text="Motexafin Lutetium") ) - setattr(cls, "Anti-CD137 Agonistic Monoclonal Antibody LVGN6051", - PermissibleValue(text="Anti-CD137 Agonistic Monoclonal Antibody LVGN6051") ) - setattr(cls, "Selective Estrogen Receptor Degrader LY3484356", - PermissibleValue(text="Selective Estrogen Receptor Degrader LY3484356") ) - setattr(cls, "Polo-like Kinase 1 Inhibitor GSK461364", - PermissibleValue(text="Polo-like Kinase 1 Inhibitor GSK461364") ) - setattr(cls, "FAK Inhibitor GSK2256098", - PermissibleValue(text="FAK Inhibitor GSK2256098") ) - setattr(cls, "Anti-TIM-3 Antibody BMS-986258", - PermissibleValue(text="Anti-TIM-3 Antibody BMS-986258") ) - setattr(cls, "Tyrosine Kinase Inhibitor", - PermissibleValue(text="Tyrosine Kinase Inhibitor") ) - setattr(cls, "IL-10 Immunomodulator MK-1966", - PermissibleValue(text="IL-10 Immunomodulator MK-1966") ) - setattr(cls, "Liposomal Topotecan FF-10850", - PermissibleValue(text="Liposomal Topotecan FF-10850") ) - setattr(cls, "mRNA-based Tumor-specific Neoantigen Boosting Vaccine GRT-R902", - PermissibleValue(text="mRNA-based Tumor-specific Neoantigen Boosting Vaccine GRT-R902") ) - setattr(cls, "RAF Kinase Inhibitor XL281", - PermissibleValue(text="RAF Kinase Inhibitor XL281") ) - setattr(cls, "Anti-PD1 Monoclonal Antibody AGEN2034", - PermissibleValue(text="Anti-PD1 Monoclonal Antibody AGEN2034") ) - setattr(cls, "Emofolin Sodium", - PermissibleValue(text="Emofolin Sodium") ) - setattr(cls, "Autologous Tumor Infiltrating Lymphocytes MDA-TIL", - PermissibleValue(text="Autologous Tumor Infiltrating Lymphocytes MDA-TIL") ) - setattr(cls, "HDM2 Inhibitor HDM201", - PermissibleValue(text="HDM2 Inhibitor HDM201") ) - setattr(cls, "Light-Emitting Oncolytic Vaccinia Virus GL-ONC1", - PermissibleValue(text="Light-Emitting Oncolytic Vaccinia Virus GL-ONC1") ) - setattr(cls, "DPT/BCG/Measles/Serratia/Pneumococcus Vaccine", - PermissibleValue(text="DPT/BCG/Measles/Serratia/Pneumococcus Vaccine") ) - setattr(cls, "HLA-A*0201 Restricted TERT(572Y)/TERT(572) Peptides Vaccine Vx-001", - PermissibleValue(text="HLA-A*0201 Restricted TERT(572Y)/TERT(572) Peptides Vaccine Vx-001") ) - setattr(cls, "Talabostat Mesylate", - PermissibleValue(text="Talabostat Mesylate") ) - setattr(cls, "Sparfosic Acid", - PermissibleValue(text="Sparfosic Acid") ) - setattr(cls, "Anti-GITR Agonistic Monoclonal Antibody BMS-986156", - PermissibleValue(text="Anti-GITR Agonistic Monoclonal Antibody BMS-986156") ) - setattr(cls, "Multi-AGC Kinase Inhibitor AT13148", - PermissibleValue(text="Multi-AGC Kinase Inhibitor AT13148") ) - setattr(cls, "Mercaptopurine Oral Suspension", - PermissibleValue(text="Mercaptopurine Oral Suspension") ) - setattr(cls, "Polo-like Kinase 1 Inhibitor MK1496", - PermissibleValue(text="Polo-like Kinase 1 Inhibitor MK1496") ) - setattr(cls, "Anti-HA Epitope Monoclonal Antibody MEDI8852", - PermissibleValue(text="Anti-HA Epitope Monoclonal Antibody MEDI8852") ) - setattr(cls, "Idronoxil Suppository NOX66", - PermissibleValue(text="Idronoxil Suppository NOX66") ) - setattr(cls, "Anti-CD70 Antibody-drug Conjugate SGN-CD70A", - PermissibleValue(text="Anti-CD70 Antibody-drug Conjugate SGN-CD70A") ) - setattr(cls, "Anti-TROP2/DXd Antibody-drug Conjugate DS-1062a", - PermissibleValue(text="Anti-TROP2/DXd Antibody-drug Conjugate DS-1062a") ) - setattr(cls, "CDC7 Kinase Inhibitor LY3143921 Hydrate", - PermissibleValue(text="CDC7 Kinase Inhibitor LY3143921 Hydrate") ) - setattr(cls, "Agonistic Anti-CD40 Monoclonal Antibody ADC-1013", - PermissibleValue(text="Agonistic Anti-CD40 Monoclonal Antibody ADC-1013") ) - setattr(cls, "Anti-CD137 Agonistic Monoclonal Antibody ATOR-1017", - PermissibleValue(text="Anti-CD137 Agonistic Monoclonal Antibody ATOR-1017") ) - setattr(cls, "Anti-angiopoietin Monoclonal Antibody AMG 780", - PermissibleValue(text="Anti-angiopoietin Monoclonal Antibody AMG 780") ) - setattr(cls, "Eribulin Mesylate", - PermissibleValue(text="Eribulin Mesylate") ) - setattr(cls, "Monoclonal Antibody 81C6", - PermissibleValue(text="Monoclonal Antibody 81C6") ) - setattr(cls, "Anti-RANKL Monoclonal Antibody GB-223", - PermissibleValue(text="Anti-RANKL Monoclonal Antibody GB-223") ) - setattr(cls, "Anti-EphA2 Monoclonal Antibody DS-8895a", - PermissibleValue(text="Anti-EphA2 Monoclonal Antibody DS-8895a") ) - setattr(cls, "Allogeneic CRISPR-Cas9 Engineered Anti-BCMA T Cells CTX120", - PermissibleValue(text="Allogeneic CRISPR-Cas9 Engineered Anti-BCMA T Cells CTX120") ) - setattr(cls, "Monocarboxylate Transporter 1 Inhibitor AZD3965", - PermissibleValue(text="Monocarboxylate Transporter 1 Inhibitor AZD3965") ) - setattr(cls, "Tubulin Polymerization Inhibitor CKD-516", - PermissibleValue(text="Tubulin Polymerization Inhibitor CKD-516") ) - setattr(cls, "Adenovirus-expressing TLR5/TLR5 Agonist Nanoformulation M-VM3", - PermissibleValue(text="Adenovirus-expressing TLR5/TLR5 Agonist Nanoformulation M-VM3") ) - setattr(cls, "FACT Complex-targeting Curaxin CBL0137", - PermissibleValue(text="FACT Complex-targeting Curaxin CBL0137") ) - setattr(cls, "Acodazole Hydrochloride", - PermissibleValue(text="Acodazole Hydrochloride") ) - setattr(cls, "Anti-CD30 Monoclonal Antibody XmAb2513", - PermissibleValue(text="Anti-CD30 Monoclonal Antibody XmAb2513") ) - setattr(cls, "Monoclonal Antibody A33", - PermissibleValue(text="Monoclonal Antibody A33") ) - setattr(cls, "CBP/beta-catenin Antagonist PRI-724", - PermissibleValue(text="CBP/beta-catenin Antagonist PRI-724") ) - setattr(cls, "CSF1R Inhibitor ABSK021", - PermissibleValue(text="CSF1R Inhibitor ABSK021") ) - setattr(cls, "Anti-GD2 Monoclonal Antibody hu14.18K322A", - PermissibleValue(text="Anti-GD2 Monoclonal Antibody hu14.18K322A") ) - setattr(cls, "Chlorotoxin (EQ)-CD28-CD3zeta-CD19t-expressing CAR T-lymphocytes", - PermissibleValue(text="Chlorotoxin (EQ)-CD28-CD3zeta-CD19t-expressing CAR T-lymphocytes") ) - setattr(cls, "Survivin-expressing CVD908ssb-TXSVN Vaccine", - PermissibleValue(text="Survivin-expressing CVD908ssb-TXSVN Vaccine") ) - setattr(cls, "Anti-CD123/CD3 Bispecific Antibody JNJ-63709178", - PermissibleValue(text="Anti-CD123/CD3 Bispecific Antibody JNJ-63709178") ) - setattr(cls, "Vinorelbine Tartrate Oral", - PermissibleValue(text="Vinorelbine Tartrate Oral") ) - setattr(cls, "CYP17 Lyase Inhibitor ASN001", - PermissibleValue(text="CYP17 Lyase Inhibitor ASN001") ) - setattr(cls, "Recombinant MAGE-3.1 Antigen", - PermissibleValue(text="Recombinant MAGE-3.1 Antigen") ) - setattr(cls, "TGF-beta Receptor 1 Kinase Inhibitor YL-13027", - PermissibleValue(text="TGF-beta Receptor 1 Kinase Inhibitor YL-13027") ) - setattr(cls, "Autologous Anti-CD123 CAR-T Cells", - PermissibleValue(text="Autologous Anti-CD123 CAR-T Cells") ) - setattr(cls, "H1299 Tumor Cell Lysate Vaccine", - PermissibleValue(text="H1299 Tumor Cell Lysate Vaccine") ) - setattr(cls, "Photodynamic Compound TLD-1433", - PermissibleValue(text="Photodynamic Compound TLD-1433") ) - setattr(cls, "EGFR T790M Inhibitor HS-10296", - PermissibleValue(text="EGFR T790M Inhibitor HS-10296") ) - setattr(cls, "Piritrexim Isethionate", - PermissibleValue(text="Piritrexim Isethionate") ) - setattr(cls, "Micellar Nanoparticle-encapsulated Epirubicin", - PermissibleValue(text="Micellar Nanoparticle-encapsulated Epirubicin") ) - setattr(cls, "Laprituximab Emtansine", - PermissibleValue(text="Laprituximab Emtansine") ) - setattr(cls, "Aurora B/C Kinase Inhibitor GSK1070916A", - PermissibleValue(text="Aurora B/C Kinase Inhibitor GSK1070916A") ) - setattr(cls, "Antibody-drug Conjugate SC-003", - PermissibleValue(text="Antibody-drug Conjugate SC-003") ) - setattr(cls, "F16-IL2 Fusion Protein", - PermissibleValue(text="F16-IL2 Fusion Protein") ) - setattr(cls, "Dengue Virus Adjuvant PV-001-DV", - PermissibleValue(text="Dengue Virus Adjuvant PV-001-DV") ) - setattr(cls, "Antibody-like CD95 Receptor/Fc-fusion Protein CAN-008", - PermissibleValue(text="Antibody-like CD95 Receptor/Fc-fusion Protein CAN-008") ) - setattr(cls, "Dezaguanine Mesylate", - PermissibleValue(text="Dezaguanine Mesylate") ) - setattr(cls, "IDO Peptide Vaccine IO102", - PermissibleValue(text="IDO Peptide Vaccine IO102") ) - setattr(cls, "Anti-integrin Beta-6/MMAE Antibody-drug Conjugate SGN-B6A", - PermissibleValue(text="Anti-integrin Beta-6/MMAE Antibody-drug Conjugate SGN-B6A") ) - setattr(cls, "Liposomal MUC1/PET-lipid A Vaccine ONT-10", - PermissibleValue(text="Liposomal MUC1/PET-lipid A Vaccine ONT-10") ) - setattr(cls, "Arabinoxylan Compound MGN3", - PermissibleValue(text="Arabinoxylan Compound MGN3") ) - setattr(cls, "BTK Inhibitor ICP-022", - PermissibleValue(text="BTK Inhibitor ICP-022") ) - setattr(cls, "Extended Release Metformin Hydrochloride", - PermissibleValue(text="Extended Release Metformin Hydrochloride") ) - setattr(cls, "Anti-HER2 Antibody-drug Conjugate A166", - PermissibleValue(text="Anti-HER2 Antibody-drug Conjugate A166") ) - setattr(cls, "Thorium Th 227 Anetumab", - PermissibleValue(text="Thorium Th 227 Anetumab") ) - setattr(cls, "Ribozyme RPI.4610", - PermissibleValue(text="Ribozyme RPI.4610") ) - setattr(cls, "Oxidative Phosphorylation Inhibitor IM156", - PermissibleValue(text="Oxidative Phosphorylation Inhibitor IM156") ) - setattr(cls, "Anlotinib Hydrochloride", - PermissibleValue(text="Anlotinib Hydrochloride") ) - setattr(cls, "Anti-CD27L Antibody-Drug Conjugate AMG 172", - PermissibleValue(text="Anti-CD27L Antibody-Drug Conjugate AMG 172") ) - setattr(cls, "Poly-alendronate Dextran-Guanidine Conjugate", - PermissibleValue(text="Poly-alendronate Dextran-Guanidine Conjugate") ) - setattr(cls, "Splicing Inhibitor H3B-8800", - PermissibleValue(text="Splicing Inhibitor H3B-8800") ) - setattr(cls, "Liposomal HPV-16 E6/E7 Multipeptide Vaccine PDS0101", - PermissibleValue(text="Liposomal HPV-16 E6/E7 Multipeptide Vaccine PDS0101") ) - setattr(cls, "Not Otherwise Specified", - PermissibleValue(text="Not Otherwise Specified") ) - setattr(cls, "Gemcitabine Prodrug LY2334737", - PermissibleValue(text="Gemcitabine Prodrug LY2334737") ) - setattr(cls, "Thymidylate Synthase Inhibitor CX1106", - PermissibleValue(text="Thymidylate Synthase Inhibitor CX1106") ) - setattr(cls, "Procaspase Activating Compound-1 VO-100", - PermissibleValue(text="Procaspase Activating Compound-1 VO-100") ) - setattr(cls, "Dolastatin 10", - PermissibleValue(text="Dolastatin 10") ) - setattr(cls, "Anti-VEGFR2 Monoclonal Antibody HLX06", - PermissibleValue(text="Anti-VEGFR2 Monoclonal Antibody HLX06") ) - setattr(cls, "Long-acting Release Pasireotide", - PermissibleValue(text="Long-acting Release Pasireotide") ) - setattr(cls, "Autologous CD20-4SCAR-expressing T-cells 4SCAR20", - PermissibleValue(text="Autologous CD20-4SCAR-expressing T-cells 4SCAR20") ) - setattr(cls, "Anti-CD19/CD3 BiTE Antibody AMG 562", - PermissibleValue(text="Anti-CD19/CD3 BiTE Antibody AMG 562") ) - setattr(cls, "Emepepimut-S", - PermissibleValue(text="Emepepimut-S") ) - setattr(cls, "Goserelin Acetate", - PermissibleValue(text="Goserelin Acetate") ) - setattr(cls, "IAP Inhibitor AT-406", - PermissibleValue(text="IAP Inhibitor AT-406") ) - setattr(cls, "Anti-FRA/Eribulin Antibody-drug Conjugate MORAb-202", - PermissibleValue(text="Anti-FRA/Eribulin Antibody-drug Conjugate MORAb-202") ) - setattr(cls, "Anti-EGFRvIII Immunotoxin MR1-1", - PermissibleValue(text="Anti-EGFRvIII Immunotoxin MR1-1") ) - setattr(cls, "Lutetium Lu 177-NeoB", - PermissibleValue(text="Lutetium Lu 177-NeoB") ) - setattr(cls, "SMO Protein Inhibitor ZSP1602", - PermissibleValue(text="SMO Protein Inhibitor ZSP1602") ) - setattr(cls, "CXCR4 Peptide Antagonist LY2510924", - PermissibleValue(text="CXCR4 Peptide Antagonist LY2510924") ) - setattr(cls, "Leuprolide Mesylate Injectable Suspension", - PermissibleValue(text="Leuprolide Mesylate Injectable Suspension") ) - setattr(cls, "Itraconazole Dispersion In Polymer Matrix", - PermissibleValue(text="Itraconazole Dispersion In Polymer Matrix") ) - setattr(cls, "Tin Ethyl Etiopurpurin", - PermissibleValue(text="Tin Ethyl Etiopurpurin") ) - setattr(cls, "Anti-Globo H/MMAE Antibody-drug Conjugate OBI 999", - PermissibleValue(text="Anti-Globo H/MMAE Antibody-drug Conjugate OBI 999") ) - setattr(cls, "Anti-CTLA-4 Probody BMS-986288", - PermissibleValue(text="Anti-CTLA-4 Probody BMS-986288") ) - setattr(cls, "Vincristine Sulfate Liposome", - PermissibleValue(text="Vincristine Sulfate Liposome") ) - setattr(cls, "Iobenguane I-131", - PermissibleValue(text="Iobenguane I-131") ) - setattr(cls, "Monoclonal Antibody L6", - PermissibleValue(text="Monoclonal Antibody L6") ) - setattr(cls, "Anti-CTLA-4/OX40 Bispecific Antibody ATOR-1015", - PermissibleValue(text="Anti-CTLA-4/OX40 Bispecific Antibody ATOR-1015") ) - setattr(cls, "Gilteritinib Fumarate", - PermissibleValue(text="Gilteritinib Fumarate") ) - setattr(cls, "Anti-Neuropilin-1 Monoclonal Antibody MNRP1685A", - PermissibleValue(text="Anti-Neuropilin-1 Monoclonal Antibody MNRP1685A") ) - setattr(cls, "Lutetium Lu 177 DOTA-N3-CTT1403", - PermissibleValue(text="Lutetium Lu 177 DOTA-N3-CTT1403") ) - setattr(cls, "Lysine-specific Demethylase 1 Inhibitor INCB059872", - PermissibleValue(text="Lysine-specific Demethylase 1 Inhibitor INCB059872") ) - setattr(cls, "Anti-MUC16/MMAE Antibody-Drug Conjugate DMUC4064A", - PermissibleValue(text="Anti-MUC16/MMAE Antibody-Drug Conjugate DMUC4064A") ) - setattr(cls, "Cevipabulin Succinate", - PermissibleValue(text="Cevipabulin Succinate") ) - setattr(cls, "Monoclonal Antibody Hu3S193", - PermissibleValue(text="Monoclonal Antibody Hu3S193") ) - setattr(cls, "Anti-KSP/Anti-VEGF siRNAs ALN-VSP02", - PermissibleValue(text="Anti-KSP/Anti-VEGF siRNAs ALN-VSP02") ) - setattr(cls, "Nanoparticle Albumin-Bound Docetaxel", - PermissibleValue(text="Nanoparticle Albumin-Bound Docetaxel") ) - setattr(cls, "Anti-GnRH Vaccine PEP223", - PermissibleValue(text="Anti-GnRH Vaccine PEP223") ) - setattr(cls, "JAK2 Inhibitor AZD1480", - PermissibleValue(text="JAK2 Inhibitor AZD1480") ) - setattr(cls, "AXL Inhibitor SLC-391", - PermissibleValue(text="AXL Inhibitor SLC-391") ) - setattr(cls, "Anti-ENPP3 Antibody-Drug Conjugate AGS-16C3F", - PermissibleValue(text="Anti-ENPP3 Antibody-Drug Conjugate AGS-16C3F") ) - setattr(cls, "Sam68 Modulator CWP232291", - PermissibleValue(text="Sam68 Modulator CWP232291") ) - setattr(cls, "Anti-c-KIT Monoclonal Antibody CDX 0158", - PermissibleValue(text="Anti-c-KIT Monoclonal Antibody CDX 0158") ) - setattr(cls, "Hsp90 Inhibitor BIIB021", - PermissibleValue(text="Hsp90 Inhibitor BIIB021") ) - setattr(cls, "IDH1R132H-Specific Peptide Vaccine PEPIDH1M", - PermissibleValue(text="IDH1R132H-Specific Peptide Vaccine PEPIDH1M") ) - setattr(cls, "2-Fluorofucose-containing SGN-2FF", - PermissibleValue(text="2-Fluorofucose-containing SGN-2FF") ) - setattr(cls, "Decitabine and Cedazuridine", - PermissibleValue(text="Decitabine and Cedazuridine") ) - setattr(cls, "Transdermal 4-Hydroxytestosterone", - PermissibleValue(text="Transdermal 4-Hydroxytestosterone") ) - setattr(cls, "Anti-BCMA SparX Protein Plus BCMA-directed Anti-TAAG ARC T-cells CART-ddBCMA", - PermissibleValue(text="Anti-BCMA SparX Protein Plus BCMA-directed Anti-TAAG ARC T-cells CART-ddBCMA") ) - setattr(cls, "TLR Agonist CADI-05", - PermissibleValue(text="TLR Agonist CADI-05") ) - setattr(cls, "Oral Sodium Phenylbutyrate", - PermissibleValue(text="Oral Sodium Phenylbutyrate") ) - setattr(cls, "Mercaptopurine Anhydrous", - PermissibleValue(text="Mercaptopurine Anhydrous") ) - setattr(cls, "Anti-GD2 hu3F8/Anti-CD3 huOKT3 Bispecific Antibody", - PermissibleValue(text="Anti-GD2 hu3F8/Anti-CD3 huOKT3 Bispecific Antibody") ) - setattr(cls, "Anti-HER2 Antibody-drug Conjugate ARX788", - PermissibleValue(text="Anti-HER2 Antibody-drug Conjugate ARX788") ) - setattr(cls, "Ixazomib Citrate", - PermissibleValue(text="Ixazomib Citrate") ) - setattr(cls, "MEK Inhibitor AZD8330", - PermissibleValue(text="MEK Inhibitor AZD8330") ) - setattr(cls, "Anti-OFA Immunotherapeutic BB-MPI-03", - PermissibleValue(text="Anti-OFA Immunotherapeutic BB-MPI-03") ) - setattr(cls, "MTF-1 Inhibitor APTO-253 HCl", - PermissibleValue(text="MTF-1 Inhibitor APTO-253 HCl") ) - setattr(cls, "BRAF Inhibitor BGB-3245", - PermissibleValue(text="BRAF Inhibitor BGB-3245") ) - setattr(cls, "p70S6K Inhibitor LY2584702", - PermissibleValue(text="p70S6K Inhibitor LY2584702") ) - setattr(cls, "KRAS Mutant-targeting AMG 510", - PermissibleValue(text="KRAS Mutant-targeting AMG 510") ) - setattr(cls, "CDK4/6 Inhibitor G1T38", - PermissibleValue(text="CDK4/6 Inhibitor G1T38") ) - setattr(cls, "PKC-alpha Antisense Oligodeoxynucleotide ISIS 3521", - PermissibleValue(text="PKC-alpha Antisense Oligodeoxynucleotide ISIS 3521") ) - setattr(cls, "Pomegranate Liquid Extract", - PermissibleValue(text="Pomegranate Liquid Extract") ) - setattr(cls, "Retinoid 9cUAB30", - PermissibleValue(text="Retinoid 9cUAB30") ) - setattr(cls, "Tranylcypromine Sulfate", - PermissibleValue(text="Tranylcypromine Sulfate") ) - setattr(cls, "DNA-PK/PI3K-delta Inhibitor BR101801", - PermissibleValue(text="DNA-PK/PI3K-delta Inhibitor BR101801") ) - setattr(cls, "Nanosomal Docetaxel Lipid Suspension", - PermissibleValue(text="Nanosomal Docetaxel Lipid Suspension") ) - setattr(cls, "Melanoma TRP2 CTL Epitope Vaccine SCIB1", - PermissibleValue(text="Melanoma TRP2 CTL Epitope Vaccine SCIB1") ) - setattr(cls, "Selective Estrogen Receptor Degrader LSZ102", - PermissibleValue(text="Selective Estrogen Receptor Degrader LSZ102") ) - setattr(cls, "Clostridium Novyi-NT Spores", - PermissibleValue(text="Clostridium Novyi-NT Spores") ) - setattr(cls, "FLT3/FGFR Dual Kinase Inhibitor MAX-40279", - PermissibleValue(text="FLT3/FGFR Dual Kinase Inhibitor MAX-40279") ) - setattr(cls, "Anti-ErbB2/Anti-ErbB3 Bispecific Monoclonal Antibody MM-111", - PermissibleValue(text="Anti-ErbB2/Anti-ErbB3 Bispecific Monoclonal Antibody MM-111") ) - setattr(cls, "Glutamine Antagonist DRP-104", - PermissibleValue(text="Glutamine Antagonist DRP-104") ) - setattr(cls, "Iodine I 131 Ethiodized Oil", - PermissibleValue(text="Iodine I 131 Ethiodized Oil") ) - setattr(cls, "Recombinant Interferon Alfa-2b", - PermissibleValue(text="Recombinant Interferon Alfa-2b") ) - setattr(cls, "Gemcitabine Elaidate", - PermissibleValue(text="Gemcitabine Elaidate") ) - setattr(cls, "MDM2 Antagonist RO6839921", - PermissibleValue(text="MDM2 Antagonist RO6839921") ) - setattr(cls, "PD-L1/4-1BB/HSA Trispecific Fusion Protein NM21-1480", - PermissibleValue(text="PD-L1/4-1BB/HSA Trispecific Fusion Protein NM21-1480") ) - setattr(cls, "Synchrotope TA2M Plasmid DNA Vaccine", - PermissibleValue(text="Synchrotope TA2M Plasmid DNA Vaccine") ) - setattr(cls, "EphA2-targeting Bicycle Toxin Conjugate BT5528", - PermissibleValue(text="EphA2-targeting Bicycle Toxin Conjugate BT5528") ) - setattr(cls, "Human Monoclonal Antibody 216", - PermissibleValue(text="Human Monoclonal Antibody 216") ) - setattr(cls, "I 131 Monoclonal Antibody CC49", - PermissibleValue(text="I 131 Monoclonal Antibody CC49") ) - setattr(cls, "MEK Inhibitor CI-1040", - PermissibleValue(text="MEK Inhibitor CI-1040") ) - setattr(cls, "Super Enhancer Inhibitor GZ17-6.02", - PermissibleValue(text="Super Enhancer Inhibitor GZ17-6.02") ) - setattr(cls, "Monoclonal Antibody NEO-201", - PermissibleValue(text="Monoclonal Antibody NEO-201") ) - setattr(cls, "Anti-NRP1 Antibody ASP1948", - PermissibleValue(text="Anti-NRP1 Antibody ASP1948") ) - setattr(cls, "Tegafur-Gimeracil-Oteracil Potassium-Leucovorin Calcium Oral Formulation", - PermissibleValue(text="Tegafur-Gimeracil-Oteracil Potassium-Leucovorin Calcium Oral Formulation") ) - setattr(cls, "PSMA-targeted Tubulysin B-containing Conjugate EC1169", - PermissibleValue(text="PSMA-targeted Tubulysin B-containing Conjugate EC1169") ) - setattr(cls, "PI3Ka/mTOR Inhibitor PKI-179", - PermissibleValue(text="PI3Ka/mTOR Inhibitor PKI-179") ) - setattr(cls, "Anti-ErbB3 Monoclonal Antibody CDX-3379", - PermissibleValue(text="Anti-ErbB3 Monoclonal Antibody CDX-3379") ) - setattr(cls, "Engineered Toxin Body Targeting CD38 TAK-169", - PermissibleValue(text="Engineered Toxin Body Targeting CD38 TAK-169") ) - setattr(cls, "Topoisomerase-II Inhibitor Racemic XK469", - PermissibleValue(text="Topoisomerase-II Inhibitor Racemic XK469") ) - setattr(cls, "Ovarian Cancer Stem Cell/hTERT/Survivin mRNAs-loaded Autologous Dendritic Cell Vaccine DC-006", - PermissibleValue(text="Ovarian Cancer Stem Cell/hTERT/Survivin mRNAs-loaded Autologous Dendritic Cell Vaccine DC-006") ) - setattr(cls, "Factor VIIa Inhibitor PCI-27483", - PermissibleValue(text="Factor VIIa Inhibitor PCI-27483") ) - setattr(cls, "Sho-Saiko-To", - PermissibleValue(text="Sho-Saiko-To") ) - setattr(cls, "Nitrogen Mustard Prodrug PR-104", - PermissibleValue(text="Nitrogen Mustard Prodrug PR-104") ) - setattr(cls, "Dexamethasone Phosphate", - PermissibleValue(text="Dexamethasone Phosphate") ) - setattr(cls, "Anti-EGFRvIII/CD3 BiTE Antibody AMG 596", - PermissibleValue(text="Anti-EGFRvIII/CD3 BiTE Antibody AMG 596") ) - setattr(cls, "Pan-RAR Agonist/AP-1 Inhibitor LGD 1550", - PermissibleValue(text="Pan-RAR Agonist/AP-1 Inhibitor LGD 1550") ) - setattr(cls, "CCR4 Inhibitor FLX475", - PermissibleValue(text="CCR4 Inhibitor FLX475") ) - setattr(cls, "SERD SHR9549", - PermissibleValue(text="SERD SHR9549") ) - setattr(cls, "Autologous Mesothelin-specific Human mRNA CAR-transfected PBMCs MCY-M11", - PermissibleValue(text="Autologous Mesothelin-specific Human mRNA CAR-transfected PBMCs MCY-M11") ) - setattr(cls, "Rocakinogene Sifuplasmid", - PermissibleValue(text="Rocakinogene Sifuplasmid") ) - setattr(cls, "Deoxycytidine Analogue TAS-109", - PermissibleValue(text="Deoxycytidine Analogue TAS-109") ) - setattr(cls, "Recombinant Human Endostatin", - PermissibleValue(text="Recombinant Human Endostatin") ) - setattr(cls, "Protein Stabilized Liposomal Docetaxel Nanoparticles", - PermissibleValue(text="Protein Stabilized Liposomal Docetaxel Nanoparticles") ) - setattr(cls, "Anti-CTLA-4 Monoclonal Antibody ONC-392", - PermissibleValue(text="Anti-CTLA-4 Monoclonal Antibody ONC-392") ) - setattr(cls, "DR5 HexaBody Agonist GEN1029", - PermissibleValue(text="DR5 HexaBody Agonist GEN1029") ) - setattr(cls, "Anti-Claudin18.2 Monoclonal Antibody TST001", - PermissibleValue(text="Anti-Claudin18.2 Monoclonal Antibody TST001") ) - setattr(cls, "Anti-GD3 Antibody-drug Conjugate PF-06688992", - PermissibleValue(text="Anti-GD3 Antibody-drug Conjugate PF-06688992") ) - setattr(cls, "Nutlin-3a", - PermissibleValue(text="Nutlin-3a") ) - setattr(cls, "Patritumab Deruxtecan", - PermissibleValue(text="Patritumab Deruxtecan") ) - setattr(cls, "Photosensitizer LUZ 11", - PermissibleValue(text="Photosensitizer LUZ 11") ) - setattr(cls, "HPV-6-targeting Immunotherapeutic Vaccine INO-3106", - PermissibleValue(text="HPV-6-targeting Immunotherapeutic Vaccine INO-3106") ) - setattr(cls, "alpha-Folate Receptor-targeting Thymidylate Synthase Inhibitor ONX-0801", - PermissibleValue(text="alpha-Folate Receptor-targeting Thymidylate Synthase Inhibitor ONX-0801") ) - setattr(cls, "Bintrafusp Alfa", - PermissibleValue(text="Bintrafusp Alfa") ) - setattr(cls, "PI3K/mTOR/ALK-1/DNA-PK Inhibitor P7170", - PermissibleValue(text="PI3K/mTOR/ALK-1/DNA-PK Inhibitor P7170") ) - setattr(cls, "Avadomide Hydrochloride", - PermissibleValue(text="Avadomide Hydrochloride") ) - setattr(cls, "Multi-mode Kinase Inhibitor EOC317", - PermissibleValue(text="Multi-mode Kinase Inhibitor EOC317") ) - setattr(cls, "Cergutuzumab Amunaleukin", - PermissibleValue(text="Cergutuzumab Amunaleukin") ) - setattr(cls, "CDK8/19 Inhibitor SEL 120", - PermissibleValue(text="CDK8/19 Inhibitor SEL 120") ) - setattr(cls, "Selective Glucocorticoid Receptor Antagonist CORT125281", - PermissibleValue(text="Selective Glucocorticoid Receptor Antagonist CORT125281") ) - setattr(cls, "Aglatimagene Besadenovec", - PermissibleValue(text="Aglatimagene Besadenovec") ) - setattr(cls, "Cancer Peptide Vaccine S-588410", - PermissibleValue(text="Cancer Peptide Vaccine S-588410") ) - setattr(cls, "Platinum Acetylacetonate-Titanium Dioxide Nanoparticles", - PermissibleValue(text="Platinum Acetylacetonate-Titanium Dioxide Nanoparticles") ) - setattr(cls, "Cyproterone Acetate", - PermissibleValue(text="Cyproterone Acetate") ) - setattr(cls, "Dendrimer-conjugated Bcl-2/Bcl-XL Inhibitor AZD0466", - PermissibleValue(text="Dendrimer-conjugated Bcl-2/Bcl-XL Inhibitor AZD0466") ) - setattr(cls, "Shark Cartilage Extract AE-941", - PermissibleValue(text="Shark Cartilage Extract AE-941") ) - setattr(cls, "Fosifloxuridine Nafalbenamide", - PermissibleValue(text="Fosifloxuridine Nafalbenamide") ) - setattr(cls, "Calcium Release-activated Channel Inhibitor CM4620", - PermissibleValue(text="Calcium Release-activated Channel Inhibitor CM4620") ) - setattr(cls, "Lenvatinib Mesylate", - PermissibleValue(text="Lenvatinib Mesylate") ) - setattr(cls, "Docetaxel Emulsion ANX-514", - PermissibleValue(text="Docetaxel Emulsion ANX-514") ) - setattr(cls, "Vinblastine Sulfate", - PermissibleValue(text="Vinblastine Sulfate") ) - setattr(cls, "Toremifene Citrate", - PermissibleValue(text="Toremifene Citrate") ) - setattr(cls, "Simlukafusp Alfa", - PermissibleValue(text="Simlukafusp Alfa") ) - setattr(cls, "Pegylated Paclitaxel", - PermissibleValue(text="Pegylated Paclitaxel") ) - setattr(cls, "Vascular Disrupting Agent BNC105", - PermissibleValue(text="Vascular Disrupting Agent BNC105") ) - setattr(cls, "AKT 1/2 Inhibitor BAY1125976", - PermissibleValue(text="AKT 1/2 Inhibitor BAY1125976") ) - setattr(cls, "Selective Estrogen Receptor Degrader AZD9496", - PermissibleValue(text="Selective Estrogen Receptor Degrader AZD9496") ) - setattr(cls, "BET-bromodomain Inhibitor ODM-207", - PermissibleValue(text="BET-bromodomain Inhibitor ODM-207") ) - setattr(cls, "Anti-NaPi2b Antibody-drug Conjugate XMT-1592", - PermissibleValue(text="Anti-NaPi2b Antibody-drug Conjugate XMT-1592") ) - setattr(cls, "Immunomodulator LAM-003", - PermissibleValue(text="Immunomodulator LAM-003") ) - setattr(cls, "Antibody-drug Conjugate ADC XMT-1536", - PermissibleValue(text="Antibody-drug Conjugate ADC XMT-1536") ) - setattr(cls, "Anti-CD22 Monoclonal Antibody-MMAE Conjugate DCDT2980S", - PermissibleValue(text="Anti-CD22 Monoclonal Antibody-MMAE Conjugate DCDT2980S") ) - setattr(cls, "BRAF Inhibitor ARQ 736", - PermissibleValue(text="BRAF Inhibitor ARQ 736") ) - setattr(cls, "Arsenic Trioxide", - PermissibleValue(text="Arsenic Trioxide") ) - setattr(cls, "Androgen Antagonist APC-100", - PermissibleValue(text="Androgen Antagonist APC-100") ) - setattr(cls, "14C BMS-275183", - PermissibleValue(text="14C BMS-275183") ) - setattr(cls, "Recombinant Interferon Gamma", - PermissibleValue(text="Recombinant Interferon Gamma") ) - setattr(cls, "Verubulin Hydrochloride", - PermissibleValue(text="Verubulin Hydrochloride") ) - setattr(cls, "PD-1 Inhibitor", - PermissibleValue(text="PD-1 Inhibitor") ) - setattr(cls, "Allogeneic Anti-BCMA CAR-transduced T-cells ALLO-715", - PermissibleValue(text="Allogeneic Anti-BCMA CAR-transduced T-cells ALLO-715") ) - setattr(cls, "P-cadherin-targeting Agent PF-06671008", - PermissibleValue(text="P-cadherin-targeting Agent PF-06671008") ) - setattr(cls, "Shared Anti-Idiotype-AB-S024A", - PermissibleValue(text="Shared Anti-Idiotype-AB-S024A") ) - setattr(cls, "Bendamustine-containing Nanoparticle-based Formulation RXDX-107", - PermissibleValue(text="Bendamustine-containing Nanoparticle-based Formulation RXDX-107") ) - setattr(cls, "Vesigenurtucel-L", - PermissibleValue(text="Vesigenurtucel-L") ) - setattr(cls, "Mirvetuximab Soravtansine", - PermissibleValue(text="Mirvetuximab Soravtansine") ) - setattr(cls, "Anti-CEA/Anti-DTPA-In (F6-734) Bispecific Antibody", - PermissibleValue(text="Anti-CEA/Anti-DTPA-In (F6-734) Bispecific Antibody") ) - setattr(cls, "Losatuxizumab Vedotin", - PermissibleValue(text="Losatuxizumab Vedotin") ) - setattr(cls, "Indoximod Prodrug NLG802", - PermissibleValue(text="Indoximod Prodrug NLG802") ) - setattr(cls, "Angiogenesis Inhibitor GT-111", - PermissibleValue(text="Angiogenesis Inhibitor GT-111") ) - setattr(cls, "Anti-CD39 Monoclonal Antibody SRF617", - PermissibleValue(text="Anti-CD39 Monoclonal Antibody SRF617") ) - setattr(cls, "Golnerminogene Pradenovec", - PermissibleValue(text="Golnerminogene Pradenovec") ) - setattr(cls, "RNR Inhibitor COH29", - PermissibleValue(text="RNR Inhibitor COH29") ) - setattr(cls, "Silatecan AR-67", - PermissibleValue(text="Silatecan AR-67") ) - setattr(cls, "MDM2 Inhibitor BI 907828", - PermissibleValue(text="MDM2 Inhibitor BI 907828") ) - setattr(cls, "RIPK1 Inhibitor GSK3145095", - PermissibleValue(text="RIPK1 Inhibitor GSK3145095") ) - setattr(cls, "Diphtheria Toxin Fragment-Interleukin-2 Fusion Protein E7777", - PermissibleValue(text="Diphtheria Toxin Fragment-Interleukin-2 Fusion Protein E7777") ) - setattr(cls, "Autologous Dendritic Cell-based Immunotherapeutic AV0113", - PermissibleValue(text="Autologous Dendritic Cell-based Immunotherapeutic AV0113") ) - setattr(cls, "Iodine I 124 Monoclonal Antibody M5A", - PermissibleValue(text="Iodine I 124 Monoclonal Antibody M5A") ) - setattr(cls, "Antibody-drug Conjugate Anti-TIM-1-vcMMAE CDX-014", - PermissibleValue(text="Antibody-drug Conjugate Anti-TIM-1-vcMMAE CDX-014") ) - setattr(cls, "Triplatin Tetranitrate", - PermissibleValue(text="Triplatin Tetranitrate") ) - setattr(cls, "Tipapkinogene Sovacivec", - PermissibleValue(text="Tipapkinogene Sovacivec") ) - setattr(cls, "iPSC-derived CD16/IL-15RF-expressing Anti-CD19 CAR-NK Cells FT596", - PermissibleValue(text="iPSC-derived CD16/IL-15RF-expressing Anti-CD19 CAR-NK Cells FT596") ) - setattr(cls, "Beta-Carotene", - PermissibleValue(text="Beta-Carotene") ) - setattr(cls, "VGEF Mixed-Backbone Antisense Oligonucleotide GEM 220", - PermissibleValue(text="VGEF Mixed-Backbone Antisense Oligonucleotide GEM 220") ) - setattr(cls, "Anti-GITR Monoclonal Antibody GWN 323", - PermissibleValue(text="Anti-GITR Monoclonal Antibody GWN 323") ) - setattr(cls, "Autologous Anti-BCMA CD8+ CAR T-cells Descartes-11", - PermissibleValue(text="Autologous Anti-BCMA CD8+ CAR T-cells Descartes-11") ) - setattr(cls, "Natural Killer Cells ZRx101", - PermissibleValue(text="Natural Killer Cells ZRx101") ) - setattr(cls, "Pan-VEGFR/TIE2 Tyrosine Kinase Inhibitor CEP-11981", - PermissibleValue(text="Pan-VEGFR/TIE2 Tyrosine Kinase Inhibitor CEP-11981") ) - setattr(cls, "Paclitaxel Injection Concentrate for Nanodispersion", - PermissibleValue(text="Paclitaxel Injection Concentrate for Nanodispersion") ) - setattr(cls, "Fosgemcitabine Palabenamide", - PermissibleValue(text="Fosgemcitabine Palabenamide") ) - setattr(cls, "Selective Estrogen Receptor Degrader SRN-927", - PermissibleValue(text="Selective Estrogen Receptor Degrader SRN-927") ) - setattr(cls, "Tilsotolimod Sodium", - PermissibleValue(text="Tilsotolimod Sodium") ) - setattr(cls, "Autologous Heat-Shock Protein 70 Peptide Vaccine AG-858", - PermissibleValue(text="Autologous Heat-Shock Protein 70 Peptide Vaccine AG-858") ) - setattr(cls, "Gallium-based Bone Resorption Inhibitor AP-002", - PermissibleValue(text="Gallium-based Bone Resorption Inhibitor AP-002") ) - setattr(cls, "PI3K Alpha/Beta Inhibitor BAY1082439", - PermissibleValue(text="PI3K Alpha/Beta Inhibitor BAY1082439") ) - setattr(cls, "TLR7/8/9 Antagonist IMO-8400", - PermissibleValue(text="TLR7/8/9 Antagonist IMO-8400") ) - setattr(cls, "Acyclic Nucleoside Phosphonate Prodrug ABI-1968", - PermissibleValue(text="Acyclic Nucleoside Phosphonate Prodrug ABI-1968") ) - setattr(cls, "N,N-Dibenzyl Daunomycin", - PermissibleValue(text="N,N-Dibenzyl Daunomycin") ) - setattr(cls, "MKNK1 Inhibitor BAY 1143269", - PermissibleValue(text="MKNK1 Inhibitor BAY 1143269") ) - setattr(cls, "Monoclonal Antibody HuHMFG1", - PermissibleValue(text="Monoclonal Antibody HuHMFG1") ) - setattr(cls, "MEK Inhibitor GDC-0623", - PermissibleValue(text="MEK Inhibitor GDC-0623") ) - setattr(cls, "Vadastuximab Talirine", - PermissibleValue(text="Vadastuximab Talirine") ) - setattr(cls, "ATM Kinase Inhibitor AZD0156", - PermissibleValue(text="ATM Kinase Inhibitor AZD0156") ) - setattr(cls, "Daratumumab/rHuPH20", - PermissibleValue(text="Daratumumab/rHuPH20") ) - setattr(cls, "Cationic Peptide Cream Cypep-1", - PermissibleValue(text="Cationic Peptide Cream Cypep-1") ) - setattr(cls, "Bisantrene Hydrochloride", - PermissibleValue(text="Bisantrene Hydrochloride") ) - setattr(cls, "Anti-HLA-G Antibody TTX-080", - PermissibleValue(text="Anti-HLA-G Antibody TTX-080") ) - setattr(cls, "Recombinant Luteinizing Hormone", - PermissibleValue(text="Recombinant Luteinizing Hormone") ) - setattr(cls, "2-Hydroxyflutamide Depot", - PermissibleValue(text="2-Hydroxyflutamide Depot") ) - setattr(cls, "Oral Pancreatic Cancer Vaccine V3-P", - PermissibleValue(text="Oral Pancreatic Cancer Vaccine V3-P") ) - setattr(cls, "Anti-MMP-9 Monoclonal Antibody GS-5745", - PermissibleValue(text="Anti-MMP-9 Monoclonal Antibody GS-5745") ) - setattr(cls, "Mcl-1 Inhibitor MIK665", - PermissibleValue(text="Mcl-1 Inhibitor MIK665") ) - setattr(cls, "Recombinant Human EGF-rP64K/Montanide ISA 51 Vaccine", - PermissibleValue(text="Recombinant Human EGF-rP64K/Montanide ISA 51 Vaccine") ) - setattr(cls, "p97 Inhibitor CB-5083", - PermissibleValue(text="p97 Inhibitor CB-5083") ) - setattr(cls, "PV-10", - PermissibleValue(text="PV-10") ) - setattr(cls, "MDM2 Inhibitor KRT-232", - PermissibleValue(text="MDM2 Inhibitor KRT-232") ) - setattr(cls, "Citatuzumab Bogatox", - PermissibleValue(text="Citatuzumab Bogatox") ) - setattr(cls, "Leuprolide Acetate", - PermissibleValue(text="Leuprolide Acetate") ) - setattr(cls, "Autologous Nectin-4/FAP-targeted CAR-T Cells", - PermissibleValue(text="Autologous Nectin-4/FAP-targeted CAR-T Cells") ) - setattr(cls, "Anti-gremlin-1 Monoclonal Antibody UCB6114", - PermissibleValue(text="Anti-gremlin-1 Monoclonal Antibody UCB6114") ) - setattr(cls, "STAT3 Inhibitor OPB-31121", - PermissibleValue(text="STAT3 Inhibitor OPB-31121") ) - setattr(cls, "Anti-CD25 Monoclonal Antibody RO7296682", - PermissibleValue(text="Anti-CD25 Monoclonal Antibody RO7296682") ) - setattr(cls, "Autologous CD123-4SCAR-expressing T-cells 4SCAR123", - PermissibleValue(text="Autologous CD123-4SCAR-expressing T-cells 4SCAR123") ) - setattr(cls, "Loncastuximab Tesirine", - PermissibleValue(text="Loncastuximab Tesirine") ) - setattr(cls, "Bruceanol D", - PermissibleValue(text="Bruceanol D") ) - setattr(cls, "Anti-CD40L Fc-Fusion Protein BMS-986004", - PermissibleValue(text="Anti-CD40L Fc-Fusion Protein BMS-986004") ) - setattr(cls, "Iodine I 124 Monoclonal Antibody A33", - PermissibleValue(text="Iodine I 124 Monoclonal Antibody A33") ) - setattr(cls, "TIGIT Inhibitor M6223", - PermissibleValue(text="TIGIT Inhibitor M6223") ) - setattr(cls, "Cytarabine Monophosphate Prodrug MB07133", - PermissibleValue(text="Cytarabine Monophosphate Prodrug MB07133") ) - setattr(cls, "Iso-fludelone", - PermissibleValue(text="Iso-fludelone") ) - setattr(cls, "Transferrin Receptor-Targeted Anti-RRM2 siRNA CALAA-01", - PermissibleValue(text="Transferrin Receptor-Targeted Anti-RRM2 siRNA CALAA-01") ) - setattr(cls, "Retinyl Palmitate", - PermissibleValue(text="Retinyl Palmitate") ) - setattr(cls, "Thorium Th 227 Anetumab Corixetan", - PermissibleValue(text="Thorium Th 227 Anetumab Corixetan") ) - setattr(cls, "Monoclonal Antibody huJ591", - PermissibleValue(text="Monoclonal Antibody huJ591") ) - setattr(cls, "BF-200 Gel Formulation", - PermissibleValue(text="BF-200 Gel Formulation") ) - setattr(cls, "Curcumin/Doxorubicin-encapsulating Nanoparticle IMX-110", - PermissibleValue(text="Curcumin/Doxorubicin-encapsulating Nanoparticle IMX-110") ) - setattr(cls, "Olaptesed Pegol", - PermissibleValue(text="Olaptesed Pegol") ) - setattr(cls, "EZH1/2 Inhibitor DS-3201", - PermissibleValue(text="EZH1/2 Inhibitor DS-3201") ) - setattr(cls, "Aniline Mustard", - PermissibleValue(text="Aniline Mustard") ) - setattr(cls, "Porcupine Inhibitor ETC-1922159", - PermissibleValue(text="Porcupine Inhibitor ETC-1922159") ) - setattr(cls, "Tyrosinase-KLH", - PermissibleValue(text="Tyrosinase-KLH") ) - setattr(cls, "HER2-directed TLR8 Agonist SBT6050", - PermissibleValue(text="HER2-directed TLR8 Agonist SBT6050") ) - setattr(cls, "Irinotecan Sucrosofate", - PermissibleValue(text="Irinotecan Sucrosofate") ) - setattr(cls, "Anti-Globo H Monoclonal Antibody OBI-888", - PermissibleValue(text="Anti-Globo H Monoclonal Antibody OBI-888") ) - setattr(cls, "Anti-c-Met Monoclonal Antibody ARGX-111", - PermissibleValue(text="Anti-c-Met Monoclonal Antibody ARGX-111") ) - setattr(cls, "DNA Vaccine VB10.16", - PermissibleValue(text="DNA Vaccine VB10.16") ) - setattr(cls, "Coxsackievirus A21", - PermissibleValue(text="Coxsackievirus A21") ) - setattr(cls, "Anti-CD20/CD3 Monoclonal Antibody REGN1979", - PermissibleValue(text="Anti-CD20/CD3 Monoclonal Antibody REGN1979") ) - setattr(cls, "TRAIL Receptor Agonist ABBV-621", - PermissibleValue(text="TRAIL Receptor Agonist ABBV-621") ) - setattr(cls, "Adenovirus Serotype 26-expressing HPV16 Vaccine JNJ-63682918", - PermissibleValue(text="Adenovirus Serotype 26-expressing HPV16 Vaccine JNJ-63682918") ) - setattr(cls, "Recombinant Transforming Growth Factor-Beta", - PermissibleValue(text="Recombinant Transforming Growth Factor-Beta") ) - setattr(cls, "Monoclonal Antibody 3H1 Anti-Idiotype Vaccine", - PermissibleValue(text="Monoclonal Antibody 3H1 Anti-Idiotype Vaccine") ) - setattr(cls, "BET Inhibitor INCB057643", - PermissibleValue(text="BET Inhibitor INCB057643") ) - setattr(cls, "Anti-PD-L1 Monoclonal Antibody IMC-001", - PermissibleValue(text="Anti-PD-L1 Monoclonal Antibody IMC-001") ) - setattr(cls, "Glasdegib Maleate", - PermissibleValue(text="Glasdegib Maleate") ) - setattr(cls, "Lutetium Lu 177 Monoclonal Antibody J591", - PermissibleValue(text="Lutetium Lu 177 Monoclonal Antibody J591") ) - setattr(cls, "Pan-AKT Kinase Inhibitor GSK690693", - PermissibleValue(text="Pan-AKT Kinase Inhibitor GSK690693") ) - setattr(cls, "HDAC Inhibitor CXD101", - PermissibleValue(text="HDAC Inhibitor CXD101") ) - setattr(cls, "Nolatrexed Dihydrochloride", - PermissibleValue(text="Nolatrexed Dihydrochloride") ) - setattr(cls, "Smoothened Antagonist TAK-441", - PermissibleValue(text="Smoothened Antagonist TAK-441") ) - setattr(cls, "Oglufanide Disodium", - PermissibleValue(text="Oglufanide Disodium") ) - setattr(cls, "ADH-1", - PermissibleValue(text="ADH-1") ) - setattr(cls, "Anti-CEACAM5 Antibody-Drug Conjugate SAR408701", - PermissibleValue(text="Anti-CEACAM5 Antibody-Drug Conjugate SAR408701") ) - setattr(cls, "pbi-shRNA STMN1 Lipoplex", - PermissibleValue(text="pbi-shRNA STMN1 Lipoplex") ) - setattr(cls, "Teglarinad Chloride", - PermissibleValue(text="Teglarinad Chloride") ) - setattr(cls, "Anti-OX40 Monoclonal Antibody GSK3174998", - PermissibleValue(text="Anti-OX40 Monoclonal Antibody GSK3174998") ) - setattr(cls, "Esterified Estrogens", - PermissibleValue(text="Esterified Estrogens") ) - setattr(cls, "Yttrium Y-90 Tacatuzumab Tetraxetan", - PermissibleValue(text="Yttrium Y-90 Tacatuzumab Tetraxetan") ) - setattr(cls, "Anti-CD40 Monoclonal Antibody SEA-CD40", - PermissibleValue(text="Anti-CD40 Monoclonal Antibody SEA-CD40") ) - setattr(cls, "CDC7 Kinase Inhibitor BMS-863233", - PermissibleValue(text="CDC7 Kinase Inhibitor BMS-863233") ) - setattr(cls, "Phosphatidylcholine-Bound Silybin", - PermissibleValue(text="Phosphatidylcholine-Bound Silybin") ) - setattr(cls, "Anti-CSF1 Monoclonal Antibody PD-0360324", - PermissibleValue(text="Anti-CSF1 Monoclonal Antibody PD-0360324") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubstanceRole(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Substance role - """ - _defn = EnumDefinition( - name="EnumCCDHSubstanceRole", - description="Autogenerated Enumeration for CRDC-H Substance role", - code_set=None, - code_set_version="2021-07-21T20:42:59.982161+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTimePointEventType(EnumDefinitionImpl): - """ - A specific type of event for which a timepoint is captured - """ - _defn = EnumDefinition( - name="EnumCCDHTimePointEventType", - description="A specific type of event for which a timepoint is captured", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "IACUC approval", - PermissibleValue(text="IACUC approval", - description="The date that the Institutional Animal Care and Use Committee (IACUC) approved an animal study protocol. This date cannot be released to funding agencies until congruency between the animal use in the funding proposal and the IACUC approved protocol has been verified.") ) - setattr(cls, "IRB approval", - PermissibleValue(text="IRB approval", - description="The date that the Institutional Review Board (IRB) approved a study protocol") ) - setattr(cls, "Histological confirmation of diagnosis", - PermissibleValue(text="Histological confirmation of diagnosis", - description="The date that a histological diagnosis was confirmed.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTobaccoExposureObservationCategory(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H TobaccoExposureObservation category - """ - _defn = EnumDefinition( - name="EnumCCDHTobaccoExposureObservationCategory", - description="Autogenerated Enumeration for CRDC-H TobaccoExposureObservation category", - code_set=None, - code_set_version="2021-07-21T20:43:00.276862+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTobaccoExposureObservationObservationType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H TobaccoExposureObservation observation_type - """ - _defn = EnumDefinition( - name="EnumCCDHTobaccoExposureObservationObservationType", - description="Autogenerated Enumeration for CRDC-H TobaccoExposureObservation observation_type", - code_set=None, - code_set_version="2021-07-21T20:43:00.419380+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTobaccoExposureObservationMethodType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H TobaccoExposureObservation method_type - """ - _defn = EnumDefinition( - name="EnumCCDHTobaccoExposureObservationMethodType", - description="Autogenerated Enumeration for CRDC-H TobaccoExposureObservation method_type", - code_set=None, - code_set_version="2021-07-21T20:43:00.568418+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTobaccoExposureObservationValueCodeableConcept(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H TobaccoExposureObservation valueCodeableConcept - """ - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - Other = PermissibleValue(text="Other") - Cigar = PermissibleValue(text="Cigar") - Cigarette = PermissibleValue(text="Cigarette") - Pipe = PermissibleValue(text="Pipe") - Yes = PermissibleValue(text="Yes") - No = PermissibleValue(text="No") - Cigarettes = PermissibleValue(text="Cigarettes") - - _defn = EnumDefinition( - name="EnumCCDHTobaccoExposureObservationValueCodeableConcept", - description="Autogenerated Enumeration for CRDC-H TobaccoExposureObservation valueCodeableConcept", - code_set=None, - code_set_version="2021-07-21T20:43:00.718144+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Some days", - PermissibleValue(text="Some days") ) - setattr(cls, "Every day", - PermissibleValue(text="Every day") ) - setattr(cls, "After 60 Minutes", - PermissibleValue(text="After 60 Minutes") ) - setattr(cls, "Within 5 Minutes", - PermissibleValue(text="Within 5 Minutes") ) - setattr(cls, "6-30 Minutes", - PermissibleValue(text="6-30 Minutes") ) - setattr(cls, "31-60 Minutes", - PermissibleValue(text="31-60 Minutes") ) - setattr(cls, "Electronic Cigarette", - PermissibleValue(text="Electronic Cigarette") ) - setattr(cls, "Smokeless Tobacco", - PermissibleValue(text="Smokeless Tobacco") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "1", - PermissibleValue(text="1", - description="Lifelong Non-Smoker") ) - setattr(cls, "7", - PermissibleValue(text="7", - description="Smoking history not documented") ) - setattr(cls, "2", - PermissibleValue(text="2", - description="Current Smoker") ) - setattr(cls, "3", - PermissibleValue(text="3", - description="Current Reformed Smoker for > 15 yrs") ) - setattr(cls, "5", - PermissibleValue(text="5", - description="Current Reformed Smoker, Duration Not Specified") ) - setattr(cls, "4", - PermissibleValue(text="4", - description="Current Reformed Smoker for < or = 15 yrs") ) - setattr(cls, "6", - PermissibleValue(text="6", - description="Smoker at Diagnosis") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTreatmentTreatmentType(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Treatment treatment_type - """ - Chemotherapy = PermissibleValue(text="Chemotherapy", - description="Chemotherapy") - Chemoembolization = PermissibleValue(text="Chemoembolization") - Cryoablation = PermissibleValue(text="Cryoablation") - Surgery = PermissibleValue(text="Surgery", - description="Surgical Procedure") - Other = PermissibleValue(text="Other", - description="Other") - Embolization = PermissibleValue(text="Embolization") - Pleurodesis = PermissibleValue(text="Pleurodesis") - Chemoprotectant = PermissibleValue(text="Chemoprotectant") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - Radioembolization = PermissibleValue(text="Radioembolization") - - _defn = EnumDefinition( - name="EnumCCDHTreatmentTreatmentType", - description="Autogenerated Enumeration for CRDC-H Treatment treatment_type", - code_set=None, - code_set_version="2021-07-21T20:43:00.885405+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Radiation, Cyberknife", - PermissibleValue(text="Radiation, Cyberknife") ) - setattr(cls, "Radiation, Combination", - PermissibleValue(text="Radiation, Combination") ) - setattr(cls, "Stereotactic Radiosurgery", - PermissibleValue(text="Stereotactic Radiosurgery") ) - setattr(cls, "Ancillary Treatment", - PermissibleValue(text="Ancillary Treatment") ) - setattr(cls, "Ethanol Injection Ablation", - PermissibleValue(text="Ethanol Injection Ablation") ) - setattr(cls, "Stem Cell Transplantation, Haploidentical", - PermissibleValue(text="Stem Cell Transplantation, Haploidentical") ) - setattr(cls, "Concurrent Chemoradiation", - PermissibleValue(text="Concurrent Chemoradiation") ) - setattr(cls, "Stem Cell Treatment", - PermissibleValue(text="Stem Cell Treatment") ) - setattr(cls, "Brachytherapy, High Dose", - PermissibleValue(text="Brachytherapy, High Dose", - description="High-Dose Rate Brachytherapy") ) - setattr(cls, "Radiation, Photon Beam", - PermissibleValue(text="Radiation, Photon Beam") ) - setattr(cls, "Radiation, Systemic", - PermissibleValue(text="Radiation, Systemic") ) - setattr(cls, "Radiation Therapy, NOS", - PermissibleValue(text="Radiation Therapy, NOS") ) - setattr(cls, "Radiation, 2D Conventional", - PermissibleValue(text="Radiation, 2D Conventional") ) - setattr(cls, "I-131 Radiation Therapy", - PermissibleValue(text="I-131 Radiation Therapy") ) - setattr(cls, "Radiosensitizing Agent", - PermissibleValue(text="Radiosensitizing Agent") ) - setattr(cls, "Internal Radiation", - PermissibleValue(text="Internal Radiation", - description="Internal Radiation Therapy") ) - setattr(cls, "Radiation, 3D Conformal", - PermissibleValue(text="Radiation, 3D Conformal") ) - setattr(cls, "Radiation, Stereotactic/Gamma Knife/SRS", - PermissibleValue(text="Radiation, Stereotactic/Gamma Knife/SRS") ) - setattr(cls, "Ablation, Ethanol Injection", - PermissibleValue(text="Ablation, Ethanol Injection") ) - setattr(cls, "Antiseizure Treatment", - PermissibleValue(text="Antiseizure Treatment") ) - setattr(cls, "Stem Cell Transplantation, Autologous", - PermissibleValue(text="Stem Cell Transplantation, Autologous") ) - setattr(cls, "Bisphosphonate Therapy", - PermissibleValue(text="Bisphosphonate Therapy") ) - setattr(cls, "Hormone Therapy", - PermissibleValue(text="Hormone Therapy", - description="Endocrine Therapy") ) - setattr(cls, "Radiation, Implants", - PermissibleValue(text="Radiation, Implants") ) - setattr(cls, "Radiation, Internal", - PermissibleValue(text="Radiation, Internal") ) - setattr(cls, "Ablation, Cryo", - PermissibleValue(text="Ablation, Cryo") ) - setattr(cls, "Stem Cell Transplantation, NOS", - PermissibleValue(text="Stem Cell Transplantation, NOS") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Radiation, Hypofractionated", - PermissibleValue(text="Radiation, Hypofractionated") ) - setattr(cls, "Brachytherapy, Low Dose", - PermissibleValue(text="Brachytherapy, Low Dose", - description="Low-Dose Rate Brachytherapy") ) - setattr(cls, "Radiation, External Beam", - PermissibleValue(text="Radiation, External Beam") ) - setattr(cls, "Radiation, Intensity-Modulated Radiotherapy", - PermissibleValue(text="Radiation, Intensity-Modulated Radiotherapy") ) - setattr(cls, "Targeted Molecular Therapy", - PermissibleValue(text="Targeted Molecular Therapy", - description="Targeted Molecular Therapy") ) - setattr(cls, "Stem Cell Transplantation, Double Autologous", - PermissibleValue(text="Stem Cell Transplantation, Double Autologous") ) - setattr(cls, "Blinded Study, Treatment Unknown", - PermissibleValue(text="Blinded Study, Treatment Unknown") ) - setattr(cls, "Isolated Limb Perfusion (ILP)", - PermissibleValue(text="Isolated Limb Perfusion (ILP)") ) - setattr(cls, "Stem Cell Transplantation, Allogeneic", - PermissibleValue(text="Stem Cell Transplantation, Allogeneic") ) - setattr(cls, "Pharmaceutical Therapy, NOS", - PermissibleValue(text="Pharmaceutical Therapy, NOS") ) - setattr(cls, "Stem Cell Transplantation, Non-Myeloablative", - PermissibleValue(text="Stem Cell Transplantation, Non-Myeloablative") ) - setattr(cls, "Steroid Therapy", - PermissibleValue(text="Steroid Therapy") ) - setattr(cls, "Stem Cell Transplantation, Syngenic", - PermissibleValue(text="Stem Cell Transplantation, Syngenic") ) - setattr(cls, "Ablation, Radiofrequency", - PermissibleValue(text="Ablation, Radiofrequency") ) - setattr(cls, "External Beam Radiation", - PermissibleValue(text="External Beam Radiation") ) - setattr(cls, "Ablation, Microwave", - PermissibleValue(text="Ablation, Microwave") ) - setattr(cls, "Radiation, Proton Beam", - PermissibleValue(text="Radiation, Proton Beam") ) - setattr(cls, "Brachytherapy, NOS", - PermissibleValue(text="Brachytherapy, NOS") ) - setattr(cls, "Immunotherapy (Including Vaccines)", - PermissibleValue(text="Immunotherapy (Including Vaccines)") ) - setattr(cls, "Ablation, NOS", - PermissibleValue(text="Ablation, NOS") ) - setattr(cls, "Ablation, Radiosurgical", - PermissibleValue(text="Ablation, Radiosurgical") ) - setattr(cls, "Organ Transplantation", - PermissibleValue(text="Organ Transplantation") ) - setattr(cls, "Radiation, Mixed Photon Beam", - PermissibleValue(text="Radiation, Mixed Photon Beam") ) - setattr(cls, "Radioactive Iodine Therapy", - PermissibleValue(text="Radioactive Iodine Therapy") ) - setattr(cls, "Radiation, Radioisotope", - PermissibleValue(text="Radiation, Radioisotope") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTreatmentTreatmentEndReason(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Treatment treatment_end_reason - """ - Other = PermissibleValue(text="Other") - Death = PermissibleValue(text="Death") - - _defn = EnumDefinition( - name="EnumCCDHTreatmentTreatmentEndReason", - description="Autogenerated Enumeration for CRDC-H Treatment treatment_end_reason", - code_set=None, - code_set_version="2021-07-21T20:43:01.070322+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Disease Progression", - PermissibleValue(text="Disease Progression") ) - setattr(cls, "Withdrawal by Subject", - PermissibleValue(text="Withdrawal by Subject") ) - setattr(cls, "Adverse Event", - PermissibleValue(text="Adverse Event") ) - setattr(cls, "Course of Therapy Completed", - PermissibleValue(text="Course of Therapy Completed") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTreatmentRegimen(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Treatment regimen - """ - _defn = EnumDefinition( - name="EnumCCDHTreatmentRegimen", - description="Autogenerated Enumeration for CRDC-H Treatment regimen", - code_set=None, - code_set_version="2021-07-21T20:43:01.219318+00:00", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTreatmentTreatmentFrequency(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Treatment treatment_frequency - """ - Unknown = PermissibleValue(text="Unknown") - - _defn = EnumDefinition( - name="EnumCCDHTreatmentTreatmentFrequency", - description="Autogenerated Enumeration for CRDC-H Treatment treatment_frequency", - code_set=None, - code_set_version="2021-07-21T20:43:01.376562+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Every Other Day", - PermissibleValue(text="Every Other Day") ) - setattr(cls, "Five Times Daily", - PermissibleValue(text="Five Times Daily") ) - setattr(cls, "Every Hour", - PermissibleValue(text="Every Hour") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Twice Daily", - PermissibleValue(text="Twice Daily") ) - setattr(cls, "Three Times Daily", - PermissibleValue(text="Three Times Daily") ) - setattr(cls, "Once Weekly", - PermissibleValue(text="Once Weekly") ) - setattr(cls, "Twice Weekly", - PermissibleValue(text="Twice Weekly") ) - setattr(cls, "Every 24 Hours", - PermissibleValue(text="Every 24 Hours") ) - setattr(cls, "Four Times Daily", - PermissibleValue(text="Four Times Daily") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTreatmentTreatmentIntent(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Treatment treatment_intent - """ - Neoadjuvant = PermissibleValue(text="Neoadjuvant", - description="Neoadjuvant Therapy") - Unknown = PermissibleValue(text="Unknown") - Prevention = PermissibleValue(text="Prevention", - description="Cancer Prevention") - Adjuvant = PermissibleValue(text="Adjuvant", - description="Adjuvant Therapy") - Cure = PermissibleValue(text="Cure", - description="Cure") - Palliative = PermissibleValue(text="Palliative", - description="Palliative") - - _defn = EnumDefinition( - name="EnumCCDHTreatmentTreatmentIntent", - description="Autogenerated Enumeration for CRDC-H Treatment treatment_intent", - code_set=None, - code_set_version="2021-07-21T20:43:01.528612+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Maintenance Therapy", - PermissibleValue(text="Maintenance Therapy") ) - setattr(cls, "Androgen Deprivation Therapy (ADT)", - PermissibleValue(text="Androgen Deprivation Therapy (ADT)") ) - setattr(cls, "Cancer Control", - PermissibleValue(text="Cancer Control") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTreatmentTreatmentEffect(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Treatment treatment_effect - """ - Yes = PermissibleValue(text="Yes") - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - No = PermissibleValue(text="No") - - _defn = EnumDefinition( - name="EnumCCDHTreatmentTreatmentEffect", - description="Autogenerated Enumeration for CRDC-H Treatment treatment_effect", - code_set=None, - code_set_version="2021-07-21T20:43:01.685766+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported", - description="Not Reported") ) - setattr(cls, "Incomplete Necrosis (Viable Tumor Present)", - PermissibleValue(text="Incomplete Necrosis (Viable Tumor Present)") ) - setattr(cls, "No Necrosis", - PermissibleValue(text="No Necrosis") ) - setattr(cls, "No Known Treatment Effect", - PermissibleValue(text="No Known Treatment Effect") ) - setattr(cls, "Complete Necrosis (No Viable Tumor)", - PermissibleValue(text="Complete Necrosis (No Viable Tumor)") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTreatmentTreatmentOutcome(EnumDefinitionImpl): - """ - Autogenerated Enumeration for CRDC-H Treatment treatment_outcome - """ - Unknown = PermissibleValue(text="Unknown", - description="Unknown") - - _defn = EnumDefinition( - name="EnumCCDHTreatmentTreatmentOutcome", - description="Autogenerated Enumeration for CRDC-H Treatment treatment_outcome", - code_set=None, - code_set_version="2021-07-21T20:43:01.840442+00:00", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "Treatment Ongoing", - PermissibleValue(text="Treatment Ongoing", - description="Treatment Still in Progress") ) - setattr(cls, "Complete Response", - PermissibleValue(text="Complete Response", - description="Complete Response") ) - setattr(cls, "Very Good Partial Response", - PermissibleValue(text="Very Good Partial Response", - description="Very good Partial Response") ) - setattr(cls, "No Measurable Disease", - PermissibleValue(text="No Measurable Disease") ) - setattr(cls, "Stable Disease", - PermissibleValue(text="Stable Disease", - description="Stable Disease") ) - setattr(cls, "Mixed Response", - PermissibleValue(text="Mixed Response", - description="Mixed response") ) - setattr(cls, "Persistent Disease", - PermissibleValue(text="Persistent Disease", - description="Persistent disease (Hematologic persistence)") ) - setattr(cls, "Not Reported", - PermissibleValue(text="Not Reported") ) - setattr(cls, "Treatment Stopped Due to Toxicity", - PermissibleValue(text="Treatment Stopped Due to Toxicity", - description="Treatment Terminated Due to Toxicity") ) - setattr(cls, "Progressive Disease", - PermissibleValue(text="Progressive Disease", - description="Progressive Disease") ) - setattr(cls, "Partial Response", - PermissibleValue(text="Partial Response", - description="Partial Response") ) - setattr(cls, "No Response", - PermissibleValue(text="No Response", - description="No Response") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionConditionObservation(EnumDefinitionImpl): - """ - Types of observations about the environmental conditions under which specific aspects of an activity were - performed. - """ - ischemic_temperature = PermissibleValue(text="ischemic_temperature", - description="A term describing the temperature of a specimen when it experienced ischemia.") - - _defn = EnumDefinition( - name="EnumCCDHExecutionConditionObservation", - description="Types of observations about the environmental conditions under which specific aspects of an activity were performed.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHExecutionTimeObservation(EnumDefinitionImpl): - """ - An observation about the duration of specific aspects / parts of an activity. - """ - time_between_excision_and_freezing = PermissibleValue(text="time_between_excision_and_freezing", - description="The elapsed time between the excision and freezing of the specimen from its subject/source.") - time_between_clamping_and_freezing = PermissibleValue(text="time_between_clamping_and_freezing", - description="The elapsed time between the clamping of blood supply and freezing of the specimen from its subject/source.") - ischemic_time = PermissibleValue(text="ischemic_time", - description="Duration of time, in seconds, between when the specimen stopped receiving oxygen and when it was preserved or processed.") - - _defn = EnumDefinition( - name="EnumCCDHExecutionTimeObservation", - description="An observation about the duration of specific aspects / parts of an activity.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHResearchProjectPrimaryAnatomicSite(EnumDefinitionImpl): - """ - The text term used to describe the general location of the malignant disease, as categorized by the World Health - Organization's (WHO) International Classification of Diseases for Oncology (ICD-O). - """ - _defn = EnumDefinition( - name="EnumCCDHResearchProjectPrimaryAnatomicSite", - description="The text term used to describe the general location of the malignant disease, as categorized by the World Health Organization's (WHO) International Classification of Diseases for Oncology (ICD-O).", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHSubstanceRole(EnumDefinitionImpl): - """ - A role played by the substance in a particular application (e.g. the role of a lysis buffer when applied in a - specimen creation activity, or the role of fixative when applied in specimen processing) - """ - fixative = PermissibleValue(text="fixative", - description="A substance applied preserve biological tissues from decay due to autolysis or putrefaction") - - _defn = EnumDefinition( - name="EnumCCDHSubstanceRole", - description="A role played by the substance in a particular application (e.g. the role of a lysis buffer when applied in a specimen creation activity, or the role of fixative when applied in specimen processing)", - ) - - @classmethod - def _addvals(cls): - setattr(cls, "lysis buffer", - PermissibleValue(text="lysis buffer", - description="A buffer applied to lyse and extract content from biological material.") ) - setattr(cls, "mounting medium", - PermissibleValue(text="mounting medium", - description="A substance applied to secure a specimen or slide in place for further examination (typically through microscopy)") ) - setattr(cls, "collection media", - PermissibleValue(text="collection media", - description="A substance applied to stabilize or support the growth/metabolic activity of a specimen or derived product such as a cell line.") ) - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -class EnumCCDHTobbaccoExposureObservationObservationType(EnumDefinitionImpl): - """ - Types of observations about a Subject's exposure to or use of tobacco. - """ - cigarettes_per_day = PermissibleValue(text="cigarettes_per_day", - description="The average number of cigarettes smoked per day.") - pack_years_smoked = PermissibleValue(text="pack_years_smoked", - description="Numeric computed value to represent lifetime tobacco exposure defined as number of cigarettes smoked per day x number of years smoked divided by 20.") - tobacco_smoking_onset_year = PermissibleValue(text="tobacco_smoking_onset_year", - description="The year in which the participant began smoking.") - tobacco_smoking_quit_year = PermissibleValue(text="tobacco_smoking_quit_year", - description="The year in which the participant quit smoking.") - years_smoked = PermissibleValue(text="years_smoked", - description="Numeric value (or unknown) to represent the number of years a person has been smoking.") - smoking_frequency = PermissibleValue(text="smoking_frequency", - description="The text term used to generally describe how often the patient smokes.") - time_between_waking_and_first_smoke = PermissibleValue(text="time_between_waking_and_first_smoke", - description="The text term used to describe the approximate amount of time elapsed between the time the patient wakes up in the morning to the time they smoke their first cigarette.") - environmental_tobacco_smoke_exposure = PermissibleValue(text="environmental_tobacco_smoke_exposure", - description="The yes/no/unknown indicator used to describe whether a patient was exposed to smoke that is emitted from burning tobacco, including cigarettes, pipes, and cigars. This includes tobacco smoke exhaled by smokers.") - tobacco_smoking_status = PermissibleValue(text="tobacco_smoking_status", - description="Category describing current smoking status and smoking history as self-reported by a patient.") - type_of_tobacco_used = PermissibleValue(text="type_of_tobacco_used", - description="The text term used to describe the specific type of tobacco used by the patient.") - - _defn = EnumDefinition( - name="EnumCCDHTobbaccoExposureObservationObservationType", - description="Types of observations about a Subject's exposure to or use of tobacco.", - ) - - - def __str__(self) -> str: - """ Use only the code of this enumeration when dumping this enumeration to a string. """ - return self._code.text - -# Slots -class slots: - pass - -slots.alcoholExposureObservation__id = Slot(uri=CCDH.id, name="alcoholExposureObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.alcoholExposureObservation__id, domain=AlcoholExposureObservation, range=Optional[Union[str, CcdhString]]) - -slots.alcoholExposureObservation__category = Slot(uri=CCDH.category, name="alcoholExposureObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.alcoholExposureObservation__category, domain=AlcoholExposureObservation, range=Optional[Union[str, "EnumCCDHAlcoholExposureObservationCategory"]]) - -slots.alcoholExposureObservation__observation_type = Slot(uri=CCDH.observation_type, name="alcoholExposureObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.alcoholExposureObservation__observation_type, domain=AlcoholExposureObservation, range=Union[str, "EnumCCDHAlcoholExposureObservationObservationType"]) - -slots.alcoholExposureObservation__method_type = Slot(uri=CCDH.method_type, name="alcoholExposureObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.alcoholExposureObservation__method_type, domain=AlcoholExposureObservation, range=Optional[Union[str, "EnumCCDHAlcoholExposureObservationMethodType"]]) - -slots.alcoholExposureObservation__focus = Slot(uri=CCDH.focus, name="alcoholExposureObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.alcoholExposureObservation__focus, domain=AlcoholExposureObservation, range=Optional[Union[dict, "Entity"]]) - -slots.alcoholExposureObservation__subject = Slot(uri=CCDH.subject, name="alcoholExposureObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.alcoholExposureObservation__subject, domain=AlcoholExposureObservation, range=Optional[Union[dict, "Subject"]]) - -slots.alcoholExposureObservation__performed_by = Slot(uri=CCDH.performed_by, name="alcoholExposureObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.alcoholExposureObservation__performed_by, domain=AlcoholExposureObservation, range=Optional[Union[dict, "Organization"]]) - -slots.alcoholExposureObservation__valueInteger = Slot(uri=CCDH.valueInteger, name="alcoholExposureObservation__valueInteger", curie=CCDH.curie('valueInteger'), - model_uri=CCDH.alcoholExposureObservation__valueInteger, domain=AlcoholExposureObservation, range=Optional[Union[int, CcdhInteger]]) - -slots.alcoholExposureObservation__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="alcoholExposureObservation__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.alcoholExposureObservation__valueCodeableConcept, domain=AlcoholExposureObservation, range=Optional[Union[str, "EnumCCDHAlcoholExposureObservationValueCodeableConcept"]]) - -slots.bodySite__site = Slot(uri=CCDH.site, name="bodySite__site", curie=CCDH.curie('site'), - model_uri=CCDH.bodySite__site, domain=BodySite, range=Union[str, "EnumCCDHBodySiteSite"]) - -slots.bodySite__qualifier = Slot(uri=CCDH.qualifier, name="bodySite__qualifier", curie=CCDH.curie('qualifier'), - model_uri=CCDH.bodySite__qualifier, domain=BodySite, range=Optional[Union[Union[str, "EnumCCDHBodySiteQualifier"], List[Union[str, "EnumCCDHBodySiteQualifier"]]]]) - -slots.biologicProduct__id = Slot(uri=CCDH.id, name="biologicProduct__id", curie=CCDH.curie('id'), - model_uri=CCDH.biologicProduct__id, domain=BiologicProduct, range=Optional[Union[str, CcdhString]]) - -slots.biologicProduct__identifier = Slot(uri=CCDH.identifier, name="biologicProduct__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.biologicProduct__identifier, domain=BiologicProduct, range=Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]]) - -slots.biologicProduct__description = Slot(uri=CCDH.description, name="biologicProduct__description", curie=CCDH.curie('description'), - model_uri=CCDH.biologicProduct__description, domain=BiologicProduct, range=Optional[Union[str, CcdhString]]) - -slots.biologicProduct__product_type = Slot(uri=CCDH.product_type, name="biologicProduct__product_type", curie=CCDH.curie('product_type'), - model_uri=CCDH.biologicProduct__product_type, domain=BiologicProduct, range=Optional[Union[str, "EnumCCDHBiologicProductProductType"]]) - -slots.biologicProduct__passage_number = Slot(uri=CCDH.passage_number, name="biologicProduct__passage_number", curie=CCDH.curie('passage_number'), - model_uri=CCDH.biologicProduct__passage_number, domain=BiologicProduct, range=Optional[Union[Union[int, CcdhInteger], List[Union[int, CcdhInteger]]]]) - -slots.biologicProduct__growth_rate = Slot(uri=CCDH.growth_rate, name="biologicProduct__growth_rate", curie=CCDH.curie('growth_rate'), - model_uri=CCDH.biologicProduct__growth_rate, domain=BiologicProduct, range=Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]]) - -slots.cancerGradeObservation__id = Slot(uri=CCDH.id, name="cancerGradeObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.cancerGradeObservation__id, domain=CancerGradeObservation, range=Optional[Union[str, CcdhString]]) - -slots.cancerGradeObservation__category = Slot(uri=CCDH.category, name="cancerGradeObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.cancerGradeObservation__category, domain=CancerGradeObservation, range=Optional[Union[str, "EnumCCDHCancerGradeObservationCategory"]]) - -slots.cancerGradeObservation__observation_type = Slot(uri=CCDH.observation_type, name="cancerGradeObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.cancerGradeObservation__observation_type, domain=CancerGradeObservation, range=Union[str, "EnumCCDHCancerGradeObservationObservationType"]) - -slots.cancerGradeObservation__method_type = Slot(uri=CCDH.method_type, name="cancerGradeObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.cancerGradeObservation__method_type, domain=CancerGradeObservation, range=Optional[Union[str, "EnumCCDHCancerGradeObservationMethodType"]]) - -slots.cancerGradeObservation__focus = Slot(uri=CCDH.focus, name="cancerGradeObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.cancerGradeObservation__focus, domain=CancerGradeObservation, range=Optional[Union[dict, "Entity"]]) - -slots.cancerGradeObservation__subject = Slot(uri=CCDH.subject, name="cancerGradeObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.cancerGradeObservation__subject, domain=CancerGradeObservation, range=Optional[Union[dict, "Subject"]]) - -slots.cancerGradeObservation__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="cancerGradeObservation__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.cancerGradeObservation__valueCodeableConcept, domain=CancerGradeObservation, range=Union[str, "EnumCCDHCancerGradeObservationValueCodeableConcept"]) - -slots.cancerGradeObservationSet__id = Slot(uri=CCDH.id, name="cancerGradeObservationSet__id", curie=CCDH.curie('id'), - model_uri=CCDH.cancerGradeObservationSet__id, domain=CancerGradeObservationSet, range=Optional[Union[str, CcdhString]]) - -slots.cancerGradeObservationSet__category = Slot(uri=CCDH.category, name="cancerGradeObservationSet__category", curie=CCDH.curie('category'), - model_uri=CCDH.cancerGradeObservationSet__category, domain=CancerGradeObservationSet, range=Optional[Union[str, "EnumCCDHCancerGradeObservationSetCategory"]]) - -slots.cancerGradeObservationSet__focus = Slot(uri=CCDH.focus, name="cancerGradeObservationSet__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.cancerGradeObservationSet__focus, domain=CancerGradeObservationSet, range=Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]]) - -slots.cancerGradeObservationSet__subject = Slot(uri=CCDH.subject, name="cancerGradeObservationSet__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.cancerGradeObservationSet__subject, domain=CancerGradeObservationSet, range=Optional[Union[dict, "Subject"]]) - -slots.cancerGradeObservationSet__method_type = Slot(uri=CCDH.method_type, name="cancerGradeObservationSet__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.cancerGradeObservationSet__method_type, domain=CancerGradeObservationSet, range=Optional[Union[Union[str, "EnumCCDHCancerGradeObservationSetMethodType"], List[Union[str, "EnumCCDHCancerGradeObservationSetMethodType"]]]]) - -slots.cancerGradeObservationSet__performed_by = Slot(uri=CCDH.performed_by, name="cancerGradeObservationSet__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.cancerGradeObservationSet__performed_by, domain=CancerGradeObservationSet, range=Optional[Union[dict, "Organization"]]) - -slots.cancerGradeObservationSet__observations = Slot(uri=CCDH.observations, name="cancerGradeObservationSet__observations", curie=CCDH.curie('observations'), - model_uri=CCDH.cancerGradeObservationSet__observations, domain=CancerGradeObservationSet, range=Optional[Union[Union[dict, CancerGradeObservation], List[Union[dict, CancerGradeObservation]]]]) - -slots.cancerStageObservation__id = Slot(uri=CCDH.id, name="cancerStageObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.cancerStageObservation__id, domain=CancerStageObservation, range=Optional[Union[str, CcdhString]]) - -slots.cancerStageObservation__category = Slot(uri=CCDH.category, name="cancerStageObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.cancerStageObservation__category, domain=CancerStageObservation, range=Optional[Union[str, "EnumCCDHCancerStageObservationCategory"]]) - -slots.cancerStageObservation__observation_type = Slot(uri=CCDH.observation_type, name="cancerStageObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.cancerStageObservation__observation_type, domain=CancerStageObservation, range=Union[str, "EnumCCDHCancerStageObservationObservationType"]) - -slots.cancerStageObservation__method_type = Slot(uri=CCDH.method_type, name="cancerStageObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.cancerStageObservation__method_type, domain=CancerStageObservation, range=Optional[Union[str, "EnumCCDHCancerStageObservationMethodType"]]) - -slots.cancerStageObservation__focus = Slot(uri=CCDH.focus, name="cancerStageObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.cancerStageObservation__focus, domain=CancerStageObservation, range=Optional[Union[dict, "Entity"]]) - -slots.cancerStageObservation__subject = Slot(uri=CCDH.subject, name="cancerStageObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.cancerStageObservation__subject, domain=CancerStageObservation, range=Optional[Union[dict, "Subject"]]) - -slots.cancerStageObservation__performed_by = Slot(uri=CCDH.performed_by, name="cancerStageObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.cancerStageObservation__performed_by, domain=CancerStageObservation, range=Optional[Union[dict, "Organization"]]) - -slots.cancerStageObservation__valueEntity = Slot(uri=CCDH.valueEntity, name="cancerStageObservation__valueEntity", curie=CCDH.curie('valueEntity'), - model_uri=CCDH.cancerStageObservation__valueEntity, domain=CancerStageObservation, range=Optional[Union[dict, "Entity"]]) - -slots.cancerStageObservation__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="cancerStageObservation__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.cancerStageObservation__valueCodeableConcept, domain=CancerStageObservation, range=Union[str, "EnumCCDHCancerStageObservationValueCodeableConcept"]) - -slots.cancerStageObservationSet__id = Slot(uri=CCDH.id, name="cancerStageObservationSet__id", curie=CCDH.curie('id'), - model_uri=CCDH.cancerStageObservationSet__id, domain=CancerStageObservationSet, range=Optional[Union[str, CcdhString]]) - -slots.cancerStageObservationSet__category = Slot(uri=CCDH.category, name="cancerStageObservationSet__category", curie=CCDH.curie('category'), - model_uri=CCDH.cancerStageObservationSet__category, domain=CancerStageObservationSet, range=Optional[Union[str, "EnumCCDHCancerStageObservationSetCategory"]]) - -slots.cancerStageObservationSet__focus = Slot(uri=CCDH.focus, name="cancerStageObservationSet__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.cancerStageObservationSet__focus, domain=CancerStageObservationSet, range=Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]]) - -slots.cancerStageObservationSet__subject = Slot(uri=CCDH.subject, name="cancerStageObservationSet__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.cancerStageObservationSet__subject, domain=CancerStageObservationSet, range=Optional[Union[dict, "Subject"]]) - -slots.cancerStageObservationSet__method_type = Slot(uri=CCDH.method_type, name="cancerStageObservationSet__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.cancerStageObservationSet__method_type, domain=CancerStageObservationSet, range=Optional[Union[Union[str, "EnumCCDHCancerStageObservationSetMethodType"], List[Union[str, "EnumCCDHCancerStageObservationSetMethodType"]]]]) - -slots.cancerStageObservationSet__performed_by = Slot(uri=CCDH.performed_by, name="cancerStageObservationSet__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.cancerStageObservationSet__performed_by, domain=CancerStageObservationSet, range=Optional[Union[dict, "Organization"]]) - -slots.cancerStageObservationSet__observations = Slot(uri=CCDH.observations, name="cancerStageObservationSet__observations", curie=CCDH.curie('observations'), - model_uri=CCDH.cancerStageObservationSet__observations, domain=CancerStageObservationSet, range=Optional[Union[Union[dict, CancerStageObservation], List[Union[dict, CancerStageObservation]]]]) - -slots.codeableConcept__coding = Slot(uri=CCDH.coding, name="codeableConcept__coding", curie=CCDH.curie('coding'), - model_uri=CCDH.codeableConcept__coding, domain=CodeableConcept, range=Optional[Union[Union[dict, "Coding"], List[Union[dict, "Coding"]]]]) - -slots.codeableConcept__text = Slot(uri=CCDH.text, name="codeableConcept__text", curie=CCDH.curie('text'), - model_uri=CCDH.codeableConcept__text, domain=CodeableConcept, range=Optional[Union[str, CcdhString]]) - -slots.coding__code = Slot(uri=CCDH.code, name="coding__code", curie=CCDH.curie('code'), - model_uri=CCDH.coding__code, domain=Coding, range=Union[str, CcdhString]) - -slots.coding__system = Slot(uri=CCDH.system, name="coding__system", curie=CCDH.curie('system'), - model_uri=CCDH.coding__system, domain=Coding, range=Union[str, CcdhString]) - -slots.coding__label = Slot(uri=CCDH.label, name="coding__label", curie=CCDH.curie('label'), - model_uri=CCDH.coding__label, domain=Coding, range=Optional[Union[str, CcdhString]]) - -slots.coding__systemURL = Slot(uri=CCDH.systemURL, name="coding__systemURL", curie=CCDH.curie('systemURL'), - model_uri=CCDH.coding__systemURL, domain=Coding, range=Optional[Union[str, CcdhString]]) - -slots.coding__systemVersion = Slot(uri=CCDH.systemVersion, name="coding__systemVersion", curie=CCDH.curie('systemVersion'), - model_uri=CCDH.coding__systemVersion, domain=Coding, range=Optional[Union[str, CcdhString]]) - -slots.diagnosis__id = Slot(uri=CCDH.id, name="diagnosis__id", curie=CCDH.curie('id'), - model_uri=CCDH.diagnosis__id, domain=Diagnosis, range=Optional[Union[str, CcdhString]]) - -slots.diagnosis__identifier = Slot(uri=CCDH.identifier, name="diagnosis__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.diagnosis__identifier, domain=Diagnosis, range=Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]]) - -slots.diagnosis__subject = Slot(uri=CCDH.subject, name="diagnosis__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.diagnosis__subject, domain=Diagnosis, range=Optional[Union[dict, "Subject"]]) - -slots.diagnosis__age_at_diagnosis = Slot(uri=CCDH.age_at_diagnosis, name="diagnosis__age_at_diagnosis", curie=CCDH.curie('age_at_diagnosis'), - model_uri=CCDH.diagnosis__age_at_diagnosis, domain=Diagnosis, range=Optional[Union[dict, "Quantity"]]) - -slots.diagnosis__year_at_diagnosis = Slot(uri=CCDH.year_at_diagnosis, name="diagnosis__year_at_diagnosis", curie=CCDH.curie('year_at_diagnosis'), - model_uri=CCDH.diagnosis__year_at_diagnosis, domain=Diagnosis, range=Optional[Union[int, CcdhInteger]]) - -slots.diagnosis__condition = Slot(uri=CCDH.condition, name="diagnosis__condition", curie=CCDH.curie('condition'), - model_uri=CCDH.diagnosis__condition, domain=Diagnosis, range=Optional[Union[str, "EnumCCDHDiagnosisCondition"]]) - -slots.diagnosis__primary_site = Slot(uri=CCDH.primary_site, name="diagnosis__primary_site", curie=CCDH.curie('primary_site'), - model_uri=CCDH.diagnosis__primary_site, domain=Diagnosis, range=Optional[Union[Union[dict, BodySite], List[Union[dict, BodySite]]]]) - -slots.diagnosis__metastatic_site = Slot(uri=CCDH.metastatic_site, name="diagnosis__metastatic_site", curie=CCDH.curie('metastatic_site'), - model_uri=CCDH.diagnosis__metastatic_site, domain=Diagnosis, range=Optional[Union[Union[dict, BodySite], List[Union[dict, BodySite]]]]) - -slots.diagnosis__stage = Slot(uri=CCDH.stage, name="diagnosis__stage", curie=CCDH.curie('stage'), - model_uri=CCDH.diagnosis__stage, domain=Diagnosis, range=Optional[Union[Union[dict, CancerStageObservationSet], List[Union[dict, CancerStageObservationSet]]]]) - -slots.diagnosis__grade = Slot(uri=CCDH.grade, name="diagnosis__grade", curie=CCDH.curie('grade'), - model_uri=CCDH.diagnosis__grade, domain=Diagnosis, range=Optional[Union[Union[dict, CancerGradeObservationSet], List[Union[dict, CancerGradeObservationSet]]]]) - -slots.diagnosis__morphology = Slot(uri=CCDH.morphology, name="diagnosis__morphology", curie=CCDH.curie('morphology'), - model_uri=CCDH.diagnosis__morphology, domain=Diagnosis, range=Optional[Union[str, "EnumCCDHDiagnosisMorphology"]]) - -slots.diagnosis__disease_status = Slot(uri=CCDH.disease_status, name="diagnosis__disease_status", curie=CCDH.curie('disease_status'), - model_uri=CCDH.diagnosis__disease_status, domain=Diagnosis, range=Optional[Union[str, "EnumCCDHDiagnosisDiseaseStatus"]]) - -slots.diagnosis__prior_diagnosis = Slot(uri=CCDH.prior_diagnosis, name="diagnosis__prior_diagnosis", curie=CCDH.curie('prior_diagnosis'), - model_uri=CCDH.diagnosis__prior_diagnosis, domain=Diagnosis, range=Optional[Union[dict, "Diagnosis"]]) - -slots.diagnosis__method_of_diagnosis = Slot(uri=CCDH.method_of_diagnosis, name="diagnosis__method_of_diagnosis", curie=CCDH.curie('method_of_diagnosis'), - model_uri=CCDH.diagnosis__method_of_diagnosis, domain=Diagnosis, range=Optional[Union[str, "EnumCCDHDiagnosisMethodOfDiagnosis"]]) - -slots.diagnosis__related_specimen = Slot(uri=CCDH.related_specimen, name="diagnosis__related_specimen", curie=CCDH.curie('related_specimen'), - model_uri=CCDH.diagnosis__related_specimen, domain=Diagnosis, range=Optional[Union[Union[dict, "Specimen"], List[Union[dict, "Specimen"]]]]) - -slots.diagnosis__primary_tumor_dimensional_measures = Slot(uri=CCDH.primary_tumor_dimensional_measures, name="diagnosis__primary_tumor_dimensional_measures", curie=CCDH.curie('primary_tumor_dimensional_measures'), - model_uri=CCDH.diagnosis__primary_tumor_dimensional_measures, domain=Diagnosis, range=Optional[Union[dict, "DimensionalObservationSet"]]) - -slots.diagnosis__supporting_observation = Slot(uri=CCDH.supporting_observation, name="diagnosis__supporting_observation", curie=CCDH.curie('supporting_observation'), - model_uri=CCDH.diagnosis__supporting_observation, domain=Diagnosis, range=Optional[Union[Union[dict, "Observation"], List[Union[dict, "Observation"]]]]) - -slots.dimensionalObservation__id = Slot(uri=CCDH.id, name="dimensionalObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.dimensionalObservation__id, domain=DimensionalObservation, range=Optional[Union[str, CcdhString]]) - -slots.dimensionalObservation__category = Slot(uri=CCDH.category, name="dimensionalObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.dimensionalObservation__category, domain=DimensionalObservation, range=Optional[Union[str, "EnumCCDHDimensionalObservationCategory"]]) - -slots.dimensionalObservation__observation_type = Slot(uri=CCDH.observation_type, name="dimensionalObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.dimensionalObservation__observation_type, domain=DimensionalObservation, range=Union[str, "EnumCCDHDimensionalObservationObservationType"]) - -slots.dimensionalObservation__method_type = Slot(uri=CCDH.method_type, name="dimensionalObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.dimensionalObservation__method_type, domain=DimensionalObservation, range=Optional[Union[Union[str, "EnumCCDHDimensionalObservationMethodType"], List[Union[str, "EnumCCDHDimensionalObservationMethodType"]]]]) - -slots.dimensionalObservation__focus = Slot(uri=CCDH.focus, name="dimensionalObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.dimensionalObservation__focus, domain=DimensionalObservation, range=Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]]) - -slots.dimensionalObservation__subject = Slot(uri=CCDH.subject, name="dimensionalObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.dimensionalObservation__subject, domain=DimensionalObservation, range=Optional[Union[dict, "Subject"]]) - -slots.dimensionalObservation__performed_by = Slot(uri=CCDH.performed_by, name="dimensionalObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.dimensionalObservation__performed_by, domain=DimensionalObservation, range=Optional[Union[dict, "Organization"]]) - -slots.dimensionalObservation__valueQuantity = Slot(uri=CCDH.valueQuantity, name="dimensionalObservation__valueQuantity", curie=CCDH.curie('valueQuantity'), - model_uri=CCDH.dimensionalObservation__valueQuantity, domain=DimensionalObservation, range=Union[dict, "Quantity"]) - -slots.dimensionalObservationSet__id = Slot(uri=CCDH.id, name="dimensionalObservationSet__id", curie=CCDH.curie('id'), - model_uri=CCDH.dimensionalObservationSet__id, domain=DimensionalObservationSet, range=Optional[Union[str, CcdhString]]) - -slots.dimensionalObservationSet__category = Slot(uri=CCDH.category, name="dimensionalObservationSet__category", curie=CCDH.curie('category'), - model_uri=CCDH.dimensionalObservationSet__category, domain=DimensionalObservationSet, range=Optional[Union[str, "EnumCCDHDimensionalObservationSetCategory"]]) - -slots.dimensionalObservationSet__focus = Slot(uri=CCDH.focus, name="dimensionalObservationSet__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.dimensionalObservationSet__focus, domain=DimensionalObservationSet, range=Optional[Union[Union[dict, "Entity"], List[Union[dict, "Entity"]]]]) - -slots.dimensionalObservationSet__subject = Slot(uri=CCDH.subject, name="dimensionalObservationSet__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.dimensionalObservationSet__subject, domain=DimensionalObservationSet, range=Optional[Union[dict, "Subject"]]) - -slots.dimensionalObservationSet__method_type = Slot(uri=CCDH.method_type, name="dimensionalObservationSet__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.dimensionalObservationSet__method_type, domain=DimensionalObservationSet, range=Optional[Union[Union[str, "EnumCCDHDimensionalObservationSetMethodType"], List[Union[str, "EnumCCDHDimensionalObservationSetMethodType"]]]]) - -slots.dimensionalObservationSet__performed_by = Slot(uri=CCDH.performed_by, name="dimensionalObservationSet__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.dimensionalObservationSet__performed_by, domain=DimensionalObservationSet, range=Optional[Union[dict, "Organization"]]) - -slots.dimensionalObservationSet__observations = Slot(uri=CCDH.observations, name="dimensionalObservationSet__observations", curie=CCDH.curie('observations'), - model_uri=CCDH.dimensionalObservationSet__observations, domain=DimensionalObservationSet, range=Optional[Union[Union[dict, DimensionalObservation], List[Union[dict, DimensionalObservation]]]]) - -slots.document__id = Slot(uri=CCDH.id, name="document__id", curie=CCDH.curie('id'), - model_uri=CCDH.document__id, domain=Document, range=Optional[Union[str, CcdhString]]) - -slots.document__identifier = Slot(uri=CCDH.identifier, name="document__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.document__identifier, domain=Document, range=Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]]) - -slots.document__document_type = Slot(uri=CCDH.document_type, name="document__document_type", curie=CCDH.curie('document_type'), - model_uri=CCDH.document__document_type, domain=Document, range=Optional[Union[str, "EnumCCDHDocumentDocumentType"]]) - -slots.document__description = Slot(uri=CCDH.description, name="document__description", curie=CCDH.curie('description'), - model_uri=CCDH.document__description, domain=Document, range=Optional[Union[str, CcdhString]]) - -slots.document__focus = Slot(uri=CCDH.focus, name="document__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.document__focus, domain=Document, range=Optional[Union[dict, "Entity"]]) - -slots.document__url = Slot(uri=CCDH.url, name="document__url", curie=CCDH.curie('url'), - model_uri=CCDH.document__url, domain=Document, range=Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]]) - -slots.environmentalExposureObservation__id = Slot(uri=CCDH.id, name="environmentalExposureObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.environmentalExposureObservation__id, domain=EnvironmentalExposureObservation, range=Optional[Union[str, CcdhString]]) - -slots.environmentalExposureObservation__category = Slot(uri=CCDH.category, name="environmentalExposureObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.environmentalExposureObservation__category, domain=EnvironmentalExposureObservation, range=Optional[Union[str, "EnumCCDHEnvironmentalExposureObservationCategory"]]) - -slots.environmentalExposureObservation__observation_type = Slot(uri=CCDH.observation_type, name="environmentalExposureObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.environmentalExposureObservation__observation_type, domain=EnvironmentalExposureObservation, range=Union[str, "EnumCCDHEnvironmentalExposureObservationObservationType"]) - -slots.environmentalExposureObservation__method_type = Slot(uri=CCDH.method_type, name="environmentalExposureObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.environmentalExposureObservation__method_type, domain=EnvironmentalExposureObservation, range=Optional[Union[str, "EnumCCDHEnvironmentalExposureObservationMethodType"]]) - -slots.environmentalExposureObservation__focus = Slot(uri=CCDH.focus, name="environmentalExposureObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.environmentalExposureObservation__focus, domain=EnvironmentalExposureObservation, range=Optional[Union[dict, Entity]]) - -slots.environmentalExposureObservation__subject = Slot(uri=CCDH.subject, name="environmentalExposureObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.environmentalExposureObservation__subject, domain=EnvironmentalExposureObservation, range=Optional[Union[dict, "Subject"]]) - -slots.environmentalExposureObservation__performed_by = Slot(uri=CCDH.performed_by, name="environmentalExposureObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.environmentalExposureObservation__performed_by, domain=EnvironmentalExposureObservation, range=Optional[Union[dict, "Organization"]]) - -slots.environmentalExposureObservation__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="environmentalExposureObservation__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.environmentalExposureObservation__valueCodeableConcept, domain=EnvironmentalExposureObservation, range=Union[str, "EnumCCDHEnvironmentalExposureObservationValueCodeableConcept"]) - -slots.executionTimeObservation__id = Slot(uri=CCDH.id, name="executionTimeObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.executionTimeObservation__id, domain=ExecutionTimeObservation, range=Optional[Union[str, CcdhString]]) - -slots.executionTimeObservation__category = Slot(uri=CCDH.category, name="executionTimeObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.executionTimeObservation__category, domain=ExecutionTimeObservation, range=Optional[Union[str, "EnumCCDHExecutionTimeObservationCategory"]]) - -slots.executionTimeObservation__observation_type = Slot(uri=CCDH.observation_type, name="executionTimeObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.executionTimeObservation__observation_type, domain=ExecutionTimeObservation, range=Union[str, "EnumCCDHExecutionTimeObservationObservationType"]) - -slots.executionTimeObservation__method_type = Slot(uri=CCDH.method_type, name="executionTimeObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.executionTimeObservation__method_type, domain=ExecutionTimeObservation, range=Optional[Union[str, "EnumCCDHExecutionTimeObservationMethodType"]]) - -slots.executionTimeObservation__focus = Slot(uri=CCDH.focus, name="executionTimeObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.executionTimeObservation__focus, domain=ExecutionTimeObservation, range=Optional[Union[dict, Entity]]) - -slots.executionTimeObservation__subject = Slot(uri=CCDH.subject, name="executionTimeObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.executionTimeObservation__subject, domain=ExecutionTimeObservation, range=Optional[Union[dict, "Subject"]]) - -slots.executionTimeObservation__performed_by = Slot(uri=CCDH.performed_by, name="executionTimeObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.executionTimeObservation__performed_by, domain=ExecutionTimeObservation, range=Optional[Union[dict, "Organization"]]) - -slots.executionTimeObservation__valueQuantity = Slot(uri=CCDH.valueQuantity, name="executionTimeObservation__valueQuantity", curie=CCDH.curie('valueQuantity'), - model_uri=CCDH.executionTimeObservation__valueQuantity, domain=ExecutionTimeObservation, range=Union[dict, "Quantity"]) - -slots.executionConditionObservation__id = Slot(uri=CCDH.id, name="executionConditionObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.executionConditionObservation__id, domain=ExecutionConditionObservation, range=Optional[Union[str, CcdhString]]) - -slots.executionConditionObservation__category = Slot(uri=CCDH.category, name="executionConditionObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.executionConditionObservation__category, domain=ExecutionConditionObservation, range=Optional[Union[str, "EnumCCDHExecutionConditionObservationCategory"]]) - -slots.executionConditionObservation__observation_type = Slot(uri=CCDH.observation_type, name="executionConditionObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.executionConditionObservation__observation_type, domain=ExecutionConditionObservation, range=Union[str, "EnumCCDHExecutionConditionObservationObservationType"]) - -slots.executionConditionObservation__method_type = Slot(uri=CCDH.method_type, name="executionConditionObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.executionConditionObservation__method_type, domain=ExecutionConditionObservation, range=Optional[Union[str, "EnumCCDHExecutionConditionObservationMethodType"]]) - -slots.executionConditionObservation__focus = Slot(uri=CCDH.focus, name="executionConditionObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.executionConditionObservation__focus, domain=ExecutionConditionObservation, range=Optional[Union[dict, Entity]]) - -slots.executionConditionObservation__subject = Slot(uri=CCDH.subject, name="executionConditionObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.executionConditionObservation__subject, domain=ExecutionConditionObservation, range=Optional[Union[dict, "Subject"]]) - -slots.executionConditionObservation__performed_by = Slot(uri=CCDH.performed_by, name="executionConditionObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.executionConditionObservation__performed_by, domain=ExecutionConditionObservation, range=Optional[Union[dict, "Organization"]]) - -slots.executionConditionObservation__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="executionConditionObservation__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.executionConditionObservation__valueCodeableConcept, domain=ExecutionConditionObservation, range=Union[str, "EnumCCDHExecutionConditionObservationValueCodeableConcept"]) - -slots.exposure__id = Slot(uri=CCDH.id, name="exposure__id", curie=CCDH.curie('id'), - model_uri=CCDH.exposure__id, domain=Exposure, range=Union[str, CcdhString]) - -slots.exposure__identifier = Slot(uri=CCDH.identifier, name="exposure__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.exposure__identifier, domain=Exposure, range=Optional[Union[Union[dict, "Identifier"], List[Union[dict, "Identifier"]]]]) - -slots.exposure__tobacco_exposure = Slot(uri=CCDH.tobacco_exposure, name="exposure__tobacco_exposure", curie=CCDH.curie('tobacco_exposure'), - model_uri=CCDH.exposure__tobacco_exposure, domain=Exposure, range=Optional[Union[Union[dict, "TobaccoExposureObservation"], List[Union[dict, "TobaccoExposureObservation"]]]]) - -slots.exposure__alcohol_exposure = Slot(uri=CCDH.alcohol_exposure, name="exposure__alcohol_exposure", curie=CCDH.curie('alcohol_exposure'), - model_uri=CCDH.exposure__alcohol_exposure, domain=Exposure, range=Optional[Union[Union[dict, AlcoholExposureObservation], List[Union[dict, AlcoholExposureObservation]]]]) - -slots.exposure__environmental_exposure = Slot(uri=CCDH.environmental_exposure, name="exposure__environmental_exposure", curie=CCDH.curie('environmental_exposure'), - model_uri=CCDH.exposure__environmental_exposure, domain=Exposure, range=Optional[Union[Union[dict, EnvironmentalExposureObservation], List[Union[dict, EnvironmentalExposureObservation]]]]) - -slots.exposure__subject = Slot(uri=CCDH.subject, name="exposure__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.exposure__subject, domain=Exposure, range=Optional[Union[dict, "Subject"]]) - -slots.histologicalCompositionObservation__id = Slot(uri=CCDH.id, name="histologicalCompositionObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.histologicalCompositionObservation__id, domain=HistologicalCompositionObservation, range=Optional[Union[str, CcdhString]]) - -slots.histologicalCompositionObservation__category = Slot(uri=CCDH.category, name="histologicalCompositionObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.histologicalCompositionObservation__category, domain=HistologicalCompositionObservation, range=Optional[Union[str, "EnumCCDHHistologicalCompositionObservationCategory"]]) - -slots.histologicalCompositionObservation__observation_type = Slot(uri=CCDH.observation_type, name="histologicalCompositionObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.histologicalCompositionObservation__observation_type, domain=HistologicalCompositionObservation, range=Union[str, "EnumCCDHHistologicalCompositionObservationObservationType"]) - -slots.histologicalCompositionObservation__method_type = Slot(uri=CCDH.method_type, name="histologicalCompositionObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.histologicalCompositionObservation__method_type, domain=HistologicalCompositionObservation, range=Optional[Union[Union[str, "EnumCCDHHistologicalCompositionObservationMethodType"], List[Union[str, "EnumCCDHHistologicalCompositionObservationMethodType"]]]]) - -slots.histologicalCompositionObservation__focus = Slot(uri=CCDH.focus, name="histologicalCompositionObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.histologicalCompositionObservation__focus, domain=HistologicalCompositionObservation, range=Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]]) - -slots.histologicalCompositionObservation__subject = Slot(uri=CCDH.subject, name="histologicalCompositionObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.histologicalCompositionObservation__subject, domain=HistologicalCompositionObservation, range=Optional[Union[dict, "Subject"]]) - -slots.histologicalCompositionObservation__performed_by = Slot(uri=CCDH.performed_by, name="histologicalCompositionObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.histologicalCompositionObservation__performed_by, domain=HistologicalCompositionObservation, range=Optional[Union[dict, "Organization"]]) - -slots.histologicalCompositionObservation__valueQuantity = Slot(uri=CCDH.valueQuantity, name="histologicalCompositionObservation__valueQuantity", curie=CCDH.curie('valueQuantity'), - model_uri=CCDH.histologicalCompositionObservation__valueQuantity, domain=HistologicalCompositionObservation, range=Union[dict, "Quantity"]) - -slots.histologicalCompositionObservationSet__id = Slot(uri=CCDH.id, name="histologicalCompositionObservationSet__id", curie=CCDH.curie('id'), - model_uri=CCDH.histologicalCompositionObservationSet__id, domain=HistologicalCompositionObservationSet, range=Union[str, CcdhString]) - -slots.histologicalCompositionObservationSet__category = Slot(uri=CCDH.category, name="histologicalCompositionObservationSet__category", curie=CCDH.curie('category'), - model_uri=CCDH.histologicalCompositionObservationSet__category, domain=HistologicalCompositionObservationSet, range=Union[str, "EnumCCDHHistologicalCompositionObservationSetCategory"]) - -slots.histologicalCompositionObservationSet__focus = Slot(uri=CCDH.focus, name="histologicalCompositionObservationSet__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.histologicalCompositionObservationSet__focus, domain=HistologicalCompositionObservationSet, range=Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]]) - -slots.histologicalCompositionObservationSet__subject = Slot(uri=CCDH.subject, name="histologicalCompositionObservationSet__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.histologicalCompositionObservationSet__subject, domain=HistologicalCompositionObservationSet, range=Optional[Union[dict, "Subject"]]) - -slots.histologicalCompositionObservationSet__method_type = Slot(uri=CCDH.method_type, name="histologicalCompositionObservationSet__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.histologicalCompositionObservationSet__method_type, domain=HistologicalCompositionObservationSet, range=Optional[Union[Union[str, "EnumCCDHHistologicalCompositionObservationSetMethodType"], List[Union[str, "EnumCCDHHistologicalCompositionObservationSetMethodType"]]]]) - -slots.histologicalCompositionObservationSet__performed_by = Slot(uri=CCDH.performed_by, name="histologicalCompositionObservationSet__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.histologicalCompositionObservationSet__performed_by, domain=HistologicalCompositionObservationSet, range=Optional[Union[dict, "Organization"]]) - -slots.histologicalCompositionObservationSet__observations = Slot(uri=CCDH.observations, name="histologicalCompositionObservationSet__observations", curie=CCDH.curie('observations'), - model_uri=CCDH.histologicalCompositionObservationSet__observations, domain=HistologicalCompositionObservationSet, range=Optional[Union[Union[dict, HistologicalCompositionObservation], List[Union[dict, HistologicalCompositionObservation]]]]) - -slots.identifier__value = Slot(uri=CCDH.value, name="identifier__value", curie=CCDH.curie('value'), - model_uri=CCDH.identifier__value, domain=Identifier, range=Union[str, CcdhString]) - -slots.identifier__system = Slot(uri=CCDH.system, name="identifier__system", curie=CCDH.curie('system'), - model_uri=CCDH.identifier__system, domain=Identifier, range=Optional[Union[str, CcdhString]]) - -slots.identifier__type = Slot(uri=CCDH.type, name="identifier__type", curie=CCDH.curie('type'), - model_uri=CCDH.identifier__type, domain=Identifier, range=Optional[Union[str, "EnumCCDHIdentifierType"]]) - -slots.observation__id = Slot(uri=CCDH.id, name="observation__id", curie=CCDH.curie('id'), - model_uri=CCDH.observation__id, domain=Observation, range=Optional[Union[str, CcdhString]]) - -slots.observation__category = Slot(uri=CCDH.category, name="observation__category", curie=CCDH.curie('category'), - model_uri=CCDH.observation__category, domain=Observation, range=Optional[Union[str, "EnumCCDHObservationCategory"]]) - -slots.observation__observation_type = Slot(uri=CCDH.observation_type, name="observation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.observation__observation_type, domain=Observation, range=Union[str, "EnumCCDHObservationObservationType"]) - -slots.observation__method_type = Slot(uri=CCDH.method_type, name="observation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.observation__method_type, domain=Observation, range=Optional[Union[Union[str, "EnumCCDHObservationMethodType"], List[Union[str, "EnumCCDHObservationMethodType"]]]]) - -slots.observation__focus = Slot(uri=CCDH.focus, name="observation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.observation__focus, domain=Observation, range=Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]]) - -slots.observation__subject = Slot(uri=CCDH.subject, name="observation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.observation__subject, domain=Observation, range=Optional[Union[dict, "Subject"]]) - -slots.observation__performed_by = Slot(uri=CCDH.performed_by, name="observation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.observation__performed_by, domain=Observation, range=Optional[Union[dict, "Organization"]]) - -slots.observation__valueEntity = Slot(uri=CCDH.valueEntity, name="observation__valueEntity", curie=CCDH.curie('valueEntity'), - model_uri=CCDH.observation__valueEntity, domain=Observation, range=Optional[Union[dict, Entity]]) - -slots.observation__valueString = Slot(uri=CCDH.valueString, name="observation__valueString", curie=CCDH.curie('valueString'), - model_uri=CCDH.observation__valueString, domain=Observation, range=Optional[Union[str, CcdhString]]) - -slots.observation__valueInteger = Slot(uri=CCDH.valueInteger, name="observation__valueInteger", curie=CCDH.curie('valueInteger'), - model_uri=CCDH.observation__valueInteger, domain=Observation, range=Optional[Union[Decimal, CcdhDecimal]]) - -slots.observation__valueDecimal = Slot(uri=CCDH.valueDecimal, name="observation__valueDecimal", curie=CCDH.curie('valueDecimal'), - model_uri=CCDH.observation__valueDecimal, domain=Observation, range=Optional[Union[Decimal, CcdhDecimal]]) - -slots.observation__valueBoolean = Slot(uri=CCDH.valueBoolean, name="observation__valueBoolean", curie=CCDH.curie('valueBoolean'), - model_uri=CCDH.observation__valueBoolean, domain=Observation, range=Optional[Union[bool, CcdhBoolean]]) - -slots.observation__valueDateTime = Slot(uri=CCDH.valueDateTime, name="observation__valueDateTime", curie=CCDH.curie('valueDateTime'), - model_uri=CCDH.observation__valueDateTime, domain=Observation, range=Optional[Union[str, CcdhDateTime]]) - -slots.observation__valueQuantity = Slot(uri=CCDH.valueQuantity, name="observation__valueQuantity", curie=CCDH.curie('valueQuantity'), - model_uri=CCDH.observation__valueQuantity, domain=Observation, range=Optional[Union[dict, "Quantity"]]) - -slots.observation__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="observation__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.observation__valueCodeableConcept, domain=Observation, range=Optional[Union[str, "EnumCCDHObservationValueCodeableConcept"]]) - -slots.observationSet__id = Slot(uri=CCDH.id, name="observationSet__id", curie=CCDH.curie('id'), - model_uri=CCDH.observationSet__id, domain=ObservationSet, range=Union[str, CcdhString]) - -slots.observationSet__category = Slot(uri=CCDH.category, name="observationSet__category", curie=CCDH.curie('category'), - model_uri=CCDH.observationSet__category, domain=ObservationSet, range=Union[str, "EnumCCDHObservationSetCategory"]) - -slots.observationSet__focus = Slot(uri=CCDH.focus, name="observationSet__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.observationSet__focus, domain=ObservationSet, range=Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]]) - -slots.observationSet__subject = Slot(uri=CCDH.subject, name="observationSet__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.observationSet__subject, domain=ObservationSet, range=Optional[Union[dict, "Subject"]]) - -slots.observationSet__method_type = Slot(uri=CCDH.method_type, name="observationSet__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.observationSet__method_type, domain=ObservationSet, range=Optional[Union[Union[str, "EnumCCDHObservationSetMethodType"], List[Union[str, "EnumCCDHObservationSetMethodType"]]]]) - -slots.observationSet__performed_by = Slot(uri=CCDH.performed_by, name="observationSet__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.observationSet__performed_by, domain=ObservationSet, range=Optional[Union[dict, "Organization"]]) - -slots.observationSet__observations = Slot(uri=CCDH.observations, name="observationSet__observations", curie=CCDH.curie('observations'), - model_uri=CCDH.observationSet__observations, domain=ObservationSet, range=Optional[Union[Union[dict, Observation], List[Union[dict, Observation]]]]) - -slots.organization__id = Slot(uri=CCDH.id, name="organization__id", curie=CCDH.curie('id'), - model_uri=CCDH.organization__id, domain=Organization, range=Union[str, CcdhString]) - -slots.organization__identifier = Slot(uri=CCDH.identifier, name="organization__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.organization__identifier, domain=Organization, range=Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]]) - -slots.organization__name = Slot(uri=CCDH.name, name="organization__name", curie=CCDH.curie('name'), - model_uri=CCDH.organization__name, domain=Organization, range=Optional[Union[str, CcdhString]]) - -slots.organization__alias = Slot(uri=CCDH.alias, name="organization__alias", curie=CCDH.curie('alias'), - model_uri=CCDH.organization__alias, domain=Organization, range=Optional[Union[str, CcdhString]]) - -slots.organization__organization_type = Slot(uri=CCDH.organization_type, name="organization__organization_type", curie=CCDH.curie('organization_type'), - model_uri=CCDH.organization__organization_type, domain=Organization, range=Optional[Union[str, CcdhString]]) - -slots.quantity__valueDecimal = Slot(uri=CCDH.valueDecimal, name="quantity__valueDecimal", curie=CCDH.curie('valueDecimal'), - model_uri=CCDH.quantity__valueDecimal, domain=Quantity, range=Optional[Union[Decimal, CcdhDecimal]]) - -slots.quantity__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="quantity__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.quantity__valueCodeableConcept, domain=Quantity, range=Optional[Union[str, "EnumCCDHQuantityValueCodeableConcept"]]) - -slots.quantity__unit = Slot(uri=CCDH.unit, name="quantity__unit", curie=CCDH.curie('unit'), - model_uri=CCDH.quantity__unit, domain=Quantity, range=Optional[Union[str, "EnumCCDHQuantityUnit"]]) - -slots.researchProject__id = Slot(uri=CCDH.id, name="researchProject__id", curie=CCDH.curie('id'), - model_uri=CCDH.researchProject__id, domain=ResearchProject, range=Optional[Union[str, CcdhString]]) - -slots.researchProject__identifier = Slot(uri=CCDH.identifier, name="researchProject__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.researchProject__identifier, domain=ResearchProject, range=Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]]) - -slots.researchProject__name = Slot(uri=CCDH.name, name="researchProject__name", curie=CCDH.curie('name'), - model_uri=CCDH.researchProject__name, domain=ResearchProject, range=Optional[Union[str, CcdhString]]) - -slots.researchProject__name_shortened = Slot(uri=CCDH.name_shortened, name="researchProject__name_shortened", curie=CCDH.curie('name_shortened'), - model_uri=CCDH.researchProject__name_shortened, domain=ResearchProject, range=Optional[Union[str, CcdhString]]) - -slots.researchProject__description = Slot(uri=CCDH.description, name="researchProject__description", curie=CCDH.curie('description'), - model_uri=CCDH.researchProject__description, domain=ResearchProject, range=Optional[Union[str, CcdhString]]) - -slots.researchProject__description_shortened = Slot(uri=CCDH.description_shortened, name="researchProject__description_shortened", curie=CCDH.curie('description_shortened'), - model_uri=CCDH.researchProject__description_shortened, domain=ResearchProject, range=Optional[Union[str, CcdhString]]) - -slots.researchProject__sponsor = Slot(uri=CCDH.sponsor, name="researchProject__sponsor", curie=CCDH.curie('sponsor'), - model_uri=CCDH.researchProject__sponsor, domain=ResearchProject, range=Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]]) - -slots.researchProject__date_started = Slot(uri=CCDH.date_started, name="researchProject__date_started", curie=CCDH.curie('date_started'), - model_uri=CCDH.researchProject__date_started, domain=ResearchProject, range=Optional[Union[dict, "TimePoint"]]) - -slots.researchProject__date_ended = Slot(uri=CCDH.date_ended, name="researchProject__date_ended", curie=CCDH.curie('date_ended'), - model_uri=CCDH.researchProject__date_ended, domain=ResearchProject, range=Optional[Union[dict, "TimePoint"]]) - -slots.researchProject__primary_anatomic_site = Slot(uri=CCDH.primary_anatomic_site, name="researchProject__primary_anatomic_site", curie=CCDH.curie('primary_anatomic_site'), - model_uri=CCDH.researchProject__primary_anatomic_site, domain=ResearchProject, range=Optional[Union[Union[dict, BodySite], List[Union[dict, BodySite]]]]) - -slots.researchProject__url = Slot(uri=CCDH.url, name="researchProject__url", curie=CCDH.curie('url'), - model_uri=CCDH.researchProject__url, domain=ResearchProject, range=Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]]) - -slots.researchProject__part_of = Slot(uri=CCDH.part_of, name="researchProject__part_of", curie=CCDH.curie('part_of'), - model_uri=CCDH.researchProject__part_of, domain=ResearchProject, range=Optional[Union[Union[dict, "ResearchProject"], List[Union[dict, "ResearchProject"]]]]) - -slots.researchProject__research_project_type = Slot(uri=CCDH.research_project_type, name="researchProject__research_project_type", curie=CCDH.curie('research_project_type'), - model_uri=CCDH.researchProject__research_project_type, domain=ResearchProject, range=Union[str, "EnumCCDHResearchProjectResearchProjectType"]) - -slots.researchProject__associated_timepoint = Slot(uri=CCDH.associated_timepoint, name="researchProject__associated_timepoint", curie=CCDH.curie('associated_timepoint'), - model_uri=CCDH.researchProject__associated_timepoint, domain=ResearchProject, range=Optional[Union[Union[dict, "TimePoint"], List[Union[dict, "TimePoint"]]]]) - -slots.researchSubject__id = Slot(uri=CCDH.id, name="researchSubject__id", curie=CCDH.curie('id'), - model_uri=CCDH.researchSubject__id, domain=ResearchSubject, range=Union[str, CcdhString]) - -slots.researchSubject__identifier = Slot(uri=CCDH.identifier, name="researchSubject__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.researchSubject__identifier, domain=ResearchSubject, range=Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]]) - -slots.researchSubject__description = Slot(uri=CCDH.description, name="researchSubject__description", curie=CCDH.curie('description'), - model_uri=CCDH.researchSubject__description, domain=ResearchSubject, range=Optional[Union[str, CcdhString]]) - -slots.researchSubject__member_of_research_project = Slot(uri=CCDH.member_of_research_project, name="researchSubject__member_of_research_project", curie=CCDH.curie('member_of_research_project'), - model_uri=CCDH.researchSubject__member_of_research_project, domain=ResearchSubject, range=Optional[Union[dict, ResearchProject]]) - -slots.researchSubject__age_at_enrollment = Slot(uri=CCDH.age_at_enrollment, name="researchSubject__age_at_enrollment", curie=CCDH.curie('age_at_enrollment'), - model_uri=CCDH.researchSubject__age_at_enrollment, domain=ResearchSubject, range=Optional[Union[dict, Quantity]]) - -slots.researchSubject__primary_diagnosis_condition = Slot(uri=CCDH.primary_diagnosis_condition, name="researchSubject__primary_diagnosis_condition", curie=CCDH.curie('primary_diagnosis_condition'), - model_uri=CCDH.researchSubject__primary_diagnosis_condition, domain=ResearchSubject, range=Optional[Union[str, "EnumCCDHResearchSubjectPrimaryDiagnosisCondition"]]) - -slots.researchSubject__primary_diagnosis_site = Slot(uri=CCDH.primary_diagnosis_site, name="researchSubject__primary_diagnosis_site", curie=CCDH.curie('primary_diagnosis_site'), - model_uri=CCDH.researchSubject__primary_diagnosis_site, domain=ResearchSubject, range=Optional[Union[dict, BodySite]]) - -slots.researchSubject__primary_diagnosis = Slot(uri=CCDH.primary_diagnosis, name="researchSubject__primary_diagnosis", curie=CCDH.curie('primary_diagnosis'), - model_uri=CCDH.researchSubject__primary_diagnosis, domain=ResearchSubject, range=Optional[Union[Union[dict, Diagnosis], List[Union[dict, Diagnosis]]]]) - -slots.researchSubject__comorbid_diagnosis = Slot(uri=CCDH.comorbid_diagnosis, name="researchSubject__comorbid_diagnosis", curie=CCDH.curie('comorbid_diagnosis'), - model_uri=CCDH.researchSubject__comorbid_diagnosis, domain=ResearchSubject, range=Optional[Union[Union[dict, Diagnosis], List[Union[dict, Diagnosis]]]]) - -slots.researchSubject__index_timepoint = Slot(uri=CCDH.index_timepoint, name="researchSubject__index_timepoint", curie=CCDH.curie('index_timepoint'), - model_uri=CCDH.researchSubject__index_timepoint, domain=ResearchSubject, range=Optional[Union[str, "EnumCCDHResearchSubjectIndexTimepoint"]]) - -slots.researchSubject__originating_site = Slot(uri=CCDH.originating_site, name="researchSubject__originating_site", curie=CCDH.curie('originating_site'), - model_uri=CCDH.researchSubject__originating_site, domain=ResearchSubject, range=Optional[Union[dict, Organization]]) - -slots.researchSubject__associated_subject = Slot(uri=CCDH.associated_subject, name="researchSubject__associated_subject", curie=CCDH.curie('associated_subject'), - model_uri=CCDH.researchSubject__associated_subject, domain=ResearchSubject, range=Union[dict, "Subject"]) - -slots.specimen__id = Slot(uri=CCDH.id, name="specimen__id", curie=CCDH.curie('id'), - model_uri=CCDH.specimen__id, domain=Specimen, range=Optional[Union[str, CcdhString]]) - -slots.specimen__identifier = Slot(uri=CCDH.identifier, name="specimen__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.specimen__identifier, domain=Specimen, range=Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]]) - -slots.specimen__description = Slot(uri=CCDH.description, name="specimen__description", curie=CCDH.curie('description'), - model_uri=CCDH.specimen__description, domain=Specimen, range=Optional[Union[str, CcdhString]]) - -slots.specimen__specimen_type = Slot(uri=CCDH.specimen_type, name="specimen__specimen_type", curie=CCDH.curie('specimen_type'), - model_uri=CCDH.specimen__specimen_type, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenSpecimenType"]]) - -slots.specimen__analyte_type = Slot(uri=CCDH.analyte_type, name="specimen__analyte_type", curie=CCDH.curie('analyte_type'), - model_uri=CCDH.specimen__analyte_type, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenAnalyteType"]]) - -slots.specimen__associated_project = Slot(uri=CCDH.associated_project, name="specimen__associated_project", curie=CCDH.curie('associated_project'), - model_uri=CCDH.specimen__associated_project, domain=Specimen, range=Optional[Union[dict, ResearchProject]]) - -slots.specimen__data_provider = Slot(uri=CCDH.data_provider, name="specimen__data_provider", curie=CCDH.curie('data_provider'), - model_uri=CCDH.specimen__data_provider, domain=Specimen, range=Optional[Union[dict, Organization]]) - -slots.specimen__source_material_type = Slot(uri=CCDH.source_material_type, name="specimen__source_material_type", curie=CCDH.curie('source_material_type'), - model_uri=CCDH.specimen__source_material_type, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenSourceMaterialType"]]) - -slots.specimen__parent_specimen = Slot(uri=CCDH.parent_specimen, name="specimen__parent_specimen", curie=CCDH.curie('parent_specimen'), - model_uri=CCDH.specimen__parent_specimen, domain=Specimen, range=Optional[Union[Union[dict, "Specimen"], List[Union[dict, "Specimen"]]]]) - -slots.specimen__source_subject = Slot(uri=CCDH.source_subject, name="specimen__source_subject", curie=CCDH.curie('source_subject'), - model_uri=CCDH.specimen__source_subject, domain=Specimen, range=Optional[Union[dict, "Subject"]]) - -slots.specimen__tumor_status_at_collection = Slot(uri=CCDH.tumor_status_at_collection, name="specimen__tumor_status_at_collection", curie=CCDH.curie('tumor_status_at_collection'), - model_uri=CCDH.specimen__tumor_status_at_collection, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenTumorStatusAtCollection"]]) - -slots.specimen__creation_activity = Slot(uri=CCDH.creation_activity, name="specimen__creation_activity", curie=CCDH.curie('creation_activity'), - model_uri=CCDH.specimen__creation_activity, domain=Specimen, range=Optional[Union[dict, "SpecimenCreationActivity"]]) - -slots.specimen__processing_activity = Slot(uri=CCDH.processing_activity, name="specimen__processing_activity", curie=CCDH.curie('processing_activity'), - model_uri=CCDH.specimen__processing_activity, domain=Specimen, range=Optional[Union[Union[dict, "SpecimenProcessingActivity"], List[Union[dict, "SpecimenProcessingActivity"]]]]) - -slots.specimen__storage_activity = Slot(uri=CCDH.storage_activity, name="specimen__storage_activity", curie=CCDH.curie('storage_activity'), - model_uri=CCDH.specimen__storage_activity, domain=Specimen, range=Optional[Union[Union[dict, "SpecimenStorageActivity"], List[Union[dict, "SpecimenStorageActivity"]]]]) - -slots.specimen__transport_activity = Slot(uri=CCDH.transport_activity, name="specimen__transport_activity", curie=CCDH.curie('transport_activity'), - model_uri=CCDH.specimen__transport_activity, domain=Specimen, range=Optional[Union[Union[dict, "SpecimenTransportActivity"], List[Union[dict, "SpecimenTransportActivity"]]]]) - -slots.specimen__contained_in = Slot(uri=CCDH.contained_in, name="specimen__contained_in", curie=CCDH.curie('contained_in'), - model_uri=CCDH.specimen__contained_in, domain=Specimen, range=Optional[Union[dict, "SpecimenContainer"]]) - -slots.specimen__dimensional_measures = Slot(uri=CCDH.dimensional_measures, name="specimen__dimensional_measures", curie=CCDH.curie('dimensional_measures'), - model_uri=CCDH.specimen__dimensional_measures, domain=Specimen, range=Optional[Union[dict, DimensionalObservationSet]]) - -slots.specimen__quantity_measure = Slot(uri=CCDH.quantity_measure, name="specimen__quantity_measure", curie=CCDH.curie('quantity_measure'), - model_uri=CCDH.specimen__quantity_measure, domain=Specimen, range=Optional[Union[Union[dict, "SpecimenQuantityObservation"], List[Union[dict, "SpecimenQuantityObservation"]]]]) - -slots.specimen__quality_measure = Slot(uri=CCDH.quality_measure, name="specimen__quality_measure", curie=CCDH.curie('quality_measure'), - model_uri=CCDH.specimen__quality_measure, domain=Specimen, range=Optional[Union[Union[dict, "SpecimenQualityObservation"], List[Union[dict, "SpecimenQualityObservation"]]]]) - -slots.specimen__cellular_composition_type = Slot(uri=CCDH.cellular_composition_type, name="specimen__cellular_composition_type", curie=CCDH.curie('cellular_composition_type'), - model_uri=CCDH.specimen__cellular_composition_type, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenCellularCompositionType"]]) - -slots.specimen__histological_composition_measures = Slot(uri=CCDH.histological_composition_measures, name="specimen__histological_composition_measures", curie=CCDH.curie('histological_composition_measures'), - model_uri=CCDH.specimen__histological_composition_measures, domain=Specimen, range=Optional[Union[Union[dict, HistologicalCompositionObservationSet], List[Union[dict, HistologicalCompositionObservationSet]]]]) - -slots.specimen__general_tissue_morphology = Slot(uri=CCDH.general_tissue_morphology, name="specimen__general_tissue_morphology", curie=CCDH.curie('general_tissue_morphology'), - model_uri=CCDH.specimen__general_tissue_morphology, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenGeneralTissueMorphology"]]) - -slots.specimen__specific_tissue_morphology = Slot(uri=CCDH.specific_tissue_morphology, name="specimen__specific_tissue_morphology", curie=CCDH.curie('specific_tissue_morphology'), - model_uri=CCDH.specimen__specific_tissue_morphology, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenSpecificTissueMorphology"]]) - -slots.specimen__preinvasive_tissue_morphology = Slot(uri=CCDH.preinvasive_tissue_morphology, name="specimen__preinvasive_tissue_morphology", curie=CCDH.curie('preinvasive_tissue_morphology'), - model_uri=CCDH.specimen__preinvasive_tissue_morphology, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenPreinvasiveTissueMorphology"]]) - -slots.specimen__morphology_pathologically_confirmed = Slot(uri=CCDH.morphology_pathologically_confirmed, name="specimen__morphology_pathologically_confirmed", curie=CCDH.curie('morphology_pathologically_confirmed'), - model_uri=CCDH.specimen__morphology_pathologically_confirmed, domain=Specimen, range=Optional[Union[bool, CcdhBoolean]]) - -slots.specimen__morphology_assessor_role = Slot(uri=CCDH.morphology_assessor_role, name="specimen__morphology_assessor_role", curie=CCDH.curie('morphology_assessor_role'), - model_uri=CCDH.specimen__morphology_assessor_role, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenMorphologyAssessorRole"]]) - -slots.specimen__morphlogy_assessment_method = Slot(uri=CCDH.morphlogy_assessment_method, name="specimen__morphlogy_assessment_method", curie=CCDH.curie('morphlogy_assessment_method'), - model_uri=CCDH.specimen__morphlogy_assessment_method, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenMorphlogyAssessmentMethod"]]) - -slots.specimen__degree_of_dysplasia = Slot(uri=CCDH.degree_of_dysplasia, name="specimen__degree_of_dysplasia", curie=CCDH.curie('degree_of_dysplasia'), - model_uri=CCDH.specimen__degree_of_dysplasia, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenDegreeOfDysplasia"]]) - -slots.specimen__dysplasia_fraction = Slot(uri=CCDH.dysplasia_fraction, name="specimen__dysplasia_fraction", curie=CCDH.curie('dysplasia_fraction'), - model_uri=CCDH.specimen__dysplasia_fraction, domain=Specimen, range=Optional[Union[str, CcdhString]]) - -slots.specimen__related_document = Slot(uri=CCDH.related_document, name="specimen__related_document", curie=CCDH.curie('related_document'), - model_uri=CCDH.specimen__related_document, domain=Specimen, range=Optional[Union[Union[dict, Document], List[Union[dict, Document]]]]) - -slots.specimen__section_location = Slot(uri=CCDH.section_location, name="specimen__section_location", curie=CCDH.curie('section_location'), - model_uri=CCDH.specimen__section_location, domain=Specimen, range=Optional[Union[str, "EnumCCDHSpecimenSectionLocation"]]) - -slots.specimen__derived_product = Slot(uri=CCDH.derived_product, name="specimen__derived_product", curie=CCDH.curie('derived_product'), - model_uri=CCDH.specimen__derived_product, domain=Specimen, range=Optional[Union[Union[dict, BiologicProduct], List[Union[dict, BiologicProduct]]]]) - -slots.specimen__distance_from_paired_specimen = Slot(uri=CCDH.distance_from_paired_specimen, name="specimen__distance_from_paired_specimen", curie=CCDH.curie('distance_from_paired_specimen'), - model_uri=CCDH.specimen__distance_from_paired_specimen, domain=Specimen, range=Optional[Union[dict, Quantity]]) - -slots.specimenContainer__id = Slot(uri=CCDH.id, name="specimenContainer__id", curie=CCDH.curie('id'), - model_uri=CCDH.specimenContainer__id, domain=SpecimenContainer, range=Optional[Union[str, CcdhString]]) - -slots.specimenContainer__identifier = Slot(uri=CCDH.identifier, name="specimenContainer__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.specimenContainer__identifier, domain=SpecimenContainer, range=Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]]) - -slots.specimenContainer__container_type = Slot(uri=CCDH.container_type, name="specimenContainer__container_type", curie=CCDH.curie('container_type'), - model_uri=CCDH.specimenContainer__container_type, domain=SpecimenContainer, range=Optional[Union[str, "EnumCCDHSpecimenContainerContainerType"]]) - -slots.specimenContainer__container_number = Slot(uri=CCDH.container_number, name="specimenContainer__container_number", curie=CCDH.curie('container_number'), - model_uri=CCDH.specimenContainer__container_number, domain=SpecimenContainer, range=Optional[Union[str, CcdhString]]) - -slots.specimenContainer__additive = Slot(uri=CCDH.additive, name="specimenContainer__additive", curie=CCDH.curie('additive'), - model_uri=CCDH.specimenContainer__additive, domain=SpecimenContainer, range=Optional[Union[Union[dict, "Substance"], List[Union[dict, "Substance"]]]]) - -slots.specimenContainer__parent_container = Slot(uri=CCDH.parent_container, name="specimenContainer__parent_container", curie=CCDH.curie('parent_container'), - model_uri=CCDH.specimenContainer__parent_container, domain=SpecimenContainer, range=Optional[Union[dict, "SpecimenContainer"]]) - -slots.specimenCreationActivity__activity_type = Slot(uri=CCDH.activity_type, name="specimenCreationActivity__activity_type", curie=CCDH.curie('activity_type'), - model_uri=CCDH.specimenCreationActivity__activity_type, domain=SpecimenCreationActivity, range=Optional[Union[str, "EnumCCDHSpecimenCreationActivityActivityType"]]) - -slots.specimenCreationActivity__date_started = Slot(uri=CCDH.date_started, name="specimenCreationActivity__date_started", curie=CCDH.curie('date_started'), - model_uri=CCDH.specimenCreationActivity__date_started, domain=SpecimenCreationActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenCreationActivity__date_ended = Slot(uri=CCDH.date_ended, name="specimenCreationActivity__date_ended", curie=CCDH.curie('date_ended'), - model_uri=CCDH.specimenCreationActivity__date_ended, domain=SpecimenCreationActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenCreationActivity__performed_by = Slot(uri=CCDH.performed_by, name="specimenCreationActivity__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.specimenCreationActivity__performed_by, domain=SpecimenCreationActivity, range=Optional[Union[dict, Organization]]) - -slots.specimenCreationActivity__collection_method_type = Slot(uri=CCDH.collection_method_type, name="specimenCreationActivity__collection_method_type", curie=CCDH.curie('collection_method_type'), - model_uri=CCDH.specimenCreationActivity__collection_method_type, domain=SpecimenCreationActivity, range=Optional[Union[str, "EnumCCDHSpecimenCreationActivityCollectionMethodType"]]) - -slots.specimenCreationActivity__derivation_method_type = Slot(uri=CCDH.derivation_method_type, name="specimenCreationActivity__derivation_method_type", curie=CCDH.curie('derivation_method_type'), - model_uri=CCDH.specimenCreationActivity__derivation_method_type, domain=SpecimenCreationActivity, range=Optional[Union[str, "EnumCCDHSpecimenCreationActivityDerivationMethodType"]]) - -slots.specimenCreationActivity__additive = Slot(uri=CCDH.additive, name="specimenCreationActivity__additive", curie=CCDH.curie('additive'), - model_uri=CCDH.specimenCreationActivity__additive, domain=SpecimenCreationActivity, range=Optional[Union[Union[dict, "Substance"], List[Union[dict, "Substance"]]]]) - -slots.specimenCreationActivity__collection_site = Slot(uri=CCDH.collection_site, name="specimenCreationActivity__collection_site", curie=CCDH.curie('collection_site'), - model_uri=CCDH.specimenCreationActivity__collection_site, domain=SpecimenCreationActivity, range=Optional[Union[dict, BodySite]]) - -slots.specimenCreationActivity__quantity_collected = Slot(uri=CCDH.quantity_collected, name="specimenCreationActivity__quantity_collected", curie=CCDH.curie('quantity_collected'), - model_uri=CCDH.specimenCreationActivity__quantity_collected, domain=SpecimenCreationActivity, range=Optional[Union[dict, Quantity]]) - -slots.specimenCreationActivity__execution_time_observation = Slot(uri=CCDH.execution_time_observation, name="specimenCreationActivity__execution_time_observation", curie=CCDH.curie('execution_time_observation'), - model_uri=CCDH.specimenCreationActivity__execution_time_observation, domain=SpecimenCreationActivity, range=Optional[Union[Union[dict, ExecutionTimeObservation], List[Union[dict, ExecutionTimeObservation]]]]) - -slots.specimenCreationActivity__execution_condition_observation = Slot(uri=CCDH.execution_condition_observation, name="specimenCreationActivity__execution_condition_observation", curie=CCDH.curie('execution_condition_observation'), - model_uri=CCDH.specimenCreationActivity__execution_condition_observation, domain=SpecimenCreationActivity, range=Optional[Union[Union[dict, ExecutionConditionObservation], List[Union[dict, ExecutionConditionObservation]]]]) - -slots.specimenCreationActivity__specimen_order = Slot(uri=CCDH.specimen_order, name="specimenCreationActivity__specimen_order", curie=CCDH.curie('specimen_order'), - model_uri=CCDH.specimenCreationActivity__specimen_order, domain=SpecimenCreationActivity, range=Optional[Union[int, CcdhInteger]]) - -slots.specimenQualityObservation__id = Slot(uri=CCDH.id, name="specimenQualityObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.specimenQualityObservation__id, domain=SpecimenQualityObservation, range=Optional[Union[str, CcdhString]]) - -slots.specimenQualityObservation__category = Slot(uri=CCDH.category, name="specimenQualityObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.specimenQualityObservation__category, domain=SpecimenQualityObservation, range=Optional[Union[str, "EnumCCDHSpecimenQualityObservationCategory"]]) - -slots.specimenQualityObservation__observation_type = Slot(uri=CCDH.observation_type, name="specimenQualityObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.specimenQualityObservation__observation_type, domain=SpecimenQualityObservation, range=Union[str, "EnumCCDHSpecimenQualityObservationObservationType"]) - -slots.specimenQualityObservation__method_type = Slot(uri=CCDH.method_type, name="specimenQualityObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.specimenQualityObservation__method_type, domain=SpecimenQualityObservation, range=Optional[Union[Union[str, "EnumCCDHSpecimenQualityObservationMethodType"], List[Union[str, "EnumCCDHSpecimenQualityObservationMethodType"]]]]) - -slots.specimenQualityObservation__focus = Slot(uri=CCDH.focus, name="specimenQualityObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.specimenQualityObservation__focus, domain=SpecimenQualityObservation, range=Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]]) - -slots.specimenQualityObservation__subject = Slot(uri=CCDH.subject, name="specimenQualityObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.specimenQualityObservation__subject, domain=SpecimenQualityObservation, range=Optional[Union[dict, "Subject"]]) - -slots.specimenQualityObservation__performed_by = Slot(uri=CCDH.performed_by, name="specimenQualityObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.specimenQualityObservation__performed_by, domain=SpecimenQualityObservation, range=Optional[Union[dict, Organization]]) - -slots.specimenQualityObservation__valueQuantity = Slot(uri=CCDH.valueQuantity, name="specimenQualityObservation__valueQuantity", curie=CCDH.curie('valueQuantity'), - model_uri=CCDH.specimenQualityObservation__valueQuantity, domain=SpecimenQualityObservation, range=Union[dict, Quantity]) - -slots.specimenQuantityObservation__id = Slot(uri=CCDH.id, name="specimenQuantityObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.specimenQuantityObservation__id, domain=SpecimenQuantityObservation, range=Optional[Union[str, CcdhString]]) - -slots.specimenQuantityObservation__category = Slot(uri=CCDH.category, name="specimenQuantityObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.specimenQuantityObservation__category, domain=SpecimenQuantityObservation, range=Optional[Union[str, "EnumCCDHSpecimenQuantityObservationCategory"]]) - -slots.specimenQuantityObservation__observation_type = Slot(uri=CCDH.observation_type, name="specimenQuantityObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.specimenQuantityObservation__observation_type, domain=SpecimenQuantityObservation, range=Union[str, "EnumCCDHSpecimenQuantityObservationObservationType"]) - -slots.specimenQuantityObservation__method_type = Slot(uri=CCDH.method_type, name="specimenQuantityObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.specimenQuantityObservation__method_type, domain=SpecimenQuantityObservation, range=Optional[Union[Union[str, "EnumCCDHSpecimenQuantityObservationMethodType"], List[Union[str, "EnumCCDHSpecimenQuantityObservationMethodType"]]]]) - -slots.specimenQuantityObservation__focus = Slot(uri=CCDH.focus, name="specimenQuantityObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.specimenQuantityObservation__focus, domain=SpecimenQuantityObservation, range=Optional[Union[Union[dict, Entity], List[Union[dict, Entity]]]]) - -slots.specimenQuantityObservation__subject = Slot(uri=CCDH.subject, name="specimenQuantityObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.specimenQuantityObservation__subject, domain=SpecimenQuantityObservation, range=Optional[Union[dict, "Subject"]]) - -slots.specimenQuantityObservation__performed_by = Slot(uri=CCDH.performed_by, name="specimenQuantityObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.specimenQuantityObservation__performed_by, domain=SpecimenQuantityObservation, range=Optional[Union[dict, Organization]]) - -slots.specimenQuantityObservation__valueQuantity = Slot(uri=CCDH.valueQuantity, name="specimenQuantityObservation__valueQuantity", curie=CCDH.curie('valueQuantity'), - model_uri=CCDH.specimenQuantityObservation__valueQuantity, domain=SpecimenQuantityObservation, range=Union[dict, Quantity]) - -slots.specimenProcessingActivity__activity_type = Slot(uri=CCDH.activity_type, name="specimenProcessingActivity__activity_type", curie=CCDH.curie('activity_type'), - model_uri=CCDH.specimenProcessingActivity__activity_type, domain=SpecimenProcessingActivity, range=Optional[Union[str, "EnumCCDHSpecimenProcessingActivityActivityType"]]) - -slots.specimenProcessingActivity__date_started = Slot(uri=CCDH.date_started, name="specimenProcessingActivity__date_started", curie=CCDH.curie('date_started'), - model_uri=CCDH.specimenProcessingActivity__date_started, domain=SpecimenProcessingActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenProcessingActivity__date_ended = Slot(uri=CCDH.date_ended, name="specimenProcessingActivity__date_ended", curie=CCDH.curie('date_ended'), - model_uri=CCDH.specimenProcessingActivity__date_ended, domain=SpecimenProcessingActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenProcessingActivity__duration = Slot(uri=CCDH.duration, name="specimenProcessingActivity__duration", curie=CCDH.curie('duration'), - model_uri=CCDH.specimenProcessingActivity__duration, domain=SpecimenProcessingActivity, range=Optional[Union[Union[dict, Quantity], List[Union[dict, Quantity]]]]) - -slots.specimenProcessingActivity__performed_by = Slot(uri=CCDH.performed_by, name="specimenProcessingActivity__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.specimenProcessingActivity__performed_by, domain=SpecimenProcessingActivity, range=Optional[Union[dict, Organization]]) - -slots.specimenProcessingActivity__method_type = Slot(uri=CCDH.method_type, name="specimenProcessingActivity__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.specimenProcessingActivity__method_type, domain=SpecimenProcessingActivity, range=Optional[Union[str, "EnumCCDHSpecimenProcessingActivityMethodType"]]) - -slots.specimenProcessingActivity__additive = Slot(uri=CCDH.additive, name="specimenProcessingActivity__additive", curie=CCDH.curie('additive'), - model_uri=CCDH.specimenProcessingActivity__additive, domain=SpecimenProcessingActivity, range=Optional[Union[Union[dict, "Substance"], List[Union[dict, "Substance"]]]]) - -slots.specimenProcessingActivity__execution_time_observation = Slot(uri=CCDH.execution_time_observation, name="specimenProcessingActivity__execution_time_observation", curie=CCDH.curie('execution_time_observation'), - model_uri=CCDH.specimenProcessingActivity__execution_time_observation, domain=SpecimenProcessingActivity, range=Optional[Union[Union[dict, ExecutionTimeObservation], List[Union[dict, ExecutionTimeObservation]]]]) - -slots.specimenProcessingActivity__execution_condition_observation = Slot(uri=CCDH.execution_condition_observation, name="specimenProcessingActivity__execution_condition_observation", curie=CCDH.curie('execution_condition_observation'), - model_uri=CCDH.specimenProcessingActivity__execution_condition_observation, domain=SpecimenProcessingActivity, range=Optional[Union[Union[dict, ExecutionConditionObservation], List[Union[dict, ExecutionConditionObservation]]]]) - -slots.specimenStorageActivity__date_started = Slot(uri=CCDH.date_started, name="specimenStorageActivity__date_started", curie=CCDH.curie('date_started'), - model_uri=CCDH.specimenStorageActivity__date_started, domain=SpecimenStorageActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenStorageActivity__date_ended = Slot(uri=CCDH.date_ended, name="specimenStorageActivity__date_ended", curie=CCDH.curie('date_ended'), - model_uri=CCDH.specimenStorageActivity__date_ended, domain=SpecimenStorageActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenStorageActivity__duration = Slot(uri=CCDH.duration, name="specimenStorageActivity__duration", curie=CCDH.curie('duration'), - model_uri=CCDH.specimenStorageActivity__duration, domain=SpecimenStorageActivity, range=Optional[Union[dict, Quantity]]) - -slots.specimenStorageActivity__performed_by = Slot(uri=CCDH.performed_by, name="specimenStorageActivity__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.specimenStorageActivity__performed_by, domain=SpecimenStorageActivity, range=Optional[Union[dict, Organization]]) - -slots.specimenStorageActivity__method_type = Slot(uri=CCDH.method_type, name="specimenStorageActivity__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.specimenStorageActivity__method_type, domain=SpecimenStorageActivity, range=Optional[Union[str, "EnumCCDHSpecimenStorageActivityMethodType"]]) - -slots.specimenStorageActivity__container = Slot(uri=CCDH.container, name="specimenStorageActivity__container", curie=CCDH.curie('container'), - model_uri=CCDH.specimenStorageActivity__container, domain=SpecimenStorageActivity, range=Optional[Union[Union[dict, SpecimenContainer], List[Union[dict, SpecimenContainer]]]]) - -slots.specimenTransportActivity__date_started = Slot(uri=CCDH.date_started, name="specimenTransportActivity__date_started", curie=CCDH.curie('date_started'), - model_uri=CCDH.specimenTransportActivity__date_started, domain=SpecimenTransportActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenTransportActivity__date_ended = Slot(uri=CCDH.date_ended, name="specimenTransportActivity__date_ended", curie=CCDH.curie('date_ended'), - model_uri=CCDH.specimenTransportActivity__date_ended, domain=SpecimenTransportActivity, range=Optional[Union[dict, "TimePoint"]]) - -slots.specimenTransportActivity__duration = Slot(uri=CCDH.duration, name="specimenTransportActivity__duration", curie=CCDH.curie('duration'), - model_uri=CCDH.specimenTransportActivity__duration, domain=SpecimenTransportActivity, range=Optional[Union[Union[str, CcdhString], List[Union[str, CcdhString]]]]) - -slots.specimenTransportActivity__performed_by = Slot(uri=CCDH.performed_by, name="specimenTransportActivity__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.specimenTransportActivity__performed_by, domain=SpecimenTransportActivity, range=Optional[Union[dict, Organization]]) - -slots.specimenTransportActivity__transport_origin = Slot(uri=CCDH.transport_origin, name="specimenTransportActivity__transport_origin", curie=CCDH.curie('transport_origin'), - model_uri=CCDH.specimenTransportActivity__transport_origin, domain=SpecimenTransportActivity, range=Optional[Union[dict, Organization]]) - -slots.specimenTransportActivity__transport_destination = Slot(uri=CCDH.transport_destination, name="specimenTransportActivity__transport_destination", curie=CCDH.curie('transport_destination'), - model_uri=CCDH.specimenTransportActivity__transport_destination, domain=SpecimenTransportActivity, range=Optional[Union[dict, Organization]]) - -slots.specimenTransportActivity__execution_condition_observation = Slot(uri=CCDH.execution_condition_observation, name="specimenTransportActivity__execution_condition_observation", curie=CCDH.curie('execution_condition_observation'), - model_uri=CCDH.specimenTransportActivity__execution_condition_observation, domain=SpecimenTransportActivity, range=Optional[Union[Union[dict, ExecutionConditionObservation], List[Union[dict, ExecutionConditionObservation]]]]) - -slots.subject__id = Slot(uri=CCDH.id, name="subject__id", curie=CCDH.curie('id'), - model_uri=CCDH.subject__id, domain=Subject, range=Union[str, CcdhString]) - -slots.subject__identifier = Slot(uri=CCDH.identifier, name="subject__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.subject__identifier, domain=Subject, range=Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]]) - -slots.subject__species = Slot(uri=CCDH.species, name="subject__species", curie=CCDH.curie('species'), - model_uri=CCDH.subject__species, domain=Subject, range=Optional[Union[str, "EnumCCDHSubjectSpecies"]]) - -slots.subject__breed = Slot(uri=CCDH.breed, name="subject__breed", curie=CCDH.curie('breed'), - model_uri=CCDH.subject__breed, domain=Subject, range=Optional[Union[str, "EnumCCDHSubjectBreed"]]) - -slots.subject__sex = Slot(uri=CCDH.sex, name="subject__sex", curie=CCDH.curie('sex'), - model_uri=CCDH.subject__sex, domain=Subject, range=Optional[Union[str, "EnumCCDHSubjectSex"]]) - -slots.subject__ethnicity = Slot(uri=CCDH.ethnicity, name="subject__ethnicity", curie=CCDH.curie('ethnicity'), - model_uri=CCDH.subject__ethnicity, domain=Subject, range=Optional[Union[str, "EnumCCDHSubjectEthnicity"]]) - -slots.subject__race = Slot(uri=CCDH.race, name="subject__race", curie=CCDH.curie('race'), - model_uri=CCDH.subject__race, domain=Subject, range=Optional[Union[Union[str, "EnumCCDHSubjectRace"], List[Union[str, "EnumCCDHSubjectRace"]]]]) - -slots.subject__year_of_birth = Slot(uri=CCDH.year_of_birth, name="subject__year_of_birth", curie=CCDH.curie('year_of_birth'), - model_uri=CCDH.subject__year_of_birth, domain=Subject, range=Optional[Union[int, CcdhInteger]]) - -slots.subject__vital_status = Slot(uri=CCDH.vital_status, name="subject__vital_status", curie=CCDH.curie('vital_status'), - model_uri=CCDH.subject__vital_status, domain=Subject, range=Optional[Union[str, "EnumCCDHSubjectVitalStatus"]]) - -slots.subject__age_at_death = Slot(uri=CCDH.age_at_death, name="subject__age_at_death", curie=CCDH.curie('age_at_death'), - model_uri=CCDH.subject__age_at_death, domain=Subject, range=Optional[Union[dict, Quantity]]) - -slots.subject__year_of_death = Slot(uri=CCDH.year_of_death, name="subject__year_of_death", curie=CCDH.curie('year_of_death'), - model_uri=CCDH.subject__year_of_death, domain=Subject, range=Optional[Union[int, CcdhInteger]]) - -slots.subject__cause_of_death = Slot(uri=CCDH.cause_of_death, name="subject__cause_of_death", curie=CCDH.curie('cause_of_death'), - model_uri=CCDH.subject__cause_of_death, domain=Subject, range=Optional[Union[str, "EnumCCDHSubjectCauseOfDeath"]]) - -slots.substance__substance_type = Slot(uri=CCDH.substance_type, name="substance__substance_type", curie=CCDH.curie('substance_type'), - model_uri=CCDH.substance__substance_type, domain=Substance, range=Optional[Union[str, "EnumCCDHSubstanceSubstanceType"]]) - -slots.substance__role = Slot(uri=CCDH.role, name="substance__role", curie=CCDH.curie('role'), - model_uri=CCDH.substance__role, domain=Substance, range=Optional[Union[Union[str, "EnumCCDHSubstanceRole"], List[Union[str, "EnumCCDHSubstanceRole"]]]]) - -slots.substance__substance_quantity = Slot(uri=CCDH.substance_quantity, name="substance__substance_quantity", curie=CCDH.curie('substance_quantity'), - model_uri=CCDH.substance__substance_quantity, domain=Substance, range=Optional[Union[dict, Quantity]]) - -slots.timePoint__id = Slot(uri=CCDH.id, name="timePoint__id", curie=CCDH.curie('id'), - model_uri=CCDH.timePoint__id, domain=TimePoint, range=Optional[Union[str, CcdhString]]) - -slots.timePoint__dateTime = Slot(uri=CCDH.dateTime, name="timePoint__dateTime", curie=CCDH.curie('dateTime'), - model_uri=CCDH.timePoint__dateTime, domain=TimePoint, range=Optional[Union[str, CcdhDateTime]]) - -slots.timePoint__indexTimePoint = Slot(uri=CCDH.indexTimePoint, name="timePoint__indexTimePoint", curie=CCDH.curie('indexTimePoint'), - model_uri=CCDH.timePoint__indexTimePoint, domain=TimePoint, range=Optional[Union[dict, "TimePoint"]]) - -slots.timePoint__offsetFromIndex = Slot(uri=CCDH.offsetFromIndex, name="timePoint__offsetFromIndex", curie=CCDH.curie('offsetFromIndex'), - model_uri=CCDH.timePoint__offsetFromIndex, domain=TimePoint, range=Optional[Union[dict, Quantity]]) - -slots.timePoint__eventType = Slot(uri=CCDH.eventType, name="timePoint__eventType", curie=CCDH.curie('eventType'), - model_uri=CCDH.timePoint__eventType, domain=TimePoint, range=Optional[Union[Union[str, "EnumCCDHTimePointEventType"], List[Union[str, "EnumCCDHTimePointEventType"]]]]) - -slots.timePeriod__periodStart_start = Slot(uri=CCDH.periodStart_start, name="timePeriod__periodStart_start", curie=CCDH.curie('periodStart_start'), - model_uri=CCDH.timePeriod__periodStart_start, domain=TimePeriod, range=Optional[Union[dict, TimePoint]]) - -slots.timePeriod__periodEnd_end = Slot(uri=CCDH.periodEnd_end, name="timePeriod__periodEnd_end", curie=CCDH.curie('periodEnd_end'), - model_uri=CCDH.timePeriod__periodEnd_end, domain=TimePeriod, range=Optional[Union[dict, TimePoint]]) - -slots.tobaccoExposureObservation__id = Slot(uri=CCDH.id, name="tobaccoExposureObservation__id", curie=CCDH.curie('id'), - model_uri=CCDH.tobaccoExposureObservation__id, domain=TobaccoExposureObservation, range=Optional[Union[str, CcdhString]]) - -slots.tobaccoExposureObservation__category = Slot(uri=CCDH.category, name="tobaccoExposureObservation__category", curie=CCDH.curie('category'), - model_uri=CCDH.tobaccoExposureObservation__category, domain=TobaccoExposureObservation, range=Optional[Union[str, "EnumCCDHTobaccoExposureObservationCategory"]]) - -slots.tobaccoExposureObservation__observation_type = Slot(uri=CCDH.observation_type, name="tobaccoExposureObservation__observation_type", curie=CCDH.curie('observation_type'), - model_uri=CCDH.tobaccoExposureObservation__observation_type, domain=TobaccoExposureObservation, range=Union[str, "EnumCCDHTobaccoExposureObservationObservationType"]) - -slots.tobaccoExposureObservation__method_type = Slot(uri=CCDH.method_type, name="tobaccoExposureObservation__method_type", curie=CCDH.curie('method_type'), - model_uri=CCDH.tobaccoExposureObservation__method_type, domain=TobaccoExposureObservation, range=Optional[Union[str, "EnumCCDHTobaccoExposureObservationMethodType"]]) - -slots.tobaccoExposureObservation__focus = Slot(uri=CCDH.focus, name="tobaccoExposureObservation__focus", curie=CCDH.curie('focus'), - model_uri=CCDH.tobaccoExposureObservation__focus, domain=TobaccoExposureObservation, range=Optional[Union[dict, Entity]]) - -slots.tobaccoExposureObservation__subject = Slot(uri=CCDH.subject, name="tobaccoExposureObservation__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.tobaccoExposureObservation__subject, domain=TobaccoExposureObservation, range=Optional[Union[dict, Subject]]) - -slots.tobaccoExposureObservation__performed_by = Slot(uri=CCDH.performed_by, name="tobaccoExposureObservation__performed_by", curie=CCDH.curie('performed_by'), - model_uri=CCDH.tobaccoExposureObservation__performed_by, domain=TobaccoExposureObservation, range=Optional[Union[dict, Organization]]) - -slots.tobaccoExposureObservation__valueInteger = Slot(uri=CCDH.valueInteger, name="tobaccoExposureObservation__valueInteger", curie=CCDH.curie('valueInteger'), - model_uri=CCDH.tobaccoExposureObservation__valueInteger, domain=TobaccoExposureObservation, range=Optional[Union[int, CcdhInteger]]) - -slots.tobaccoExposureObservation__valueCodeableConcept = Slot(uri=CCDH.valueCodeableConcept, name="tobaccoExposureObservation__valueCodeableConcept", curie=CCDH.curie('valueCodeableConcept'), - model_uri=CCDH.tobaccoExposureObservation__valueCodeableConcept, domain=TobaccoExposureObservation, range=Optional[Union[str, "EnumCCDHTobaccoExposureObservationValueCodeableConcept"]]) - -slots.treatment__id = Slot(uri=CCDH.id, name="treatment__id", curie=CCDH.curie('id'), - model_uri=CCDH.treatment__id, domain=Treatment, range=Optional[Union[str, CcdhString]]) - -slots.treatment__identifier = Slot(uri=CCDH.identifier, name="treatment__identifier", curie=CCDH.curie('identifier'), - model_uri=CCDH.treatment__identifier, domain=Treatment, range=Optional[Union[Union[dict, Identifier], List[Union[dict, Identifier]]]]) - -slots.treatment__treatment_for_diagnosis = Slot(uri=CCDH.treatment_for_diagnosis, name="treatment__treatment_for_diagnosis", curie=CCDH.curie('treatment_for_diagnosis'), - model_uri=CCDH.treatment__treatment_for_diagnosis, domain=Treatment, range=Optional[Union[Union[dict, Diagnosis], List[Union[dict, Diagnosis]]]]) - -slots.treatment__concurrent_treatment = Slot(uri=CCDH.concurrent_treatment, name="treatment__concurrent_treatment", curie=CCDH.curie('concurrent_treatment'), - model_uri=CCDH.treatment__concurrent_treatment, domain=Treatment, range=Optional[Union[Union[dict, "Treatment"], List[Union[dict, "Treatment"]]]]) - -slots.treatment__treatment_type = Slot(uri=CCDH.treatment_type, name="treatment__treatment_type", curie=CCDH.curie('treatment_type'), - model_uri=CCDH.treatment__treatment_type, domain=Treatment, range=Optional[Union[str, "EnumCCDHTreatmentTreatmentType"]]) - -slots.treatment__subject = Slot(uri=CCDH.subject, name="treatment__subject", curie=CCDH.curie('subject'), - model_uri=CCDH.treatment__subject, domain=Treatment, range=Optional[Union[dict, Subject]]) - -slots.treatment__date_started = Slot(uri=CCDH.date_started, name="treatment__date_started", curie=CCDH.curie('date_started'), - model_uri=CCDH.treatment__date_started, domain=Treatment, range=Optional[Union[dict, TimePoint]]) - -slots.treatment__date_ended = Slot(uri=CCDH.date_ended, name="treatment__date_ended", curie=CCDH.curie('date_ended'), - model_uri=CCDH.treatment__date_ended, domain=Treatment, range=Optional[Union[dict, TimePoint]]) - -slots.treatment__treatment_end_reason = Slot(uri=CCDH.treatment_end_reason, name="treatment__treatment_end_reason", curie=CCDH.curie('treatment_end_reason'), - model_uri=CCDH.treatment__treatment_end_reason, domain=Treatment, range=Optional[Union[Union[str, "EnumCCDHTreatmentTreatmentEndReason"], List[Union[str, "EnumCCDHTreatmentTreatmentEndReason"]]]]) - -slots.treatment__regimen = Slot(uri=CCDH.regimen, name="treatment__regimen", curie=CCDH.curie('regimen'), - model_uri=CCDH.treatment__regimen, domain=Treatment, range=Optional[Union[str, "EnumCCDHTreatmentRegimen"]]) - -slots.treatment__therapeutic_agent = Slot(uri=CCDH.therapeutic_agent, name="treatment__therapeutic_agent", curie=CCDH.curie('therapeutic_agent'), - model_uri=CCDH.treatment__therapeutic_agent, domain=Treatment, range=Optional[Union[dict, Substance]]) - -slots.treatment__number_of_cycles = Slot(uri=CCDH.number_of_cycles, name="treatment__number_of_cycles", curie=CCDH.curie('number_of_cycles'), - model_uri=CCDH.treatment__number_of_cycles, domain=Treatment, range=Optional[Union[int, CcdhInteger]]) - -slots.treatment__treatment_frequency = Slot(uri=CCDH.treatment_frequency, name="treatment__treatment_frequency", curie=CCDH.curie('treatment_frequency'), - model_uri=CCDH.treatment__treatment_frequency, domain=Treatment, range=Optional[Union[str, "EnumCCDHTreatmentTreatmentFrequency"]]) - -slots.treatment__treatment_anatomic_site = Slot(uri=CCDH.treatment_anatomic_site, name="treatment__treatment_anatomic_site", curie=CCDH.curie('treatment_anatomic_site'), - model_uri=CCDH.treatment__treatment_anatomic_site, domain=Treatment, range=Optional[Union[dict, BodySite]]) - -slots.treatment__treatment_intent = Slot(uri=CCDH.treatment_intent, name="treatment__treatment_intent", curie=CCDH.curie('treatment_intent'), - model_uri=CCDH.treatment__treatment_intent, domain=Treatment, range=Optional[Union[str, "EnumCCDHTreatmentTreatmentIntent"]]) - -slots.treatment__treatment_effect = Slot(uri=CCDH.treatment_effect, name="treatment__treatment_effect", curie=CCDH.curie('treatment_effect'), - model_uri=CCDH.treatment__treatment_effect, domain=Treatment, range=Optional[Union[str, "EnumCCDHTreatmentTreatmentEffect"]]) - -slots.treatment__treatment_outcome = Slot(uri=CCDH.treatment_outcome, name="treatment__treatment_outcome", curie=CCDH.curie('treatment_outcome'), - model_uri=CCDH.treatment__treatment_outcome, domain=Treatment, range=Optional[Union[str, "EnumCCDHTreatmentTreatmentOutcome"]]) diff --git a/ccdh/ccdhmodel.yaml b/ccdh/ccdhmodel.yaml deleted file mode 100644 index 191f1f1..0000000 --- a/ccdh/ccdhmodel.yaml +++ /dev/null @@ -1,28710 +0,0 @@ -name: CRDC-H -notes: -- Derived from [CDM_Dictionary_v1 (Active)](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4) -id: https://example.org/ccdh -version: v0.2-206-gdd844e33 -imports: -- linkml:types -license: https://creativecommons.org/publicdomain/zero/1.0/ -prefixes: - linkml: https://w3id.org/linkml/ - ccdh: https://example.org/ccdh/ - NCIT: http://purl.obolibrary.org/obo/NCIT_ - GDC: http://example.org/gdc/ - PDC: http://example.org/pdc/ - ICDC: http://example.org/icdc/ - HTAN: http://example.org/htan/ -default_prefix: ccdh -types: - ccdh_string: - name: ccdh_string - description: A sequence of Unicode characters. There are no limits on the number - of characters in the string. - notes: - - Derived from [ccdh_string in sheet Primitives](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=497370447) - typeof: string - ccdh_integer: - name: ccdh_integer - description: An integer number. This data type is based on the decimal type, - but the fractional component is not allowed. There are no restrictions on the - size of the integer. - notes: - - Derived from [ccdh_integer in sheet Primitives](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=497370447) - typeof: integer - ccdh_decimal: - name: ccdh_decimal - description: A rational number that has a decimal representation. This data type - does not restrict the size or precision of the number. - notes: - - Derived from [ccdh_decimal in sheet Primitives](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=497370447) - typeof: decimal - ccdh_boolean: - name: ccdh_boolean - description: "Value representing either \u201Ctrue\u201D or \u201Cfalse\u201D\ - . Permissible values (case-sensitive) = \u201Ctrue\u201D, \u201Cfalse\u201D\ - , \u201C1\u201D, \u201C0\u201D." - notes: - - Derived from [ccdh_boolean in sheet Primitives](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=497370447) - typeof: boolean - ccdh_dateTime: - name: ccdh_dateTime - description: A date and time string specified using a specialized concatenation - of the date and time data types, in the general format YYYY-MM-DDThh:mm:ss+zz:zz. - notes: - - Derived from [ccdh_dateTime in sheet Primitives](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=497370447) - typeof: datetime - ccdh_curie: - name: ccdh_curie - description: "A compact URI (CURIE), which is a bipartite identifier of the form\ - \ prefix:reference, in which the prefix is a convenient abbreviation of a URI.\ - \ It is expressed in the format \u201Cprefix:reference\u201D. When a mapping\ - \ of prefix to base URI is provided (external to this data type), a CURIE may\ - \ be mapped to a URI." - notes: - - Derived from [ccdh_curie in sheet Primitives](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=497370447) - typeof: uriorcurie - ccdh_code: - name: ccdh_code - description: '' - notes: - - Derived from [ccdh_code in sheet Primitives](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=497370447) - typeof: string -enums: - enum_CCDH_AlcoholExposureObservation_category: - name: enum_CCDH_AlcoholExposureObservation_category - description: Autogenerated Enumeration for CRDC-H AlcoholExposureObservation category - comments: - - 'Name according to TCCM: "CRDC-H.AlcoholExposureObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.AlcoholExposureObservation.category - code_set_version: '2021-07-21T20:42:39.755084+00:00' - enum_CCDH_AlcoholExposureObservation_observation_type: - name: enum_CCDH_AlcoholExposureObservation_observation_type - description: Types of observations about a Subject's exposure to alcohol. - notes: - - Derived from [AlcoholExposureObservation.observation_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - alcohol_days_per_week: - text: alcohol_days_per_week - description: Numeric value used to describe the average number of days each - week that a person consumes an alcoholic beverage. - alcohol_drinks_per_day: - text: alcohol_drinks_per_day - description: Numeric value used to describe the average number of alcoholic - beverages a person consumes per day. - alcohol_history: - text: alcohol_history - description: A response to a question that asks whether the participant has - consumed at least 12 drinks of any kind of alcoholic beverage in their lifetime. - alcohol_intensity: - text: alcohol_intensity - description: Category to describe the patient's current level of alcohol use - as self-reported by the patient. - enum_CCDH_AlcoholExposureObservation_method_type: - name: enum_CCDH_AlcoholExposureObservation_method_type - description: Autogenerated Enumeration for CRDC-H AlcoholExposureObservation method_type - comments: - - 'Name according to TCCM: "CRDC-H.AlcoholExposureObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.AlcoholExposureObservation.method_type - code_set_version: '2021-07-21T20:42:40.114759+00:00' - enum_CCDH_AlcoholExposureObservation_valueCodeableConcept: - name: enum_CCDH_AlcoholExposureObservation_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H AlcoholExposureObservation valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.AlcoholExposureObservation.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.AlcoholExposureObservation.valueCodeableConcept - code_set_version: '2021-07-21T20:42:40.254647+00:00' - permissible_values: - Unknown: - text: Unknown - Heavy Drinker: - text: Heavy Drinker - Drinker: - text: Drinker - Occasional Drinker: - text: Occasional Drinker - description: Occasional Drinker - Not Reported: - text: Not Reported - Lifelong Non-Drinker: - text: Lifelong Non-Drinker - Non-Drinker: - text: Non-Drinker - 'No': - text: 'No' - description: 'No' - 'Yes': - text: 'Yes' - description: 'Yes' - enum_CCDH_BodySite_site: - name: enum_CCDH_BodySite_site - description: Autogenerated Enumeration for CRDC-H BodySite site - comments: - - 'Name according to TCCM: "CRDC-H.BodySite.site"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.BodySite.site - code_set_version: '2021-07-21T20:42:40.409767+00:00' - permissible_values: - Eye and adnexa: - text: Eye and adnexa - description: Adnexa And Eye - Rectosigmoid junction: - text: Rectosigmoid junction - Brain: - text: Brain - description: Brain - Other and ill-defined digestive organs: - text: Other and ill-defined digestive organs - description: Other and ill-defined digestive organs - Parotid gland: - text: Parotid gland - Peripheral nerves and autonomic nervous system: - text: Peripheral nerves and autonomic nervous system - description: Peripheral Nerve and Autonomic Nervous System - Small intestine: - text: Small intestine - description: Small Intestine - Unknown: - text: Unknown - Skin: - text: Skin - description: Skin - Other and unspecified urinary organs: - text: Other and unspecified urinary organs - description: Other and unspecified urinary organs - Ureter: - text: Ureter - Gallbladder: - text: Gallbladder - Anus and anal canal: - text: Anus and anal canal - description: Anus and Anal Canal - Other and unspecified parts of mouth: - text: Other and unspecified parts of mouth - description: Other and unspecified parts of mouth - Prostate gland: - text: Prostate gland - Tonsil: - text: Tonsil - description: Tonsil - Other endocrine glands and related structures: - text: Other endocrine glands and related structures - description: Other endocrine glands and related structures - Spinal cord, cranial nerves, and other parts of central nervous system: - text: Spinal cord, cranial nerves, and other parts of central nervous system - description: Spinal Cord Cranial Nerve and Other Central Nervous System - Colon: - text: Colon - description: Colon - Esophagus: - text: Esophagus - description: Esophagus - Palate: - text: Palate - description: Palate - Hypopharynx: - text: Hypopharynx - description: Hypopharynx (Laryngopharynx) - Lymph nodes: - text: Lymph nodes - description: Lymph Node - Pyriform sinus: - text: Pyriform sinus - Lip: - text: Lip - description: Lip - Bronchus and lung: - text: Bronchus and lung - description: Bronchus and Lung - Other and unspecified female genital organs: - text: Other and unspecified female genital organs - description: Other and unspecified female genital organs - Testis: - text: Testis - Uterus, NOS: - text: Uterus, NOS - Bones, joints and articular cartilage of other and unspecified sites: - text: Bones, joints and articular cartilage of other and unspecified sites - description: Bone, Joint ,Articular Cartilage of Other and Unspecified Anatomic - Site - Retroperitoneum and peritoneum: - text: Retroperitoneum and peritoneum - description: Retroperitoneum and Peritoneum - Nasopharynx: - text: Nasopharynx - description: Nasopharynx - Meninges: - text: Meninges - description: Meninges - Accessory sinuses: - text: Accessory sinuses - description: Paranasal Sinus - Liver and intrahepatic bile ducts: - text: Liver and intrahepatic bile ducts - description: Liver and Intrahepatic Bile Duct - Rectum: - text: Rectum - description: Rectum - Bladder: - text: Bladder - description: Bladder - Cervix uteri: - text: Cervix uteri - Adrenal gland: - text: Adrenal gland - description: Adrenal Gland - Larynx: - text: Larynx - description: Larynx - Vulva: - text: Vulva - description: Vulva - Breast: - text: Breast - description: Breast - Floor of mouth: - text: Floor of mouth - Other and unspecified male genital organs: - text: Other and unspecified male genital organs - description: Other and unspecified male genital organs - Nasal cavity and middle ear: - text: Nasal cavity and middle ear - description: Nasal Cavity and Middle Ear - Stomach: - text: Stomach - description: Stomach - Renal pelvis: - text: Renal pelvis - Other and unspecified parts of tongue: - text: Other and unspecified parts of tongue - description: Other and unspecified parts of tongue - Kidney: - text: Kidney - description: Kidney - Oropharynx: - text: Oropharynx - description: Oropharynx - Other and ill-defined sites: - text: Other and ill-defined sites - description: Other and ill-defined sites - Thyroid gland: - text: Thyroid gland - Corpus uteri: - text: Corpus uteri - Hematopoietic and reticuloendothelial systems: - text: Hematopoietic and reticuloendothelial systems - description: Hematopoietic and Reticuloendothelial System - Not Reported: - text: Not Reported - Other and unspecified major salivary glands: - text: Other and unspecified major salivary glands - description: Other and unspecified major salivary glands - Trachea: - text: Trachea - Other and ill-defined sites within respiratory system and intrathoracic organs: - text: Other and ill-defined sites within respiratory system and intrathoracic - organs - description: Other and ill-defined sites within respiratory system and intrathoracic - organs - Other and ill-defined sites in lip, oral cavity and pharynx: - text: Other and ill-defined sites in lip, oral cavity and pharynx - description: Other and ill-defined sites in lip, oral cavity and pharynx - Placenta: - text: Placenta - Connective, subcutaneous and other soft tissues: - text: Connective, subcutaneous and other soft tissues - description: Connective, Subcutaneous and Other Soft Tissue - Thymus: - text: Thymus - description: Thymus - Base of tongue: - text: Base of tongue - description: Base of the Tongue - Penis: - text: Penis - description: Penis - Other and unspecified parts of biliary tract: - text: Other and unspecified parts of biliary tract - description: Other and unspecified parts of biliary tract - Vagina: - text: Vagina - description: Vagina - Gum: - text: Gum - description: Gingiva - Pancreas: - text: Pancreas - description: Pancreas - Heart, mediastinum, and pleura: - text: Heart, mediastinum, and pleura - description: Heart, Mediastinum and Pleura - Bones, joints and articular cartilage of limbs: - text: Bones, joints and articular cartilage of limbs - description: Bone, Joint, Articular Cartilage of Limb - Ovary: - text: Ovary - Connective, subcutaneous and other soft tissues of thorax: - text: Connective, subcutaneous and other soft tissues of thorax - External lip, NOS: - text: External lip, NOS - Other ill-defined sites: - text: Other ill-defined sites - Posterior wall of hypopharynx: - text: Posterior wall of hypopharynx - Branchial cleft: - text: Branchial cleft - Skin of trunk: - text: Skin of trunk - Cortex of adrenal gland: - text: Cortex of adrenal gland - Intrathoracic lymph nodes: - text: Intrathoracic lymph nodes - Ampulla of Vater: - text: Ampulla of Vater - Olfactory nerve: - text: Olfactory nerve - Lateral wall of bladder: - text: Lateral wall of bladder - Anterior 2/3 of tongue, NOS: - text: Anterior 2/3 of tongue, NOS - Pylorus: - text: Pylorus - description: Pylorus - Glottis: - text: Glottis - description: Glottis - Peripheral nerves and autonomic nervous system of upper limb and shoulder: - text: Peripheral nerves and autonomic nervous system of upper limb and shoulder - Overlapping lesion of accessory sinuses: - text: Overlapping lesion of accessory sinuses - Anterior mediastinum: - text: Anterior mediastinum - Cardia, NOS: - text: Cardia, NOS - Lymph nodes of multiple regions: - text: Lymph nodes of multiple regions - Endometrium: - text: Endometrium - Ethmoid sinus: - text: Ethmoid sinus - Rectum, NOS: - text: Rectum, NOS - Overlapping lesion of other and unspecified parts of mouth: - text: Overlapping lesion of other and unspecified parts of mouth - Prepuce: - text: Prepuce - Frontal lobe: - text: Frontal lobe - Colon, NOS: - text: Colon, NOS - Occipital lobe: - text: Occipital lobe - Upper limb, NOS: - text: Upper limb, NOS - Anus, NOS: - text: Anus, NOS - Retina: - text: Retina - description: Retina - Cornea, NOS: - text: Cornea, NOS - Subglottis: - text: Subglottis - description: Subglottis - Liver: - text: Liver - description: Liver - Upper gum: - text: Upper gum - Peripheral nerves and autonomic nervous system of pelvis: - text: Peripheral nerves and autonomic nervous system of pelvis - Retromolar area: - text: Retromolar area - Bladder, NOS: - text: Bladder, NOS - Myometrium: - text: Myometrium - Skin of upper limb and shoulder: - text: Skin of upper limb and shoulder - Spermatic cord: - text: Spermatic cord - Lateral floor of mouth: - text: Lateral floor of mouth - Skin of lower limb and hip: - text: Skin of lower limb and hip - Ascending colon: - text: Ascending colon - Other specified parts of pancreas: - text: Other specified parts of pancreas - Endocrine gland, NOS: - text: Endocrine gland, NOS - Uterine adnexa: - text: Uterine adnexa - Brain stem: - text: Brain stem - Overlapping lesion of rectum, anus and anal canal: - text: Overlapping lesion of rectum, anus and anal canal - Overlapping lesion of breast: - text: Overlapping lesion of breast - Blood: - text: Blood - description: Blood - Trigone of bladder: - text: Trigone of bladder - Laryngeal cartilage: - text: Laryngeal cartilage - Cauda equina: - text: Cauda equina - Brain, NOS: - text: Brain, NOS - Glans penis: - text: Glans penis - Head of pancreas: - text: Head of pancreas - Overlapping lesion of stomach: - text: Overlapping lesion of stomach - Overlapping lesion of colon: - text: Overlapping lesion of colon - Isthmus uteri: - text: Isthmus uteri - Overlapping lesion of heart, mediastinum and pleura: - text: Overlapping lesion of heart, mediastinum and pleura - Urachus: - text: Urachus - External upper lip: - text: External upper lip - Sphenoid sinus: - text: Sphenoid sinus - Islets of Langerhans: - text: Islets of Langerhans - Gastrointestinal tract, NOS: - text: Gastrointestinal tract, NOS - Lower gum: - text: Lower gum - Sigmoid colon: - text: Sigmoid colon - Overlapping lesion of peripheral nerves and autonomic nervous system: - text: Overlapping lesion of peripheral nerves and autonomic nervous system - Nervous system, NOS: - text: Nervous system, NOS - Cerebrum: - text: Cerebrum - description: Cerebral Hemisphere - Supraglottis: - text: Supraglottis - description: Supraglottis - Posterior mediastinum: - text: Posterior mediastinum - Upper-outer quadrant of breast: - text: Upper-outer quadrant of breast - Endocervix: - text: Endocervix - Ciliary body: - text: Ciliary body - Descended testis: - text: Descended testis - Overlapping lesion of retroperitoneum and peritoneum: - text: Overlapping lesion of retroperitoneum and peritoneum - Accessory sinus, NOS: - text: Accessory sinus, NOS - Superior wall of nasopharynx: - text: Superior wall of nasopharynx - Long bones of lower limb and associated joints: - text: Long bones of lower limb and associated joints - Meninges, NOS: - text: Meninges, NOS - Pineal gland: - text: Pineal gland - Anterior wall of nasopharynx: - text: Anterior wall of nasopharynx - Paraurethral gland: - text: Paraurethral gland - Fundus of stomach: - text: Fundus of stomach - Connective, subcutaneous and other soft tissues of trunk, NOS: - text: Connective, subcutaneous and other soft tissues of trunk, NOS - Overlapping lesion of lip, oral cavity and pharynx: - text: Overlapping lesion of lip, oral cavity and pharynx - Stomach, NOS: - text: Stomach, NOS - Epididymis: - text: Epididymis - description: Epididymis - Overlapping lesion of esophagus: - text: Overlapping lesion of esophagus - Pharynx, NOS: - text: Pharynx, NOS - Short bones of upper limb and associated joints: - text: Short bones of upper limb and associated joints - Testis, NOS: - text: Testis, NOS - Thoracic esophagus: - text: Thoracic esophagus - Spinal cord: - text: Spinal cord - Mouth, NOS: - text: Mouth, NOS - Lip, NOS: - text: Lip, NOS - Penis, NOS: - text: Penis, NOS - Fallopian tube: - text: Fallopian tube - Extrahepatic bile duct: - text: Extrahepatic bile duct - Pelvic lymph nodes: - text: Pelvic lymph nodes - Vertebral column: - text: Vertebral column - Pancreas, NOS: - text: Pancreas, NOS - Reticuloendothelial system, NOS: - text: Reticuloendothelial system, NOS - Submandibular gland: - text: Submandibular gland - Esophagus, NOS: - text: Esophagus, NOS - Mucosa of lip, NOS: - text: Mucosa of lip, NOS - Clitoris: - text: Clitoris - description: Clitoris - Overlapping lesion of endocrine glands and related structures: - text: Overlapping lesion of endocrine glands and related structures - Overlapping lesion of female genital organs: - text: Overlapping lesion of female genital organs - Oropharynx, NOS: - text: Oropharynx, NOS - Body of stomach: - text: Body of stomach - Hard palate: - text: Hard palate - Peripheral nerves and autonomic nervous system of thorax: - text: Peripheral nerves and autonomic nervous system of thorax - Overlapping lesion of larynx: - text: Overlapping lesion of larynx - Ill-defined sites within respiratory system: - text: Ill-defined sites within respiratory system - Male genital organs, NOS: - text: Male genital organs, NOS - Labium majus: - text: Labium majus - Short bones of lower limb and associated joints: - text: Short bones of lower limb and associated joints - Bone of limb, NOS: - text: Bone of limb, NOS - Overlapping lesion of brain and central nervous system: - text: Overlapping lesion of brain and central nervous system - Overlapping lesion of connective, subcutaneous and other soft tissues: - text: Overlapping lesion of connective, subcutaneous and other soft tissues - Descending colon: - text: Descending colon - Vestibule of mouth: - text: Vestibule of mouth - Pleura, NOS: - text: Pleura, NOS - Lymph nodes of axilla or arm: - text: Lymph nodes of axilla or arm - Meckel diverticulum: - text: Meckel diverticulum - Overlapping lesion of nasopharynx: - text: Overlapping lesion of nasopharynx - Lymph nodes of head, face and neck: - text: Lymph nodes of head, face and neck - External ear: - text: External ear - Retroperitoneum: - text: Retroperitoneum - description: Retroperitoneum - Maxillary sinus: - text: Maxillary sinus - Tonsillar fossa: - text: Tonsillar fossa - Heart: - text: Heart - description: Heart - Undescended testis: - text: Undescended testis - Transverse colon: - text: Transverse colon - Spleen: - text: Spleen - description: Spleen - Vallecula: - text: Vallecula - Ventral surface of tongue, NOS: - text: Ventral surface of tongue, NOS - Hypopharynx, NOS: - text: Hypopharynx, NOS - Overlapping lesion of bladder: - text: Overlapping lesion of bladder - Fundus uteri: - text: Fundus uteri - Overlapping lesion of eye and adnexa: - text: Overlapping lesion of eye and adnexa - Long bones of upper limb, scapula and associated joints: - text: Long bones of upper limb, scapula and associated joints - Craniopharyngeal duct: - text: Craniopharyngeal duct - Soft palate, NOS: - text: Soft palate, NOS - Appendix: - text: Appendix - description: Appendix - Posterior wall of nasopharynx: - text: Posterior wall of nasopharynx - Hepatic flexure of colon: - text: Hepatic flexure of colon - Upper-inner quadrant of breast: - text: Upper-inner quadrant of breast - Gum, NOS: - text: Gum, NOS - Acoustic nerve: - text: Acoustic nerve - Temporal lobe: - text: Temporal lobe - Skin of scalp and neck: - text: Skin of scalp and neck - Larynx, NOS: - text: Larynx, NOS - Commissure of lip: - text: Commissure of lip - Middle lobe, lung: - text: Middle lobe, lung - Postcricoid region: - text: Postcricoid region - Broad ligament: - text: Broad ligament - Overlapping lesion of ill-defined sites: - text: Overlapping lesion of ill-defined sites - Intestinal tract, NOS: - text: Intestinal tract, NOS - Urinary system, NOS: - text: Urinary system, NOS - Aortic body and other paraganglia: - text: Aortic body and other paraganglia - Body of pancreas: - text: Body of pancreas - Overlapping lesion of bones, joints and articular cartilage: - text: Overlapping lesion of bones, joints and articular cartilage - Rib, sternum, clavicle and associated joints: - text: Rib, sternum, clavicle and associated joints - Bones of skull and face and associated joints: - text: Bones of skull and face and associated joints - Pancreatic duct: - text: Pancreatic duct - Body of penis: - text: Body of penis - Border of tongue: - text: Border of tongue - Central portion of breast: - text: Central portion of breast - Eyelid: - text: Eyelid - Dorsal surface of tongue, NOS: - text: Dorsal surface of tongue, NOS - Overlapping lesion of biliary tract: - text: Overlapping lesion of biliary tract - Lesser curvature of stomach, NOS: - text: Lesser curvature of stomach, NOS - Ileum: - text: Ileum - description: Ileum - Ventricle, NOS: - text: Ventricle, NOS - Hypopharyngeal aspect of aryepiglottic fold: - text: Hypopharyngeal aspect of aryepiglottic fold - Vulva, NOS: - text: Vulva, NOS - Abdominal esophagus: - text: Abdominal esophagus - Peripheral nerves and autonomic nervous system of lower limb and hip: - text: Peripheral nerves and autonomic nervous system of lower limb and hip - Tonsillar pillar: - text: Tonsillar pillar - Upper third of esophagus: - text: Upper third of esophagus - Main bronchus: - text: Main bronchus - Cerebellum, NOS: - text: Cerebellum, NOS - Vagina, NOS: - text: Vagina, NOS - Upper lobe, lung: - text: Upper lobe, lung - Cecum: - text: Cecum - description: Cecum - Lacrimal gland: - text: Lacrimal gland - Parietal lobe: - text: Parietal lobe - Connective, subcutaneous and other soft tissues, NOS: - text: Connective, subcutaneous and other soft tissues, NOS - Axillary tail of breast: - text: Axillary tail of breast - Connective, subcutaneous and other soft tissues of abdomen: - text: Connective, subcutaneous and other soft tissues of abdomen - Connective, subcutaneous and other soft tissues of pelvis: - text: Connective, subcutaneous and other soft tissues of pelvis - Cheek mucosa: - text: Cheek mucosa - Lateral wall of nasopharynx: - text: Lateral wall of nasopharynx - Breast, NOS: - text: Breast, NOS - Ureteric orifice: - text: Ureteric orifice - Other specified parts of female genital organs: - text: Other specified parts of female genital organs - Urethra: - text: Urethra - description: Urethra - Overlapping lesion of brain: - text: Overlapping lesion of brain - Medulla of adrenal gland: - text: Medulla of adrenal gland - Bladder neck: - text: Bladder neck - Overlapping lesion of male genital organs: - text: Overlapping lesion of male genital organs - Dome of bladder: - text: Dome of bladder - Peripheral nerves and autonomic nervous system of trunk, NOS: - text: Peripheral nerves and autonomic nervous system of trunk, NOS - Peripheral nerves and autonomic nervous system of head, face, and neck: - text: Peripheral nerves and autonomic nervous system of head, face, and neck - Skin of lip, NOS: - text: Skin of lip, NOS - Spinal meninges: - text: Spinal meninges - Bone marrow: - text: Bone marrow - Overlapping lesions of oropharynx: - text: Overlapping lesions of oropharynx - Adrenal gland, NOS: - text: Adrenal gland, NOS - Floor of mouth, NOS: - text: Floor of mouth, NOS - Nipple: - text: Nipple - Biliary tract, NOS: - text: Biliary tract, NOS - Small intestine, NOS: - text: Small intestine, NOS - Overlapping lesion of digestive system: - text: Overlapping lesion of digestive system - Parametrium: - text: Parametrium - Sublingual gland: - text: Sublingual gland - Duodenum: - text: Duodenum - description: Duodenum - Choroid: - text: Choroid - Lymph node, NOS: - text: Lymph node, NOS - Exocervix: - text: Exocervix - Head, face or neck, NOS: - text: Head, face or neck, NOS - Overlapping lesion of penis: - text: Overlapping lesion of penis - Nasopharynx, NOS: - text: Nasopharynx, NOS - Autonomic nervous system, NOS: - text: Autonomic nervous system, NOS - Bone, NOS: - text: Bone, NOS - Peritoneum, NOS: - text: Peritoneum, NOS - Overlapping lesion of pancreas: - text: Overlapping lesion of pancreas - Overlapping lesion of palate: - text: Overlapping lesion of palate - Greater curvature of stomach, NOS: - text: Greater curvature of stomach, NOS - Posterior wall of oropharynx: - text: Posterior wall of oropharynx - Connective, subcutaneous and other soft tissues of head, face, and neck: - text: Connective, subcutaneous and other soft tissues of head, face, and neck - Overlapping lesion of vulva: - text: Overlapping lesion of vulva - Overlapping lesion of lung: - text: Overlapping lesion of lung - Pelvic bones, sacrum, coccyx and associated joints: - text: Pelvic bones, sacrum, coccyx and associated joints - Other specified parts of male genital organs: - text: Other specified parts of male genital organs - Base of tongue, NOS: - text: Base of tongue, NOS - Eye, NOS: - text: Eye, NOS - Cerebral meninges: - text: Cerebral meninges - Upper respiratory tract, NOS: - text: Upper respiratory tract, NOS - Peripheral nerves and autonomic nervous system of abdomen: - text: Peripheral nerves and autonomic nervous system of abdomen - Cranial nerve, NOS: - text: Cranial nerve, NOS - Connective, subcutaneous and other soft tissues of lower limb and hip: - text: Connective, subcutaneous and other soft tissues of lower limb and hip - Overlapping lesion of respiratory system and intrathoracic organs: - text: Overlapping lesion of respiratory system and intrathoracic organs - Hematopoietic system, NOS: - text: Hematopoietic system, NOS - Mandible: - text: Mandible - description: Mandible - Major salivary gland, NOS: - text: Major salivary gland, NOS - Lower third of esophagus: - text: Lower third of esophagus - Anterior surface of epiglottis: - text: Anterior surface of epiglottis - Tonsil, NOS: - text: Tonsil, NOS - Overlapping lesion of hypopharynx: - text: Overlapping lesion of hypopharynx - Round ligament: - text: Round ligament - Conjunctiva: - text: Conjunctiva - description: Conjunctiva - Overlapping lesion of tongue: - text: Overlapping lesion of tongue - Connective, subcutaneous and other soft tissues of upper limb and shoulder: - text: Connective, subcutaneous and other soft tissues of upper limb and shoulder - Skin, NOS: - text: Skin, NOS - Overlapping lesion of skin: - text: Overlapping lesion of skin - Lung, NOS: - text: Lung, NOS - Overlapping lesion of major salivary glands: - text: Overlapping lesion of major salivary glands - Overlapping lesion of small intestine: - text: Overlapping lesion of small intestine - External lower lip: - text: External lower lip - Overlapping lesion of corpus uteri: - text: Overlapping lesion of corpus uteri - Anal canal: - text: Anal canal - Cloacogenic zone: - text: Cloacogenic zone - Middle third of esophagus: - text: Middle third of esophagus - Kidney, NOS: - text: Kidney, NOS - Intra-abdominal lymph nodes: - text: Intra-abdominal lymph nodes - Optic nerve: - text: Optic nerve - Overlapping lesion of bones, joints and articular cartilage of limbs: - text: Overlapping lesion of bones, joints and articular cartilage of limbs - Cervical esophagus: - text: Cervical esophagus - Anterior wall of bladder: - text: Anterior wall of bladder - Abdomen, NOS: - text: Abdomen, NOS - Tongue, NOS: - text: Tongue, NOS - Overlapping lesion of tonsil: - text: Overlapping lesion of tonsil - Specified parts of peritoneum: - text: Specified parts of peritoneum - Overlapping lesion of urinary organs: - text: Overlapping lesion of urinary organs - Mucosa of upper lip: - text: Mucosa of upper lip - Splenic flexure of colon: - text: Splenic flexure of colon - Frontal sinus: - text: Frontal sinus - Overlapping lesion of floor of mouth: - text: Overlapping lesion of floor of mouth - Skin of other and unspecified parts of face: - text: Skin of other and unspecified parts of face - Lower lobe, lung: - text: Lower lobe, lung - Palate, NOS: - text: Palate, NOS - Posterior wall of bladder: - text: Posterior wall of bladder - Gastric antrum: - text: Gastric antrum - Lower-outer quadrant of breast: - text: Lower-outer quadrant of breast - Anterior floor of mouth: - text: Anterior floor of mouth - Labium minus: - text: Labium minus - Jejunum: - text: Jejunum - description: Jejunum - Pelvis, NOS: - text: Pelvis, NOS - Mediastinum, NOS: - text: Mediastinum, NOS - Thorax, NOS: - text: Thorax, NOS - Middle ear: - text: Middle ear - Lower-inner quadrant of breast: - text: Lower-inner quadrant of breast - Waldeyer ring: - text: Waldeyer ring - Scrotum, NOS: - text: Scrotum, NOS - Lymph nodes of inguinal region or leg: - text: Lymph nodes of inguinal region or leg - Mucosa of lower lip: - text: Mucosa of lower lip - Uvula: - text: Uvula - description: Uvula - Overlapping lesion of cervix uteri: - text: Overlapping lesion of cervix uteri - Overlapping lesion of lip: - text: Overlapping lesion of lip - Female genital tract, NOS: - text: Female genital tract, NOS - Parathyroid gland: - text: Parathyroid gland - Pituitary gland: - text: Pituitary gland - Lateral wall of oropharynx: - text: Lateral wall of oropharynx - Intrahepatic bile duct: - text: Intrahepatic bile duct - Tail of pancreas: - text: Tail of pancreas - Nasal cavity: - text: Nasal cavity - Orbit, NOS: - text: Orbit, NOS - Unknown primary site: - text: Unknown primary site - Lingual tonsil: - text: Lingual tonsil - Carotid body: - text: Carotid body - Lower limb, NOS: - text: Lower limb, NOS - Pancreatic neck: - text: Pancreatic neck - Thyroid: - text: Thyroid - Not Applicable: - text: Not Applicable - Colorectal: - text: Colorectal - Cervix: - text: Cervix - description: Cervix - Nervous System: - text: Nervous System - Pleura: - text: Pleura - description: Pleura - Bone: - text: Bone - description: Bone - Soft Tissue: - text: Soft Tissue - description: Soft tissue - Bile Duct: - text: Bile Duct - Head and Neck: - text: Head and Neck - Eye: - text: Eye - description: Eye - Bone Marrow: - text: Bone Marrow - Prostate: - text: Prostate - description: Prostate - Lung: - text: Lung - description: Lung - Lymph Nodes: - text: Lymph Nodes - Uterus: - text: Uterus - description: Uterus - Adrenal Gland: - text: Adrenal Gland - Scalp: - text: Scalp - description: Scalp - Lymph Node(s) Axilla: - text: Lymph Node(s) Axilla - description: Axillary Lymph Node - Ascending Colon: - text: Ascending Colon - Aorta: - text: Aorta - description: Aorta - Thigh: - text: Thigh - description: Thigh - Lymph Node: - text: Lymph Node - Fallopian Tube: - text: Fallopian Tube - Lymph Node(s) Inguinal: - text: Lymph Node(s) Inguinal - description: Inguinal Lymph Node - Buttock: - text: Buttock - description: Buttock - Nerve: - text: Nerve - description: nerve - Bronchiole: - text: Bronchiole - description: Bronchiole - Lymph Node(s) Supraclavicular: - text: Lymph Node(s) Supraclavicular - description: Supraclavicular Lymph Node - Esophageal; Proximal: - text: Esophageal; Proximal - description: Proximal Esophageal - Pericardium: - text: Pericardium - description: Pericardium - Temporal Cortex: - text: Temporal Cortex - Mediastinum: - text: Mediastinum - description: Mediastinum - Ischium: - text: Ischium - description: Ischium - Cartilage: - text: Cartilage - description: Cartilage - Femoral Vein: - text: Femoral Vein - Chest: - text: Chest - description: Chest - Tonsil (Pharyngeal): - text: Tonsil (Pharyngeal) - Femur: - text: Femur - description: Femur - Pelvis: - text: Pelvis - description: Pelvis - Lymph Node(s) Splenic: - text: Lymph Node(s) Splenic - description: Splenic Lymph Node - Lymph Node(s) Distant: - text: Lymph Node(s) Distant - Hepatic Duct: - text: Hepatic Duct - Paraspinal Ganglion: - text: Paraspinal Ganglion - description: Spinal Ganglion - Maxilla: - text: Maxilla - description: Maxilla - Hepatic Flexure: - text: Hepatic Flexure - description: Hepatic Flexure - Acetabulum: - text: Acetabulum - description: Acetabulum - Esophageal; Mid: - text: Esophageal; Mid - description: Middle Esophageal - Auditory Canal: - text: Auditory Canal - Epidural Space: - text: Epidural Space - Subcutaneous Tissue: - text: Subcutaneous Tissue - Alveolar Ridge: - text: Alveolar Ridge - description: Alveolar Ridge - Ligament: - text: Ligament - description: Ligament - Artery: - text: Artery - description: Artery - Chest Wall: - text: Chest Wall - Foot: - text: Foot - description: Foot - Hard Palate: - text: Hard Palate - Head & Neck: - text: Head & Neck - Thorax: - text: Thorax - description: Thorax - Joint: - text: Joint - Hippocampus: - text: Hippocampus - Femoral Artery: - text: Femoral Artery - Oral Cavity - Mucosa Only: - text: Oral Cavity - Mucosa Only - Spinal Column: - text: Spinal Column - Ocular Orbits: - text: Ocular Orbits - description: Orbit - Bowel: - text: Bowel - description: Bowel - Adrenal: - text: Adrenal - Chin: - text: Chin - description: Mentum - Anorectum: - text: Anorectum - description: Anorectum - White Blood Cells: - text: White Blood Cells - Spinal Cord: - text: Spinal Cord - description: Spinal Cord - Patella: - text: Patella - description: Patella - Sciatic Nerve: - text: Sciatic Nerve - Mesothelium: - text: Mesothelium - description: Mesothelium - Index Finger: - text: Index Finger - Lymph Node(s) Iliac-Common: - text: Lymph Node(s) Iliac-Common - Bronchus: - text: Bronchus - description: Bronchus - Adenoid: - text: Adenoid - description: Tonsillar Tissue - Buccal Mucosa: - text: Buccal Mucosa - Scapula: - text: Scapula - description: Scapula - Peritoneum: - text: Peritoneum - description: Peritoneum - Lymph Node(s) Regional: - text: Lymph Node(s) Regional - Shoulder: - text: Shoulder - description: Shoulder Joint - Parathyroid: - text: Parathyroid - description: Parathyroid Gland - Capillary: - text: Capillary - description: Capillary - Mediastinal Soft Tissue: - text: Mediastinal Soft Tissue - description: Mediastinal Soft Tissue - Not Allowed To Collect: - text: Not Allowed To Collect - Wrist: - text: Wrist - description: Wrist - Sinus(es), Maxillary: - text: Sinus(es), Maxillary - description: Maxillary Sinus - Aqueous Fluid: - text: Aqueous Fluid - description: Aqueous Fluid - Humerus: - text: Humerus - description: Humerus - Fibroblasts: - text: Fibroblasts - Descending Colon: - text: Descending Colon - Oral Cavity: - text: Oral Cavity - Trachea / Major Bronchi: - text: Trachea / Major Bronchi - Urinary Tract: - text: Urinary Tract - Esophagogastric Junction: - text: Esophagogastric Junction - Ear, Pinna (External): - text: Ear, Pinna (External) - description: External Ear - Throat: - text: Throat - description: Throat - Lymph Node(s) Retroperitoneal: - text: Lymph Node(s) Retroperitoneal - description: Retroperitoneal Lymph Node - Thoracic Spine: - text: Thoracic Spine - Thumb: - text: Thumb - Diaphragm: - text: Diaphragm - description: Diaphragm - Pharynx: - text: Pharynx - description: Pharynx - Colon - Mucosa Only: - text: Colon - Mucosa Only - Brow: - text: Brow - description: Eyebrow - Hip: - text: Hip - description: Hip - Nerve(s) Cranial: - text: Nerve(s) Cranial - description: Cranial Nerve - Forehead: - text: Forehead - description: Forehead - Occipital Cortex: - text: Occipital Cortex - Hepatic Vein: - text: Hepatic Vein - Forearm: - text: Forearm - description: Forearm - Common Duct: - text: Common Duct - Small Finger: - text: Small Finger - Sternum: - text: Sternum - description: Sternum - Fibula: - text: Fibula - description: Fibula - Tibia: - text: Tibia - description: Tibia - Salivary Gland: - text: Salivary Gland - Buccal Cavity: - text: Buccal Cavity - Vein: - text: Vein - description: Vein - Parotid Gland: - text: Parotid Gland - Peritoneal Cavity: - text: Peritoneal Cavity - Umbilical Cord: - text: Umbilical Cord - description: Umbilical Cord - Elbow: - text: Elbow - description: Elbow Joint - Cervical Spine: - text: Cervical Spine - Cerebrospinal Fluid: - text: Cerebrospinal Fluid - Lymph Node(s) Occipital: - text: Lymph Node(s) Occipital - description: Occipital Lymph Node - Ampulla Of Vater: - text: Ampulla Of Vater - Broad Ligament: - text: Broad Ligament - Skull: - text: Skull - description: Skull - Clavicle: - text: Clavicle - description: Clavicle - Knee: - text: Knee - description: Knee Joint - Omentum: - text: Omentum - description: Omentum - Lymph Node(s) Mesenteric: - text: Lymph Node(s) Mesenteric - description: Mesenteric Lymph Node - Other: - text: Other - description: Other - Cerebral Cortex: - text: Cerebral Cortex - Autonomic Nervous System: - text: Autonomic Nervous System - Trunk: - text: Trunk - description: Trunk - Synovium: - text: Synovium - description: Synovial Membrane - Small Bowel - Mucosa Only: - text: Small Bowel - Mucosa Only - Fundus Of Stomach: - text: Fundus Of Stomach - Vas Deferens: - text: Vas Deferens - description: Vas Deferens - Retro-Orbital Region: - text: Retro-Orbital Region - Groin: - text: Groin - description: Inguinal Region - Jaw: - text: Jaw - description: Jaw - Effusion: - text: Effusion - description: Effusion - Leptomeninges: - text: Leptomeninges - description: Leptomeninges - Lymph Node(s) Subclavicular: - text: Lymph Node(s) Subclavicular - description: Infraclavicular Lymph Node - Aortic Body: - text: Aortic Body - description: Aortic Body - Dermal: - text: Dermal - Lymph Node(s) Scalene: - text: Lymph Node(s) Scalene - Central Nervous System: - text: Central Nervous System - Lymph Node(s) Internal Mammary: - text: Lymph Node(s) Internal Mammary - Lymph Node(s) Popliteal: - text: Lymph Node(s) Popliteal - description: Popliteal Lymph Node - Skeletal Muscle: - text: Skeletal Muscle - description: Skeletal Muscle Tissue - Scrotum: - text: Scrotum - description: Scrotum - Middle Finger: - text: Middle Finger - Mitochondria: - text: Mitochondria - Hepatic: - text: Hepatic - Splenic Flexure: - text: Splenic Flexure - description: Splenic Flexure - Muscle: - text: Muscle - description: Muscle - Nasal Cavity: - text: Nasal Cavity - description: Nasal Cavity - Small Bowel: - text: Small Bowel - Ascending Colon Hepatic Flexure: - text: Ascending Colon Hepatic Flexure - description: Ascending Colon Hepatic Flexure - Carotid Body: - text: Carotid Body - Large Bowel: - text: Large Bowel - Foreskin: - text: Foreskin - description: Male Prepuce - Pineal Gland: - text: Pineal Gland - description: Pineal Gland - Venous: - text: Venous - Gastroesophageal Junction: - text: Gastroesophageal Junction - description: Gastroesophageal Junction - Mesentery: - text: Mesentery - description: Mesentery - Esophagus - Mucosa Only: - text: Esophagus - Mucosa Only - Pineal: - text: Pineal - Adipose: - text: Adipose - description: Adipose Tissue - Ganglia: - text: Ganglia - description: Ganglion - Connective Tissue: - text: Connective Tissue - Ear: - text: Ear - description: Ear - Arm: - text: Arm - description: Arm - Laryngopharynx: - text: Laryngopharynx - description: Hypopharynx (Laryngopharynx) - Ring Finger: - text: Ring Finger - Abdominal Wall: - text: Abdominal Wall - Lymph Node(s) Submandibular: - text: Lymph Node(s) Submandibular - description: Submandibular Lymph Node - Sacrum: - text: Sacrum - description: Sacrum - Lymph Nodes(s) Mediastinal: - text: Lymph Nodes(s) Mediastinal - Rectosigmoid Junction: - text: Rectosigmoid Junction - description: Rectosigmoid Region - Back: - text: Back - description: Back - Rib: - text: Rib - Ankle: - text: Ankle - description: Ankle - Round Ligament: - text: Round Ligament - Endocrine Gland: - text: Endocrine Gland - Lymph Node(s) Iliac-External: - text: Lymph Node(s) Iliac-External - Esophageal; Distal: - text: Esophageal; Distal - description: Distal Esophageal - Popliteal Fossa: - text: Popliteal Fossa - Calf: - text: Calf - description: Calf - Abdomen: - text: Abdomen - description: Abdominal Cavity - Transverse Colon: - text: Transverse Colon - description: Transverse Colon - Lumbar Spine: - text: Lumbar Spine - Lacrimal Gland: - text: Lacrimal Gland - description: Lacrimal Gland - Blood Vessel: - text: Blood Vessel - Antecubital Fossa: - text: Antecubital Fossa - Cell-Line: - text: Cell-Line - Hand: - text: Hand - description: Hand - Pituitary Gland: - text: Pituitary Gland - Seminal Vesicle: - text: Seminal Vesicle - description: Seminal Vesicle - Antrum: - text: Antrum - description: Antrum Pylori - Frontal Cortex: - text: Frontal Cortex - Anus: - text: Anus - description: Anus - Tendon: - text: Tendon - description: Tendon - Lymph Node(s) Mammary: - text: Lymph Node(s) Mammary - description: Mammary Lymph Node - Carina: - text: Carina - description: Carina - Vertebra: - text: Vertebra - description: Vertebra - Cerebellum: - text: Cerebellum - description: Cerebellum - Nails: - text: Nails - description: Nail - Sinus: - text: Sinus - Stomach - Mucosa Only: - text: Stomach - Mucosa Only - Lymph Node(s) Femoral: - text: Lymph Node(s) Femoral - description: Femoral Lymph Node - Axilla: - text: Axilla - description: Axilla - Cardia: - text: Cardia - description: Gastric Cardia - Nasal Soft Tissue: - text: Nasal Soft Tissue - description: Nasal Soft Tissue - Anal Sphincter: - text: Anal Sphincter - Frontal Lobe: - text: Frontal Lobe - Head - Face Or Neck, Nos: - text: Head - Face Or Neck, Nos - Lymph Node(s) Pelvic: - text: Lymph Node(s) Pelvic - description: Pelvic Lymph Node - Leg: - text: Leg - description: Leg - Neck: - text: Neck - description: Neck - Lymph Node(s) Parotid: - text: Lymph Node(s) Parotid - description: Parotid Gland Lymph Node - Gastrointestinal Tract: - text: Gastrointestinal Tract - Periorbital Soft Tissue: - text: Periorbital Soft Tissue - Ilium: - text: Ilium - description: Ilium - Sigmoid Colon: - text: Sigmoid Colon - Tongue: - text: Tongue - description: Tongue - Fluid: - text: Fluid - description: Body Fluid or Substance - Amniotic Fluid: - text: Amniotic Fluid - description: Amniotic Fluid - Ear Canal: - text: Ear Canal - Lymph Node(s) Cervical: - text: Lymph Node(s) Cervical - description: Cervical Lymph Node - Lymph Node(s) Paraaortic: - text: Lymph Node(s) Paraaortic - Floor Of Mouth: - text: Floor Of Mouth - Brain Stem: - text: Brain Stem - Finger: - text: Finger - description: Fingers (Phalanges) - Islet Cells: - text: Islet Cells - Lymph Node(s) Epitrochlear: - text: Lymph Node(s) Epitrochlear - description: Epitrochlear Lymph Node - Lymph Node(s) Hilar: - text: Lymph Node(s) Hilar - description: Hilar Lymph Node - Carotid Artery: - text: Carotid Artery - Sublingual Gland: - text: Sublingual Gland - Paranasal Sinuses: - text: Paranasal Sinuses - Submandibular Gland: - text: Submandibular Gland - enum_CCDH_BodySite_qualifier: - name: enum_CCDH_BodySite_qualifier - description: Autogenerated Enumeration for CRDC-H BodySite qualifier - comments: - - 'Name according to TCCM: "CRDC-H.BodySite.qualifier"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.BodySite.qualifier - code_set_version: '2021-07-21T20:42:41.146306+00:00' - permissible_values: - Bilateral: - text: Bilateral - description: Bilateral - Left: - text: Left - description: Left - Unknown: - text: Unknown - Right: - text: Right - description: Right - Not Reported: - text: Not Reported - enum_CCDH_BiologicProduct_product_type: - name: enum_CCDH_BiologicProduct_product_type - description: Autogenerated Enumeration for CRDC-H BiologicProduct product_type - comments: - - 'Name according to TCCM: "CRDC-H.BiologicProduct.product_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.BiologicProduct.product_type - code_set_version: '2021-07-21T20:42:41.302927+00:00' - enum_CCDH_CancerGradeObservation_category: - name: enum_CCDH_CancerGradeObservation_category - description: Autogenerated Enumeration for CRDC-H CancerGradeObservation category - comments: - - 'Name according to TCCM: "CRDC-H.CancerGradeObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerGradeObservation.category - code_set_version: '2021-07-21T20:42:41.448202+00:00' - enum_CCDH_CancerGradeObservation_observation_type: - name: enum_CCDH_CancerGradeObservation_observation_type - description: '' - notes: - - Derived from [CancerGradeObservation.observation_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - enneking_msts_grade: - text: enneking_msts_grade - description: The text term used to describe the surgical grade of the musculoskeletal - sarcoma, using the Enneking staging system approved by the Musculoskeletal - Tumor Society (MSTS). - esophageal_columnar_dysplasia_degree: - text: esophageal_columnar_dysplasia_degree - description: Text term to describe the amount of dysplasia found within the - benign esophageal columnar mucosa. - inpc_grade: - text: inpc_grade - description: Text term used to describe the classification of neuroblastic - differentiation within neuroblastoma tumors, as defined by the International - Neuroblastoma Pathology Classification (INPC). - gleason_grade_group: - text: gleason_grade_group - description: The text term used to describe the overall grouping of grades - defined by the Gleason grading classification, which is used to determine - the aggressiveness of prostate cancer. Note that this grade describes the - entire prostatectomy specimen and is not specific to the sample used for - sequencing. - primary_gleason_grade: - text: primary_gleason_grade - description: The text term used to describe the primary Gleason score, which - describes the pattern of cells making up the largest area of the tumor. - The primary and secondary Gleason pattern grades are combined to determine - the patient's Gleason grade group, which is used to determine the aggressiveness - of prostate cancer. Note that this grade describes the entire prostatectomy - specimen and is not specific to the sample used for sequencing. - secondary_gleason_grade: - text: secondary_gleason_grade - description: The text term used to describe the secondary Gleason score, which - describes the pattern of cells making up the second largest area of the - tumor. The primary and secondary Gleason pattern grades are combined to - determine the patient's Gleason grade group, which is used to determine - the aggressiveness of prostate cancer. Note that this grade describes the - entire prostatectomy specimen and is not specific to the sample used for - sequencing. - tumor_grade: - text: tumor_grade - description: Text value to express the degree of abnormality of cancer cells, - a measure of differentiation and aggressiveness. - enum_CCDH_CancerGradeObservation_method_type: - name: enum_CCDH_CancerGradeObservation_method_type - description: Autogenerated Enumeration for CRDC-H CancerGradeObservation method_type - comments: - - 'Name according to TCCM: "CRDC-H.CancerGradeObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerGradeObservation.method_type - code_set_version: '2021-07-21T20:42:41.748299+00:00' - enum_CCDH_CancerGradeObservation_valueCodeableConcept: - name: enum_CCDH_CancerGradeObservation_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H CancerGradeObservation valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.CancerGradeObservation.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerGradeObservation.valueCodeableConcept - code_set_version: '2021-07-21T20:42:41.897574+00:00' - permissible_values: - Pattern 1: - text: Pattern 1 - Pattern 4: - text: Pattern 4 - Pattern 5: - text: Pattern 5 - Pattern 3: - text: Pattern 3 - Pattern 2: - text: Pattern 2 - Not Reported: - text: Not Reported - Unknown: - text: Unknown - Low Grade (G1): - text: Low Grade (G1) - description: Enneking Low Surgical Grade - High Grade (G2): - text: High Grade (G2) - description: Enneking High Surgical Grade - Low Grade: - text: Low Grade - description: Low Grade - GX: - text: GX - description: Grade Cannot be Assessed - G1: - text: G1 - description: Well Differentiated - High Grade: - text: High Grade - description: High Grade - G2: - text: G2 - description: Moderately Differentiated - G3: - text: G3 - description: Poorly Differentiated - G4: - text: G4 - description: Undifferentiated Histology - Intermediate Grade: - text: Intermediate Grade - description: Intermediate Grade - GB: - text: GB - description: Borderline Histologic Grade - not reported: - text: not reported - High Grade Dysplasia: - text: High Grade Dysplasia - Indefinite for Dysplasia: - text: Indefinite for Dysplasia - Low Grade Dysplasia: - text: Low Grade Dysplasia - Negative/ No Dysplasia: - text: Negative/ No Dysplasia - Group 1: - text: Group 1 - Group 3: - text: Group 3 - Group 5: - text: Group 5 - Group 4: - text: Group 4 - Group 2: - text: Group 2 - Differentiating: - text: Differentiating - description: Differentiating Neuroblastoma - Undifferentiated: - text: Undifferentiated - description: Undifferentiated Neuroblastoma - Poorly Differentiated: - text: Poorly Differentiated - description: Poorly Differentiated Neuroblastoma - enum_CCDH_CancerGradeObservationSet_category: - name: enum_CCDH_CancerGradeObservationSet_category - description: Autogenerated Enumeration for CRDC-H CancerGradeObservationSet category - comments: - - 'Name according to TCCM: "CRDC-H.CancerGradeObservationSet.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerGradeObservationSet.category - code_set_version: '2021-07-21T20:42:42.080174+00:00' - enum_CCDH_CancerGradeObservationSet_method_type: - name: enum_CCDH_CancerGradeObservationSet_method_type - description: A morphologic classification system of malignant tumors, usually - relating to disease progression and clinical outcome. It is based upon the presence - or absence of several morphologic parameters, including tumor cell necrosis, - cytologic atypia, nuclear pleomorphism and mitotic figures, the architectural - infiltrating patterns, and the degree of tumor cell differentiation. Malignant - tumors usually are graded I-III - notes: - - Derived from [CancerGradeObservationSet.method_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - Gleason: - text: Gleason - description: A grading system for prostatic carcinoma based on the microscopic - glandular architectural patterns of the malignant epithelial cells. Nuclear - atypia is not evaluated. It defines five patterns or grades which reflect - decreasing differentiation. - INPC: - text: INPC - description: '' - Unspecified grading system: - text: Unspecified grading system - description: '' - enum_CCDH_CancerStageObservation_category: - name: enum_CCDH_CancerStageObservation_category - description: Autogenerated Enumeration for CRDC-H CancerStageObservation category - comments: - - 'Name according to TCCM: "CRDC-H.CancerStageObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerStageObservation.category - code_set_version: '2021-07-21T20:42:42.377812+00:00' - enum_CCDH_CancerStageObservation_observation_type: - name: enum_CCDH_CancerStageObservation_observation_type - description: Types of observations or components of a cancer staging assessment. - notes: - - Derived from [CancerStageObservation.observation_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - Overall: - text: Overall - description: The overall stage of the disease - Tumor (T): - text: Tumor (T) - description: T classifies the size or direct extent of the primary tumor - Node (N): - text: Node (N) - description: N classifies the degree of spread to regional lymph nodes - Metastasis (M): - text: Metastasis (M) - description: M classifies the presence of distant metastasis - Clinical Overall: - text: Clinical Overall - description: The overall stage of the disease; clinical stage is determined - from evidence acquired before treatment (including clinical examination, - imaging, endoscopy, biopsy, surgical exploration) - Clinical Tumor (T): - text: Clinical Tumor (T) - description: T classifies the size or direct extent of the primary tumor; - clinical stage is determined from evidence acquired before treatment (including - clinical examination, imaging, endoscopy, biopsy, surgical exploration) - Clinical Node (N): - text: Clinical Node (N) - description: N classifies the degree of spread to regional lymph nodes; clinical - stage is determined from evidence acquired before treatment (including clinical - examination, imaging, endoscopy, biopsy, surgical exploration) - Clinical Metastasis (M): - text: Clinical Metastasis (M) - description: M classifies the presence of distant metastasis; clinical stage - is determined from evidence acquired before treatment (including clinical - examination, imaging, endoscopy, biopsy, surgical exploration) - Pathological Overall: - text: Pathological Overall - description: The overall stage of the disease; stage given by histopathologic - examination of a surgical specimen - Pathological Tumor (T): - text: Pathological Tumor (T) - description: T classifies the size or direct extent of the primary tumor; - stage given by histopathologic examination of a surgical specimen - Pathological Node (N): - text: Pathological Node (N) - description: N classifies the degree of spread to regional lymph nodes; stage - given by histopathologic examination of a surgical specimen - Pathological Metastasis (M): - text: Pathological Metastasis (M) - description: M classifies the presence of distant metastasis; stage given - by histopathologic examination of a surgical specimen - Ann Arbor Substage Modifier: - text: Ann Arbor Substage Modifier - description: The substage classification modifiers amend each stage based - on distinct features. - enum_CCDH_CancerStageObservation_method_type: - name: enum_CCDH_CancerStageObservation_method_type - description: Autogenerated Enumeration for CRDC-H CancerStageObservation method_type - comments: - - 'Name according to TCCM: "CRDC-H.CancerStageObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerStageObservation.method_type - code_set_version: '2021-07-21T20:42:42.670201+00:00' - enum_CCDH_CancerStageObservation_valueCodeableConcept: - name: enum_CCDH_CancerStageObservation_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H CancerStageObservation valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.CancerStageObservation.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerStageObservation.valueCodeableConcept - code_set_version: '2021-07-21T20:42:42.819552+00:00' - permissible_values: - N2: - text: N2 - description: N2 Stage Finding - N3: - text: N3 - description: N3 Stage Finding - N0 (i-): - text: N0 (i-) - description: N0 (i-) Stage Finding - N3b: - text: N3b - description: N3b Stage Finding - NX: - text: NX - description: NX Stage Finding - N1bIII: - text: N1bIII - description: N1bIII Stage Finding - N1bII: - text: N1bII - description: N1bII Stage Finding - N0 (mol+): - text: N0 (mol+) - description: N0 (mol+) Stage Finding - N1c: - text: N1c - description: N1c Stage Finding - N1b: - text: N1b - description: N1b Stage Finding - N1bIV: - text: N1bIV - description: N1bIV Stage Finding - N1: - text: N1 - description: N1 Stage Finding - N4: - text: N4 - description: N4 Stage Finding - N2b: - text: N2b - description: N2b Stage Finding - N0 (mol-): - text: N0 (mol-) - description: N0 (mol-) Stage Finding - N0: - text: N0 - description: N0 Stage Finding - N3a: - text: N3a - description: N3a Stage Finding - N1a: - text: N1a - description: N1a Stage Finding - N2c: - text: N2c - description: N2c Stage Finding - N0 (i+): - text: N0 (i+) - description: N0 (i+) Stage Finding - N2a: - text: N2a - description: N2a Stage Finding - N1mi: - text: N1mi - description: N1mi Stage Finding - Unknown: - text: Unknown - description: Unknown - Not Reported: - text: Not Reported - description: Not Reported - N1bI: - text: N1bI - description: N1bI Stage Finding - N3c: - text: N3c - description: N3c Stage Finding - 'Yes': - text: 'Yes' - description: 'Yes' - 'No': - text: 'No' - description: 'No' - Not Allowed To Collect: - text: Not Allowed To Collect - Stage IVB: - text: Stage IVB - description: FIGO Stage IVB - Stage II: - text: Stage II - description: SIOP/COG/NWTSG Stage II - Stage IIA: - text: Stage IIA - description: Enneking Stage IIA - Stage 0: - text: Stage 0 - description: FIGO Stage 0 - Stage IIID: - text: Stage IIID - Stage IV: - text: Stage IV - description: SIOP/COG/NWTSG Stage IV - Stage IIIA: - text: Stage IIIA - description: FIGO Stage IIIA - Stage III: - text: Stage III - description: SIOP/COG/NWTSG Stage III - Stage IVC: - text: Stage IVC - description: Stage IVC - Stage Tis: - text: Stage Tis - description: Tis Stage Finding - Stage IVA: - text: Stage IVA - description: FIGO Stage IVA - Stage IS: - text: Stage IS - description: Stage Is - Stage IA2: - text: Stage IA2 - description: FIGO Stage IA2 - Stage IB: - text: Stage IB - description: Enneking Stage IB - Stage 0a: - text: Stage 0a - description: Stage 0a - Stage IIIB: - text: Stage IIIB - description: FIGO Stage IIIB - Stage IIC: - text: Stage IIC - Stage IC: - text: Stage IC - description: FIGO Stage IC - Stage IB2: - text: Stage IB2 - description: FIGO Stage IB2 - Stage IIIC: - text: Stage IIIC - description: FIGO Stage IIIC - Stage IIA1: - text: Stage IIA1 - description: Stage IIA1 Cervical Cancer - Stage IB1: - text: Stage IB1 - description: FIGO Stage IB1 - Stage IIIC1: - text: Stage IIIC1 - description: FIGO Stage IIIC1 - Stage IA: - text: Stage IA - description: Enneking Stage IA - Stage IA3: - text: Stage IA3 - Stage IIA2: - text: Stage IIA2 - description: Stage IIA2 Cervical Cancer - Stage IIB: - text: Stage IIB - description: Enneking Stage IIB - Stage IIIC2: - text: Stage IIIC2 - description: FIGO Stage IIIC2 - Stage I: - text: Stage I - description: SIOP/COG/NWTSG Stage I - Stage X: - text: Stage X - description: Stage X - Stage 0is: - text: Stage 0is - description: Stage 0is - Stage IA1: - text: Stage IA1 - description: FIGO Stage IA1 - Ta: - text: Ta - description: Ta Stage Finding - T3: - text: T3 - description: T3 Stage Finding - T2b: - text: T2b - description: T2b Stage Finding - T2a2: - text: T2a2 - description: Stage T2a2 Finding - T1a: - text: T1a - description: T1a Stage Finding - T3d: - text: T3d - description: T3d Stage Finding - T4: - text: T4 - description: T4 Stage Finding - T4a: - text: T4a - description: T4a Stage Finding - Tis: - text: Tis - description: Tis Stage Finding - T3a: - text: T3a - description: T3a Stage Finding - T2c: - text: T2c - description: T2c Stage Finding - T1b2: - text: T1b2 - description: T1b2 Stage Finding - T0: - text: T0 - description: T0 Stage Finding - T2a: - text: T2a - description: T2a Stage Finding - T1mi: - text: T1mi - description: T1mi Stage Finding - T4b: - text: T4b - description: T4b Stage Finding - T1a1: - text: T1a1 - description: Stage T1a1 Finding - T1b1: - text: T1b1 - description: T1b1 Stage Finding - TX: - text: TX - description: TX Stage Finding - T2d: - text: T2d - description: T2d Stage Finding - T4d: - text: T4d - description: T4d Stage Finding - T2a1: - text: T2a1 - description: Stage T2a1 Finding - Tis (LCIS): - text: Tis (LCIS) - description: Tis Stage Finding Lobular Breast Carcinoma In Situ - T2: - text: T2 - description: T2 Stage Finding - Tis (DCIS): - text: Tis (DCIS) - description: Tis Stage Finding Ductal Breast Carcinoma In Situ - T4e: - text: T4e - description: T4e Stage Finding - T3c: - text: T3c - description: T3c Stage Finding - T1: - text: T1 - description: T1 Stage Finding - T1a2: - text: T1a2 - description: Stage T1a2 Finding - T3b: - text: T3b - description: T3b Stage Finding - T4c: - text: T4c - description: T4c Stage Finding - T1b: - text: T1b - description: T1b Stage Finding - Tis (Paget's): - text: Tis (Paget's) - description: Tis Stage Finding Paget Disease of the Breast without Invasive - Carcinoma - T1c: - text: T1c - description: T1c Stage Finding - M1d: - text: M1d - M1a: - text: M1a - description: M1a Stage Finding - M1: - text: M1 - description: M1 Stage Finding - MX: - text: MX - description: MX Stage Finding - M1c: - text: M1c - description: M1c Stage Finding - cM0 (i+): - text: cM0 (i+) - description: cM0 (i+) Stage Finding - M2: - text: M2 - description: M2 Stage Finding - M0: - text: M0 - description: M0 Stage Finding - M1b: - text: M1b - description: M1b Stage Finding - Stage 4S: - text: Stage 4S - description: INSS Stage 4S - Stage 3: - text: Stage 3 - description: INSS Stage 3 - Stage 4: - text: Stage 4 - description: INSS Stage 4 - Stage 2A: - text: Stage 2A - description: INSS Stage 2A - Stage 1: - text: Stage 1 - description: INSS Stage 1 - Stage 2B: - text: Stage 2B - description: INSS Stage 2B - II: - text: II - description: II - III: - text: III - description: III - I: - text: I - description: I - '4': - text: '4' - description: Metastatic disease - '2': - text: '2' - description: Unfavorable site, <= 5 cm, no regional node involvement - '1': - text: '1' - description: Favorable Site - '3': - text: '3' - description: Unfavorable site, >5cm, and/or regional node involvement - Stage IVb: - text: Stage IVb - Stage IVa: - text: Stage IVa - Stage IIa: - text: Stage IIa - Stage IIb: - text: Stage IIb - No Metastasis (M0): - text: No Metastasis (M0) - Regional or Distant Metastasis (M1): - text: Regional or Distant Metastasis (M1) - Stage II Cervix: - text: Stage II Cervix - description: Stage II Cervix - Stage IB Cervix: - text: Stage IB Cervix - description: Stage IB Cervix - Stage IIC1: - text: Stage IIC1 - Stage IIA Cervix: - text: Stage IIA Cervix - description: Stage IIA Cervix - 3rd: - text: 3rd - description: Third Edition (published 1988) - 2nd: - text: 2nd - description: Second Edition (published 1983) - 5th: - text: 5th - description: Fifth Edition (published 1997) - 8th: - text: 8th - description: Eighth Edition - 4th: - text: 4th - description: Fourth Edition (published 1992) - 6th: - text: 6th - description: Sixth Edition (published 2002) - 1st: - text: 1st - description: First Edition - 7th: - text: 7th - description: Seventh Edition - Extracompartmental (T2): - text: Extracompartmental (T2) - description: Extracompartmental Tumor - Intracompartmental (T1): - text: Intracompartmental (T1) - description: Intracompartmental Tumor - Good Prognosis: - text: Good Prognosis - Poor Prognosis: - text: Poor Prognosis - Intermediate Prognosis: - text: Intermediate Prognosis - L1: - text: L1 - description: INRG Stage L1 - Ms: - text: Ms - description: INRG Stage MS - M: - text: M - description: INRG Stage M - L2: - text: L2 - description: INRG Stage L2 - Stage IC2: - text: Stage IC2 - Stage IC1: - text: Stage IC1 - Stage IIIA1: - text: Stage IIIA1 - Stage IIIAii: - text: Stage IIIAii - Stage IC3: - text: Stage IC3 - Stage IIIAi: - text: Stage IIIAi - Stage IIIA2: - text: Stage IIIA2 - enum_CCDH_CancerStageObservationSet_category: - name: enum_CCDH_CancerStageObservationSet_category - description: Autogenerated Enumeration for CRDC-H CancerStageObservationSet category - comments: - - 'Name according to TCCM: "CRDC-H.CancerStageObservationSet.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.CancerStageObservationSet.category - code_set_version: '2021-07-21T20:42:43.167268+00:00' - enum_CCDH_CancerStageObservationSet_method_type: - name: enum_CCDH_CancerStageObservationSet_method_type - description: Classification systems used for defining the point in the natural - history of a malignant disease a patient is when a diagnosis is made - notes: - - Derived from [CancerStageObservationSet.method_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - AJCC staging system 1st edition: - text: AJCC staging system 1st edition - description: The 1st edition of the criteria developed by the American Joint - Committee on Cancer (AJCC) used for the classification and staging of neoplastic - diseases. - AJCC staging system 2nd edition: - text: AJCC staging system 2nd edition - description: The 2nd edition of the criteria developed by the American Joint - Committee on Cancer (AJCC) used for the classification and staging of neoplastic - diseases. - AJCC staging system 3rd edition: - text: AJCC staging system 3rd edition - description: The 3rd edition of the criteria developed by the American Joint - Committee on Cancer (AJCC) used for the classification and staging of neoplastic - diseases. - AJCC staging system 4th edition: - text: AJCC staging system 4th edition - description: The 4th edition of the criteria developed by the American Joint - Committee on Cancer (AJCC) used for the classification and staging of neoplastic - diseases. - AJCC staging system 5th edition: - text: AJCC staging system 5th edition - description: The 5th edition of the criteria developed by the American Joint - Committee on Cancer (AJCC) used for the classification and staging of neoplastic - diseases. - AJCC staging system 6th edition: - text: AJCC staging system 6th edition - description: The 6th edition of the criteria developed by the American Joint - Committee on Cancer (AJCC) used for the classification and staging of neoplastic - diseases. - AJCC staging system 7th edition: - text: AJCC staging system 7th edition - description: The 7th edition of the criteria developed by the American Joint - Committee on Cancer (AJCC) in 2010, used for the classification and staging - of neoplastic diseases. - AJCC staging system 8th edition: - text: AJCC staging system 8th edition - description: The 8th edition of the criteria developed by the American Joint - Committee on Cancer (AJCC), implemented in 2018, used for the classification - and staging of neoplastic diseases - Ann Arbor staging system: - text: Ann Arbor staging system - description: The Ann Arbor Staging guidelines used in the staging of lymphomas - COG Liver staging system: - text: COG Liver staging system - description: A staging system developed by Children's Oncology Group (COG) - that categorizes liver tumors based on the size and extent of the tumor. - COG Renal staging system: - text: COG Renal staging system - description: A staging system developed by Children's Oncology Group (COG) - that categorizes renal tumors, often Wilms tumor, based on the size and - extent of the tumor. - Enneking MSTS staging system: - text: Enneking MSTS staging system - description: A staging system for malignant mesenchymal tumors that takes - into account the surgical grade, local extent, and presence or absence of - metastasis. - FIGO staging system: - text: FIGO staging system - description: A set of staging terms for carcinoma developed by the International - Federation of Gynecology and Obstetrics (FIGO). - IGCCCG staging system: - text: IGCCCG staging system - description: '' - INRG staging system: - text: INRG staging system - description: A clinical staging system for neuroblastoma based on preoperative - imaging and determined prior to any treatment, including surgery. It includes - two stages of localized disease (L1 and L2) and two stages of metastatic - disease (M and MS). - INSS staging system: - text: INSS staging system - description: A surgicopathological staging system for neuroblastoma, based - on the Evans staging system. - IRS staging system: - text: IRS staging system - description: A system developed by the Intergroup Rhabdomyosarcoma Studies - (IRS) group for staging rhabdomyosarcomas based on a modified TNM staging - system. - ISS staging system: - text: ISS staging system - description: A plasma cell myeloma stage defined according to the international - staging system. - Masaoka staging system: - text: Masaoka staging system - description: A thymoma stage defined according to the Masaoka-Koga staging - criteria. - Unspecified staging system: - text: Unspecified staging system - description: For use when a data contributor has a cancer staging value, but - no clearly specified staging system under which that value falls. - enum_CCDH_Diagnosis_condition: - name: enum_CCDH_Diagnosis_condition - description: Autogenerated Enumeration for CRDC-H Diagnosis condition - comments: - - 'Name according to TCCM: "CRDC-H.Diagnosis.condition"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Diagnosis.condition - code_set_version: '2021-07-21T20:42:43.476409+00:00' - permissible_values: - Von Recklinghausen disease: - text: Von Recklinghausen disease - Choroid plexus papilloma, anaplastic: - text: Choroid plexus papilloma, anaplastic - Calcifying epithelial odontogenic tumor: - text: Calcifying epithelial odontogenic tumor - Dermoid cyst with malignant transformation: - text: Dermoid cyst with malignant transformation - Metastatic signet ring cell carcinoma: - text: Metastatic signet ring cell carcinoma - Anaplastic large cell lymphoma, T cell and Null cell type: - text: Anaplastic large cell lymphoma, T cell and Null cell type - Mucinous tubular and spindle cell carcinoma: - text: Mucinous tubular and spindle cell carcinoma - Abdominal desmoid: - text: Abdominal desmoid - Solid and cystic tumor: - text: Solid and cystic tumor - Pancreatic peptide and pancreatic peptide-like peptide within terminal tyrosine amide producing tumor: - text: Pancreatic peptide and pancreatic peptide-like peptide within terminal - tyrosine amide producing tumor - Proliferative polycythemia: - text: Proliferative polycythemia - Olfactory neuroblastoma: - text: Olfactory neuroblastoma - Ecchondrosis: - text: Ecchondrosis - Liver cell adenoma: - text: Liver cell adenoma - SETTLE: - text: SETTLE - Mucinous adenoma: - text: Mucinous adenoma - Basosquamous carcinoma: - text: Basosquamous carcinoma - Spindle cell melanoma, type B: - text: Spindle cell melanoma, type B - Eccrine cystadenoma: - text: Eccrine cystadenoma - Combined small cell-large carcinoma: - text: Combined small cell-large carcinoma - Serous carcinoma, NOS: - text: Serous carcinoma, NOS - Liver cell carcinoma: - text: Liver cell carcinoma - Medullary adenocarcinoma: - text: Medullary adenocarcinoma - Apocrine adenocarcinoma: - text: Apocrine adenocarcinoma - Chromaffinoma: - text: Chromaffinoma - Thymoma, lymphocyte-rich, NOS: - text: Thymoma, lymphocyte-rich, NOS - Gliomatosis cerebri: - text: Gliomatosis cerebri - Subcutaneous panniculitis-like T-cell lymphoma: - text: Subcutaneous panniculitis-like T-cell lymphoma - Oligodendroglioma, IDH-mutant and 1p/19q-codeleted: - text: Oligodendroglioma, IDH-mutant and 1p/19q-codeleted - Diffuse cutaneous mastocytosis: - text: Diffuse cutaneous mastocytosis - Glomus tumor, NOS: - text: Glomus tumor, NOS - Cystadenofibroma, NOS: - text: Cystadenofibroma, NOS - Cylindroma of skin: - text: Cylindroma of skin - Adenocarcinoma, intestinal type: - text: Adenocarcinoma, intestinal type - description: Intestinal-Type Adenocarcinoma - Fetal adenocarcinoma: - text: Fetal adenocarcinoma - Adenocarcinoma with osseous metaplasia: - text: Adenocarcinoma with osseous metaplasia - Trophoblastic tumor, epithelioid: - text: Trophoblastic tumor, epithelioid - Enterochromaffin-like cell carcinoid, NOS: - text: Enterochromaffin-like cell carcinoid, NOS - Central osteosarcoma: - text: Central osteosarcoma - Chronic myelomonocytic leukemia, Type II: - text: Chronic myelomonocytic leukemia, Type II - Small cell sarcoma: - text: Small cell sarcoma - Medulloblastoma, WNT-activated: - text: Medulloblastoma, WNT-activated - Low-grade central osteosarcoma: - text: Low-grade central osteosarcoma - Myeloproliferative disease, NOS: - text: Myeloproliferative disease, NOS - Myofibroblastic sarcoma: - text: Myofibroblastic sarcoma - Chronic monocytic leukemia: - text: Chronic monocytic leukemia - Peripheral T-cell lymphoma, large cell: - text: Peripheral T-cell lymphoma, large cell - Acute myeloid leukemia, t(16;16)(p 13;q 11): - text: Acute myeloid leukemia, t(16;16)(p 13;q 11) - Arrhenoblastoma, NOS: - text: Arrhenoblastoma, NOS - B lymphoblastic leukemia/lymphoma with t(v;11q23); MLL rearranged: - text: B lymphoblastic leukemia/lymphoma with t(v;11q23); MLL rearranged - Giant pigmented nevus, NOS: - text: Giant pigmented nevus, NOS - Endometrial stromal nodule: - text: Endometrial stromal nodule - Neurilemosarcoma: - text: Neurilemosarcoma - Mullerian adenosarcoma: - text: Mullerian adenosarcoma - Medulloepithelioma, NOS: - text: Medulloepithelioma, NOS - Intraductal papillary-mucinous tumor with intermediate dysplasia: - text: Intraductal papillary-mucinous tumor with intermediate dysplasia - Spindle epithelial tumor with thymus-like element: - text: Spindle epithelial tumor with thymus-like element - Dermal nevus: - text: Dermal nevus - Periosteal fibrosarcoma: - text: Periosteal fibrosarcoma - Cystosarcoma phyllodes, NOS: - text: Cystosarcoma phyllodes, NOS - Chronic myelogenous leukemia, BCR-ABL positive: - text: Chronic myelogenous leukemia, BCR-ABL positive - Mammary carcinoma, in situ: - text: Mammary carcinoma, in situ - Argentaffinoma, NOS: - text: Argentaffinoma, NOS - Calcifying odontogenic cyst: - text: Calcifying odontogenic cyst - Intraductal carcinoma and lobular carcinoma in situ: - text: Intraductal carcinoma and lobular carcinoma in situ - Ductal carcinoma, cribriform type: - text: Ductal carcinoma, cribriform type - Microcystic adnexal carcinoma: - text: Microcystic adnexal carcinoma - Adenoid basal carcinoma: - text: Adenoid basal carcinoma - Epithelioid mesothelioma, benign: - text: Epithelioid mesothelioma, benign - Thymoma, NOS: - text: Thymoma, NOS - Malignant lymphomatous polyposis: - text: Malignant lymphomatous polyposis - Acute myeloid leukemia with abnormal marrow eosinophils (includes all variants): - text: Acute myeloid leukemia with abnormal marrow eosinophils (includes all - variants) - Odontogenic myxoma: - text: Odontogenic myxoma - Ameloblastic fibrodentinoma: - text: Ameloblastic fibrodentinoma - Di Guglielmo disease: - text: Di Guglielmo disease - Malignant mastocytoma: - text: Malignant mastocytoma - Cartilaginous exostosis: - text: Cartilaginous exostosis - Sweat gland tumor, NOS: - text: Sweat gland tumor, NOS - Papillary mucinous cystadenoma, NOS: - text: Papillary mucinous cystadenoma, NOS - Angiomatoid fibrous histiocytoma: - text: Angiomatoid fibrous histiocytoma - Infiltrating lobular carcinoma, NOS: - text: Infiltrating lobular carcinoma, NOS - Bronchio-alveolar carcinoma, mucinous: - text: Bronchio-alveolar carcinoma, mucinous - Endolymphatic stromal myosis: - text: Endolymphatic stromal myosis - Intracystic papillary adenoma: - text: Intracystic papillary adenoma - Follicular fibroma: - text: Follicular fibroma - Mucin-secreting adenocarcinoma: - text: Mucin-secreting adenocarcinoma - Acidophil adenocarcinoma: - text: Acidophil adenocarcinoma - Chloroma: - text: Chloroma - Chondromyxoid fibroma: - text: Chondromyxoid fibroma - Trabecular carcinoma: - text: Trabecular carcinoma - Myeloproliferative neoplasm, NOS: - text: Myeloproliferative neoplasm, NOS - Plexiform schwannoma: - text: Plexiform schwannoma - Invasive fibroma: - text: Invasive fibroma - Mixed acinar-endocrine-ductal carcinoma: - text: Mixed acinar-endocrine-ductal carcinoma - Acute myeloid leukemia with t(6;9)(p23;q34); DEK-NUP214: - text: Acute myeloid leukemia with t(6;9)(p23;q34); DEK-NUP214 - Solid adenocarcinoma with mucin formation: - text: Solid adenocarcinoma with mucin formation - Neuroblastoma, NOS: - text: Neuroblastoma, NOS - Hemangioma, NOS: - text: Hemangioma, NOS - Infiltrating ductular carcinoma: - text: Infiltrating ductular carcinoma - Small cell carcinoma, intermediate cell: - text: Small cell carcinoma, intermediate cell - Endometrioid cystadenofibroma, borderline malignancy: - text: Endometrioid cystadenofibroma, borderline malignancy - Extra-adrenal paraganglioma, malignant: - text: Extra-adrenal paraganglioma, malignant - Kaposi sarcoma: - text: Kaposi sarcoma - Non-invasive EFVPTC: - text: Non-invasive EFVPTC - CPNET: - text: CPNET - Hodgkin disease, nodular sclerosis, lymphocyte depletion: - text: Hodgkin disease, nodular sclerosis, lymphocyte depletion - Non-lymphocytic leukemia, NOS: - text: Non-lymphocytic leukemia, NOS - Intracystic papillary tumor with high grade intraepithelial neoplasia: - text: Intracystic papillary tumor with high grade intraepithelial neoplasia - Myxoid liposarcoma: - text: Myxoid liposarcoma - Papillocystic adenocarcinoma: - text: Papillocystic adenocarcinoma - Neuroendocrine carcinoma, low grade: - text: Neuroendocrine carcinoma, low grade - Precursor T-cell lymphoblastic leukemia: - text: Precursor T-cell lymphoblastic leukemia - Invasive lobular carcinoma: - text: Invasive lobular carcinoma - Basal cell carcinoma, fibroepithelial: - text: Basal cell carcinoma, fibroepithelial - Epithelioid hemangioendothelioma, malignant: - text: Epithelioid hemangioendothelioma, malignant - Intraductal papillary-mucinous tumor with low grade dysplasia: - text: Intraductal papillary-mucinous tumor with low grade dysplasia - Carcinosarcoma, NOS: - text: Carcinosarcoma, NOS - Bronchiolar adenocarcinoma: - text: Bronchiolar adenocarcinoma - Fibroid uterus: - text: Fibroid uterus - Stromal myosis, NOS: - text: Stromal myosis, NOS - Papillary tumor of the pineal region: - text: Papillary tumor of the pineal region - Serous cystadenofibroma, NOS: - text: Serous cystadenofibroma, NOS - Thymic carcinoma, NOS: - text: Thymic carcinoma, NOS - Hairy cell leukemia: - text: Hairy cell leukemia - Histiocytoid hemangioma: - text: Histiocytoid hemangioma - Ceruminous carcinoma: - text: Ceruminous carcinoma - Adenomyoepithelioma with carcinoma: - text: Adenomyoepithelioma with carcinoma - Mucin-secreting carcinoma: - text: Mucin-secreting carcinoma - Pulmonary adenomatosis: - text: Pulmonary adenomatosis - Central neuroblastoma: - text: Central neuroblastoma - Peripheral odontogenic fibroma: - text: Peripheral odontogenic fibroma - Acute myeloid leukemia with t(8;21)(q22;q22); RUNX1-RUNX1T1: - text: Acute myeloid leukemia with t(8;21)(q22;q22); RUNX1-RUNX1T1 - Infantile myofibromatosis: - text: Infantile myofibromatosis - Mixed tumor, malignant, NOS: - text: Mixed tumor, malignant, NOS - Fibroadenoma, NOS: - text: Fibroadenoma, NOS - Mixed phenotype acute leukemia, T/myeloid, NOS: - text: Mixed phenotype acute leukemia, T/myeloid, NOS - Junctional nevus, NOS: - text: Junctional nevus, NOS - Neuroendocrine tumor, well differentiated: - text: Neuroendocrine tumor, well differentiated - Acute myeloid leukemia with prior myelodysplastic syndrome: - text: Acute myeloid leukemia with prior myelodysplastic syndrome - Acral lentiginous melanoma, malignant: - text: Acral lentiginous melanoma, malignant - Subacute lymphatic leukemia: - text: Subacute lymphatic leukemia - Osteochondrosarcoma: - text: Osteochondrosarcoma - Systemic light chain disease: - text: Systemic light chain disease - Carcinoma with apocrine metaplasia: - text: Carcinoma with apocrine metaplasia - Endovascular papillary angioendothelioma: - text: Endovascular papillary angioendothelioma - Squamotransitional cell carcinoma: - text: Squamotransitional cell carcinoma - Myeloid leukemia associated with Down Syndrome: - text: Myeloid leukemia associated with Down Syndrome - Papillary adenoma, NOS: - text: Papillary adenoma, NOS - Mixed teratoma and seminoma: - text: Mixed teratoma and seminoma - Infiltrating and papillary adenocarcinoma: - text: Infiltrating and papillary adenocarcinoma - Squamous intraepithelial neoplasia, grade II: - text: Squamous intraepithelial neoplasia, grade II - Angioendotheliomatosis: - text: Angioendotheliomatosis - Fibroepithelioma of Pinkus type: - text: Fibroepithelioma of Pinkus type - Acute erythremic myelosis: - text: Acute erythremic myelosis - Intestinal-type adenocarcinoma: - text: Intestinal-type adenocarcinoma - Hygroma, NOS: - text: Hygroma, NOS - Neurogenic sarcoma: - text: Neurogenic sarcoma - Adult cystic teratoma: - text: Adult cystic teratoma - Infiltrating basal cell carcinoma, sclerosing: - text: Infiltrating basal cell carcinoma, sclerosing - Primitive polar spongioblastoma: - text: Primitive polar spongioblastoma - Parosteal osteosarcoma: - text: Parosteal osteosarcoma - Histiocytosis X, NOS: - text: Histiocytosis X, NOS - Ameloblastic fibrosarcoma: - text: Ameloblastic fibrosarcoma - Clear cell ependymoma: - text: Clear cell ependymoma - Composite carcinoid: - text: Composite carcinoid - Metanephric adenoma: - text: Metanephric adenoma - Refractory neutropenia: - text: Refractory neutropenia - G cell tumor, NOS: - text: G cell tumor, NOS - Sarcomatoid carcinoma: - text: Sarcomatoid carcinoma - Thymoma, type B3, NOS: - text: Thymoma, type B3, NOS - Precursor B-cell lymphoblastic lymphoma: - text: Precursor B-cell lymphoblastic lymphoma - Gastrinoma, NOS: - text: Gastrinoma, NOS - Mastocytoma, NOS: - text: Mastocytoma, NOS - Reninoma: - text: Reninoma - Granulocytic leukemia, NOS: - text: Granulocytic leukemia, NOS - Hodgkin lymphoma, lymphocyte predominance, nodular: - text: Hodgkin lymphoma, lymphocyte predominance, nodular - Basal cell adenocarcinoma: - text: Basal cell adenocarcinoma - description: Salivary Gland Basal Cell Adenocarcinoma - Epidermoid carcinoma, keratinizing: - text: Epidermoid carcinoma, keratinizing - Hemangiopericytoma, benign: - text: Hemangiopericytoma, benign - Squamous cell papilloma, NOS: - text: Squamous cell papilloma, NOS - Primary myelofibrosis: - text: Primary myelofibrosis - Angiotropic lymphoma: - text: Angiotropic lymphoma - Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos): - text: Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) - Polypoid adenoma: - text: Polypoid adenoma - Alveolar cell carcinoma: - text: Alveolar cell carcinoma - Mixed hepatocellular and bile duct carcinoma: - text: Mixed hepatocellular and bile duct carcinoma - Renomedullary interstitial cell tumor: - text: Renomedullary interstitial cell tumor - Medullocytoma: - text: Medullocytoma - Burkitt lymphoma, NOS (Includes all variants): - text: Burkitt lymphoma, NOS (Includes all variants) - Merkel cell carcinoma: - text: Merkel cell carcinoma - Malignant lymphoma, NOS: - text: Malignant lymphoma, NOS - Duct cell carcinoma: - text: Duct cell carcinoma - Malignant lymphoma, mixed lymphocytic-histiocytic, nodular: - text: Malignant lymphoma, mixed lymphocytic-histiocytic, nodular - Capillary hemangioma: - text: Capillary hemangioma - Papillary syringocystadenoma: - text: Papillary syringocystadenoma - Acute promyelocytic leukaemia, t(15;17)(q22;q11-12): - text: Acute promyelocytic leukaemia, t(15;17)(q22;q11-12) - Malignant mast cell tumor: - text: Malignant mast cell tumor - Malignant mucinous adenofibroma: - text: Malignant mucinous adenofibroma - Follicular dendritic cell tumor: - text: Follicular dendritic cell tumor - Villoglandular carcinoma: - text: Villoglandular carcinoma - Epidermoid carcinoma, NOS: - text: Epidermoid carcinoma, NOS - Polyvesicular vitelline tumor: - text: Polyvesicular vitelline tumor - MPNST, NOS: - text: MPNST, NOS - Mixed adenoneuroendocrine carcinoma: - text: Mixed adenoneuroendocrine carcinoma - description: Digestive System Mixed Adenoneuroendocrine Carcinoma - Mucosal-associated lymphoid tissue lymphoma: - text: Mucosal-associated lymphoid tissue lymphoma - Choroid plexus carcinoma: - text: Choroid plexus carcinoma - Solitary fibrous tumor, malignant: - text: Solitary fibrous tumor, malignant - Cystic mesothelioma, NOS: - text: Cystic mesothelioma, NOS - Mucinous cystic neoplasm with low-grade dysplasia: - text: Mucinous cystic neoplasm with low-grade dysplasia - Myelofibrosis with myeloid metaplasia: - text: Myelofibrosis with myeloid metaplasia - Pleomorphic cell sarcoma: - text: Pleomorphic cell sarcoma - Serous cystadenocarcinofibroma: - text: Serous cystadenocarcinofibroma - Androblastoma, malignant: - text: Androblastoma, malignant - Granulosa cell-theca cell tumor: - text: Granulosa cell-theca cell tumor - Perivascular epithelioid cell tumor, malignant: - text: Perivascular epithelioid cell tumor, malignant - Inflammatory adenocarcinoma: - text: Inflammatory adenocarcinoma - Hodgkin disease, nodular sclerosis, mixed cellularity: - text: Hodgkin disease, nodular sclerosis, mixed cellularity - Langerhans cell histiocytosis, generalized: - text: Langerhans cell histiocytosis, generalized - Germ cell tumors with associated hematological malignancy: - text: Germ cell tumors with associated hematological malignancy - Giant cell tumor of bone, malignant: - text: Giant cell tumor of bone, malignant - Embryonal adenocarcinoma: - text: Embryonal adenocarcinoma - RARS: - text: RARS - Cystic hygroma: - text: Cystic hygroma - Tumor, benign: - text: Tumor, benign - Beta cell tumor, malignant: - text: Beta cell tumor, malignant - Hepatocellular carcinoma, fibrolamellar: - text: Hepatocellular carcinoma, fibrolamellar - Alpha heavy chain disease: - text: Alpha heavy chain disease - Adult T-cell lymphoma/leukemia: - text: Adult T-cell lymphoma/leukemia - Sclerosing stromal tumor: - text: Sclerosing stromal tumor - Non-invasive FTP: - text: Non-invasive FTP - Spongioblastoma, NOS: - text: Spongioblastoma, NOS - Adenocarcinoma in situ in tubular adenoma: - text: Adenocarcinoma in situ in tubular adenoma - Seromucinous carcinoma: - text: Seromucinous carcinoma - description: Ovarian Seromucinous Carcinoma - Myeloid neoplasms with PDGFRB rearrangement: - text: Myeloid neoplasms with PDGFRB rearrangement - Transitional pineal tumor: - text: Transitional pineal tumor - Folliculome lipidique: - text: Folliculome lipidique - Multiple endocrine adenomas: - text: Multiple endocrine adenomas - Intraductal papillary-mucinous adenoma: - text: Intraductal papillary-mucinous adenoma - Hodgkin lymphoma, lymphocyte depletion, reticular: - text: Hodgkin lymphoma, lymphocyte depletion, reticular - Choriocarcinoma, NOS: - text: Choriocarcinoma, NOS - Ossifying fibromyxoid tumor: - text: Ossifying fibromyxoid tumor - Spindle cell melanoma, type A: - text: Spindle cell melanoma, type A - Infiltrating basal cell carcinoma, non-sclerosing: - text: Infiltrating basal cell carcinoma, non-sclerosing - Adrenal cortical carcinoma: - text: Adrenal cortical carcinoma - Malignant lymphoma, small cell diffuse: - text: Malignant lymphoma, small cell diffuse - Thymoma, atypical, NOS: - text: Thymoma, atypical, NOS - Acinar carcinoma: - text: Acinar carcinoma - Polymorphic reticulosis: - text: Polymorphic reticulosis - Synovial sarcoma, spindle cell: - text: Synovial sarcoma, spindle cell - Adult T-cell leukemia: - text: Adult T-cell leukemia - Oxyphilic adenocarcinoma: - text: Oxyphilic adenocarcinoma - Venous hemangioma: - text: Venous hemangioma - Malignant lymphoma, mixed small and large cell, diffuse: - text: Malignant lymphoma, mixed small and large cell, diffuse - Pancreatobiliary neoplasm, non-invasive: - text: Pancreatobiliary neoplasm, non-invasive - Therapy related myeloid neoplasm: - text: Therapy related myeloid neoplasm - Lymphangioendothelioma, malignant: - text: Lymphangioendothelioma, malignant - Myofibromatosis: - text: Myofibromatosis - Cystosarcoma phyllodes, benign: - text: Cystosarcoma phyllodes, benign - Hepatocellular carcinoma, sarcomatoid: - text: Hepatocellular carcinoma, sarcomatoid - Immunoproliferative small intestinal disease: - text: Immunoproliferative small intestinal disease - Myeloid sarcoma: - text: Myeloid sarcoma - RAEB-T: - text: RAEB-T - Transitional cell carcinoma, sarcomatoid: - text: Transitional cell carcinoma, sarcomatoid - Chronic myeloproliferative disorder: - text: Chronic myeloproliferative disorder - Malignant tumor, small cell type: - text: Malignant tumor, small cell type - Pleomorphic lobular carcinoma in situ: - text: Pleomorphic lobular carcinoma in situ - Thymoma, mixed type, NOS: - text: Thymoma, mixed type, NOS - Hodgkin lymphoma, lymphocyte depletion, NOS: - text: Hodgkin lymphoma, lymphocyte depletion, NOS - Solitary mastocytoma of skin: - text: Solitary mastocytoma of skin - Malignant reticulosis, NOS: - text: Malignant reticulosis, NOS - Testicular stromal tumor: - text: Testicular stromal tumor - Acute myeloid leukemia, inv(16)(p13;q22): - text: Acute myeloid leukemia, inv(16)(p13;q22) - Ancient schwannoma: - text: Ancient schwannoma - Mixed pineal tumor: - text: Mixed pineal tumor - Acute myeloid leukemia without prior myelodysplastic syndrome: - text: Acute myeloid leukemia without prior myelodysplastic syndrome - Mucinous cystadenocarcinofibroma: - text: Mucinous cystadenocarcinofibroma - Mesonephroma, malignant: - text: Mesonephroma, malignant - Undifferentiated high-grade pleomorphic sarcoma: - text: Undifferentiated high-grade pleomorphic sarcoma - Lipid-rich carcinoma: - text: Lipid-rich carcinoma - Precursor B-cell lymphoblastic leukemia: - text: Precursor B-cell lymphoblastic leukemia - Hepatocellular carcinoma, NOS: - text: Hepatocellular carcinoma, NOS - Cystoma, NOS: - text: Cystoma, NOS - Chondroid chordoma: - text: Chondroid chordoma - Wolffian duct carcinoma: - text: Wolffian duct carcinoma - Pheochromocytoma, NOS: - text: Pheochromocytoma, NOS - Neoplasm, benign: - text: Neoplasm, benign - L-cell tumor: - text: L-cell tumor - Malignant tumor, clear cell type: - text: Malignant tumor, clear cell type - Hydatidiform mole, NOS: - text: Hydatidiform mole, NOS - Cerebellar sarcoma, NOS: - text: Cerebellar sarcoma, NOS - Germ cell tumor, NOS: - text: Germ cell tumor, NOS - Sclerosing rhabdomyosarcoma: - text: Sclerosing rhabdomyosarcoma - Juxtacortical chondrosarcoma: - text: Juxtacortical chondrosarcoma - Epithelioid cell nevus: - text: Epithelioid cell nevus - Masculinovoblastoma: - text: Masculinovoblastoma - Inflammatory carcinoma: - text: Inflammatory carcinoma - Small cell carcinoma, hypercalcemic type: - text: Small cell carcinoma, hypercalcemic type - description: Ovarian Small Cell Carcinoma, Hypercalcemic Type - Degenerated schwannoma: - text: Degenerated schwannoma - Solid carcinoma, NOS: - text: Solid carcinoma, NOS - Hepatoid yolk sac tumor: - text: Hepatoid yolk sac tumor - Acute myelogenous leukemia: - text: Acute myelogenous leukemia - Myxolipoma: - text: Myxolipoma - Carcinoma with productive fibrosis: - text: Carcinoma with productive fibrosis - Chondroblastoma, NOS: - text: Chondroblastoma, NOS - Desmoplastic melanoma, malignant: - text: Desmoplastic melanoma, malignant - Goblet cell carcinoid: - text: Goblet cell carcinoid - Parietal cell adenocarcinoma: - text: Parietal cell adenocarcinoma - Lipoblastoma: - text: Lipoblastoma - Desmoplastic melanoma, amelanotic: - text: Desmoplastic melanoma, amelanotic - Cellular ependymoma: - text: Cellular ependymoma - Bile duct cystadenoma: - text: Bile duct cystadenoma - Intraductal tubular-papillary neoplasm, high grade: - text: Intraductal tubular-papillary neoplasm, high grade - Ductal carcinoma in situ, NOS: - text: Ductal carcinoma in situ, NOS - Osteosarcoma in Paget disease of bone: - text: Osteosarcoma in Paget disease of bone - Multiple meningiomas: - text: Multiple meningiomas - Medulloblastoma, SHH-activated and TP53-wildtype: - text: Medulloblastoma, SHH-activated and TP53-wildtype - Queyrat erythroplasia: - text: Queyrat erythroplasia - Paraganglioma, malignant: - text: Paraganglioma, malignant - Serous surface papilloma: - text: Serous surface papilloma - Localized fibrous tumor: - text: Localized fibrous tumor - Malignant lymphoma, large B-cell, diffuse, NOS: - text: Malignant lymphoma, large B-cell, diffuse, NOS - Glucagonoma, malignant: - text: Glucagonoma, malignant - Epithelioid sarcoma: - text: Epithelioid sarcoma - Teratoid medulloepithelioma: - text: Teratoid medulloepithelioma - Subependymal astrocytoma, NOS: - text: Subependymal astrocytoma, NOS - Alveolar adenoma: - text: Alveolar adenoma - Schwannoma, NOS: - text: Schwannoma, NOS - Acute myeloid leukemia with inv(3)(q21q26.2) or t(3;3)(q21;q26.2); RPN1-EVI1: - text: Acute myeloid leukemia with inv(3)(q21q26.2) or t(3;3)(q21;q26.2); RPN1-EVI1 - Ossifying fibroma: - text: Ossifying fibroma - Adenocarcinoma, cribriform comedo-type: - text: Adenocarcinoma, cribriform comedo-type - Adamantinoma, malignant: - text: Adamantinoma, malignant - Squamous intraepithelial neoplasia, high grade: - text: Squamous intraepithelial neoplasia, high grade - Monomorphic adenoma: - text: Monomorphic adenoma - FAB M2, AML1(CBF-alpha)/ETO: - text: FAB M2, AML1(CBF-alpha)/ETO - Pigmented spindle cell nevus of Reed: - text: Pigmented spindle cell nevus of Reed - Malignant lymphoma, nodular, NOS: - text: Malignant lymphoma, nodular, NOS - Sweat gland adenoma: - text: Sweat gland adenoma - Adenofibroma, NOS: - text: Adenofibroma, NOS - Traditional sessile serrated adenoma: - text: Traditional sessile serrated adenoma - Basal cell carcinoma, nodular: - text: Basal cell carcinoma, nodular - Melanoma, malignant, of soft parts: - text: Melanoma, malignant, of soft parts - Sertoli cell adenoma: - text: Sertoli cell adenoma - Acute megakaryoblastic leukaemia: - text: Acute megakaryoblastic leukaemia - Precursor cell lymphoblastic leukemia, not phenotyped: - text: Precursor cell lymphoblastic leukemia, not phenotyped - Choroid plexus papilloma, NOS: - text: Choroid plexus papilloma, NOS - B lymphoblastic leukemia/lymphoma, NOS: - text: B lymphoblastic leukemia/lymphoma, NOS - RAEB II: - text: RAEB II - Unclassified tumor, borderline malignancy: - text: Unclassified tumor, borderline malignancy - Pilomatricoma, NOS: - text: Pilomatricoma, NOS - Primary cutaneous follicle centre lymphoma: - text: Primary cutaneous follicle centre lymphoma - Granular cell carcinoma: - text: Granular cell carcinoma - Pituitary adenoma, NOS: - text: Pituitary adenoma, NOS - Mature teratoma: - text: Mature teratoma - Pleomorphic xanthoastrocytoma: - text: Pleomorphic xanthoastrocytoma - Hemangioendothelioma, benign: - text: Hemangioendothelioma, benign - Islet cell adenomatosis: - text: Islet cell adenomatosis - Mixed tumor, NOS: - text: Mixed tumor, NOS - Papillary carcinoma, tall cell: - text: Papillary carcinoma, tall cell - Giant cell tumor of tendon sheath: - text: Giant cell tumor of tendon sheath - Proliferating trichilemmal tumor: - text: Proliferating trichilemmal tumor - Papillary serous cystadenoma, NOS: - text: Papillary serous cystadenoma, NOS - Melanocytoma, NOS: - text: Melanocytoma, NOS - Follicular lymphoma, grade 2: - text: Follicular lymphoma, grade 2 - Ossifying fibromyxoid tumor, malignant: - text: Ossifying fibromyxoid tumor, malignant - Megakaryocytic myelosclerosis: - text: Megakaryocytic myelosclerosis - Oligodendroblastoma: - text: Oligodendroblastoma - Sebaceous carcinoma: - text: Sebaceous carcinoma - Invasive carcinoma of no special type: - text: Invasive carcinoma of no special type - Lymphoblastoma: - text: Lymphoblastoma - Nodular hidradenoma: - text: Nodular hidradenoma - Thymoma, type AB, malignant: - text: Thymoma, type AB, malignant - Blastic plasmacytoid dendritic cell neoplasm: - text: Blastic plasmacytoid dendritic cell neoplasm - Low grade adenosquamous carcinoma: - text: Low grade adenosquamous carcinoma - Nevus, NOS: - text: Nevus, NOS - Follicular dendritic cell sarcoma: - text: Follicular dendritic cell sarcoma - Acute lymphoblastic leukemia, precursor cell type: - text: Acute lymphoblastic leukemia, precursor cell type - Alveolar adenocarcinoma: - text: Alveolar adenocarcinoma - Pinealoma: - text: Pinealoma - Infiltrating papillary adenocarcinoma: - text: Infiltrating papillary adenocarcinoma - Mixed embryonal carcinoma and teratoma: - text: Mixed embryonal carcinoma and teratoma - Comedocarcinoma, noninfiltrating: - text: Comedocarcinoma, noninfiltrating - Diffuse astrocytoma: - text: Diffuse astrocytoma - Testicular adenoma: - text: Testicular adenoma - MANEC: - text: MANEC - Papillary meningioma: - text: Papillary meningioma - Juvenile astrocytoma: - text: Juvenile astrocytoma - Schneiderian carcinoma: - text: Schneiderian carcinoma - Epithelioma, benign: - text: Epithelioma, benign - Diffuse leptomeningeal glioneuronal tumor: - text: Diffuse leptomeningeal glioneuronal tumor - Adrenal cortical adenoma, mixed cell: - text: Adrenal cortical adenoma, mixed cell - Enteroglucagonoma, malignant: - text: Enteroglucagonoma, malignant - Mucinous cystic neoplasm with an associated invasive carcinoma: - text: Mucinous cystic neoplasm with an associated invasive carcinoma - description: Bile Duct Cystadenocarcinoma - Fascial fibroma: - text: Fascial fibroma - Malignant lymphoma, lymphocytic, poorly differentiated, diffuse: - text: Malignant lymphoma, lymphocytic, poorly differentiated, diffuse - Somatostatin cell tumor, malignant: - text: Somatostatin cell tumor, malignant - Endometrial stromal sarcoma, NOS: - text: Endometrial stromal sarcoma, NOS - Malignant lymphoma, large cell, noncleaved, diffuse: - text: Malignant lymphoma, large cell, noncleaved, diffuse - Papillary cystadenoma, borderline malignancy: - text: Papillary cystadenoma, borderline malignancy - Amelanotic melanoma: - text: Amelanotic melanoma - Langerhans cell granulomatosis, unifocal: - text: Langerhans cell granulomatosis, unifocal - Epithelioid leiomyosarcoma: - text: Epithelioid leiomyosarcoma - Peripheral T-cell lymphoma, pleomorphic medium and large cell: - text: Peripheral T-cell lymphoma, pleomorphic medium and large cell - Myelodysplastic syndrome with 5q deletion (5q-) syndrome: - text: Myelodysplastic syndrome with 5q deletion (5q-) syndrome - Endometrioid adenofibroma, borderline malignancy: - text: Endometrioid adenofibroma, borderline malignancy - Desmoplastic infantile astrocytoma: - text: Desmoplastic infantile astrocytoma - Serous surface papillary tumor of borderline malignancy: - text: Serous surface papillary tumor of borderline malignancy - Paget disease and infiltrating duct carcinoma of breast: - text: Paget disease and infiltrating duct carcinoma of breast - Malignant myoepithelioma: - text: Malignant myoepithelioma - Sertoli cell tumor with lipid storage: - text: Sertoli cell tumor with lipid storage - Fibroxanthoma, malignant: - text: Fibroxanthoma, malignant - Mucoepidermoid carcinoma: - text: Mucoepidermoid carcinoma - description: Mucoepidermoid Carcinoma - Invasive mucinous adenocarcinoma: - text: Invasive mucinous adenocarcinoma - Epithelioid hemangioma: - text: Epithelioid hemangioma - Dermoid, NOS: - text: Dermoid, NOS - Seminoma, anaplastic: - text: Seminoma, anaplastic - Myoepithelioma: - text: Myoepithelioma - Mucocarcinoid tumor: - text: Mucocarcinoid tumor - Hodgkin lymphoma, nodular sclerosis, NOS: - text: Hodgkin lymphoma, nodular sclerosis, NOS - Myxoliposarcoma: - text: Myxoliposarcoma - Mixed small cell carcinoma: - text: Mixed small cell carcinoma - Transitional cell papilloma, NOS: - text: Transitional cell papilloma, NOS - Smooth muscle tumor of uncertain malignant potential: - text: Smooth muscle tumor of uncertain malignant potential - Malignant giant cell tumor of soft parts: - text: Malignant giant cell tumor of soft parts - Partial hydatidiform mole: - text: Partial hydatidiform mole - Squamous intraepithelial neoplasia, grade III: - text: Squamous intraepithelial neoplasia, grade III - Malignant lymphoma, noncleaved, NOS: - text: Malignant lymphoma, noncleaved, NOS - Conventional central osteosarcoma: - text: Conventional central osteosarcoma - Retinoblastoma, spontaneously regressed: - text: Retinoblastoma, spontaneously regressed - Neuroendocrine carcinoma, well-differentiated: - text: Neuroendocrine carcinoma, well-differentiated - Primary amyloidosis: - text: Primary amyloidosis - Gonocytoma: - text: Gonocytoma - Serous adenofibroma, NOS: - text: Serous adenofibroma, NOS - Epithelioid mesothelioma, NOS: - text: Epithelioid mesothelioma, NOS - T-cell rich large B-cell lymphoma: - text: T-cell rich large B-cell lymphoma - Myelodysplastic/myeloproliferative neoplasm, unclassifiable: - text: Myelodysplastic/myeloproliferative neoplasm, unclassifiable - Xanthofibroma: - text: Xanthofibroma - Adenomyoepithelioma: - text: Adenomyoepithelioma - Mucinous cystadenofibroma of borderline malignancy: - text: Mucinous cystadenofibroma of borderline malignancy - Bronchiolo-alveolar carcinoma, Clara cell: - text: Bronchiolo-alveolar carcinoma, Clara cell - Mixed acidophil-basophil adenoma: - text: Mixed acidophil-basophil adenoma - Colloid adenocarcinoma: - text: Colloid adenocarcinoma - description: Lung Mucinous Adenocarcinoma - Malignant lymphoma, small cleaved cell, NOS: - text: Malignant lymphoma, small cleaved cell, NOS - Lentigo maligna melanoma: - text: Lentigo maligna melanoma - description: Lentigo Maligna Melanoma - c-ALL: - text: c-ALL - Neuroendocrine carcinoma, poorly differentiated: - text: Neuroendocrine carcinoma, poorly differentiated - Idiopathic thrombocythemia: - text: Idiopathic thrombocythemia - Giant cell sarcoma of bone: - text: Giant cell sarcoma of bone - Myelomatosis: - text: Myelomatosis - Acinar cell carcinoma: - text: Acinar cell carcinoma - description: Acinar Cell Carcinoma - Carotid body tumor: - text: Carotid body tumor - Trichofolliculoma: - text: Trichofolliculoma - Papillary syringadenoma: - text: Papillary syringadenoma - Squamous cell carcinoma, large cell, keratinizing: - text: Squamous cell carcinoma, large cell, keratinizing - Signet ring cell carcinoma: - text: Signet ring cell carcinoma - Papilloma, NOS: - text: Papilloma, NOS - Lipoma-like liposarcoma: - text: Lipoma-like liposarcoma - Chondromatosis, NOS: - text: Chondromatosis, NOS - Basal cell adenoma: - text: Basal cell adenoma - Hairy nevus: - text: Hairy nevus - Perineurioma, NOS: - text: Perineurioma, NOS - Giant cell tumor of tendon sheath, malignant: - text: Giant cell tumor of tendon sheath, malignant - Atypical proliferating serous tumor: - text: Atypical proliferating serous tumor - Rodent ulcer: - text: Rodent ulcer - Primary cutaneous neuroendocrine carcinoma: - text: Primary cutaneous neuroendocrine carcinoma - Neuroendocrine carcinoma, moderately differentiated: - text: Neuroendocrine carcinoma, moderately differentiated - Carcinoid tumor, argentaffin, NOS: - text: Carcinoid tumor, argentaffin, NOS - Basophil carcinoma: - text: Basophil carcinoma - Chondroblastoma, malignant: - text: Chondroblastoma, malignant - Adenocarcinoma in tubular adenoma: - text: Adenocarcinoma in tubular adenoma - Achromic nevus: - text: Achromic nevus - Intraductal and lobular carcinoma: - text: Intraductal and lobular carcinoma - Hodgkin disease, lymphocyte predominance, NOS: - text: Hodgkin disease, lymphocyte predominance, NOS - Diffuse melanocytosis: - text: Diffuse melanocytosis - Renal cell adenocarcinoma: - text: Renal cell adenocarcinoma - Squamous cell carcinoma, microinvasive: - text: Squamous cell carcinoma, microinvasive - Mucin-producing adenocarcinoma: - text: Mucin-producing adenocarcinoma - Scirrhous carcinoma: - text: Scirrhous carcinoma - Mesothelioma, malignant: - text: Mesothelioma, malignant - Carcinoid tumor, NOS: - text: Carcinoid tumor, NOS - Gastrointestinal autonomic nerve tumor: - text: Gastrointestinal autonomic nerve tumor - Mixed pancreatic endocrine and exocrine tumor, malignant: - text: Mixed pancreatic endocrine and exocrine tumor, malignant - Olfactory neurocytoma: - text: Olfactory neurocytoma - Adenosarcoma: - text: Adenosarcoma - description: Adenosarcoma - Pleomorphic adenoma: - text: Pleomorphic adenoma - Chorionepithelioma: - text: Chorionepithelioma - Enteric adenocarcinoma: - text: Enteric adenocarcinoma - description: Lung Enteric Adenocarcinoma - Melanotic psammomatous MPNST: - text: Melanotic psammomatous MPNST - Olfactory neurogenic tumor: - text: Olfactory neurogenic tumor - Thymoma, benign: - text: Thymoma, benign - Malignant lymphoma, noncleaved, diffuse, NOS: - text: Malignant lymphoma, noncleaved, diffuse, NOS - Solitary plasmacytoma: - text: Solitary plasmacytoma - Jugulotympanic paraganglioma: - text: Jugulotympanic paraganglioma - Androblastoma, NOS: - text: Androblastoma, NOS - Adenocarcinoma with cartilaginous metaplasia: - text: Adenocarcinoma with cartilaginous metaplasia - Junction nevus: - text: Junction nevus - Mesenchymoma, malignant: - text: Mesenchymoma, malignant - Urothelial carcinoma with trophoblastic differentiation: - text: Urothelial carcinoma with trophoblastic differentiation - Metaplastic carcinoma with chondroid differentiation: - text: Metaplastic carcinoma with chondroid differentiation - Papillary urothelial carcinoma: - text: Papillary urothelial carcinoma - Melanotic neuroectodermal tumor: - text: Melanotic neuroectodermal tumor - Nonpigmented nevus: - text: Nonpigmented nevus - Seminoma, NOS: - text: Seminoma, NOS - Intraepidermal carcinoma, NOS: - text: Intraepidermal carcinoma, NOS - Lymphangioma, NOS: - text: Lymphangioma, NOS - Carcinoma, anaplastic, NOS: - text: Carcinoma, anaplastic, NOS - Classical Hodgkin lymphoma, nodular sclerosis, grade 2: - text: Classical Hodgkin lymphoma, nodular sclerosis, grade 2 - LCIS, NOS: - text: LCIS, NOS - Biphenotypic sinonasal sarcoma: - text: Biphenotypic sinonasal sarcoma - description: Biphenotypic Sinonasal Sarcoma - Meningothelial sarcoma: - text: Meningothelial sarcoma - Hurthle cell adenocarcinoma: - text: Hurthle cell adenocarcinoma - Pancreatic microadenoma: - text: Pancreatic microadenoma - Carcinoma in adenomatous polyp: - text: Carcinoma in adenomatous polyp - Basaloid carcinoma: - text: Basaloid carcinoma - Squamous cell carcinoma, large cell, nonkeratinizing, NOS: - text: Squamous cell carcinoma, large cell, nonkeratinizing, NOS - Ameloblastoma, malignant: - text: Ameloblastoma, malignant - Synovioma, malignant: - text: Synovioma, malignant - Monocytic leukemia, NOS: - text: Monocytic leukemia, NOS - Acute myeloid leukemia, t(15:17)(g22;q11-12): - text: Acute myeloid leukemia, t(15:17)(g22;q11-12) - Fascial fibrosarcoma: - text: Fascial fibrosarcoma - Adenocarcinoma of rete ovarii: - text: Adenocarcinoma of rete ovarii - Sertoli-Leydig cell tumor, well differentiated: - text: Sertoli-Leydig cell tumor, well differentiated - AIN III: - text: AIN III - Myofibroma: - text: Myofibroma - Small cell carcinoma, fusiform cell: - text: Small cell carcinoma, fusiform cell - Lymphangiosarcoma: - text: Lymphangiosarcoma - Thymoma, lymphocytic, NOS: - text: Thymoma, lymphocytic, NOS - Esthesioneurocytoma: - text: Esthesioneurocytoma - Malignant teratoma, anaplastic: - text: Malignant teratoma, anaplastic - Granulosa cell tumor, NOS: - text: Granulosa cell tumor, NOS - Acute myelosclerosis, NOS: - text: Acute myelosclerosis, NOS - Thymoma, organoid, NOS: - text: Thymoma, organoid, NOS - Splenic marginal zone B-cell lymphoma: - text: Splenic marginal zone B-cell lymphoma - Bednar tumor: - text: Bednar tumor - Intermediate and giant congenital nevus: - text: Intermediate and giant congenital nevus - Minimally invasive adenocarcinoma, non-mucinous: - text: Minimally invasive adenocarcinoma, non-mucinous - Adenocarcinoma in situ, non-mucinous: - text: Adenocarcinoma in situ, non-mucinous - Primary cutaneous CD30+ large T-cell lymphoma: - text: Primary cutaneous CD30+ large T-cell lymphoma - Gastrin cell tumor: - text: Gastrin cell tumor - Spongioneuroblastoma: - text: Spongioneuroblastoma - Urothelial carcinoma, NOS: - text: Urothelial carcinoma, NOS - Hepatocellular carcinoma, scirrhous: - text: Hepatocellular carcinoma, scirrhous - Carcinomatosis: - text: Carcinomatosis - Serous cystadenoma, NOS: - text: Serous cystadenoma, NOS - Fibroepithelioma, NOS: - text: Fibroepithelioma, NOS - Atypical meningioma: - text: Atypical meningioma - Reticulosarcoma, NOS: - text: Reticulosarcoma, NOS - Cutaneous T-cell lymphoma, NOS: - text: Cutaneous T-cell lymphoma, NOS - Grawitz tumor: - text: Grawitz tumor - Metaplastic carcinoma, NOS: - text: Metaplastic carcinoma, NOS - Malignant lymphoma, large cell, follicular, NOS: - text: Malignant lymphoma, large cell, follicular, NOS - Sertoli-Leydig cell tumor, sarcomatoid: - text: Sertoli-Leydig cell tumor, sarcomatoid - Cavernous lymphangioma: - text: Cavernous lymphangioma - Malignant mucinous cystadenofibroma: - text: Malignant mucinous cystadenofibroma - Malignant lymphoma, centroblasticcentrocytic, follicular: - text: Malignant lymphoma, centroblasticcentrocytic, follicular - Elastofibroma: - text: Elastofibroma - Adnexal tumor, benign: - text: Adnexal tumor, benign - Malignant schwannoma with rhabdomyoblastic differentiation: - text: Malignant schwannoma with rhabdomyoblastic differentiation - Meningioma, anaplastic: - text: Meningioma, anaplastic - Chronic granulocytic leukemia, BCR/ABL: - text: Chronic granulocytic leukemia, BCR/ABL - Mucinous cystic tumor with high-grade dysplasia: - text: Mucinous cystic tumor with high-grade dysplasia - Eccrine dermal cylindroma: - text: Eccrine dermal cylindroma - Granular cell tumor, malignant: - text: Granular cell tumor, malignant - Sarcomatosis, NOS: - text: Sarcomatosis, NOS - Thymoma, mixed type, malignant: - text: Thymoma, mixed type, malignant - Intraductal carcinoma, noninfiltrating, NOS: - text: Intraductal carcinoma, noninfiltrating, NOS - Pituicytoma: - text: Pituicytoma - Atypical medullary carcinoma: - text: Atypical medullary carcinoma - Chronic idiopathic myelofibrosis: - text: Chronic idiopathic myelofibrosis - Secondary carcinoma: - text: Secondary carcinoma - Lymphangiomyomatosis: - text: Lymphangiomyomatosis - Serous cystadenoma, borderline malignancy: - text: Serous cystadenoma, borderline malignancy - Primary diffuse large B-cell lymphoma of the CNS: - text: Primary diffuse large B-cell lymphoma of the CNS - Malignant lymphoma, lymphocytic, intermediate differentiation, diffuse: - text: Malignant lymphoma, lymphocytic, intermediate differentiation, diffuse - Acinic cell adenoma: - text: Acinic cell adenoma - Struma ovarii, NOS: - text: Struma ovarii, NOS - Mycosis fungoides: - text: Mycosis fungoides - Endometrioid tumor of low malignant potential: - text: Endometrioid tumor of low malignant potential - Trichoepithelioma: - text: Trichoepithelioma - Chronic myeloid leukemia, NOS: - text: Chronic myeloid leukemia, NOS - Primary cutaneous CD30+ T-cell lymphoproliferative disorder: - text: Primary cutaneous CD30+ T-cell lymphoproliferative disorder - Cellular fibroma: - text: Cellular fibroma - Thymoma, type C: - text: Thymoma, type C - FAB M7: - text: FAB M7 - Meningioma, malignant: - text: Meningioma, malignant - Large cell calcifying Sertoli cell tumor: - text: Large cell calcifying Sertoli cell tumor - Kaposiform hemangioendothelioma: - text: Kaposiform hemangioendothelioma - Clear cell cystadenofibroma of borderline malignancy: - text: Clear cell cystadenofibroma of borderline malignancy - NUT carcinoma: - text: NUT carcinoma - description: NUT Carcinoma - Cystic mesothelioma, benign: - text: Cystic mesothelioma, benign - Papillary mucinous cystadenoma, borderline malignancy: - text: Papillary mucinous cystadenoma, borderline malignancy - Malignant rhabdoid tumor: - text: Malignant rhabdoid tumor - Malignant lymphoma, follicle center, follicular: - text: Malignant lymphoma, follicle center, follicular - Serous adenocarcinofibroma: - text: Serous adenocarcinofibroma - Non-Hodgkin lymphoma, NOS: - text: Non-Hodgkin lymphoma, NOS - Fetal lipoma, NOS: - text: Fetal lipoma, NOS - Papillotubular adenocarcinoma: - text: Papillotubular adenocarcinoma - Combined carcinoid and adenocarcinoma: - text: Combined carcinoid and adenocarcinoma - Malignant melanoma in junctional nevus: - text: Malignant melanoma in junctional nevus - Adenoacanthoma: - text: Adenoacanthoma - Langerhans cell histiocytosis, unifocal: - text: Langerhans cell histiocytosis, unifocal - Squamous cell carcinoma, adenoid: - text: Squamous cell carcinoma, adenoid - Renal carcinoma, collecting duct type: - text: Renal carcinoma, collecting duct type - Islet cell tumor, benign: - text: Islet cell tumor, benign - Ovarian stromal tumor: - text: Ovarian stromal tumor - BALT lymphoma: - text: BALT lymphoma - Retinoblastoma, diffuse: - text: Retinoblastoma, diffuse - Fibroliposarcoma: - text: Fibroliposarcoma - Transitional papilloma, inverted, benign: - text: Transitional papilloma, inverted, benign - Urachal carcinoma: - text: Urachal carcinoma - Mesothelioma, benign: - text: Mesothelioma, benign - Epidermoid carcinoma in situ with questionable stromal invasion: - text: Epidermoid carcinoma in situ with questionable stromal invasion - Verrucous carcinoma, NOS: - text: Verrucous carcinoma, NOS - Leydig cell tumor, benign: - text: Leydig cell tumor, benign - Thymoma, epithelial, malignant: - text: Thymoma, epithelial, malignant - Mucous adenocarcinoma: - text: Mucous adenocarcinoma - Angiosarcoma: - text: Angiosarcoma - Epithelioid cell sarcoma: - text: Epithelioid cell sarcoma - Leydig cell tumor, malignant: - text: Leydig cell tumor, malignant - Sclerosing hepatic carcinoma: - text: Sclerosing hepatic carcinoma - Urothelial carcinoma with squamous differentiation: - text: Urothelial carcinoma with squamous differentiation - Perineurioma, malignant: - text: Perineurioma, malignant - Plexiform hemangioma: - text: Plexiform hemangioma - Olfactory neuroepithelioma: - text: Olfactory neuroepithelioma - Intracystic papillary neoplasm with high grade intraepithelial neoplasia: - text: Intracystic papillary neoplasm with high grade intraepithelial neoplasia - Melanotic MPNST: - text: Melanotic MPNST - Mixed endocrine and exocrine adenocarcinoma: - text: Mixed endocrine and exocrine adenocarcinoma - Pilomatrixoma, NOS: - text: Pilomatrixoma, NOS - Colloid adenoma: - text: Colloid adenoma - Mixed invasive mucinous and non-mucinous adenocarcinoma: - text: Mixed invasive mucinous and non-mucinous adenocarcinoma - Pulmonary artery intimal sarcoma: - text: Pulmonary artery intimal sarcoma - Intramuscular hemangioma: - text: Intramuscular hemangioma - Lipid-rich urothelial carcinoma: - text: Lipid-rich urothelial carcinoma - Mixed germ cell tumor: - text: Mixed germ cell tumor - Myxosarcoma: - text: Myxosarcoma - Psammomatous schwannoma: - text: Psammomatous schwannoma - Synovioma, benign: - text: Synovioma, benign - High-grade serous carcinoma: - text: High-grade serous carcinoma - Bronchiolo-alveolar carcinoma, NOS: - text: Bronchiolo-alveolar carcinoma, NOS - Triton tumor, malignant: - text: Triton tumor, malignant - Malignant histiocytosis: - text: Malignant histiocytosis - B cell lymphoma, NOS: - text: B cell lymphoma, NOS - Papillary epidermoid carcinoma: - text: Papillary epidermoid carcinoma - Craniopharyngioma: - text: Craniopharyngioma - Embryonal carcinoma, NOS: - text: Embryonal carcinoma, NOS - Ecchondroma: - text: Ecchondroma - M6A: - text: M6A - Plasma cell myeloma: - text: Plasma cell myeloma - Fibromatosis-like metaplastic carcinoma: - text: Fibromatosis-like metaplastic carcinoma - Multiple neurofibromatosis: - text: Multiple neurofibromatosis - Round cell carcinoma: - text: Round cell carcinoma - Aleukemic lymphocytic leukemia: - text: Aleukemic lymphocytic leukemia - Parachordoma: - text: Parachordoma - Jadassohn blue nevus: - text: Jadassohn blue nevus - Infiltrating duct and mucinous carcinoma: - text: Infiltrating duct and mucinous carcinoma - Turban tumor: - text: Turban tumor - Adult rhabdomyoma: - text: Adult rhabdomyoma - Lymphoid leukemia, NOS: - text: Lymphoid leukemia, NOS - ? B-cell lymphoma, unclassifiable, with features intermediate between diffuse - large B-cell lymphoma and classical Hodgkin lymphoma - : text: B-cell lymphoma, unclassifiable, with features intermediate between - diffuse large B-cell lymphoma and classical Hodgkin lymphoma - Multicentric basal cell carcinoma: - text: Multicentric basal cell carcinoma - Mixed phenotype acute leukemia with t(9;22)(q34;q11.2); BCR-ABL1: - text: Mixed phenotype acute leukemia with t(9;22)(q34;q11.2); BCR-ABL1 - Duct carcinoma, desmoplastic type: - text: Duct carcinoma, desmoplastic type - Langerhans cell histiocytosis, mono-ostotic: - text: Langerhans cell histiocytosis, mono-ostotic - Malignant lymphoma, small lymphocytic, NOS: - text: Malignant lymphoma, small lymphocytic, NOS - Adenocarcinoid tumor: - text: Adenocarcinoid tumor - Small cell neuroendocrine carcinoma: - text: Small cell neuroendocrine carcinoma - description: Colorectal Small Cell Neuroendocrine Carcinoma - Cylindrical cell carcinoma: - text: Cylindrical cell carcinoma - Adenocarcinoma, endocervical type: - text: Adenocarcinoma, endocervical type - Odontogenic myxofibroma: - text: Odontogenic myxofibroma - Apocrine adenoma: - text: Apocrine adenoma - Acute leukemia, Burkitt type: - text: Acute leukemia, Burkitt type - Common precursor B ALL: - text: Common precursor B ALL - Mixed phenotype acute leukemia, B/myeloid, NOS: - text: Mixed phenotype acute leukemia, B/myeloid, NOS - Basal cell carcinoma, desmoplastic type: - text: Basal cell carcinoma, desmoplastic type - Telangiectatic osteosarcoma: - text: Telangiectatic osteosarcoma - Mucinous cystic tumor with an associated invasive carcinoma: - text: Mucinous cystic tumor with an associated invasive carcinoma - Subacute leukemia, NOS: - text: Subacute leukemia, NOS - Differentiated-type vulvar intraepithelial neoplasia: - text: Differentiated-type vulvar intraepithelial neoplasia - Adenomatoid tumor, NOS: - text: Adenomatoid tumor, NOS - Fibrous astrocytoma: - text: Fibrous astrocytoma - Central odontogenic fibroma: - text: Central odontogenic fibroma - Thymoma, type AB, NOS: - text: Thymoma, type AB, NOS - Periductal stromal tumor, low grade: - text: Periductal stromal tumor, low grade - Glucagonoma, NOS: - text: Glucagonoma, NOS - Fibroma, NOS: - text: Fibroma, NOS - Serrated adenoma: - text: Serrated adenoma - Water-clear cell adenocarcinoma: - text: Water-clear cell adenocarcinoma - Cystic hypersecretory carcinoma: - text: Cystic hypersecretory carcinoma - Ductal carcinoma in situ, comedo type: - text: Ductal carcinoma in situ, comedo type - Combined small cell-adenocarcinoma: - text: Combined small cell-adenocarcinoma - Ganglioneuromatosis: - text: Ganglioneuromatosis - Leptomeningeal sarcoma: - text: Leptomeningeal sarcoma - Perineural MPNST: - text: Perineural MPNST - Tumor, NOS: - text: Tumor, NOS - MPNST with glandular differentiation: - text: MPNST with glandular differentiation - Dermoid cyst, NOS: - text: Dermoid cyst, NOS - Giant cell sarcoma: - text: Giant cell sarcoma - Urothelial carcinoma with divergent differentiation: - text: Urothelial carcinoma with divergent differentiation - Juvenile chronic myelomonocytic leukemia: - text: Juvenile chronic myelomonocytic leukemia - Hodgkin lymphoma, nodular lymphocyte predominance: - text: Hodgkin lymphoma, nodular lymphocyte predominance - Adenocarcinoma in multiple adenomatous polyps: - text: Adenocarcinoma in multiple adenomatous polyps - Chromaffin tumor: - text: Chromaffin tumor - Carcinoma showing thymus-like element: - text: Carcinoma showing thymus-like element - Glandular intraepithelial neoplasia, high grade: - text: Glandular intraepithelial neoplasia, high grade - Verrucous papilloma: - text: Verrucous papilloma - Medullomyoblastoma: - text: Medullomyoblastoma - Brooke tumor: - text: Brooke tumor - Therapy-related acute myeloid leukemia, alkylating agent related: - text: Therapy-related acute myeloid leukemia, alkylating agent related - Adenocarcinoma combined with other types of carcinoma: - text: Adenocarcinoma combined with other types of carcinoma - Osteoid osteoma, NOS: - text: Osteoid osteoma, NOS - Minimally invasive adenocarcinoma, mucinous: - text: Minimally invasive adenocarcinoma, mucinous - description: Mucinous Bronchioloalveolar Carcinoma - Stromal endometriosis: - text: Stromal endometriosis - Chromaffin paraganglioma: - text: Chromaffin paraganglioma - FAB M2, NOS: - text: FAB M2, NOS - Hypereosinophilic syndrome: - text: Hypereosinophilic syndrome - Polymorphic post transplant lymphoproliferative disorder: - text: Polymorphic post transplant lymphoproliferative disorder - Leukemic reticuloendotheliosis: - text: Leukemic reticuloendotheliosis - Rhabdoid tumor, NOS: - text: Rhabdoid tumor, NOS - Plexiform leiomyoma: - text: Plexiform leiomyoma - Hodgkin disease, nodular sclerosis, syncytial variant: - text: Hodgkin disease, nodular sclerosis, syncytial variant - Adult T-cell lymphoma: - text: Adult T-cell lymphoma - Granular cell adenocarcinoma: - text: Granular cell adenocarcinoma - Papillary serous cystadenoma, borderline malignancy: - text: Papillary serous cystadenoma, borderline malignancy - Undifferentiated leukaemia: - text: Undifferentiated leukaemia - Cervical intraepithelial neoplasia, grade III: - text: Cervical intraepithelial neoplasia, grade III - Intestinal T-cell lymphoma: - text: Intestinal T-cell lymphoma - Intraosseous low grade osteosarcoma: - text: Intraosseous low grade osteosarcoma - Acute myeloid leukemia, NOS: - text: Acute myeloid leukemia, NOS - Malignant lymphoma, diffuse, NOS: - text: Malignant lymphoma, diffuse, NOS - Myelomonocytic leukemia, NOS: - text: Myelomonocytic leukemia, NOS - Mixed type rhabdomyosarcoma: - text: Mixed type rhabdomyosarcoma - Chemodectoma: - text: Chemodectoma - Classical Hodgkin lymphoma, lymphocyte depletion, reticular: - text: Classical Hodgkin lymphoma, lymphocyte depletion, reticular - Pacinian tumor: - text: Pacinian tumor - Chorioadenoma destruens: - text: Chorioadenoma destruens - Reticulohistiocytoma: - text: Reticulohistiocytoma - Dermoid cyst with secondary tumor: - text: Dermoid cyst with secondary tumor - Canalicular adenoma: - text: Canalicular adenoma - Post transplant lymphoproliferative disorder, NOS: - text: Post transplant lymphoproliferative disorder, NOS - Myelofibrosis as a result of myeloproliferative disease: - text: Myelofibrosis as a result of myeloproliferative disease - Struma ovarii and carcinoid: - text: Struma ovarii and carcinoid - Angioblastoma: - text: Angioblastoma - Reticulum cell sarcoma, diffuse: - text: Reticulum cell sarcoma, diffuse - Refractory cytopenia of childhood: - text: Refractory cytopenia of childhood - Tubular adenocarcinoma: - text: Tubular adenocarcinoma - Neoplasm, malignant: - text: Neoplasm, malignant - Atypical proliferative endometrioid tumor: - text: Atypical proliferative endometrioid tumor - Malignant hydatidiform mole: - text: Malignant hydatidiform mole - Extraosseous plasmacytoma: - text: Extraosseous plasmacytoma - Trichilemmocarcinoma: - text: Trichilemmocarcinoma - Papillary transitional cell carcinoma: - text: Papillary transitional cell carcinoma - Chordoid glioma: - text: Chordoid glioma - FAB MO: - text: FAB MO - Acute progressive histiocytosis X: - text: Acute progressive histiocytosis X - Somatostatin cell tumor, NOS: - text: Somatostatin cell tumor, NOS - Malignant lymphoma, mixed small cleaved and large cell, follicular: - text: Malignant lymphoma, mixed small cleaved and large cell, follicular - Sebaceous adenoma: - text: Sebaceous adenoma - Gynandroblastoma: - text: Gynandroblastoma - Sclerosing sweat duct carcinoma: - text: Sclerosing sweat duct carcinoma - Hepatosplenic T-cell lymphoma: - text: Hepatosplenic T-cell lymphoma - Adenolymphoma: - text: Adenolymphoma - Pneumoblastoma: - text: Pneumoblastoma - Adrenal cortical adenoma, compact cell: - text: Adrenal cortical adenoma, compact cell - Hemangioendothelioma, NOS: - text: Hemangioendothelioma, NOS - Lepidic adenocarcinoma: - text: Lepidic adenocarcinoma - Large cell neuroendocrine carcinoma: - text: Large cell neuroendocrine carcinoma - Leiomyomatosis, NOS: - text: Leiomyomatosis, NOS - Fibrosarcomatous dermatofibrosarcoma protuberans: - text: Fibrosarcomatous dermatofibrosarcoma protuberans - Clear cell odontogenic carcinoma: - text: Clear cell odontogenic carcinoma - Squamous cell carcinoma, spindle cell: - text: Squamous cell carcinoma, spindle cell - Classical Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis: - text: Classical Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis - Alpha cell tumor, NOS: - text: Alpha cell tumor, NOS - Well differentiated papillary mesothelioma, benign: - text: Well differentiated papillary mesothelioma, benign - Basophil adenocarcinoma: - text: Basophil adenocarcinoma - NK/T-cell lymphoma, nasal and nasal-type: - text: NK/T-cell lymphoma, nasal and nasal-type - Granulosa cell tumor, juvenile: - text: Granulosa cell tumor, juvenile - Primary serous papillary carcinoma of peritoneum: - text: Primary serous papillary carcinoma of peritoneum - Gastrinoma, malignant: - text: Gastrinoma, malignant - Cylindroma, NOS: - text: Cylindroma, NOS - Myelocytic leukemia, NOS: - text: Myelocytic leukemia, NOS - Combined small cell carcinoma: - text: Combined small cell carcinoma - Myosarcoma: - text: Myosarcoma - Granulosa cell tumor, adult type: - text: Granulosa cell tumor, adult type - description: Adult Type Ovarian Granulosa Cell Tumor - Malignant lymphoma, centroblastic, follicular: - text: Malignant lymphoma, centroblastic, follicular - Hidradenoma, NOS: - text: Hidradenoma, NOS - Adenomatous polyp, NOS: - text: Adenomatous polyp, NOS - Juvenile nevus: - text: Juvenile nevus - Enterochromaffin-like cell tumor, malignant: - text: Enterochromaffin-like cell tumor, malignant - Atypical proliferative papillary serous tumor: - text: Atypical proliferative papillary serous tumor - Pigmented adenoma: - text: Pigmented adenoma - Acquired cystic disease-associated renal cell carcinoma (RCC): - text: Acquired cystic disease-associated renal cell carcinoma (RCC) - Epithelial ependymoma: - text: Epithelial ependymoma - Bronchiolo-alveolar carcinoma, Clara cell and goblet cell type: - text: Bronchiolo-alveolar carcinoma, Clara cell and goblet cell type - Giant cell carcinoma: - text: Giant cell carcinoma - Gelatinous carcinoma: - text: Gelatinous carcinoma - Pilocytic astrocytoma: - text: Pilocytic astrocytoma - Immunoblastic sarcoma: - text: Immunoblastic sarcoma - Benign fibrous histiocytoma: - text: Benign fibrous histiocytoma - Verrucous squamous cell carcinoma: - text: Verrucous squamous cell carcinoma - Rhabdomyosarcoma with ganglionic differentiation: - text: Rhabdomyosarcoma with ganglionic differentiation - Hemangiopericytoma, NOS: - text: Hemangiopericytoma, NOS - Tumor cells, uncertain whether benign or malignant: - text: Tumor cells, uncertain whether benign or malignant - Glioma, NOS: - text: Glioma, NOS - Invasive mole, NOS: - text: Invasive mole, NOS - Malignant lymphoma, follicular, NOS: - text: Malignant lymphoma, follicular, NOS - Glioblastoma with sarcomatous component: - text: Glioblastoma with sarcomatous component - Lymphoproliferative disease, NOS: - text: Lymphoproliferative disease, NOS - Solitary fibrous tumor/hemangiopericytoma Grade 3 (CNS): - text: Solitary fibrous tumor/hemangiopericytoma Grade 3 (CNS) - Lennert lymphoma: - text: Lennert lymphoma - Infiltrating duct and cribriform carcinoma: - text: Infiltrating duct and cribriform carcinoma - Refractory anemia with sideroblasts: - text: Refractory anemia with sideroblasts - Signet ring cell adenocarcinoma: - text: Signet ring cell adenocarcinoma - Bronchiolo-alveolar carcinoma; type II pneumocyte: - text: Bronchiolo-alveolar carcinoma; type II pneumocyte - Acute myeloid leukemia with t(9;11)(p22;q23); MLLT3-MLL: - text: Acute myeloid leukemia with t(9;11)(p22;q23); MLLT3-MLL - Mixed epithelioid and spindle cell melanoma: - text: Mixed epithelioid and spindle cell melanoma - Malignant tenosynovial giant cell tumor: - text: Malignant tenosynovial giant cell tumor - Gelatinous adenocarcinoma: - text: Gelatinous adenocarcinoma - Columnar cell papilloma: - text: Columnar cell papilloma - Malignant eccrine spiradenoma: - text: Malignant eccrine spiradenoma - Insular carcinoma: - text: Insular carcinoma - Low-grade myofibroblastic sarcoma: - text: Low-grade myofibroblastic sarcoma - Chronic myelomonocytic leukemia, NOS: - text: Chronic myelomonocytic leukemia, NOS - Intratubular germ cell neoplasia: - text: Intratubular germ cell neoplasia - T-cell large granular lymphocytosis: - text: T-cell large granular lymphocytosis - Mucinous cystadenofibroma, NOS: - text: Mucinous cystadenofibroma, NOS - Interstitial cell tumor, malignant: - text: Interstitial cell tumor, malignant - Acute myeloid leukemia, MLL: - text: Acute myeloid leukemia, MLL - Solid papillary carcinoma in situ: - text: Solid papillary carcinoma in situ - Intraepithelial squamous cell carcinoma: - text: Intraepithelial squamous cell carcinoma - Astrocytoma, low grade: - text: Astrocytoma, low grade - Infiltrating duct and lobular carcinoma: - text: Infiltrating duct and lobular carcinoma - Fibrolipoma: - text: Fibrolipoma - Myofibroblastoma: - text: Myofibroblastoma - Neurosarcoma: - text: Neurosarcoma - Plexiform neurofibroma: - text: Plexiform neurofibroma - Myxoinflammatory fibroblastic sarcoma (MIFS): - text: Myxoinflammatory fibroblastic sarcoma (MIFS) - Skin appendage carcinoma: - text: Skin appendage carcinoma - Periosteal fibroma: - text: Periosteal fibroma - Verrucous keratotic hemangioma: - text: Verrucous keratotic hemangioma - Mast cell leukaemia: - text: Mast cell leukaemia - Tubulovillous adenoma, NOS: - text: Tubulovillous adenoma, NOS - Intracanalicular fibroadenoma: - text: Intracanalicular fibroadenoma - Mucinous cystadenocarcinoma, NOS: - text: Mucinous cystadenocarcinoma, NOS - Ductal carcinoma in situ, micropapillary: - text: Ductal carcinoma in situ, micropapillary - Sinonasal papilloma, fungiform: - text: Sinonasal papilloma, fungiform - Small cell carcinoma, NOS: - text: Small cell carcinoma, NOS - Carcinoma, NOS: - text: Carcinoma, NOS - Precursor cell lymphoblastic lymphoma, NOS: - text: Precursor cell lymphoblastic lymphoma, NOS - DIN 3: - text: DIN 3 - Retinoblastoma, NOS: - text: Retinoblastoma, NOS - Prolactinoma: - text: Prolactinoma - Serous surface papillary carcinoma: - text: Serous surface papillary carcinoma - Endometrioid carcinoma with squamous differentiation: - text: Endometrioid carcinoma with squamous differentiation - description: Endometrial Squamous Cell Carcinoma - Syncytial meningioma: - text: Syncytial meningioma - Mucinous adenofibroma, NOS: - text: Mucinous adenofibroma, NOS - Mucinous cystic neoplasm with high-grade dysplasia: - text: Mucinous cystic neoplasm with high-grade dysplasia - Malignant lymphoma, lymphocytic, nodular, NOS: - text: Malignant lymphoma, lymphocytic, nodular, NOS - Duct adenoma, NOS: - text: Duct adenoma, NOS - Intracystic papillary tumor with high grade dysplasia: - text: Intracystic papillary tumor with high grade dysplasia - Adenocarcinoma in situ in tubulovillous adenoma: - text: Adenocarcinoma in situ in tubulovillous adenoma - Cystadenoma, NOS: - text: Cystadenoma, NOS - Follicular lymphoma, grade 3A: - text: Follicular lymphoma, grade 3A - Cemento-ossifying fibroma: - text: Cemento-ossifying fibroma - Aortic body paraganglioma: - text: Aortic body paraganglioma - Mixed ductal-endocrine carcinoma: - text: Mixed ductal-endocrine carcinoma - Intraductal papillary carcinoma: - text: Intraductal papillary carcinoma - Intraductal papillary-mucinous neoplasm with moderate dysplasia: - text: Intraductal papillary-mucinous neoplasm with moderate dysplasia - Glandular intraepithelial neoplasia, grade II: - text: Glandular intraepithelial neoplasia, grade II - Minimally invasive adenocarcinoma, NOS: - text: Minimally invasive adenocarcinoma, NOS - Mucinous adenofibroma of borderline malignancy: - text: Mucinous adenofibroma of borderline malignancy - Sarcoma botryoides: - text: Sarcoma botryoides - Subacute myelogenous leukemia: - text: Subacute myelogenous leukemia - Aggressive digital papillary adenoma: - text: Aggressive digital papillary adenoma - Juvenile myelomonocytic leukemia: - text: Juvenile myelomonocytic leukemia - Myofibroblastic tumor, peribronchial: - text: Myofibroblastic tumor, peribronchial - Reticulosarcoma, diffuse: - text: Reticulosarcoma, diffuse - Tumor cells, NOS: - text: Tumor cells, NOS - Spindle cell oncocytoma: - text: Spindle cell oncocytoma - Embryonal rhabdomyosarcoma, NOS: - text: Embryonal rhabdomyosarcoma, NOS - Proliferative dermal lesion in congenital nevus: - text: Proliferative dermal lesion in congenital nevus - Malignant lymphoma, lymphocytic, well differentiated, diffuse: - text: Malignant lymphoma, lymphocytic, well differentiated, diffuse - Hydatid mole: - text: Hydatid mole - Acinic cell tumor: - text: Acinic cell tumor - Malignant lymphoma, mixed cell type, follicular: - text: Malignant lymphoma, mixed cell type, follicular - Clear cell meningioma: - text: Clear cell meningioma - G cell tumor, malignant: - text: G cell tumor, malignant - Eccrine adenocarcinoma: - text: Eccrine adenocarcinoma - Chondromatous giant cell tumor: - text: Chondromatous giant cell tumor - Pigmented nevus, NOS: - text: Pigmented nevus, NOS - Adenomatosis, NOS: - text: Adenomatosis, NOS - Esophageal glandular dysplasia (intraepithelial neoplasia), low grade: - text: Esophageal glandular dysplasia (intraepithelial neoplasia), low grade - Lymphoplasmacyte-rich meningioma: - text: Lymphoplasmacyte-rich meningioma - Medullary carcinoma with lymphoid stroma: - text: Medullary carcinoma with lymphoid stroma - Langerhans cell histiocytosis, NOS: - text: Langerhans cell histiocytosis, NOS - Teratoma, benign: - text: Teratoma, benign - Peripheral T-cell lymphoma, NOS: - text: Peripheral T-cell lymphoma, NOS - Smooth muscle tumor, NOS: - text: Smooth muscle tumor, NOS - Carcinofibroma: - text: Carcinofibroma - Adenocarcinoma in tubolovillous adenoma: - text: Adenocarcinoma in tubolovillous adenoma - Ectomesenchymoma: - text: Ectomesenchymoma - Lipid cell tumor of ovary: - text: Lipid cell tumor of ovary - Adrenal rest tumor: - text: Adrenal rest tumor - Mesonephric adenoma: - text: Mesonephric adenoma - Mixed embryonal rhabdomyosarcoma and alveolar rhabdomyosarcoma: - text: Mixed embryonal rhabdomyosarcoma and alveolar rhabdomyosarcoma - Chorioadenoma: - text: Chorioadenoma - Aleukemic lymphoid leukemia: - text: Aleukemic lymphoid leukemia - Carcinoid tumor, NOS, of appendix: - text: Carcinoid tumor, NOS, of appendix - FAB Ll: - text: FAB Ll - Clear cell sarcoma of kidney: - text: Clear cell sarcoma of kidney - Serous cystadenofibroma of borderline malignancy: - text: Serous cystadenofibroma of borderline malignancy - Therapy-related myelodysplastic syndrome, NOS: - text: Therapy-related myelodysplastic syndrome, NOS - Granular cell myoblastoma, malignant: - text: Granular cell myoblastoma, malignant - Mucinous adenocarcinoma, endocervical type: - text: Mucinous adenocarcinoma, endocervical type - Tumor cells, malignant: - text: Tumor cells, malignant - Chronic lymphatic leukemia: - text: Chronic lymphatic leukemia - Embryonal rhabdomyosarcoma, pleomorphic: - text: Embryonal rhabdomyosarcoma, pleomorphic - Langerhans cell granulomatosis: - text: Langerhans cell granulomatosis - Intraductal papillary mucinous neoplasm with high grade dysplasia: - text: Intraductal papillary mucinous neoplasm with high grade dysplasia - Melanocytic nevus: - text: Melanocytic nevus - MiT family translocation renal cell carcinoma: - text: MiT family translocation renal cell carcinoma - description: MiT Family Translocation-Associated Renal Cell Carcinoma - Ductal carcinoma in situ, papillary: - text: Ductal carcinoma in situ, papillary - Lymphosarcoma cell leukemia: - text: Lymphosarcoma cell leukemia - Fibroblastic reticular cell tumor: - text: Fibroblastic reticular cell tumor - Angiocentric T-cell lymphoma: - text: Angiocentric T-cell lymphoma - Mesonephroma, benign: - text: Mesonephroma, benign - Invasive mammary carcinoma: - text: Invasive mammary carcinoma - Neuroendocrine tumor, grade 2: - text: Neuroendocrine tumor, grade 2 - Acute myeloid leukemia with multilineage dysplasia: - text: Acute myeloid leukemia with multilineage dysplasia - Anaplastic large cell lymphoma, ALK positive: - text: Anaplastic large cell lymphoma, ALK positive - Leiomyofibroma: - text: Leiomyofibroma - Adult granulosa cell tumor: - text: Adult granulosa cell tumor - Mast cell sarcoma: - text: Mast cell sarcoma - Transitional carcinoma: - text: Transitional carcinoma - Chronic myelogenous leukemia, t(9;22)(q34;q11): - text: Chronic myelogenous leukemia, t(9;22)(q34;q11) - Adnexal carcinoma: - text: Adnexal carcinoma - Angiomyosarcoma: - text: Angiomyosarcoma - Combined small cell-squamous cell carcinoma: - text: Combined small cell-squamous cell carcinoma - Refractory cytopenia with multilineage dysplasia: - text: Refractory cytopenia with multilineage dysplasia - Fibrofolliculoma: - text: Fibrofolliculoma - Giant cell angiofibroma: - text: Giant cell angiofibroma - Anaplastic astrocytoma, IDH-mutant: - text: Anaplastic astrocytoma, IDH-mutant - Pineoblastoma: - text: Pineoblastoma - Acinic cell adenocarcinoma: - text: Acinic cell adenocarcinoma - Mucinous cystic neoplasm with intermediate-grade intraepithelial neoplasia: - text: Mucinous cystic neoplasm with intermediate-grade intraepithelial neoplasia - Malignant teratoma, undifferentiated: - text: Malignant teratoma, undifferentiated - Pre-T ALL: - text: Pre-T ALL - Sex cord-gonadal stromal tumor, NOS: - text: Sex cord-gonadal stromal tumor, NOS - Small congenital nevus: - text: Small congenital nevus - Gliofibroma: - text: Gliofibroma - Chondroblastic osteosarcoma: - text: Chondroblastic osteosarcoma - Gastrointestinal pacemaker cell tumor: - text: Gastrointestinal pacemaker cell tumor - Sympathetic paraganglioma: - text: Sympathetic paraganglioma - Noninvasive pancreatobiliary papillary neoplasm with low grade intraepithelial neoplasia: - text: Noninvasive pancreatobiliary papillary neoplasm with low grade intraepithelial - neoplasia - Germ cell tumor, nonseminomatous: - text: Germ cell tumor, nonseminomatous - Follicular carcinoma, encapsulated: - text: Follicular carcinoma, encapsulated - Giant osteoid osteoma: - text: Giant osteoid osteoma - Sweat gland tumor, benign: - text: Sweat gland tumor, benign - Periapical cemento-osseous dysplasia: - text: Periapical cemento-osseous dysplasia - Intracystic papilloma: - text: Intracystic papilloma - Thecoma, malignant: - text: Thecoma, malignant - Papillotubular adenoma: - text: Papillotubular adenoma - Renal cell carcinoma, NOS: - text: Renal cell carcinoma, NOS - B lymphoblastic leukemia/lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1): - text: B lymphoblastic leukemia/lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 - (TCF3-PBX1) - Fibrous papule of nose: - text: Fibrous papule of nose - Intraductal papillary-mucinous tumor with moderate dysplasia: - text: Intraductal papillary-mucinous tumor with moderate dysplasia - Diffuse large B-cell lymphoma associated with chronic inflammation: - text: Diffuse large B-cell lymphoma associated with chronic inflammation - Low-grade serous carcinoma: - text: Low-grade serous carcinoma - Myeloid leukemia, NOS: - text: Myeloid leukemia, NOS - PTLD, NOS: - text: PTLD, NOS - Malignant chondroid syringoma: - text: Malignant chondroid syringoma - Halo nevus: - text: Halo nevus - Thymoma, medullary, malignant: - text: Thymoma, medullary, malignant - Carcinoid, NOS: - text: Carcinoid, NOS - Polar spongioblastoma: - text: Polar spongioblastoma - Meningeal melanocytoma: - text: Meningeal melanocytoma - Alveolar rhabdomyosarcoma: - text: Alveolar rhabdomyosarcoma - Teratoma, differentiated: - text: Teratoma, differentiated - Spiradenoma, NOS: - text: Spiradenoma, NOS - Acute bilineal leukemia: - text: Acute bilineal leukemia - Haemangiosarcoma: - text: Haemangiosarcoma - Follicular adenoma: - text: Follicular adenoma - Serous borderline tumor-micropapillary variant: - text: Serous borderline tumor-micropapillary variant - Gemistocytic astrocytoma: - text: Gemistocytic astrocytoma - Squamous papilloma: - text: Squamous papilloma - Infiltrating duct and lobular carcinoma in situ: - text: Infiltrating duct and lobular carcinoma in situ - Fibrosarcoma, NOS: - text: Fibrosarcoma, NOS - Malignant lymphoma, large cell, noncleaved, follicular: - text: Malignant lymphoma, large cell, noncleaved, follicular - Angiofibroma, NOS: - text: Angiofibroma, NOS - Placental site trophoblastic tumor: - text: Placental site trophoblastic tumor - Cerebellar liponeurocytoma: - text: Cerebellar liponeurocytoma - Theca cell tumor: - text: Theca cell tumor - Bizarre leiomyoma: - text: Bizarre leiomyoma - Cementifying fibroma: - text: Cementifying fibroma - Squamous odontogenic tumor: - text: Squamous odontogenic tumor - Osteoblastic sarcoma: - text: Osteoblastic sarcoma - Endometrioid adenoma, NOS: - text: Endometrioid adenoma, NOS - Marginal zone lymphoma, NOS: - text: Marginal zone lymphoma, NOS - description: Marginal Zone Lymphoma Not Otherwise Specified - Oat cell carcinoma: - text: Oat cell carcinoma - Extracutaneous mastocytoma: - text: Extracutaneous mastocytoma - Chronic leukemia, NOS: - text: Chronic leukemia, NOS - Malignant lymphoma, Hodgkin: - text: Malignant lymphoma, Hodgkin - Thymoma, organoid, malignant: - text: Thymoma, organoid, malignant - Meningeal sarcoma: - text: Meningeal sarcoma - Adenomatoid odontogenic tumor: - text: Adenomatoid odontogenic tumor - Parafollicular cell carcinoma: - text: Parafollicular cell carcinoma - Nonencapsulated sclerosing tumor: - text: Nonencapsulated sclerosing tumor - Malignant tumor, fusiform cell type: - text: Malignant tumor, fusiform cell type - Thymoma, malignant, NOS: - text: Thymoma, malignant, NOS - Adrenal cortical adenocarcinoma: - text: Adrenal cortical adenocarcinoma - Solitary fibrous tumor/hemangiopericytoma Grade 2 (CNS): - text: Solitary fibrous tumor/hemangiopericytoma Grade 2 (CNS) - Cystic teratoma, NOS: - text: Cystic teratoma, NOS - Atypical adenoma: - text: Atypical adenoma - Retinoblastoma, differentiated: - text: Retinoblastoma, differentiated - Pilomatricoma, malignant: - text: Pilomatricoma, malignant - Thymoma, predominantly cortical, NOS: - text: Thymoma, predominantly cortical, NOS - Myeloma, NOS: - text: Myeloma, NOS - Lipoadenoma: - text: Lipoadenoma - Adenocarcinoma in adenomatous polyp: - text: Adenocarcinoma in adenomatous polyp - Myelodysplastic syndrome, unclassifiable: - text: Myelodysplastic syndrome, unclassifiable - Acute myeloid leukemia without maturation: - text: Acute myeloid leukemia without maturation - Germinoma: - text: Germinoma - Intraductal adenocarcinoma, noninfiltrating, NOS: - text: Intraductal adenocarcinoma, noninfiltrating, NOS - Intraosseous well differentiated osteosarcoma: - text: Intraosseous well differentiated osteosarcoma - Paraganglioma, benign: - text: Paraganglioma, benign - Papillary carcinoma, diffuse sclerosing: - text: Papillary carcinoma, diffuse sclerosing - Soft tissue tumor, malignant: - text: Soft tissue tumor, malignant - Osteocartilaginous exostosis: - text: Osteocartilaginous exostosis - Mucinous cystadenoma, borderline malignancy: - text: Mucinous cystadenoma, borderline malignancy - Dedifferentiated chondrosarcoma: - text: Dedifferentiated chondrosarcoma - Mediterranean lymphoma: - text: Mediterranean lymphoma - Plasmacytoma of bone: - text: Plasmacytoma of bone - Diffuse astrocytoma, IDH-wildtype: - text: Diffuse astrocytoma, IDH-wildtype - Megakaryocytic leukemia: - text: Megakaryocytic leukemia - Hairy cell leukaemia variant: - text: Hairy cell leukaemia variant - Melanoma in situ: - text: Melanoma in situ - Thecoma, luteinized: - text: Thecoma, luteinized - Glomangioma: - text: Glomangioma - Lymphoproliferative disorder, NOS: - text: Lymphoproliferative disorder, NOS - Digital papillary adenocarcinoma: - text: Digital papillary adenocarcinoma - Serous tubal intraepithelial carcinoma: - text: Serous tubal intraepithelial carcinoma - Eccrine spiradenoma: - text: Eccrine spiradenoma - Refractory thrombocytopenia: - text: Refractory thrombocytopenia - Eccrine poroma, malignant: - text: Eccrine poroma, malignant - PEComa, malignant: - text: PEComa, malignant - Pseudomucinous cystadenocarcinoma, NOS: - text: Pseudomucinous cystadenocarcinoma, NOS - Beta cell adenoma: - text: Beta cell adenoma - Endometrial stromal sarcoma, high grade: - text: Endometrial stromal sarcoma, high grade - Aleukemic monocytic leukemia: - text: Aleukemic monocytic leukemia - Hemangioblastic meningioma: - text: Hemangioblastic meningioma - Odontogenic tumor, NOS: - text: Odontogenic tumor, NOS - Pindborg tumor: - text: Pindborg tumor - Primary cutaneous DLBCL, leg type: - text: Primary cutaneous DLBCL, leg type - Plasma cell leukemia: - text: Plasma cell leukemia - Endometrial stromatosis: - text: Endometrial stromatosis - Mixed basal-squamous cell carcinoma: - text: Mixed basal-squamous cell carcinoma - Phyllodes tumor, borderline: - text: Phyllodes tumor, borderline - Choriocarcinoma combined with embryonal carcinoma: - text: Choriocarcinoma combined with embryonal carcinoma - Mesothelioma, NOS: - text: Mesothelioma, NOS - Yolk sac tumor: - text: Yolk sac tumor - Hodgkin lymphoma, lymphocyte-rich: - text: Hodgkin lymphoma, lymphocyte-rich - Pseudomyxoma peritonei with unknown primary site: - text: Pseudomyxoma peritonei with unknown primary site - Cloacogenic carcinoma: - text: Cloacogenic carcinoma - Acute myeloblastic leukemia: - text: Acute myeloblastic leukemia - Nodal marginal zone lymphoma: - text: Nodal marginal zone lymphoma - Solid papillary carcinoma with invasion: - text: Solid papillary carcinoma with invasion - Neurinoma: - text: Neurinoma - Malignant lymphoma, non-cleaved cell, NOS: - text: Malignant lymphoma, non-cleaved cell, NOS - Chronic lymphocytic leukemia, B-cell type (includes all variants of BCLL): - text: Chronic lymphocytic leukemia, B-cell type (includes all variants of - BCLL) - Intraductal papillary mucinous neoplasm with an associated invasive carcinoma: - text: Intraductal papillary mucinous neoplasm with an associated invasive - carcinoma - Tubular androblastoma, NOS: - text: Tubular androblastoma, NOS - Atypical fibroxanthoma: - text: Atypical fibroxanthoma - Odontogenic carcinosarcoma: - text: Odontogenic carcinosarcoma - Serous endometrial intraepithelial carcinoma: - text: Serous endometrial intraepithelial carcinoma - description: Serous Endometrial Intraepithelial Carcinoma - Follicular adenocarcinoma, trabecular: - text: Follicular adenocarcinoma, trabecular - Acute lymphatic leukemia: - text: Acute lymphatic leukemia - Atypical hyperplasia/Endometrioid intraepithelial neoplasm: - text: Atypical hyperplasia/Endometrioid intraepithelial neoplasm - Solid teratoma: - text: Solid teratoma - Eccrine papillary adenocarcinoma: - text: Eccrine papillary adenocarcinoma - Transitional cell papilloma, benign: - text: Transitional cell papilloma, benign - Melanotic medulloblastoma: - text: Melanotic medulloblastoma - Atypical follicular adenoma: - text: Atypical follicular adenoma - Magnocellular nevus: - text: Magnocellular nevus - Sertoli-Leydig cell tumor, retiform, with heterologous elements: - text: Sertoli-Leydig cell tumor, retiform, with heterologous elements - Non-invasive mammary carcinoma: - text: Non-invasive mammary carcinoma - Squamous cell carcinoma, clear cell type: - text: Squamous cell carcinoma, clear cell type - Malignant lymphoma, histiocytic, diffuse: - text: Malignant lymphoma, histiocytic, diffuse - Endodermal sinus tumor: - text: Endodermal sinus tumor - Astrocytoma, anaplastic: - text: Astrocytoma, anaplastic - Mixed medullary-follicular carcinoma: - text: Mixed medullary-follicular carcinoma - Oligodendroglioma, anaplastic: - text: Oligodendroglioma, anaplastic - Central primitive neuroectodermal tumor, NOS: - text: Central primitive neuroectodermal tumor, NOS - Dermal and epidermal nevus: - text: Dermal and epidermal nevus - Malignant lymphoma, large cell, NOS: - text: Malignant lymphoma, large cell, NOS - Papillary carcinoma, encapsulated: - text: Papillary carcinoma, encapsulated - Carcinoma, diffuse type: - text: Carcinoma, diffuse type - Acute myelofibrosis: - text: Acute myelofibrosis - Desmoid, NOS: - text: Desmoid, NOS - Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS: - text: Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS - NK-cell large granular lymphocytic leukemia: - text: NK-cell large granular lymphocytic leukemia - Mucinous adenocarcinoma: - text: Mucinous adenocarcinoma - Acute promyelocytic leukaemia, PML-RAR-alpha: - text: Acute promyelocytic leukaemia, PML-RAR-alpha - Myxopapillary ependymoma: - text: Myxopapillary ependymoma - Hepatoblastoma, mixed epithelial-mesenchymal: - text: Hepatoblastoma, mixed epithelial-mesenchymal - Liposarcoma, differentiated: - text: Liposarcoma, differentiated - Malignant lymphoma, large cell, immunoblastic: - text: Malignant lymphoma, large cell, immunoblastic - Bronchiolo-alveolar adenocarcinoma, NOS: - text: Bronchiolo-alveolar adenocarcinoma, NOS - Lipomatous medulloblastoma: - text: Lipomatous medulloblastoma - Papillary carcinoma, NOS: - text: Papillary carcinoma, NOS - Nephroblastoma, NOS: - text: Nephroblastoma, NOS - Hemangiopericytoma, malignant: - text: Hemangiopericytoma, malignant - Pulmonary blastoma: - text: Pulmonary blastoma - Desmoplastic infantile ganglioglioma: - text: Desmoplastic infantile ganglioglioma - Acute myeloid leukemia with mutated NPM1: - text: Acute myeloid leukemia with mutated NPM1 - Myoepithelial carcinoma: - text: Myoepithelial carcinoma - description: Malignant Myoepithelioma - Calcifying nested epithelial stromal tumor: - text: Calcifying nested epithelial stromal tumor - Spindle cell lipoma: - text: Spindle cell lipoma - Dysembryoplastic neuroepithelial tumor: - text: Dysembryoplastic neuroepithelial tumor - Refractory anemia with ring sideroblasts associated with marked thrombocytosis: - text: Refractory anemia with ring sideroblasts associated with marked thrombocytosis - Thymoma, type A, malignant: - text: Thymoma, type A, malignant - Chronic neutrophilic leukemia: - text: Chronic neutrophilic leukemia - Adenocarcinoma with neuroendocrine differentiation: - text: Adenocarcinoma with neuroendocrine differentiation - Eccrine acrospiroma: - text: Eccrine acrospiroma - Undifferentiated epithelioid sarcoma: - text: Undifferentiated epithelioid sarcoma - Thymoma, epithelial, NOS: - text: Thymoma, epithelial, NOS - Mediastinal (thymic) large B-cell lymphoma: - text: Mediastinal (thymic) large B-cell lymphoma - Hurthle cell carcinoma: - text: Hurthle cell carcinoma - Mucinous carcinoma, intestinal type: - text: Mucinous carcinoma, intestinal type - Pleomorphic leiomyoma: - text: Pleomorphic leiomyoma - Mixed phenotype acute leukemia with t(v;11q23); MLL rearranged: - text: Mixed phenotype acute leukemia with t(v;11q23); MLL rearranged - Intraductal carcinoma, solid type: - text: Intraductal carcinoma, solid type - Hemangioendothelioma, malignant: - text: Hemangioendothelioma, malignant - Thymoma, type B2, malignant: - text: Thymoma, type B2, malignant - Papillary serous tumor of low malignant potential: - text: Papillary serous tumor of low malignant potential - Papillary transitional cell carcinoma, non-invasive: - text: Papillary transitional cell carcinoma, non-invasive - Aleukemic lymphatic leukemia: - text: Aleukemic lymphatic leukemia - Clear cell sarcoma, NOS: - text: Clear cell sarcoma, NOS - Retinal anlage tumor: - text: Retinal anlage tumor - Hurthle cell tumor: - text: Hurthle cell tumor - Hemangioendothelial sarcoma: - text: Hemangioendothelial sarcoma - Malignant lymphoma, lymphoblastic, NOS: - text: Malignant lymphoma, lymphoblastic, NOS - Polycythemia vera: - text: Polycythemia vera - Fibro-osteoma: - text: Fibro-osteoma - Preleukemic syndrome: - text: Preleukemic syndrome - Wilms tumor: - text: Wilms tumor - B lymphoblastic leukemia/lymphoma with t(9;22)(q34;q11.2); BCR-ABL1: - text: B lymphoblastic leukemia/lymphoma with t(9;22)(q34;q11.2); BCR-ABL1 - Epidermoid carcinoma, spindle cell: - text: Epidermoid carcinoma, spindle cell - Subependymoma: - text: Subependymoma - Precursor T-cell lymphoblastic lymphoma: - text: Precursor T-cell lymphoblastic lymphoma - Spitz nevus: - text: Spitz nevus - High-grade neuroendocrine carcinoma: - text: High-grade neuroendocrine carcinoma - PPNET: - text: PPNET - Essential hemorrhagic thrombocythaemia: - text: Essential hemorrhagic thrombocythaemia - Neurinomatosis: - text: Neurinomatosis - Desmoplastic mesothelioma: - text: Desmoplastic mesothelioma - description: Desmoplastic Mesothelioma - Ameloblastic carcinoma: - text: Ameloblastic carcinoma - Nonlipid reticuloendotheliosis: - text: Nonlipid reticuloendotheliosis - Therapy-related acute myeloid leukemia, NOS: - text: Therapy-related acute myeloid leukemia, NOS - Angiomatous meningioma: - text: Angiomatous meningioma - MGUS: - text: MGUS - Medulloblastoma, non-WNT/non-SHH: - text: Medulloblastoma, non-WNT/non-SHH - Clear cell adenoma: - text: Clear cell adenoma - Cavernous hemangioma: - text: Cavernous hemangioma - Hodgkin lymphoma, nodular sclerosis, grade 1: - text: Hodgkin lymphoma, nodular sclerosis, grade 1 - Idiopathic hemorrhagic thrombocythaemia: - text: Idiopathic hemorrhagic thrombocythaemia - Granulosa cell carcinoma: - text: Granulosa cell carcinoma - Gastrointestinal stromal tumor, NOS: - text: Gastrointestinal stromal tumor, NOS - Thymoma, type B1, malignant: - text: Thymoma, type B1, malignant - Follicular carcinoma, moderately differentiated: - text: Follicular carcinoma, moderately differentiated - Dermatofibrosarcoma protuberans, NOS: - text: Dermatofibrosarcoma protuberans, NOS - Mucinous cystadenocarcinoma, non-invasive: - text: Mucinous cystadenocarcinoma, non-invasive - Squamous cell carcinoma, acantholytic: - text: Squamous cell carcinoma, acantholytic - Tubulocystic renal cell carcinoma: - text: Tubulocystic renal cell carcinoma - description: Tubulocystic Renal Cell Carcinoma - Myelogenous leukemia, NOS: - text: Myelogenous leukemia, NOS - Glioblastoma multiforme: - text: Glioblastoma multiforme - Thymoma, cortical, NOS: - text: Thymoma, cortical, NOS - Primary cutaneous CD4-positive small/medium T-cell lymphoma: - text: Primary cutaneous CD4-positive small/medium T-cell lymphoma - Atypical proliferating clear cell tumor: - text: Atypical proliferating clear cell tumor - Duct carcinoma, NOS: - text: Duct carcinoma, NOS - Squamous cell carcinoma, NOS: - text: Squamous cell carcinoma, NOS - Hepatoblastoma, epithelioid: - text: Hepatoblastoma, epithelioid - Meningothelial meningioma: - text: Meningothelial meningioma - Carcinoma in situ, NOS: - text: Carcinoma in situ, NOS - Desmoplastic medulloblastoma: - text: Desmoplastic medulloblastoma - Mucoid adenocarcinoma: - text: Mucoid adenocarcinoma - Angiomyofibroblastoma: - text: Angiomyofibroblastoma - Adenomatous polyposis coli: - text: Adenomatous polyposis coli - Compound odontoma: - text: Compound odontoma - Syringomatous carcinoma: - text: Syringomatous carcinoma - Gastrin cell tumor, malignant: - text: Gastrin cell tumor, malignant - Malignant teratoma, intermediate: - text: Malignant teratoma, intermediate - Langerhans cell sarcoma: - text: Langerhans cell sarcoma - Adrenal cortical adenoma, pigmented: - text: Adrenal cortical adenoma, pigmented - Enteropathy type intestinal T-cell lymphoma: - text: Enteropathy type intestinal T-cell lymphoma - Parasympathetic paraganglioma: - text: Parasympathetic paraganglioma - Malignant myelosclerosis: - text: Malignant myelosclerosis - Gliosarcoma: - text: Gliosarcoma - Acute panmyelosis, NOS: - text: Acute panmyelosis, NOS - Congenital generalized fibromatosis: - text: Congenital generalized fibromatosis - Soft tissue sarcoma: - text: Soft tissue sarcoma - Melanotic neurofibroma: - text: Melanotic neurofibroma - Chromophobe carcinoma: - text: Chromophobe carcinoma - Microglioma: - text: Microglioma - Duct adenocarcinoma, NOS: - text: Duct adenocarcinoma, NOS - Matrical carcinoma: - text: Matrical carcinoma - Giant cell glioblastoma: - text: Giant cell glioblastoma - Ceruminous adenoma: - text: Ceruminous adenoma - Mesothelioma, biphasic, malignant: - text: Mesothelioma, biphasic, malignant - Sweat gland tumor, malignant: - text: Sweat gland tumor, malignant - PNET, NOS: - text: PNET, NOS - Neuroectodermal tumor, NOS: - text: Neuroectodermal tumor, NOS - Extra-adrenal paraganglioma, NOS: - text: Extra-adrenal paraganglioma, NOS - Medulloblastoma, SHH-activated and TP53-mutant: - text: Medulloblastoma, SHH-activated and TP53-mutant - Eccrine papillary adenoma: - text: Eccrine papillary adenoma - Alveolar carcinoma: - text: Alveolar carcinoma - Wolffian duct tumor: - text: Wolffian duct tumor - Ewing sarcoma: - text: Ewing sarcoma - Angioma, NOS: - text: Angioma, NOS - Fibrous meningioma: - text: Fibrous meningioma - Mesenteric fibromatosis: - text: Mesenteric fibromatosis - Mucinous carcinoid: - text: Mucinous carcinoid - Craniopharyngioma, papillary: - text: Craniopharyngioma, papillary - Osteochondroma: - text: Osteochondroma - Aggressive NK-cell leukaemia: - text: Aggressive NK-cell leukaemia - Subacute lymphocytic leukemia: - text: Subacute lymphocytic leukemia - Carcinoma showing thymus-like differentiation: - text: Carcinoma showing thymus-like differentiation - Thymoma, type A, NOS: - text: Thymoma, type A, NOS - Neoplasm, NOS: - text: Neoplasm, NOS - Lobular and ductal carcinoma: - text: Lobular and ductal carcinoma - Adult T-cell leukemia/lymphoma (HTLV-1 positive) (includes all variants): - text: Adult T-cell leukemia/lymphoma (HTLV-1 positive) (includes all variants) - Fibrillary astrocytoma: - text: Fibrillary astrocytoma - EBV positive diffuse large B-cell lymphoma of the elderly: - text: EBV positive diffuse large B-cell lymphoma of the elderly - Erythremic myelosis, NOS: - text: Erythremic myelosis, NOS - Mixed tumor, salivary gland type, malignant: - text: Mixed tumor, salivary gland type, malignant - Neuronevus: - text: Neuronevus - Papillary and follicular carcinoma: - text: Papillary and follicular carcinoma - Neurothekeoma: - text: Neurothekeoma - Noninvasive pancreatobiliary papillary neoplasm with low grade dysplasia: - text: Noninvasive pancreatobiliary papillary neoplasm with low grade dysplasia - Pheochromoblastoma: - text: Pheochromoblastoma - Papillary urothelial carcinoma, non-invasive: - text: Papillary urothelial carcinoma, non-invasive - Intraductal papilloma with lobular carcinoma in situ: - text: Intraductal papilloma with lobular carcinoma in situ - Hodgkin sarcoma: - text: Hodgkin sarcoma - Tibial adamantinoma: - text: Tibial adamantinoma - Deep histiocytoma: - text: Deep histiocytoma - Adenocarcinoma in villous adenoma: - text: Adenocarcinoma in villous adenoma - Pseudomucinous cystadenoma, borderline malignancy: - text: Pseudomucinous cystadenoma, borderline malignancy - Argentaffinoma, malignant: - text: Argentaffinoma, malignant - Therapy-related myelodysplastic syndrome, epipodophyllotoxin-related: - text: Therapy-related myelodysplastic syndrome, epipodophyllotoxin-related - Serotonin producing carcinoid: - text: Serotonin producing carcinoid - Noninfiltrating intraductal papillary carcinoma: - text: Noninfiltrating intraductal papillary carcinoma - Syringocystadenoma papilliferum: - text: Syringocystadenoma papilliferum - Classical Hodgkin lymphoma, nodular sclerosis, cellular phase: - text: Classical Hodgkin lymphoma, nodular sclerosis, cellular phase - Kupffer cell sarcoma: - text: Kupffer cell sarcoma - Neuroepithelioma, NOS: - text: Neuroepithelioma, NOS - Malignant tumor, giant cell type: - text: Malignant tumor, giant cell type - Neurofibroma, NOS: - text: Neurofibroma, NOS - Hodgkin lymphoma, NOS: - text: Hodgkin lymphoma, NOS - Glioblastoma: - text: Glioblastoma - Neurotropic melanoma, malignant: - text: Neurotropic melanoma, malignant - Therapy-related myelodysplastic syndrome, alkylating agent related: - text: Therapy-related myelodysplastic syndrome, alkylating agent related - Pleomorphic rhabdomyosarcoma, adult type: - text: Pleomorphic rhabdomyosarcoma, adult type - Soft tissue tumor, benign: - text: Soft tissue tumor, benign - Metaplastic carcinoma with other types mesenchymal differentiation: - text: Metaplastic carcinoma with other types mesenchymal differentiation - Spindle cell melanoma, NOS: - text: Spindle cell melanoma, NOS - Struma ovarii, malignant: - text: Struma ovarii, malignant - Sclerosing hemangioma: - text: Sclerosing hemangioma - Dabska tumor: - text: Dabska tumor - Ductal carcinoma, NOS: - text: Ductal carcinoma, NOS - Chronic lymphoid leukemia: - text: Chronic lymphoid leukemia - Intraglandular papillary neoplasm with low grade intraepithelial neoplasia: - text: Intraglandular papillary neoplasm with low grade intraepithelial neoplasia - Osteogenic sarcoma, NOS: - text: Osteogenic sarcoma, NOS - Adenocarcinoma in situ in adenomatous polyp: - text: Adenocarcinoma in situ in adenomatous polyp - Fetal lipomatosis: - text: Fetal lipomatosis - Melanoma, NOS: - text: Melanoma, NOS - description: Not Otherwise Specified Melanoma - Basal cell tumor: - text: Basal cell tumor - Blue nevus, NOS: - text: Blue nevus, NOS - Classical Hodgkin lymphoma, lymphocyte depletion, NOS: - text: Classical Hodgkin lymphoma, lymphocyte depletion, NOS - Hilar cell tumor: - text: Hilar cell tumor - MPNST with mesenchymal differentiation: - text: MPNST with mesenchymal differentiation - Ameloblastic sarcoma: - text: Ameloblastic sarcoma - Adenoameloblastoma: - text: Adenoameloblastoma - Thymoma, medullary, NOS: - text: Thymoma, medullary, NOS - Eccrine poroma: - text: Eccrine poroma - Ductal papilloma: - text: Ductal papilloma - Biliary papillomatosis: - text: Biliary papillomatosis - Lymphosarcoma, NOS: - text: Lymphosarcoma, NOS - Astrocytoma, NOS: - text: Astrocytoma, NOS - Nodular melanoma: - text: Nodular melanoma - description: Nodular Melanoma - Eosinophilic leukemia: - text: Eosinophilic leukemia - Acute myeloid leukemia, AML1(CBF-alpha)/ETO: - text: Acute myeloid leukemia, AML1(CBF-alpha)/ETO - Gangliocytoma: - text: Gangliocytoma - Gigantiform cementoma: - text: Gigantiform cementoma - Oncocytic carcinoma: - text: Oncocytic carcinoma - description: Oxyphilic Adenocarcinoma - Odontogenic fibrosarcoma: - text: Odontogenic fibrosarcoma - Verrucous epidermoid carcinoma: - text: Verrucous epidermoid carcinoma - Flat intraepithelial glandular neoplasia, high grade: - text: Flat intraepithelial glandular neoplasia, high grade - Malignant melanoma in congenital melanocytic nevus: - text: Malignant melanoma in congenital melanocytic nevus - Aleukemic granulocytic leukemia: - text: Aleukemic granulocytic leukemia - Oncocytic adenoma: - text: Oncocytic adenoma - Adenocarcinoma of anal glands: - text: Adenocarcinoma of anal glands - FAB M1: - text: FAB M1 - Pigmented dermatofibrosarcoma protuberans: - text: Pigmented dermatofibrosarcoma protuberans - Metatypical carcinoma: - text: Metatypical carcinoma - Cribriform comedo-type carcinoma: - text: Cribriform comedo-type carcinoma - T-zone lymphoma: - text: T-zone lymphoma - Hyalinizing trabecular adenoma: - text: Hyalinizing trabecular adenoma - Endometrial stromal sarcoma, low grade: - text: Endometrial stromal sarcoma, low grade - Cholangioma: - text: Cholangioma - Retinoblastoma, undifferentiated: - text: Retinoblastoma, undifferentiated - Transitional cell papilloma, inverted, benign: - text: Transitional cell papilloma, inverted, benign - Classical Hodgkin lymphoma, nodular sclerosis, grade 1: - text: Classical Hodgkin lymphoma, nodular sclerosis, grade 1 - Acute lymphoid leukemia: - text: Acute lymphoid leukemia - Biliary intraepithelial neoplasia, grade 3: - text: Biliary intraepithelial neoplasia, grade 3 - Follicular thyroid carcinoma (FTC), encapsulated angioinvasive: - text: Follicular thyroid carcinoma (FTC), encapsulated angioinvasive - Mantle cell lymphoma (Includes all variants blastic, pleomorphic, small cell): - text: Mantle cell lymphoma (Includes all variants blastic, pleomorphic, small - cell) - Intraductal papillary tumor with high grade dysplasia: - text: Intraductal papillary tumor with high grade dysplasia - Malignant fibrous histiocytoma (MFH) of bone: - text: Malignant fibrous histiocytoma (MFH) of bone - Pilomyxoid astrocytoma: - text: Pilomyxoid astrocytoma - Mucinous cystoma: - text: Mucinous cystoma - Pre-pre-B ALL: - text: Pre-pre-B ALL - Odontoma, NOS: - text: Odontoma, NOS - Rosette-forming glioneuronal tumor: - text: Rosette-forming glioneuronal tumor - Meningeal melanomatosis: - text: Meningeal melanomatosis - Intraneural perineurioma: - text: Intraneural perineurioma - Esophageal squamous intraepithelial neoplasia (dysplasia), low grade: - text: Esophageal squamous intraepithelial neoplasia (dysplasia), low grade - RAEB: - text: RAEB - GIST, NOS: - text: GIST, NOS - Mucinous cystic tumor with intermediate dysplasia: - text: Mucinous cystic tumor with intermediate dysplasia - Reserve cell carcinoma: - text: Reserve cell carcinoma - Pulmonary myxoid sarcoma with EWSR1-CREB1 translocation: - text: Pulmonary myxoid sarcoma with EWSR1-CREB1 translocation - Epithelial-myoepithelial carcinoma: - text: Epithelial-myoepithelial carcinoma - description: Epithelial-Myoepithelial Carcinoma - Adenocarcinoma of anal ducts: - text: Adenocarcinoma of anal ducts - Intraductal tubular-papillary neoplasm, low grade: - text: Intraductal tubular-papillary neoplasm, low grade - Involuting nevus: - text: Involuting nevus - Thymoma, spindle cell, malignant: - text: Thymoma, spindle cell, malignant - Intimal sarcoma: - text: Intimal sarcoma - Intracystic papillary neoplasm with intermediate grade intraepithelial neoplasia: - text: Intracystic papillary neoplasm with intermediate grade intraepithelial - neoplasia - Papillomatosis, NOS: - text: Papillomatosis, NOS - Follicular carcinoma, minimally invasive: - text: Follicular carcinoma, minimally invasive - Compound nevus: - text: Compound nevus - Thymoma, spindle cell, NOS: - text: Thymoma, spindle cell, NOS - Mixed pineocytoma-pineoblastoma: - text: Mixed pineocytoma-pineoblastoma - Salivary duct carcinoma: - text: Salivary duct carcinoma - description: Salivary Duct Carcinoma - Vipoma, malignant: - text: Vipoma, malignant - Carcinoid tumor, argentaffin, malignant: - text: Carcinoid tumor, argentaffin, malignant - Glandular intraepithelial neoplasia, grade III: - text: Glandular intraepithelial neoplasia, grade III - Meningiomatosis, NOS: - text: Meningiomatosis, NOS - Carcinoma with osteoclast-like giant cells: - text: Carcinoma with osteoclast-like giant cells - Malignant lymphoma, small noncleaved, Burkitt type: - text: Malignant lymphoma, small noncleaved, Burkitt type - Squamous papillomatosis: - text: Squamous papillomatosis - Papillary carcinoma of thyroid: - text: Papillary carcinoma of thyroid - Intracystic papillary neoplasm with associated invasive carcinoma: - text: Intracystic papillary neoplasm with associated invasive carcinoma - Squamous cell carcinoma in situ with questionable stromal invasion: - text: Squamous cell carcinoma in situ with questionable stromal invasion - Desmoplastic small round cell tumor: - text: Desmoplastic small round cell tumor - Low grade appendiceal mucinous neoplasm: - text: Low grade appendiceal mucinous neoplasm - Fetal fat cell lipoma: - text: Fetal fat cell lipoma - Aortic body tumor: - text: Aortic body tumor - Low-grade fibromyxoid sarcoma: - text: Low-grade fibromyxoid sarcoma - Glomangiomyoma: - text: Glomangiomyoma - Lymphangioendothelioma, NOS: - text: Lymphangioendothelioma, NOS - Epidermoid carcinoma, small cell, nonkeratinizing: - text: Epidermoid carcinoma, small cell, nonkeratinizing - Adenosquamous carcinoma: - text: Adenosquamous carcinoma - Precursor cell lymphoblastic leukemia, NOS: - text: Precursor cell lymphoblastic leukemia, NOS - Liposarcoma, well differentiated: - text: Liposarcoma, well differentiated - Endometrioid adenofibroma, NOS: - text: Endometrioid adenofibroma, NOS - Fibroepithelial basal cell carcinoma, Pinkus type: - text: Fibroepithelial basal cell carcinoma, Pinkus type - Splenic marginal zone lymphoma, NOS: - text: Splenic marginal zone lymphoma, NOS - Atypical chronic myeloid leukemia, Philadelphia chromosome (Ph1) negative: - text: Atypical chronic myeloid leukemia, Philadelphia chromosome (Ph1) negative - Agnogenic myeloid metaplasia: - text: Agnogenic myeloid metaplasia - Angioimmunoblastic lymphoma: - text: Angioimmunoblastic lymphoma - Serrated adenocarcinoma: - text: Serrated adenocarcinoma - Classical Hodgkin lymphoma, mixed cellularity, NOS: - text: Classical Hodgkin lymphoma, mixed cellularity, NOS - Infiltrating lobular carcinoma and ductal carcinoma in situ: - text: Infiltrating lobular carcinoma and ductal carcinoma in situ - FAB M3 (includes all variants): - text: FAB M3 (includes all variants) - Keratotoc papilloma: - text: Keratotoc papilloma - Juvenile hemangioma: - text: Juvenile hemangioma - Malignant lymphoma, centroblastic, diffuse: - text: Malignant lymphoma, centroblastic, diffuse - Adrenal cortical adenoma, glomerulosa cell: - text: Adrenal cortical adenoma, glomerulosa cell - Adenocarcinoma in situ in a polyp, NOS: - text: Adenocarcinoma in situ in a polyp, NOS - Malignant lymphoma, non-Hodgkin, NOS: - text: Malignant lymphoma, non-Hodgkin, NOS - Cystosarcoma phyllodes, malignant: - text: Cystosarcoma phyllodes, malignant - Malignant lymphoma, plasmacytoid: - text: Malignant lymphoma, plasmacytoid - Hepatosplenic gamma-delta cell lymphoma: - text: Hepatosplenic gamma-delta cell lymphoma - Trichilemmoma: - text: Trichilemmoma - Low grade cribriform cystadenocarcinoma (LGCCC): - text: Low grade cribriform cystadenocarcinoma (LGCCC) - Bronchiolo-alveolar carcinoma, non-mucinous: - text: Bronchiolo-alveolar carcinoma, non-mucinous - Endometrioid adenoma, borderline malignancy: - text: Endometrioid adenoma, borderline malignancy - Craniopharyngioma, adamantinomatous: - text: Craniopharyngioma, adamantinomatous - Vascular leiomyoma: - text: Vascular leiomyoma - Epithelial tumor, malignant: - text: Epithelial tumor, malignant - Diffuse intraductal papillomatosis: - text: Diffuse intraductal papillomatosis - Large granular lymphocytosis, NOS: - text: Large granular lymphocytosis, NOS - Warthin tumor: - text: Warthin tumor - Splenic lymphoma with villous lymphocytes: - text: Splenic lymphoma with villous lymphocytes - Histiocytic sarcoma: - text: Histiocytic sarcoma - Embryonal hepatoma: - text: Embryonal hepatoma - Malignant lymphoma, mixed cell type, nodular: - text: Malignant lymphoma, mixed cell type, nodular - Mixed adenomatous and hyperplastic polyp: - text: Mixed adenomatous and hyperplastic polyp - DCIS, NOS: - text: DCIS, NOS - Malignant lymphoma, small cell, noncleaved, diffuse: - text: Malignant lymphoma, small cell, noncleaved, diffuse - Malignant lymphoma, lymphocytic, NOS: - text: Malignant lymphoma, lymphocytic, NOS - Granular cell tumor of the sellar region: - text: Granular cell tumor of the sellar region - Glioneuroma: - text: Glioneuroma - Lymphangioendothelial sarcoma: - text: Lymphangioendothelial sarcoma - Prolymphocytic leukemia, B-cell type: - text: Prolymphocytic leukemia, B-cell type - Composite Hodgkin and non-Hodgkin lymphoma: - text: Composite Hodgkin and non-Hodgkin lymphoma - High grade surface osteosarcoma: - text: High grade surface osteosarcoma - Ameloblastic fibroma: - text: Ameloblastic fibroma - Angioendothelioma: - text: Angioendothelioma - Renal cell carcinoma, spindle cell: - text: Renal cell carcinoma, spindle cell - Flat adenoma: - text: Flat adenoma - Medullary carcinoma, NOS: - text: Medullary carcinoma, NOS - Mesothelial papilloma: - text: Mesothelial papilloma - Adenoma of nipple: - text: Adenoma of nipple - Acute lymphocytic leukemia: - text: Acute lymphocytic leukemia - Primary cutaneous anaplastic large cell lymphoma: - text: Primary cutaneous anaplastic large cell lymphoma - Acute monoblastic leukemia: - text: Acute monoblastic leukemia - Glycogen-rich carcinoma: - text: Glycogen-rich carcinoma - Adenocystic carcinoma: - text: Adenocystic carcinoma - Rhabdomyoma, NOS: - text: Rhabdomyoma, NOS - Brenner tumor, borderline malignancy: - text: Brenner tumor, borderline malignancy - FAB M4: - text: FAB M4 - Sertoli-Leydig cell tumor of intermediate differentiation: - text: Sertoli-Leydig cell tumor of intermediate differentiation - Sezary syndrome: - text: Sezary syndrome - Infiltrating lipoma: - text: Infiltrating lipoma - Lentigo maligna: - text: Lentigo maligna - Eosinophil adenocarcinoma: - text: Eosinophil adenocarcinoma - Odontogenic carcinoma: - text: Odontogenic carcinoma - Brenner tumor, proliferating: - text: Brenner tumor, proliferating - Clear cell adenocarcinoma, NOS: - text: Clear cell adenocarcinoma, NOS - Carcinoma in pleomorphic adenoma: - text: Carcinoma in pleomorphic adenoma - Esthesioneuroepithelioma: - text: Esthesioneuroepithelioma - Serous cystoma: - text: Serous cystoma - Bronchiolo-alveolar carcinoma, type II pneumocyte and goblet cell type: - text: Bronchiolo-alveolar carcinoma, type II pneumocyte and goblet cell type - CASTLE: - text: CASTLE - Follicular adenocarcinoma, moderately differentiated: - text: Follicular adenocarcinoma, moderately differentiated - Urothelial papilloma, NOS: - text: Urothelial papilloma, NOS - Solitary fibrous tumor: - text: Solitary fibrous tumor - Enteroglucagonoma, NOS: - text: Enteroglucagonoma, NOS - Carcinoma, intestinal type: - text: Carcinoma, intestinal type - Tanycytic ependymoma: - text: Tanycytic ependymoma - Papillary squamous cell carcinoma in situ: - text: Papillary squamous cell carcinoma in situ - Acute myeloid leukemia, CBF-beta/MYH11: - text: Acute myeloid leukemia, CBF-beta/MYH11 - VIN III: - text: VIN III - Squamous cell carcinoma, nonkeratinizing, NOS: - text: Squamous cell carcinoma, nonkeratinizing, NOS - B-ALL: - text: B-ALL - Unclassified tumor, malignant, uncertain whether primary or metastatic: - text: Unclassified tumor, malignant, uncertain whether primary or metastatic - Askin tumor: - text: Askin tumor - Fibromyxoma: - text: Fibromyxoma - Mesenchymal chondrosarcoma: - text: Mesenchymal chondrosarcoma - Villoglandular adenoma: - text: Villoglandular adenoma - Flat intraepithelial neoplasia, high grade: - text: Flat intraepithelial neoplasia, high grade - Papillary carcinoma, columnar cell: - text: Papillary carcinoma, columnar cell - Small cell carcinoma pulmonary type: - text: Small cell carcinoma pulmonary type - Synovial sarcoma, epithelioid cell: - text: Synovial sarcoma, epithelioid cell - Villous papilloma: - text: Villous papilloma - Mixed adenocarcinoma and squamous cell carcinoma: - text: Mixed adenocarcinoma and squamous cell carcinoma - Carcinoma in situ in a polyp, NOS: - text: Carcinoma in situ in a polyp, NOS - Acute lymphoblastic leukemia-lymphoma, NOS: - text: Acute lymphoblastic leukemia-lymphoma, NOS - Intracystic carcinoma, NOS: - text: Intracystic carcinoma, NOS - Squamous carcinoma: - text: Squamous carcinoma - Endometrioid adenocarcinoma, villoglandular: - text: Endometrioid adenocarcinoma, villoglandular - Anaplastic medulloblastoma: - text: Anaplastic medulloblastoma - Monocytoid B-cell lymphoma: - text: Monocytoid B-cell lymphoma - Refractory anemia: - text: Refractory anemia - Teratoma, malignant, NOS: - text: Teratoma, malignant, NOS - Not Reported: - text: Not Reported - Malignant lymphoma, lymphocytic, diffuse, NOS: - text: Malignant lymphoma, lymphocytic, diffuse, NOS - Trabecular adenocarcinoma: - text: Trabecular adenocarcinoma - Clear cell adenocarcinofibroma: - text: Clear cell adenocarcinofibroma - Carcinoma in situ in adenomatous polyp: - text: Carcinoma in situ in adenomatous polyp - Acute myelomonocytic leukemia: - text: Acute myelomonocytic leukemia - Endocervical adenocarcinoma usual type: - text: Endocervical adenocarcinoma usual type - Lymphoblastic leukemia, NOS: - text: Lymphoblastic leukemia, NOS - Invasive carcinoma, NST: - text: Invasive carcinoma, NST - Malignant lymphoma, centroblasticcentrocytic, diffuse: - text: Malignant lymphoma, centroblasticcentrocytic, diffuse - Cystic partially differentiated nephroblastoma: - text: Cystic partially differentiated nephroblastoma - Superficial spreading adenocarcinoma: - text: Superficial spreading adenocarcinoma - Lipoleiomyoma: - text: Lipoleiomyoma - Acinar cell cystadenocarcinoma: - text: Acinar cell cystadenocarcinoma - description: Pancreatic Acinar Cell Cystadenocarcinoma - Myoma: - text: Myoma - Teratoma, NOS: - text: Teratoma, NOS - Parietal cell carcinoma: - text: Parietal cell carcinoma - Hepatoma, NOS: - text: Hepatoma, NOS - Sebaceous epithelioma: - text: Sebaceous epithelioma - Adenocarcinoma in situ in villous adenoma: - text: Adenocarcinoma in situ in villous adenoma - Hodgkin disease, NOS: - text: Hodgkin disease, NOS - Endometrioid cystadenoma, borderline malignancy: - text: Endometrioid cystadenoma, borderline malignancy - Hepatocellular carcinoma, clear cell type: - text: Hepatocellular carcinoma, clear cell type - Infiltrating duct and tubular carcinoma: - text: Infiltrating duct and tubular carcinoma - Round cell osteosarcoma: - text: Round cell osteosarcoma - Rathke pouch tumor: - text: Rathke pouch tumor - Subependymal giant cell astrocytoma: - text: Subependymal giant cell astrocytoma - Sertoli-Leydig cell tumor, poorly differentiated: - text: Sertoli-Leydig cell tumor, poorly differentiated - Squamous cell papilloma, inverted: - text: Squamous cell papilloma, inverted - Sarcoma, NOS: - text: Sarcoma, NOS - Subacute myeloid leukemia: - text: Subacute myeloid leukemia - Intraepithelial carcinoma, NOS: - text: Intraepithelial carcinoma, NOS - M6B: - text: M6B - Comedocarcinoma, NOS: - text: Comedocarcinoma, NOS - Adenocarcinoma in situ, NOS: - text: Adenocarcinoma in situ, NOS - Pineocytoma: - text: Pineocytoma - Hodgkin lymphoma, mixed cellularity, NOS: - text: Hodgkin lymphoma, mixed cellularity, NOS - Hepatoma, benign: - text: Hepatoma, benign - Pilar tumor: - text: Pilar tumor - Synovial sarcoma, NOS: - text: Synovial sarcoma, NOS - Thecoma, NOS: - text: Thecoma, NOS - Serous microcystic adenoma: - text: Serous microcystic adenoma - Acinar cell adenoma: - text: Acinar cell adenoma - Glioblastoma, IDH-mutant: - text: Glioblastoma, IDH-mutant - Diffuse astrocytoma, IDH-mutant: - text: Diffuse astrocytoma, IDH-mutant - Condylomatous carcinoma: - text: Condylomatous carcinoma - Follicular carcinoma, trabecular: - text: Follicular carcinoma, trabecular - Malignant lymphoma, lymphoplasmacytic: - text: Malignant lymphoma, lymphoplasmacytic - Solid and papillary epithelial neoplasm: - text: Solid and papillary epithelial neoplasm - Mullerian mixed tumor: - text: Mullerian mixed tumor - Papillary microcarcinoma: - text: Papillary microcarcinoma - Melanotic progonoma: - text: Melanotic progonoma - Melanotic schwannoma: - text: Melanotic schwannoma - Ductal intraepithelial neoplasia 3: - text: Ductal intraepithelial neoplasia 3 - Juvenile melanoma: - text: Juvenile melanoma - Malignant serous adenofibroma: - text: Malignant serous adenofibroma - Intraductal papilloma with ductal carcinoma in situ: - text: Intraductal papilloma with ductal carcinoma in situ - Non-invasive follicular thyroid neoplasm with papillary-like nuclear features (NIFTP): - text: Non-invasive follicular thyroid neoplasm with papillary-like nuclear - features (NIFTP) - Periapical cemental dysplasia: - text: Periapical cemental dysplasia - Paget disease, mammary: - text: Paget disease, mammary - Schneiderian papilloma, inverted: - text: Schneiderian papilloma, inverted - Sinonasal papilloma, NOS: - text: Sinonasal papilloma, NOS - Alpha cell tumor, malignant: - text: Alpha cell tumor, malignant - Infiltrating lobular mixed with other types of carcinoma: - text: Infiltrating lobular mixed with other types of carcinoma - Oligoastrocytoma: - text: Oligoastrocytoma - description: Oligoastrocytoma - Proliferating trichilemmal cyst: - text: Proliferating trichilemmal cyst - Well differentiated thymic carcinoma: - text: Well differentiated thymic carcinoma - Diktyoma, malignant: - text: Diktyoma, malignant - Periosteal chondrosarcoma: - text: Periosteal chondrosarcoma - Atypical fibrous histiocytoma: - text: Atypical fibrous histiocytoma - Mucinous adenocarcinofibroma: - text: Mucinous adenocarcinofibroma - Mixed cell adenocarcinoma: - text: Mixed cell adenocarcinoma - Large cell medulloblastoma: - text: Large cell medulloblastoma - Chronic myelomonocytic leukemia in transformation: - text: Chronic myelomonocytic leukemia in transformation - Tubulolobular carcinoma: - text: Tubulolobular carcinoma - Leiomyoblastoma: - text: Leiomyoblastoma - Subependymal glioma: - text: Subependymal glioma - Hodgkin lymphoma, nodular sclerosis, cellular phase: - text: Hodgkin lymphoma, nodular sclerosis, cellular phase - Adenocarcinoma in a polyp, NOS: - text: Adenocarcinoma in a polyp, NOS - Pro-B ALL: - text: Pro-B ALL - Adenocarcinoma, pancreatobiliary type: - text: Adenocarcinoma, pancreatobiliary type - Tubulopapillary adenocarcinoma: - text: Tubulopapillary adenocarcinoma - Myelolipoma: - text: Myelolipoma - Diffuse large B-cell lymphoma, NOS: - text: Diffuse large B-cell lymphoma, NOS - Fibromyoma: - text: Fibromyoma - Interdigitating dendritic cell sarcoma: - text: Interdigitating dendritic cell sarcoma - Large B-cell lymphoma arising in HHV8-associated multicentric Castleman disease: - text: Large B-cell lymphoma arising in HHV8-associated multicentric Castleman - disease - Squamous intraepithelial neoplasia, grade I: - text: Squamous intraepithelial neoplasia, grade I - Ganglioglioma, anaplastic: - text: Ganglioglioma, anaplastic - Eosinophil carcinoma: - text: Eosinophil carcinoma - Papilloma of bladder: - text: Papilloma of bladder - Warty carcinoma: - text: Warty carcinoma - Malignant lymphoma, mixed cell type, diffuse: - text: Malignant lymphoma, mixed cell type, diffuse - Mixed tumor, salivary gland type, NOS: - text: Mixed tumor, salivary gland type, NOS - Myeloid and lymphoid neoplasms with PDGFRA rearrangement: - text: Myeloid and lymphoid neoplasms with PDGFRA rearrangement - Mucoepidermoid tumor: - text: Mucoepidermoid tumor - Hodgkin granuloma: - text: Hodgkin granuloma - Metaplastic carcinoma with osseous differentiation: - text: Metaplastic carcinoma with osseous differentiation - Blastic NK cell lymphoma: - text: Blastic NK cell lymphoma - Intraductal micropapillary carcinoma: - text: Intraductal micropapillary carcinoma - Granular cell tumor, NOS: - text: Granular cell tumor, NOS - Letterer-Siwe disease: - text: Letterer-Siwe disease - Epithelioma, malignant: - text: Epithelioma, malignant - Clear cell adenofibroma: - text: Clear cell adenofibroma - Biliary intraepithelial neoplasia, high grade: - text: Biliary intraepithelial neoplasia, high grade - Endometrial sarcoma, NOS: - text: Endometrial sarcoma, NOS - Indeterminate dendritic cell tumor: - text: Indeterminate dendritic cell tumor - Cellular leiomyoma: - text: Cellular leiomyoma - Mixed cell adenoma: - text: Mixed cell adenoma - Theca cell-granulosa cell tumor: - text: Theca cell-granulosa cell tumor - Dysgerminoma: - text: Dysgerminoma - description: Ovarian Dysgerminoma - Carcinoma, undifferentiated, NOS: - text: Carcinoma, undifferentiated, NOS - Gastrointestinal stromal tumor, benign: - text: Gastrointestinal stromal tumor, benign - Ectopic hamartomatous thymoma: - text: Ectopic hamartomatous thymoma - Subacute monocytic leukemia: - text: Subacute monocytic leukemia - Non-invasive encapsulated follicular variant of papillary thyroid carcinoma (non-invasive EFVPTC): - text: Non-invasive encapsulated follicular variant of papillary thyroid carcinoma - (non-invasive EFVPTC) - True histiocytic lymphoma: - text: True histiocytic lymphoma - Rhabdosarcoma: - text: Rhabdosarcoma - Plexiform fibrohistiocytic tumor: - text: Plexiform fibrohistiocytic tumor - Intramuscular lipoma: - text: Intramuscular lipoma - Malignant mastocytosis: - text: Malignant mastocytosis - Pseudomucinous cystadenoma, NOS: - text: Pseudomucinous cystadenoma, NOS - Carcinoid tumor of uncertain malignant potential: - text: Carcinoid tumor of uncertain malignant potential - Brown fat tumor: - text: Brown fat tumor - Lipoma, NOS: - text: Lipoma, NOS - Sinonasal papilloma, exophytic: - text: Sinonasal papilloma, exophytic - B lymphoblastic leukemia/lymphoma with hypodiploidy (Hypodiploid ALL): - text: B lymphoblastic leukemia/lymphoma with hypodiploidy (Hypodiploid ALL) - Mesonephric tumor, NOS: - text: Mesonephric tumor, NOS - Malignant lymphoma, large cell, cleaved and noncleaved: - text: Malignant lymphoma, large cell, cleaved and noncleaved - Adenocarcinoma with spindle cell metaplasia: - text: Adenocarcinoma with spindle cell metaplasia - Mucinous carcinoma: - text: Mucinous carcinoma - Mesonephric adenocarcinoma: - text: Mesonephric adenocarcinoma - Heavy chain disease, NOS: - text: Heavy chain disease, NOS - Tumor embolus: - text: Tumor embolus - Epidermoid carcinoma in situ, NOS: - text: Epidermoid carcinoma in situ, NOS - Plasmablastic lymphoma: - text: Plasmablastic lymphoma - Biliary intraepithelial neoplasia, low grade: - text: Biliary intraepithelial neoplasia, low grade - Astrocytic glioma: - text: Astrocytic glioma - Malignant fibrous histiocytoma: - text: Malignant fibrous histiocytoma - Inflammatory liposarcoma: - text: Inflammatory liposarcoma - Tumorlet, NOS: - text: Tumorlet, NOS - Intraductal papillary-mucinous carcinoma, invasive: - text: Intraductal papillary-mucinous carcinoma, invasive - Haemangioblastoma: - text: Haemangioblastoma - Metaplastic carcinoma of no special type: - text: Metaplastic carcinoma of no special type - Cystic tumor of atrio-ventricular node: - text: Cystic tumor of atrio-ventricular node - Bronchiolo-alveolar carcinoma, goblet cell type: - text: Bronchiolo-alveolar carcinoma, goblet cell type - Monoblastic leukemia, NOS: - text: Monoblastic leukemia, NOS - Mast cell tumor, NOS: - text: Mast cell tumor, NOS - Papillary and follicular adenocarcinoma: - text: Papillary and follicular adenocarcinoma - Plasmacytic lymphoma: - text: Plasmacytic lymphoma - Common ALL: - text: Common ALL - Endometrioid adenocarcinoma, secretory variant: - text: Endometrioid adenocarcinoma, secretory variant - Syringofibroadenoma: - text: Syringofibroadenoma - AML M6: - text: AML M6 - Invasive lobular carcinoma, solid type: - text: Invasive lobular carcinoma, solid type - Water-clear cell carcinoma: - text: Water-clear cell carcinoma - Secretory meningioma: - text: Secretory meningioma - Ewing tumor: - text: Ewing tumor - Malignant lymphoma, centrocytic: - text: Malignant lymphoma, centrocytic - Hereditary leiomyomatosis & RCC-associated renal cell carcinoma: - text: Hereditary leiomyomatosis & RCC-associated renal cell carcinoma - Acute myloid leukemia, 11q23 abnormalities: - text: Acute myloid leukemia, 11q23 abnormalities - Refractory anemia with excess blasts in transformation: - text: Refractory anemia with excess blasts in transformation - Malignant lymphoma, lymphocytic, well differentiated, nodular: - text: Malignant lymphoma, lymphocytic, well differentiated, nodular - Meningioma, NOS: - text: Meningioma, NOS - Microcystic meningioma: - text: Microcystic meningioma - Micropapillary carcinoma, NOS: - text: Micropapillary carcinoma, NOS - Carcinoma simplex: - text: Carcinoma simplex - Mixed subependymoma-ependymoma: - text: Mixed subependymoma-ependymoma - Adenocarcinoma in situ in polypoid adenoma: - text: Adenocarcinoma in situ in polypoid adenoma - Langerhans cell histiocytosis, disseminated: - text: Langerhans cell histiocytosis, disseminated - Embryonal tumor with rhabdoid features: - text: Embryonal tumor with rhabdoid features - Skin appendage adenoma: - text: Skin appendage adenoma - Primary cutaneous CD8-positive aggressive epidermotropic cytotoxic T-cell lymphoma: - text: Primary cutaneous CD8-positive aggressive epidermotropic cytotoxic T-cell - lymphoma - Rhabdoid meningioma: - text: Rhabdoid meningioma - Hypernephroma: - text: Hypernephroma - Hepatocarcinoma: - text: Hepatocarcinoma - Immunoglobulin deposition disease: - text: Immunoglobulin deposition disease - Intraductal carcinoma, clinging: - text: Intraductal carcinoma, clinging - Follicular carcinoma, NOS: - text: Follicular carcinoma, NOS - Malignant lymphoma, small cleaved cell, diffuse: - text: Malignant lymphoma, small cleaved cell, diffuse - Refractory anemia with excess blasts: - text: Refractory anemia with excess blasts - Papillary cystadenocarcinoma, NOS: - text: Papillary cystadenocarcinoma, NOS - Medulloepithelioma, benign: - text: Medulloepithelioma, benign - Osteochondromatosis, NOS: - text: Osteochondromatosis, NOS - Mixed medullary-papillary carcinoma: - text: Mixed medullary-papillary carcinoma - Subacute granulocytic leukemia: - text: Subacute granulocytic leukemia - Large cell carcinoma, NOS: - text: Large cell carcinoma, NOS - Spindled mesothelioma: - text: Spindled mesothelioma - Fetal rhabdomyoma: - text: Fetal rhabdomyoma - Malignant lymphoma, lymphocytic, intermediate differentiation, nodular: - text: Malignant lymphoma, lymphocytic, intermediate differentiation, nodular - Angioimmunoblastic T-cell lymphoma: - text: Angioimmunoblastic T-cell lymphoma - Transitional cell papilloma, inverted, NOS: - text: Transitional cell papilloma, inverted, NOS - Refractory anemia with ringed sideroblasts: - text: Refractory anemia with ringed sideroblasts - Giant cell fibroblastoma: - text: Giant cell fibroblastoma - Burkitt-like lymphoma: - text: Burkitt-like lymphoma - Spongioblastoma multiforme: - text: Spongioblastoma multiforme - Mixed squamous cell and glandular papilloma: - text: Mixed squamous cell and glandular papilloma - Cutaneous histiocytoma, NOS: - text: Cutaneous histiocytoma, NOS - Immature teratoma, malignant: - text: Immature teratoma, malignant - Lymphoepithelioma: - text: Lymphoepithelioma - Mucinous cystic tumor with moderate dysplasia: - text: Mucinous cystic tumor with moderate dysplasia - GIST, malignant: - text: GIST, malignant - Myxoma, NOS: - text: Myxoma, NOS - Papillary neoplasm, pancreatobiliary-type, with high grade intraepithelial neoplasia: - text: Papillary neoplasm, pancreatobiliary-type, with high grade intraepithelial - neoplasia - NUT midline carcinoma: - text: NUT midline carcinoma - Preleukemia: - text: Preleukemia - Codman tumor: - text: Codman tumor - Primitive neuroectodermal tumor, NOS: - text: Primitive neuroectodermal tumor, NOS - Ganglioglioma, NOS: - text: Ganglioglioma, NOS - Luteoma, NOS: - text: Luteoma, NOS - Acute myeloid leukemia, PML/RAR-alpha: - text: Acute myeloid leukemia, PML/RAR-alpha - Adenoma, NOS: - text: Adenoma, NOS - Transitional cell carcinoma, spindle cell: - text: Transitional cell carcinoma, spindle cell - Intracystic papillary tumor with high grade entraepithelial neoplasia: - text: Intracystic papillary tumor with high grade entraepithelial neoplasia - Nesidioblastoma: - text: Nesidioblastoma - Malignant lymphoma, large cell, cleaved, NOS: - text: Malignant lymphoma, large cell, cleaved, NOS - Lipid-rich Sertoli cell tumor: - text: Lipid-rich Sertoli cell tumor - Bronchiolo-alveolar carcinoma, indeterminate type: - text: Bronchiolo-alveolar carcinoma, indeterminate type - Intraductal papillary adenocarcinoma, NOS: - text: Intraductal papillary adenocarcinoma, NOS - Ependymoma, NOS: - text: Ependymoma, NOS - Abdominal fibromatosis: - text: Abdominal fibromatosis - Hepatoid carcinoma: - text: Hepatoid carcinoma - Squamous cell carcinoma, HPV-negative: - text: Squamous cell carcinoma, HPV-negative - Spermatocytoma: - text: Spermatocytoma - Unclassified tumor, malignant: - text: Unclassified tumor, malignant - Follicular lymphoma, NOS: - text: Follicular lymphoma, NOS - Paget disease of breast: - text: Paget disease of breast - Malignant lymphoma, convoluted cell: - text: Malignant lymphoma, convoluted cell - Botryoid sarcoma: - text: Botryoid sarcoma - Hodgkin disease, nodular sclerosis, lymphocyte predominance: - text: Hodgkin disease, nodular sclerosis, lymphocyte predominance - Ossifying renal tumor: - text: Ossifying renal tumor - Fetal adenoma: - text: Fetal adenoma - Follicular carcinoma, oxyphilic cell: - text: Follicular carcinoma, oxyphilic cell - Angioimmunoblastic lymphadenopathy: - text: Angioimmunoblastic lymphadenopathy - Marginal zone B-cell lymphoma, NOS: - text: Marginal zone B-cell lymphoma, NOS - Granulocytic sarcoma: - text: Granulocytic sarcoma - Medulloblastoma, NOS: - text: Medulloblastoma, NOS - Oncocytic Schneiderian papilloma: - text: Oncocytic Schneiderian papilloma - Squamous cell carcinoma, small cell, nonkeratinizing: - text: Squamous cell carcinoma, small cell, nonkeratinizing - Cribriform carcinoma in situ: - text: Cribriform carcinoma in situ - Clear cell sarcoma, of tendons and aponeuroses: - text: Clear cell sarcoma, of tendons and aponeuroses - ECL cell carcinoid, malignant: - text: ECL cell carcinoid, malignant - Tumorlet, benign: - text: Tumorlet, benign - Schmincke tumor: - text: Schmincke tumor - B-cell lymphocytic leukemia/small lymphocytic lymphoma: - text: B-cell lymphocytic leukemia/small lymphocytic lymphoma - Adenocarcinoma, diffuse type: - text: Adenocarcinoma, diffuse type - Periosteal sarcoma, NOS: - text: Periosteal sarcoma, NOS - Lymphosarcoma, diffuse: - text: Lymphosarcoma, diffuse - Hodgkin disease, lymphocytic-histiocytic predominance: - text: Hodgkin disease, lymphocytic-histiocytic predominance - Invasive micropapillary carcinoma: - text: Invasive micropapillary carcinoma - Sarcomatoid mesothelioma: - text: Sarcomatoid mesothelioma - description: Sarcomatoid Mesothelioma - Burkitt cell leukemia: - text: Burkitt cell leukemia - Aggressive fibromatosis: - text: Aggressive fibromatosis - Metaplastic meningioma: - text: Metaplastic meningioma - Poorly cohesive carcinoma: - text: Poorly cohesive carcinoma - Adrenal cortical adenoma, NOS: - text: Adrenal cortical adenoma, NOS - Multiple myeloma: - text: Multiple myeloma - Pituitary carcinoma, NOS: - text: Pituitary carcinoma, NOS - Malignant lymphoma, centroblasticcentrocytic, NOS: - text: Malignant lymphoma, centroblasticcentrocytic, NOS - Fibromyxolipoma: - text: Fibromyxolipoma - Neuroma, NOS: - text: Neuroma, NOS - Somatostatinoma, malignant: - text: Somatostatinoma, malignant - Papillary cystic tumor: - text: Papillary cystic tumor - Secretory carcinoma of breast: - text: Secretory carcinoma of breast - Angiocentric immunoproliferative lesion: - text: Angiocentric immunoproliferative lesion - Sex cord-gonadal stromal tumor, mixed forms: - text: Sex cord-gonadal stromal tumor, mixed forms - Chondroid lipoma: - text: Chondroid lipoma - Hodgkin paragranuloma, NOS: - text: Hodgkin paragranuloma, NOS - Combined large cell neuroendocrine carcinoma: - text: Combined large cell neuroendocrine carcinoma - EC cell carcinoid: - text: EC cell carcinoid - Nested urothelial carcinoma: - text: Nested urothelial carcinoma - Hypernephroid tumor: - text: Hypernephroid tumor - Genital rhabdomyoma: - text: Genital rhabdomyoma - Cylindrical cell papilloma: - text: Cylindrical cell papilloma - Epithelioid glioblastoma: - text: Epithelioid glioblastoma - Neurocytoma: - text: Neurocytoma - Transitional cell carcinoma: - text: Transitional cell carcinoma - description: Ovarian Transitional Cell Carcinoma - Pleomorphic lobular carcinoma: - text: Pleomorphic lobular carcinoma - Lobular adenocarcinoma: - text: Lobular adenocarcinoma - Nephrogenic adenofibroma: - text: Nephrogenic adenofibroma - Histiocyte-rich large B-cell lymphoma: - text: Histiocyte-rich large B-cell lymphoma - Glioma, malignant: - text: Glioma, malignant - Angiomyxoma: - text: Angiomyxoma - Villous adenocarcinoma: - text: Villous adenocarcinoma - Intracystic papillary adenocarcinoma: - text: Intracystic papillary adenocarcinoma - Encapsulated papillary carcinoma with invasion: - text: Encapsulated papillary carcinoma with invasion - Juvenile histiocytoma: - text: Juvenile histiocytoma - Mesodermal mixed tumor: - text: Mesodermal mixed tumor - Ameloblastic odontosarcoma: - text: Ameloblastic odontosarcoma - Glandular papilloma: - text: Glandular papilloma - Pancreatoblastoma: - text: Pancreatoblastoma - description: Pancreatoblastoma - Capillary lymphangioma: - text: Capillary lymphangioma - Pick tubular adenoma: - text: Pick tubular adenoma - Tubular carcinoma: - text: Tubular carcinoma - Dedifferentiated chordoma: - text: Dedifferentiated chordoma - FAB L2: - text: FAB L2 - Tumor, metastatic: - text: Tumor, metastatic - Sympathicoblastoma: - text: Sympathicoblastoma - DCIS, comedo type: - text: DCIS, comedo type - Extra-abdominal desmoid: - text: Extra-abdominal desmoid - Interdigitating cell sarcoma: - text: Interdigitating cell sarcoma - Cortical T ALL: - text: Cortical T ALL - Congenital fibrosarcoma: - text: Congenital fibrosarcoma - Spindle cell rhabdomyosarcoma: - text: Spindle cell rhabdomyosarcoma - Intraductal papillary adenocarcinoma with invasion: - text: Intraductal papillary adenocarcinoma with invasion - Strumal carcinoid: - text: Strumal carcinoid - Papillomatosis, glandular: - text: Papillomatosis, glandular - Oncocytic adenocarcinoma: - text: Oncocytic adenocarcinoma - Racemose hemangioma: - text: Racemose hemangioma - Osteoma, NOS: - text: Osteoma, NOS - Clear cell tumor, NOS: - text: Clear cell tumor, NOS - Prostatic intraepithelial neoplasia, grade III: - text: Prostatic intraepithelial neoplasia, grade III - Clear cell cystadenofibroma: - text: Clear cell cystadenofibroma - Thymoma, type B2, NOS: - text: Thymoma, type B2, NOS - Basal cell carcinoma, micronodular: - text: Basal cell carcinoma, micronodular - Differentiated penile intraepithelial neoplasia: - text: Differentiated penile intraepithelial neoplasia - Ependymoma, anaplastic: - text: Ependymoma, anaplastic - Follicular lymphoma, grade 3: - text: Follicular lymphoma, grade 3 - Infiltrating angiolipoma: - text: Infiltrating angiolipoma - Arteriovenous hemangioma: - text: Arteriovenous hemangioma - Infiltrating duct adenocarcinoma: - text: Infiltrating duct adenocarcinoma - Luteinoma: - text: Luteinoma - Infantile hemangioma: - text: Infantile hemangioma - Papillary mucinous tumor of low malignant potential: - text: Papillary mucinous tumor of low malignant potential - Pericanalicular fibroadenoma: - text: Pericanalicular fibroadenoma - Chronic lymphocytic leukemia: - text: Chronic lymphocytic leukemia - Thymoma, lymphocyte-rich, malignant: - text: Thymoma, lymphocyte-rich, malignant - Mucinous tumor, NOS, of low malignant potential: - text: Mucinous tumor, NOS, of low malignant potential - Nephroma, NOS: - text: Nephroma, NOS - Cystic astrocytoma: - text: Cystic astrocytoma - Malignant lymphoma, undifferentiated, Burkitt type: - text: Malignant lymphoma, undifferentiated, Burkitt type - Carotid body paraganglioma: - text: Carotid body paraganglioma - Pheochromocytoma, malignant: - text: Pheochromocytoma, malignant - B lymphoblastic leukemia/lymphoma with t(12;21)(p13;q22); TEL-AML1 (ETV6-RUNX1): - text: B lymphoblastic leukemia/lymphoma with t(12;21)(p13;q22); TEL-AML1 (ETV6-RUNX1) - Granulosa cell tumor, sarcomatoid: - text: Granulosa cell tumor, sarcomatoid - Transitional meningioma: - text: Transitional meningioma - Systemic tissue mast cell disease: - text: Systemic tissue mast cell disease - Complex odontoma: - text: Complex odontoma - Adenocarcinoma with mixed subtypes: - text: Adenocarcinoma with mixed subtypes - Complete hydatidiform mole: - text: Complete hydatidiform mole - Malignant lymphoma, noncleaved cell, follicular, NOS: - text: Malignant lymphoma, noncleaved cell, follicular, NOS - Chronic lymphoproliferative disorder of NK cells: - text: Chronic lymphoproliferative disorder of NK cells - Chondrosarcoma grade 2/3: - text: Chondrosarcoma grade 2/3 - Synovioma, NOS: - text: Synovioma, NOS - Cribriform carcinoma, NOS: - text: Cribriform carcinoma, NOS - Acute myeloid leukaemia, t(8;21)(q22;q22): - text: Acute myeloid leukaemia, t(8;21)(q22;q22) - Intraductal papillary neoplasm with high grade dysplasia: - text: Intraductal papillary neoplasm with high grade dysplasia - Adrenal cortical tumor, malignant: - text: Adrenal cortical tumor, malignant - Adenocarcinoma with squamous metaplasia: - text: Adenocarcinoma with squamous metaplasia - Trichilemmal carcinoma: - text: Trichilemmal carcinoma - Papillary glioneuronal tumor: - text: Papillary glioneuronal tumor - Adamantinoma, NOS: - text: Adamantinoma, NOS - Microcystic adenoma: - text: Microcystic adenoma - Pigmented basal cell carcinoma: - text: Pigmented basal cell carcinoma - Malignancy: - text: Malignancy - Embryonal carcinoma, polyembryonal type: - text: Embryonal carcinoma, polyembryonal type - Polymorphous low grade adenocarcinoma: - text: Polymorphous low grade adenocarcinoma - Adenocarcinoma, NOS: - text: Adenocarcinoma, NOS - Acidophil adenoma: - text: Acidophil adenoma - Stromal sarcoma, NOS: - text: Stromal sarcoma, NOS - Pre-B ALL: - text: Pre-B ALL - FAB M5 (includes all variants): - text: FAB M5 (includes all variants) - Steroid cell tumor, NOS: - text: Steroid cell tumor, NOS - Regressing nevus: - text: Regressing nevus - Follicular lymphoma, grade 1: - text: Follicular lymphoma, grade 1 - Giant cell and spindle cell carcinoma: - text: Giant cell and spindle cell carcinoma - Fibrochondrosarcoma: - text: Fibrochondrosarcoma - Clear cell adenocarcinoma, mesonephroid: - text: Clear cell adenocarcinoma, mesonephroid - Sex cord tumor with annular tubules: - text: Sex cord tumor with annular tubules - Odontogenic fibroma, NOS: - text: Odontogenic fibroma, NOS - Black adenoma: - text: Black adenoma - Sezary disease: - text: Sezary disease - Serous adenofibroma of borderline malignancy: - text: Serous adenofibroma of borderline malignancy - Leukemia, NOS: - text: Leukemia, NOS - Plexiform neuroma: - text: Plexiform neuroma - Papillary squamous cell carcinoma, non-invasive: - text: Papillary squamous cell carcinoma, non-invasive - Clear cell cystadenoma: - text: Clear cell cystadenoma - Malignant lymphoma, small B lymphocytic, NOS: - text: Malignant lymphoma, small B lymphocytic, NOS - Anal intraepithelial neoplasia, grade III: - text: Anal intraepithelial neoplasia, grade III - Lepidic predominant adenocarcinoma: - text: Lepidic predominant adenocarcinoma - description: Lepidic Predominant Adenocarcinoma - Malignant midline reticulosis: - text: Malignant midline reticulosis - Atypical proliferative mucinous tumor: - text: Atypical proliferative mucinous tumor - Mesenchymal tumor, malignant: - text: Mesenchymal tumor, malignant - Follicular lymphoma, small cleaved cell: - text: Follicular lymphoma, small cleaved cell - Aorticopulmonary paraganglioma: - text: Aorticopulmonary paraganglioma - Sessile serrated adenoma: - text: Sessile serrated adenoma - Aggressive angiomyxoma: - text: Aggressive angiomyxoma - Micropapillary adenocarcinoma: - text: Micropapillary adenocarcinoma - Carcinosarcoma, embryonal: - text: Carcinosarcoma, embryonal - Acute myeloid leukemia with mutated CEBPA: - text: Acute myeloid leukemia with mutated CEBPA - Primary effusion lymphoma: - text: Primary effusion lymphoma - Myelosclerosis with myeloid metaplasia: - text: Myelosclerosis with myeloid metaplasia - Splenic B-cell lymphoma/leukemia, unclassifiable: - text: Splenic B-cell lymphoma/leukemia, unclassifiable - Juvenile carcinoma of breast: - text: Juvenile carcinoma of breast - Aleukemic leukemia, NOS: - text: Aleukemic leukemia, NOS - Choroid plexus papilloma, malignant: - text: Choroid plexus papilloma, malignant - Lobular carcinoma, noninfiltrating: - text: Lobular carcinoma, noninfiltrating - Papillary squamous cell carcinoma: - text: Papillary squamous cell carcinoma - Astroblastoma: - text: Astroblastoma - Malignant lymphoma, mixed lymphocytic-histiocytic, diffuse: - text: Malignant lymphoma, mixed lymphocytic-histiocytic, diffuse - Islet cell adenoma: - text: Islet cell adenoma - Schneiderian papilloma, NOS: - text: Schneiderian papilloma, NOS - Malignant lymphoma, cleaved cell, NOS: - text: Malignant lymphoma, cleaved cell, NOS - Hepatocellular carcinoma, spindle cell variant: - text: Hepatocellular carcinoma, spindle cell variant - Teratoblastoma, malignant: - text: Teratoblastoma, malignant - Intraductal papillomatosis, NOS: - text: Intraductal papillomatosis, NOS - Adenomyoma: - text: Adenomyoma - Phosphaturic mesenchymal tumor, malignant: - text: Phosphaturic mesenchymal tumor, malignant - Squamous cell carcinoma in situ, NOS: - text: Squamous cell carcinoma in situ, NOS - Anal intraepithelial neoplasia, low grade: - text: Anal intraepithelial neoplasia, low grade - Urticaria pigmentosa: - text: Urticaria pigmentosa - Chronic eosinophilic leukemia, NOS: - text: Chronic eosinophilic leukemia, NOS - Mucinous cystic neoplasm with intermediate-grade dysplasia: - text: Mucinous cystic neoplasm with intermediate-grade dysplasia - Diffuse meningiomatosis: - text: Diffuse meningiomatosis - Hemangioma simplex: - text: Hemangioma simplex - Cutaneous lymphoma, NOS: - text: Cutaneous lymphoma, NOS - Dysplastic nevus: - text: Dysplastic nevus - Trichodiscoma: - text: Trichodiscoma - Plasmacytic leukemia: - text: Plasmacytic leukemia - CIN III with severe dysplasia: - text: CIN III with severe dysplasia - Intraductal carcinoma, NOS: - text: Intraductal carcinoma, NOS - Esophageal glandular dysplasia (intraepithelial neoplasia), high grade: - text: Esophageal glandular dysplasia (intraepithelial neoplasia), high grade - Giant fibroadenoma: - text: Giant fibroadenoma - Papillary adenofibroma: - text: Papillary adenofibroma - Anaplastic oligodendroglioma, IDH-mutant and 1p/19q-codeleted: - text: Anaplastic oligodendroglioma, IDH-mutant and 1p/19q-codeleted - Ameloblastoma, NOS: - text: Ameloblastoma, NOS - Round cell liposarcoma: - text: Round cell liposarcoma - Typical carcinoid: - text: Typical carcinoid - Acquired tufted hemangioma: - text: Acquired tufted hemangioma - Plexiform fibromyxoma: - text: Plexiform fibromyxoma - Lipoblastomatosis: - text: Lipoblastomatosis - Juxtacortical osteosarcoma: - text: Juxtacortical osteosarcoma - Lymphomatoid papulosis: - text: Lymphomatoid papulosis - Spermatocytic seminoma: - text: Spermatocytic seminoma - Hodgkin paragranuloma, nodular: - text: Hodgkin paragranuloma, nodular - Malignant lymphoma, undifferentiated cell, non-Burkitt: - text: Malignant lymphoma, undifferentiated cell, non-Burkitt - Primary cutaneous gamma-delta T-cell lymphoma: - text: Primary cutaneous gamma-delta T-cell lymphoma - Mixed acidophil-basophil carcinoma: - text: Mixed acidophil-basophil carcinoma - Retroperitoneal fibromatosis: - text: Retroperitoneal fibromatosis - Unclassified tumor, benign: - text: Unclassified tumor, benign - Multicystic mesothelioma, benign: - text: Multicystic mesothelioma, benign - Spindle cell sarcoma: - text: Spindle cell sarcoma - Juvenile angiofibroma: - text: Juvenile angiofibroma - Malignant lymphoma, follicle center, NOS: - text: Malignant lymphoma, follicle center, NOS - Chief cell adenoma: - text: Chief cell adenoma - Fibroblastic osteosarcoma: - text: Fibroblastic osteosarcoma - Glomangiosarcoma: - text: Glomangiosarcoma - Intraductal papillary neoplasm with low grade intraepithelial neoplasia: - text: Intraductal papillary neoplasm with low grade intraepithelial neoplasia - Acute myelomonocytic leukemia with abnormal eosinophils: - text: Acute myelomonocytic leukemia with abnormal eosinophils - Mesenchymoma, benign: - text: Mesenchymoma, benign - Papillary pseudomucinous cystadenoma, NOS: - text: Papillary pseudomucinous cystadenoma, NOS - Desmoplastic nodular medulloblastoma: - text: Desmoplastic nodular medulloblastoma - Choriocarcinoma combined with teratorna: - text: Choriocarcinoma combined with teratorna - Subacute lymphoid leukemia: - text: Subacute lymphoid leukemia - Intraductal papillary mucinous neoplasm (IPMN) with an associated invasive carcinoma: - text: Intraductal papillary mucinous neoplasm (IPMN) with an associated invasive - carcinoma - Nonencapsulated sclerosing carcinoma: - text: Nonencapsulated sclerosing carcinoma - Bile duct adenocarcinoma: - text: Bile duct adenocarcinoma - Epithelioma adenoides cysticum: - text: Epithelioma adenoides cysticum - Papillary carcinoma in situ: - text: Papillary carcinoma in situ - Fibroblastic meningioma: - text: Fibroblastic meningioma - Mucinous cystic tumor with low grade dysplasia: - text: Mucinous cystic tumor with low grade dysplasia - Squamous cell carcinoma with horn formation: - text: Squamous cell carcinoma with horn formation - Sex cord tumor, NOS: - text: Sex cord tumor, NOS - Odontogenic tumor, malignant: - text: Odontogenic tumor, malignant - Krukenberg tumor: - text: Krukenberg tumor - Piloid astrocytoma: - text: Piloid astrocytoma - Epithelioid hemangioendothelioma, NOS: - text: Epithelioid hemangioendothelioma, NOS - Mixed islet cell and exocrine adenocarcinoma: - text: Mixed islet cell and exocrine adenocarcinoma - Neoplasm, uncertain whether benign or malignant: - text: Neoplasm, uncertain whether benign or malignant - Myofibroblastic tumor, NOS: - text: Myofibroblastic tumor, NOS - Brenner tumor, NOS: - text: Brenner tumor, NOS - Angioblastic meningioma: - text: Angioblastic meningioma - Monoclonal gammopathy of undetermined significance: - text: Monoclonal gammopathy of undetermined significance - Polycythemia rubra vera: - text: Polycythemia rubra vera - Pigmented schwannoma: - text: Pigmented schwannoma - Follicular adenoma, oxyphilic cell: - text: Follicular adenoma, oxyphilic cell - Fibrous histiocytoma of tendon sheath: - text: Fibrous histiocytoma of tendon sheath - T-cell rich/histiocyte-rich large B-cell lymphoma: - text: T-cell rich/histiocyte-rich large B-cell lymphoma - Subareolar duct papillomatosis: - text: Subareolar duct papillomatosis - Hemolymphangioma: - text: Hemolymphangioma - Large cell (Ki-1+) lymphoma: - text: Large cell (Ki-1+) lymphoma - Tumor, secondary: - text: Tumor, secondary - Pinkus tumor: - text: Pinkus tumor - Tubulo-papillary adenoma: - text: Tubulo-papillary adenoma - Ameloblastic fibro-odontosarcoma: - text: Ameloblastic fibro-odontosarcoma - Stromal tumor, benign: - text: Stromal tumor, benign - Endocrine adenomatosis: - text: Endocrine adenomatosis - Enchondroma: - text: Enchondroma - Stem cell leukemia: - text: Stem cell leukemia - Brenner tumor, malignant: - text: Brenner tumor, malignant - Myelodysplastic syndrome with isolated del (5q): - text: Myelodysplastic syndrome with isolated del (5q) - Esthesioneuroblastoma: - text: Esthesioneuroblastoma - Embryonal sarcoma: - text: Embryonal sarcoma - Unknown: - text: Unknown - description: Unknown - Sessile serrated polyp: - text: Sessile serrated polyp - Tubular adenoma, NOS: - text: Tubular adenoma, NOS - Fibroxanthoma, NOS: - text: Fibroxanthoma, NOS - Therapy-related acute myeloid leukemia, epipodophyllotoxin-related: - text: Therapy-related acute myeloid leukemia, epipodophyllotoxin-related - Acute monoblastic and monocytic leukemia: - text: Acute monoblastic and monocytic leukemia - Neoplasm, malignant, uncertain whether primary or metastatic: - text: Neoplasm, malignant, uncertain whether primary or metastatic - Androblastoma, benign: - text: Androblastoma, benign - Intracystic papillary neoplasm with low grade intraepithelial neoplasia: - text: Intracystic papillary neoplasm with low grade intraepithelial neoplasia - Central neurocytoma: - text: Central neurocytoma - Wolffian duct adenoma: - text: Wolffian duct adenoma - Malignant lymphoma, large B-cell, diffuse, centroblastic, NOS: - text: Malignant lymphoma, large B-cell, diffuse, centroblastic, NOS - Invasive lobular carcinoma, alveolar type: - text: Invasive lobular carcinoma, alveolar type - Periosteal chondroma: - text: Periosteal chondroma - Malignant serous cystadenofibroma: - text: Malignant serous cystadenofibroma - Peripheral T-cell lymphoma, AILD (Angioimmunoblastic Lymphadenopathy with Dysproteinemia): - text: Peripheral T-cell lymphoma, AILD (Angioimmunoblastic Lymphadenopathy - with Dysproteinemia) - Angiolipoma, NOS: - text: Angiolipoma, NOS - Mesenchymoma, NOS: - text: Mesenchymoma, NOS - Intratubular malignant germ cells: - text: Intratubular malignant germ cells - Embryonal carcinoma, infantile: - text: Embryonal carcinoma, infantile - Benign cystic nephroma: - text: Benign cystic nephroma - Serous adenocarcinoma, NOS: - text: Serous adenocarcinoma, NOS - Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements: - text: Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous - elements - Malignant lymphoma, large cell, cleaved, diffuse: - text: Malignant lymphoma, large cell, cleaved, diffuse - Mixed acinar-ductal carcinoma: - text: Mixed acinar-ductal carcinoma - description: Mixed Acinar-Ductal Carcinoma of the Pancreas - Cellular angiofibroma: - text: Cellular angiofibroma - Neurolipocytoma: - text: Neurolipocytoma - Mucoid cell adenoma: - text: Mucoid cell adenoma - Hidradenocarcinoma: - text: Hidradenocarcinoma - Vaginal intraepithelial neoplasia, grade III: - text: Vaginal intraepithelial neoplasia, grade III - Oncocytoma: - text: Oncocytoma - Immunocytoma: - text: Immunocytoma - Hydroa vacciniforme-like lymphoma: - text: Hydroa vacciniforme-like lymphoma - Pro-T ALL: - text: Pro-T ALL - Pseudomyxoma peritonei: - text: Pseudomyxoma peritonei - Dendritic cell sarcoma, NOS: - text: Dendritic cell sarcoma, NOS - Malignant lymphoma, small cleaved cell, follicular: - text: Malignant lymphoma, small cleaved cell, follicular - Spindle cell hemangioendothelioma: - text: Spindle cell hemangioendothelioma - Blastoma, NOS: - text: Blastoma, NOS - FAB M4Eo: - text: FAB M4Eo - Transitional papilloma, inverted, NOS: - text: Transitional papilloma, inverted, NOS - Lymphomatoid granulomatosis: - text: Lymphomatoid granulomatosis - Undifferentiated round cell sarcoma: - text: Undifferentiated round cell sarcoma - Chronic granulocytic leukemia, NOS: - text: Chronic granulocytic leukemia, NOS - Endocrine tumor, functioning, NOS: - text: Endocrine tumor, functioning, NOS - Gamma heavy chain disease: - text: Gamma heavy chain disease - Malignant lymphoma, immunoblastic, NOS: - text: Malignant lymphoma, immunoblastic, NOS - Malignant perivascular epithelial cell tumor: - text: Malignant perivascular epithelial cell tumor - Clear cell cystic tumor of borderline malignancy: - text: Clear cell cystic tumor of borderline malignancy - Pleomorphic carcinoma: - text: Pleomorphic carcinoma - Alveolar soft part sarcoma: - text: Alveolar soft part sarcoma - Sex cord-gonadal stromal tumor, incompletely differentiated: - text: Sex cord-gonadal stromal tumor, incompletely differentiated - Aleukemic myeloid leukemia: - text: Aleukemic myeloid leukemia - Acute myeloid leukemia (megakaryoblastic) with t(1;22)(p13;q13); RBM15-MKL1: - text: Acute myeloid leukemia (megakaryoblastic) with t(1;22)(p13;q13); RBM15-MKL1 - Aggressive osteoblastoma: - text: Aggressive osteoblastoma - Gemistocytoma: - text: Gemistocytoma - Mantle zone lymphoma: - text: Mantle zone lymphoma - Adrenal cortical adenoma, clear cell: - text: Adrenal cortical adenoma, clear cell - Mucinous carcinoma, gastric type: - text: Mucinous carcinoma, gastric type - Vipoma, NOS: - text: Vipoma, NOS - Endometrioid adenocarcinoma, NOS: - text: Endometrioid adenocarcinoma, NOS - Granulosa cell tumor, malignant: - text: Granulosa cell tumor, malignant - Clear cell carcinoma: - text: Clear cell carcinoma - Erythroleukemia: - text: Erythroleukemia - Hand-Schuller-Christian disease: - text: Hand-Schuller-Christian disease - Sclerosing liposarcoma: - text: Sclerosing liposarcoma - Serous tumor, NOS, of low malignant potential: - text: Serous tumor, NOS, of low malignant potential - Mature T-cell lymphoma, NOS: - text: Mature T-cell lymphoma, NOS - Chondroma, NOS: - text: Chondroma, NOS - Balloon cell nevus: - text: Balloon cell nevus - Squamous cell carcinoma, HPV-positive: - text: Squamous cell carcinoma, HPV-positive - Diffuse astrocytoma, low grade: - text: Diffuse astrocytoma, low grade - Synovial sarcoma, biphasic: - text: Synovial sarcoma, biphasic - Mucinous cystic neoplasm with low-grade intraepithelial neoplasia: - text: Mucinous cystic neoplasm with low-grade intraepithelial neoplasia - Rhabdoid sarcoma: - text: Rhabdoid sarcoma - Squamous intraepithelial neoplasia, low grade: - text: Squamous intraepithelial neoplasia, low grade - Lymphangioleiomyomatosis: - text: Lymphangioleiomyomatosis - Chordoma, NOS: - text: Chordoma, NOS - Mixed mesenchymal tumor: - text: Mixed mesenchymal tumor - Malignant melanoma in giant pigmented nevus: - text: Malignant melanoma in giant pigmented nevus - Invasive encapsulated follicular variant of papillary thyroid carcinoma (invasive EFVPTC): - text: Invasive encapsulated follicular variant of papillary thyroid carcinoma - (invasive EFVPTC) - Gonadal stromal tumor, NOS: - text: Gonadal stromal tumor, NOS - Fibrous mesothelioma, NOS: - text: Fibrous mesothelioma, NOS - Atypical choroid plexus papilloma: - text: Atypical choroid plexus papilloma - Insulinoma, NOS: - text: Insulinoma, NOS - T lymphoblastic leukemia/lymphoma: - text: T lymphoblastic leukemia/lymphoma - T/NK-cell lymphoma: - text: T/NK-cell lymphoma - Thymoma, type B1, NOS: - text: Thymoma, type B1, NOS - FAB L3: - text: FAB L3 - Squamous cell carcinoma, sarcomatoid: - text: Squamous cell carcinoma, sarcomatoid - Cervical intraepithelial neoplasia, low grade: - text: Cervical intraepithelial neoplasia, low grade - Pancreatic endocrine tumor, NOS: - text: Pancreatic endocrine tumor, NOS - Anaplastic large B-cell lymphoma: - text: Anaplastic large B-cell lymphoma - CNS Embryonal tumor with rhabdoid features: - text: CNS Embryonal tumor with rhabdoid features - Cellular blue nevus: - text: Cellular blue nevus - Cin III, NOS: - text: Cin III, NOS - Eosinophilic granuloma: - text: Eosinophilic granuloma - Papillary adenocarcinoma, NOS: - text: Papillary adenocarcinoma, NOS - Intraductal tubulopapillary neoplasm: - text: Intraductal tubulopapillary neoplasm - Nonchromaffin paraganglioma, malignant: - text: Nonchromaffin paraganglioma, malignant - T-cell lymphoma, NOS: - text: T-cell lymphoma, NOS - Odontoameloblastoma: - text: Odontoameloblastoma - Spindle epithelial tumor with thymus-like differentiation: - text: Spindle epithelial tumor with thymus-like differentiation - Medullary osteosarcoma: - text: Medullary osteosarcoma - Tenosynovial giant cell tumor: - text: Tenosynovial giant cell tumor - Periosteal osteosarcoma: - text: Periosteal osteosarcoma - Pancreatobiliary-type carcinoma: - text: Pancreatobiliary-type carcinoma - Atypical teratoid/rhabdoid tumor: - text: Atypical teratoid/rhabdoid tumor - Dedifferentiated liposarcoma: - text: Dedifferentiated liposarcoma - description: Dedifferentiated Liposarcoma - Pagetoid reticulosis: - text: Pagetoid reticulosis - Vulvar intraepithelial neoplasia, grade III: - text: Vulvar intraepithelial neoplasia, grade III - Pancreatic endocrine tumor, benign: - text: Pancreatic endocrine tumor, benign - Malignant cystic nephroma: - text: Malignant cystic nephroma - Cementoma, NOS: - text: Cementoma, NOS - Lymphoepithelioid lymphoma: - text: Lymphoepithelioid lymphoma - Systemic mastocytosis with associated hematological clonal non-mast cell disorder: - text: Systemic mastocytosis with associated hematological clonal non-mast - cell disorder - Sertoli cell carcinoma: - text: Sertoli cell carcinoma - Nonchromaffin paraganglioma, NOS: - text: Nonchromaffin paraganglioma, NOS - Fibroblastic liposarcoma: - text: Fibroblastic liposarcoma - Dermatofibroma lenticulare: - text: Dermatofibroma lenticulare - Hodgkin disease, nodular sclerosis, NOS: - text: Hodgkin disease, nodular sclerosis, NOS - Bellini duct carcinoma: - text: Bellini duct carcinoma - Bronchial adenoma, carcinoid: - text: Bronchial adenoma, carcinoid - Hepatoid adenocarcinoma: - text: Hepatoid adenocarcinoma - description: Hepatoid Adenocarcinoma - Osteofibroma: - text: Osteofibroma - Thymoma, predominantly cortical, malignant: - text: Thymoma, predominantly cortical, malignant - Langerhans cell histiocytosis, poly-ostotic: - text: Langerhans cell histiocytosis, poly-ostotic - Noninvasive pancreatobiliary papillary neoplasm with high grade intraepithelial neoplasia: - text: Noninvasive pancreatobiliary papillary neoplasm with high grade intraepithelial - neoplasia - Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements: - text: Sertoli-Leydig cell tumor, poorly differentiated, with heterologous - elements - Pilomatrix carcinoma: - text: Pilomatrix carcinoma - Acute myeloid leukemia, M6 type: - text: Acute myeloid leukemia, M6 type - Round cell sarcoma: - text: Round cell sarcoma - Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation: - text: Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation - Hodgkin disease, lymphocyte predominance, diffuse: - text: Hodgkin disease, lymphocyte predominance, diffuse - Malignant melanoma in Hutchinson melanotic freckle: - text: Malignant melanoma in Hutchinson melanotic freckle - Adenocarcinoma in polypoid adenoma: - text: Adenocarcinoma in polypoid adenoma - Mixed adenocarcinoma and epidermoid carcinoma: - text: Mixed adenocarcinoma and epidermoid carcinoma - Oxyphilic adenoma: - text: Oxyphilic adenoma - MALT lymphoma: - text: MALT lymphoma - Chronic granulocytic leukemia, t(9;22)(q34;q11): - text: Chronic granulocytic leukemia, t(9;22)(q34;q11) - Acinar adenocarcinoma: - text: Acinar adenocarcinoma - Adenocarcinoma with apocrine metaplasia: - text: Adenocarcinoma with apocrine metaplasia - Stromal tumor with minor sex cord elements: - text: Stromal tumor with minor sex cord elements - Skin-associated lymphoid tissue lymphoma: - text: Skin-associated lymphoid tissue lymphoma - Phyllodes tumor, benign: - text: Phyllodes tumor, benign - Mixed carcinoid-adenocarcinoma: - text: Mixed carcinoid-adenocarcinoma - Follicular lymphoma, grade 3B: - text: Follicular lymphoma, grade 3B - Epithelial tumor, benign: - text: Epithelial tumor, benign - Aleukemic myelogenous leukemia: - text: Aleukemic myelogenous leukemia - Circumscribed arachnoidal cerebellar sarcoma: - text: Circumscribed arachnoidal cerebellar sarcoma - Monoclonal gammopathy, NOS: - text: Monoclonal gammopathy, NOS - Acute biphenotypic leukemia: - text: Acute biphenotypic leukemia - Embryonal adenoma: - text: Embryonal adenoma - Spindle cell carcinoma, NOS: - text: Spindle cell carcinoma, NOS - Anaplastic large cell lymphoma, NOS: - text: Anaplastic large cell lymphoma, NOS - Malignant tumor, spindle cell type: - text: Malignant tumor, spindle cell type - Thymoma, lymphocytic, malignant: - text: Thymoma, lymphocytic, malignant - Nerve sheath myxoma: - text: Nerve sheath myxoma - Renal cell carcinoma, chromophobe type: - text: Renal cell carcinoma, chromophobe type - Undifferentiated sarcoma: - text: Undifferentiated sarcoma - Well differentiated liposarcoma of superficial soft tissue: - text: Well differentiated liposarcoma of superficial soft tissue - Nodular hidradenoma, malignant: - text: Nodular hidradenoma, malignant - Syringadenoma, NOS: - text: Syringadenoma, NOS - Fibromyxosarcoma: - text: Fibromyxosarcoma - Pleomorphic rhabdomyosarcoma, NOS: - text: Pleomorphic rhabdomyosarcoma, NOS - Primary intraosseous carcinoma: - text: Primary intraosseous carcinoma - Hibernoma: - text: Hibernoma - Porocarcinoma: - text: Porocarcinoma - Interstitial cell tumor, benign: - text: Interstitial cell tumor, benign - Apudoma: - text: Apudoma - Epithelioid malignant peripheral nerve sheath tumor: - text: Epithelioid malignant peripheral nerve sheath tumor - Syringoma, NOS: - text: Syringoma, NOS - Renomedullary fibroma: - text: Renomedullary fibroma - Acute panmyelosis with myelofibrosis: - text: Acute panmyelosis with myelofibrosis - Orchioblastoma: - text: Orchioblastoma - Microcystic urothelial carcinoma: - text: Microcystic urothelial carcinoma - Angiokeratoma: - text: Angiokeratoma - Pseudomucinous adenocarcinoma: - text: Pseudomucinous adenocarcinoma - Arrhenoblastoma, malignant: - text: Arrhenoblastoma, malignant - Angiomyolipoma: - text: Angiomyolipoma - Nonencapsulated sclerosing adenocarcinoma: - text: Nonencapsulated sclerosing adenocarcinoma - Cementoblastoma, benign: - text: Cementoblastoma, benign - Myoepithelial adenoma: - text: Myoepithelial adenoma - Extranodal NK/T-cell lymphoma, nasal type: - text: Extranodal NK/T-cell lymphoma, nasal type - Choriocarcinoma combined with other germ cell elements: - text: Choriocarcinoma combined with other germ cell elements - Water-clear cell adenoma: - text: Water-clear cell adenoma - Phyllodes tumor, NOS: - text: Phyllodes tumor, NOS - Epidermoid carcinoma, large cell, nonkeratinizing: - text: Epidermoid carcinoma, large cell, nonkeratinizing - Leiomyoma, NOS: - text: Leiomyoma, NOS - Mu heavy chain disease: - text: Mu heavy chain disease - Papillary renal cell carcinoma: - text: Papillary renal cell carcinoma - B-cell lymphoma, unclassifiable, with features intermediate between diffuse large B-cell lymphoma and Burkitt lymphoma: - text: B-cell lymphoma, unclassifiable, with features intermediate between - diffuse large B-cell lymphoma and Burkitt lymphoma - Neurofibromatosis, NOS: - text: Neurofibromatosis, NOS - Neuroastrocytoma: - text: Neuroastrocytoma - RAEB I: - text: RAEB I - Papillary pseudomucinous cystadenoma, borderline malignancy: - text: Papillary pseudomucinous cystadenoma, borderline malignancy - Lipoid cell tumor of ovary: - text: Lipoid cell tumor of ovary - Hutchinson melanotic freckle, NOS: - text: Hutchinson melanotic freckle, NOS - Acinar adenoma: - text: Acinar adenoma - Papillary serous cystadenocarcinoma: - text: Papillary serous cystadenocarcinoma - Chromophobe adenoma: - text: Chromophobe adenoma - Clear cell hidradenoma: - text: Clear cell hidradenoma - Granular cell myoblastoma, NOS: - text: Granular cell myoblastoma, NOS - Chondrosarcoma, NOS: - text: Chondrosarcoma, NOS - Papillary carcinoma, follicular variant: - text: Papillary carcinoma, follicular variant - Langerhans cell histiocytosis, multifocal: - text: Langerhans cell histiocytosis, multifocal - Medullary carcinoma with amyloid stroma: - text: Medullary carcinoma with amyloid stroma - Bronchial adenoma, NOS: - text: Bronchial adenoma, NOS - Mixed meningioma: - text: Mixed meningioma - Waldenstrom macroglobulinemia: - text: Waldenstrom macroglobulinemia - Anaplastic astrocytoma, IDH-wildtype: - text: Anaplastic astrocytoma, IDH-wildtype - Eosinophil adenoma: - text: Eosinophil adenoma - Sebaceous adenocarcinoma: - text: Sebaceous adenocarcinoma - description: Head and Neck Sebaceous Carcinoma - Encapsulated follicular variant of papillary thyroid carcinoma, NOS (EFVPTC, NOS): - text: Encapsulated follicular variant of papillary thyroid carcinoma, NOS - (EFVPTC, NOS) - Malignant lymphoma, large cleaved cell, follicular: - text: Malignant lymphoma, large cleaved cell, follicular - C cell carcinoma: - text: C cell carcinoma - Classical Hodgkin lymphoma, nodular sclerosis, NOS: - text: Classical Hodgkin lymphoma, nodular sclerosis, NOS - B lymphoblastic leukemia/lymphoma with hyperdiploidy: - text: B lymphoblastic leukemia/lymphoma with hyperdiploidy - Medulloblastoma, classic: - text: Medulloblastoma, classic - Meningeal sarcomatosis: - text: Meningeal sarcomatosis - Follicular adenocarcinoma, well differentiated: - text: Follicular adenocarcinoma, well differentiated - Desmoplastic fibroma: - text: Desmoplastic fibroma - Intravascular bronchial alveolar tumor: - text: Intravascular bronchial alveolar tumor - Lymphocytic leukemia, NOS: - text: Lymphocytic leukemia, NOS - Gastrointestinal stromal tumor, malignant: - text: Gastrointestinal stromal tumor, malignant - Transitional cell carcinoma, micropapillary: - text: Transitional cell carcinoma, micropapillary - Squamous cell carcinoma, pseudoglandular: - text: Squamous cell carcinoma, pseudoglandular - FAB M2, t(8;21)(q22;q22): - text: FAB M2, t(8;21)(q22;q22) - Infantile fibrosarcoma: - text: Infantile fibrosarcoma - Mucin-producing carcinoma: - text: Mucin-producing carcinoma - Peripheral T-cell lymphoma, pleomorphic small cell: - text: Peripheral T-cell lymphoma, pleomorphic small cell - Ceruminous adenocarcinoma: - text: Ceruminous adenocarcinoma - Psammomatous meningioma: - text: Psammomatous meningioma - Juxtaglomerular tumor: - text: Juxtaglomerular tumor - Malignant lymphoma, large cell, noncleaved, NOS: - text: Malignant lymphoma, large cell, noncleaved, NOS - Non-small cell carcinoma: - text: Non-small cell carcinoma - Blast cell leukemia: - text: Blast cell leukemia - Neoplasm, secondary: - text: Neoplasm, secondary - Pineal parenchymal tumor of intermediate differentiation: - text: Pineal parenchymal tumor of intermediate differentiation - Multiple adenomatous polyps: - text: Multiple adenomatous polyps - Endometrioid cystadenofibroma, NOS: - text: Endometrioid cystadenofibroma, NOS - Chromophobe cell renal carcinoma: - text: Chromophobe cell renal carcinoma - Microfollicular adenoma, NOS: - text: Microfollicular adenoma, NOS - Gangliocytic paraganglioma: - text: Gangliocytic paraganglioma - Extranodal marginal zone lymphoma of mucosa-associated lymphoid tissue: - text: Extranodal marginal zone lymphoma of mucosa-associated lymphoid tissue - Basal cell epithelioma: - text: Basal cell epithelioma - Glioblastoma, IDH wildtype: - text: Glioblastoma, IDH wildtype - Dermatofibroma, NOS: - text: Dermatofibroma, NOS - Reticulum cell sarcoma, NOS: - text: Reticulum cell sarcoma, NOS - Atypical chronic myeloid leukemia, BCR/ABL negative: - text: Atypical chronic myeloid leukemia, BCR/ABL negative - Systemic mastocytosis with AHNMD: - text: Systemic mastocytosis with AHNMD - Bowen disease: - text: Bowen disease - Anaplastic oligoastrocytoma: - text: Anaplastic oligoastrocytoma - Prolymphocytic leukemia, NOS: - text: Prolymphocytic leukemia, NOS - Acute myeloid leukemia, minimal differentiation: - text: Acute myeloid leukemia, minimal differentiation - Spindle cell angioendothelioma: - text: Spindle cell angioendothelioma - PP/PYY producing tumor: - text: PP/PYY producing tumor - Chromophobe adenocarcinoma: - text: Chromophobe adenocarcinoma - Ependymoblastoma: - text: Ependymoblastoma - Acidophil carcinoma: - text: Acidophil carcinoma - Malignant lymphoma, lymphoplasmacytoid: - text: Malignant lymphoma, lymphoplasmacytoid - Angiocentric glioma: - text: Angiocentric glioma - Malignant lymphoma, centroblastic, NOS: - text: Malignant lymphoma, centroblastic, NOS - Teratocarcinoma: - text: Teratocarcinoma - Endometrioid cystadenofibroma, malignant: - text: Endometrioid cystadenofibroma, malignant - Sertoli-Leydig cell tumor, retiform: - text: Sertoli-Leydig cell tumor, retiform - Transitional cell carcinoma in situ: - text: Transitional cell carcinoma in situ - Bronchial adenoma, cylindroid: - text: Bronchial adenoma, cylindroid - Renal cell carcinoma, unclassified: - text: Renal cell carcinoma, unclassified - description: Unclassified Renal Cell Carcinoma - Enterochromaffin cell carcinoid: - text: Enterochromaffin cell carcinoid - Lobular carcinoma, NOS: - text: Lobular carcinoma, NOS - Intradermal nevus: - text: Intradermal nevus - Basophil adenoma: - text: Basophil adenoma - Esophageal intraepithelial neoplasia, high grade: - text: Esophageal intraepithelial neoplasia, high grade - Angioleiomyoma: - text: Angioleiomyoma - Sweat gland carcinoma: - text: Sweat gland carcinoma - Indolent systemic mastocytosis: - text: Indolent systemic mastocytosis - Neurofibrosarcoma: - text: Neurofibrosarcoma - Mesothelioma, biphasic, NOS: - text: Mesothelioma, biphasic, NOS - Familial polyposis coli: - text: Familial polyposis coli - Carcinoma, metastatic, NOS: - text: Carcinoma, metastatic, NOS - Malignant lymphoma, large cleaved cell, NOS: - text: Malignant lymphoma, large cleaved cell, NOS - Multifocal superficial basal cell carcinoma: - text: Multifocal superficial basal cell carcinoma - Chorioangioma: - text: Chorioangioma - Terminal duct adenocarcinoma: - text: Terminal duct adenocarcinoma - Invasive lobular carcinoma, tubulolobular variant: - text: Invasive lobular carcinoma, tubulolobular variant - Clear cell odontogenic tumor: - text: Clear cell odontogenic tumor - Islet cell carcinoma: - text: Islet cell carcinoma - Papillary hidradenoma: - text: Papillary hidradenoma - Infiltrating duct and colloid carcinoma: - text: Infiltrating duct and colloid carcinoma - Immature teratoma, NOS: - text: Immature teratoma, NOS - Tumor, malignant, NOS: - text: Tumor, malignant, NOS - Chronic erythremia: - text: Chronic erythremia - Large cell carcinoma with rhabdoid phenotype: - text: Large cell carcinoma with rhabdoid phenotype - Unclassified tumor, uncertain whether benign or malignant: - text: Unclassified tumor, uncertain whether benign or malignant - Chordoid glioma of third ventricle: - text: Chordoid glioma of third ventricle - Transitional papilloma: - text: Transitional papilloma - Solitary fibrous tumor/hemangiopericytoma Grade 1 (CNS): - text: Solitary fibrous tumor/hemangiopericytoma Grade 1 (CNS) - Acute basophilic leukaemia: - text: Acute basophilic leukaemia - Myloproliferative neoplasm, unclassifiable: - text: Myloproliferative neoplasm, unclassifiable - Malignant melanoma, regressing: - text: Malignant melanoma, regressing - Endometrioid cystadenocarcinoma: - text: Endometrioid cystadenocarcinoma - Pancreatic endocrine tumor, nonfunctioning: - text: Pancreatic endocrine tumor, nonfunctioning - Intraductal papillary neoplasm with intermediate grade neoplasia: - text: Intraductal papillary neoplasm with intermediate grade neoplasia - Endometrioid carcinoma, NOS: - text: Endometrioid carcinoma, NOS - description: Endometrial Carcinoma - Hidradenoma papilliferum: - text: Hidradenoma papilliferum - Intravascular large B-cell lymphoma: - text: Intravascular large B-cell lymphoma - Clear cell cystadenocarcinofibroma: - text: Clear cell cystadenocarcinofibroma - Spindle cell nevus, NOS: - text: Spindle cell nevus, NOS - Scirrhous adenocarcinoma: - text: Scirrhous adenocarcinoma - Fibroameloblastic odontoma: - text: Fibroameloblastic odontoma - Esophageal squamous intraepithelial neoplasia (dysplasia), high grade: - text: Esophageal squamous intraepithelial neoplasia (dysplasia), high grade - Lymphoepithelioma-like carcinoma: - text: Lymphoepithelioma-like carcinoma - Adrenal cortical tumor, NOS: - text: Adrenal cortical tumor, NOS - Lactating adenoma: - text: Lactating adenoma - Malignant melanoma, NOS: - text: Malignant melanoma, NOS - Spongioblastoma polare: - text: Spongioblastoma polare - Mucinous cystic tumor of borderline malignancy: - text: Mucinous cystic tumor of borderline malignancy - Tubular androblastoma with lipid storage: - text: Tubular androblastoma with lipid storage - T-gamma lymphoproliferative disease: - text: T-gamma lymphoproliferative disease - Mucoid cell adenocarcinoma: - text: Mucoid cell adenocarcinoma - Epithelioid mesothelioma, malignant: - text: Epithelioid mesothelioma, malignant - Myxofibroma, NOS: - text: Myxofibroma, NOS - Hurthle cell adenoma: - text: Hurthle cell adenoma - Osteoblastoma, malignant: - text: Osteoblastoma, malignant - Intraepidermal squamous cell carcinoma, Bowen type: - text: Intraepidermal squamous cell carcinoma, Bowen type - Juvenile fibroadenoma: - text: Juvenile fibroadenoma - Glucagon-like peptide-producing tumor: - text: Glucagon-like peptide-producing tumor - Endometrioid adenocarcinoma, ciliated cell variant: - text: Endometrioid adenocarcinoma, ciliated cell variant - Malignant lymphoma, undifferentiated cell type, NOS: - text: Malignant lymphoma, undifferentiated cell type, NOS - Adenocarcinoma, cylindroid: - text: Adenocarcinoma, cylindroid - Clear cell (glycogen-rich) urothelial carcinoma: - text: Clear cell (glycogen-rich) urothelial carcinoma - Hidrocystoma: - text: Hidrocystoma - Glandular intraepithelial neoplasia, grade I: - text: Glandular intraepithelial neoplasia, grade I - Blue nevus, malignant: - text: Blue nevus, malignant - Hilus cell tumor: - text: Hilus cell tumor - Osteofibrosarcoma: - text: Osteofibrosarcoma - Adenocarcinoma in adenomatous polyposis coli: - text: Adenocarcinoma in adenomatous polyposis coli - Embryonal tumor with multilayered rosettes, NOS: - text: Embryonal tumor with multilayered rosettes, NOS - Sclerosing epithelioid fibrosarcoma: - text: Sclerosing epithelioid fibrosarcoma - Multiple hemorrhagic sarcoma: - text: Multiple hemorrhagic sarcoma - Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis: - text: Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis - Acute monocytic leukemia: - text: Acute monocytic leukemia - Acute leukemia, NOS: - text: Acute leukemia, NOS - Myeloid and lymphoid neoplasms with FGFR1 abnormalities: - text: Myeloid and lymphoid neoplasms with FGFR1 abnormalities - Mixed liposarcoma: - text: Mixed liposarcoma - Lobular carcinoma in situ, NOS: - text: Lobular carcinoma in situ, NOS - Islet cell tumor, NOS: - text: Islet cell tumor, NOS - Hepatocholangiocarcinoma: - text: Hepatocholangiocarcinoma - Serous cystadenocarcinoma, NOS: - text: Serous cystadenocarcinoma, NOS - Carcinoma with neuroendocrine differentiation: - text: Carcinoma with neuroendocrine differentiation - Papillary cystadenoma, NOS: - text: Papillary cystadenoma, NOS - Tubular carcinoid: - text: Tubular carcinoid - Acute myeloid leukemia with maturation: - text: Acute myeloid leukemia with maturation - Arrhenoblastoma, benign: - text: Arrhenoblastoma, benign - Hepatoblastoma: - text: Hepatoblastoma - Sertoli-Leydig cell tumor, NOS: - text: Sertoli-Leydig cell tumor, NOS - Endotheliomatous meningioma: - text: Endotheliomatous meningioma - Hemangiopericytic meningioma: - text: Hemangiopericytic meningioma - Epithelioid and spindle cell nevus: - text: Epithelioid and spindle cell nevus - Combined hepatocellular carcinoma and cholangiocarcinoma: - text: Combined hepatocellular carcinoma and cholangiocarcinoma - Malignant lymphoma, small cell, NOS: - text: Malignant lymphoma, small cell, NOS - Squamous cell epithelioma: - text: Squamous cell epithelioma - Medulloblastoma, group 3: - text: Medulloblastoma, group 3 - Embryonal tumor with multilayered rosettes C19MC-altered: - text: Embryonal tumor with multilayered rosettes C19MC-altered - Metastasizing leiomyoma: - text: Metastasizing leiomyoma - Cancer: - text: Cancer - Franklin disease: - text: Franklin disease - Peripheral neuroectodermal tumor: - text: Peripheral neuroectodermal tumor - Recklinghausen disease: - text: Recklinghausen disease - Phyllodes tumor, malignant: - text: Phyllodes tumor, malignant - Mucinous cystic neoplasm with high-grade intraepithelial neoplasia: - text: Mucinous cystic neoplasm with high-grade intraepithelial neoplasia - Ductal carcinoma in situ, solid type: - text: Ductal carcinoma in situ, solid type - Small cell osteosarcoma: - text: Small cell osteosarcoma - Myoepithelial tumor: - text: Myoepithelial tumor - Intravascular leiomyomatosis: - text: Intravascular leiomyomatosis - Malignant lymphoma, histiocytic, nodular: - text: Malignant lymphoma, histiocytic, nodular - Polygonal cell carcinoma: - text: Polygonal cell carcinoma - Cellular schwannoma: - text: Cellular schwannoma - Histiocytoma, NOS: - text: Histiocytoma, NOS - Paget disease and intraductal carcinoma of breast: - text: Paget disease and intraductal carcinoma of breast - Liposarcoma, NOS: - text: Liposarcoma, NOS - Bronchio-alveolar carcinoma, mixed mucinous and non-mucinous: - text: Bronchio-alveolar carcinoma, mixed mucinous and non-mucinous - Papillary transitional cell neoplasm of low malignant potential: - text: Papillary transitional cell neoplasm of low malignant potential - ECL cell carcinoid, NOS: - text: ECL cell carcinoid, NOS - Intracortical osteosarcoma: - text: Intracortical osteosarcoma - Urothelial carcinoma in situ: - text: Urothelial carcinoma in situ - Carcinoma with other types mesenchymal differentiation: - text: Carcinoma with other types mesenchymal differentiation - Cyst-associated renal cell carcinoma: - text: Cyst-associated renal cell carcinoma - Interstitial cell tumor, NOS: - text: Interstitial cell tumor, NOS - Glycogenic rhabdomyoma: - text: Glycogenic rhabdomyoma - Intraductal papillary neoplasm with associated invasive carcinoma: - text: Intraductal papillary neoplasm with associated invasive carcinoma - Neuroendocrine carcinoma, NOS: - text: Neuroendocrine carcinoma, NOS - Diktyoma, benign: - text: Diktyoma, benign - Bronchial-associated lymphoid tissue lymphoma: - text: Bronchial-associated lymphoid tissue lymphoma - Pseudosarcomatous carcinoma: - text: Pseudosarcomatous carcinoma - Inflammatory myofibroblastic tumor: - text: Inflammatory myofibroblastic tumor - description: Inflammatory Myofibroblastic Tumor - Classical Hodgkin lymphoma, lymphocyte-rich: - text: Classical Hodgkin lymphoma, lymphocyte-rich - Adenolipoma: - text: Adenolipoma - Malignant multilocular cystic nephroma: - text: Malignant multilocular cystic nephroma - SALT lymphoma: - text: SALT lymphoma - Malignant lymphoma, lymphocytic, poorly differentiated, nodular: - text: Malignant lymphoma, lymphocytic, poorly differentiated, nodular - T-cell large granular lymphocytic leukemia: - text: T-cell large granular lymphocytic leukemia - Malignant schwannoma, NOS: - text: Malignant schwannoma, NOS - Peripheral primitive neuroectodermal tumor, NOS: - text: Peripheral primitive neuroectodermal tumor, NOS - Ameloblastic fibro-odontoma: - text: Ameloblastic fibro-odontoma - Tumor cells, benign: - text: Tumor cells, benign - Thymic carcinoma with adenoid cystic carcinoma-like features: - text: Thymic carcinoma with adenoid cystic carcinoma-like features - Chronic myelomonocytic leukemia, Type 1: - text: Chronic myelomonocytic leukemia, Type 1 - Chronic myeloproliferative disease, NOS: - text: Chronic myeloproliferative disease, NOS - Solid pseudopapillary tumor: - text: Solid pseudopapillary tumor - Hepatoma, malignant: - text: Hepatoma, malignant - Clear cell adenofibroma of borderline malignancy: - text: Clear cell adenofibroma of borderline malignancy - Basal cell carcinoma, morpheic: - text: Basal cell carcinoma, morpheic - Squamous cell carcinoma, keratinizing, NOS: - text: Squamous cell carcinoma, keratinizing, NOS - Odontogenic tumor, benign: - text: Odontogenic tumor, benign - Acute myeloid leukemia with myelodysplasia-related changes: - text: Acute myeloid leukemia with myelodysplasia-related changes - Cystic lymphangioma: - text: Cystic lymphangioma - Endometrioid adenofibroma, malignant: - text: Endometrioid adenofibroma, malignant - Osteoblastoma, NOS: - text: Osteoblastoma, NOS - Malignant lymphoma, large cell, diffuse, NOS: - text: Malignant lymphoma, large cell, diffuse, NOS - Undifferentiated pleomorphic sarcoma: - text: Undifferentiated pleomorphic sarcoma - Mucosal lentiginous melanoma: - text: Mucosal lentiginous melanoma - Micropapillary serous carcinoma: - text: Micropapillary serous carcinoma - Epithelioid leiomyoma: - text: Epithelioid leiomyoma - Acute lymphoblastic leukemia, mature B-cell type: - text: Acute lymphoblastic leukemia, mature B-cell type - Pilomatrixoma, malignant: - text: Pilomatrixoma, malignant - Glassy cell carcinoma: - text: Glassy cell carcinoma - Solid carcinoma with mucin formation: - text: Solid carcinoma with mucin formation - Colloid carcinoma: - text: Colloid carcinoma - Bronchiolar carcinoma: - text: Bronchiolar carcinoma - Subepidermal nodular fibrosis: - text: Subepidermal nodular fibrosis - Intravascular B-cell lymphoma: - text: Intravascular B-cell lymphoma - Systemic EBV positive T-cell lymphoproliferative disease of childhood: - text: Systemic EBV positive T-cell lymphoproliferative disease of childhood - Malignant lymphoma, histiocytic, NOS: - text: Malignant lymphoma, histiocytic, NOS - Carcinoma with chondroid differentiation: - text: Carcinoma with chondroid differentiation - Plasmacytoma, extramedullary: - text: Plasmacytoma, extramedullary - Lymphangiomyoma: - text: Lymphangiomyoma - Cholangiocarcinoma: - text: Cholangiocarcinoma - description: Cholangiocarcinoma - Neuroendocrine tumor, grade 1: - text: Neuroendocrine tumor, grade 1 - Synovial sarcoma, monophasic fibrous: - text: Synovial sarcoma, monophasic fibrous - Adult teratoma, NOS: - text: Adult teratoma, NOS - Epithelioid MPNST: - text: Epithelioid MPNST - Balloon cell melanoma: - text: Balloon cell melanoma - Acute erythremia: - text: Acute erythremia - Chordoid meningioma: - text: Chordoid meningioma - Apocrine cystadenoma: - text: Apocrine cystadenoma - Chronic myelocytic leukemia, NOS: - text: Chronic myelocytic leukemia, NOS - Papillary cystadenoma lymphomatosum: - text: Papillary cystadenoma lymphomatosum - Renal cell carcinoma, sarcomatoid: - text: Renal cell carcinoma, sarcomatoid - Macrofollicular adenoma: - text: Macrofollicular adenoma - Follicular adenocarcinoma, NOS: - text: Follicular adenocarcinoma, NOS - Supratentorial PNET: - text: Supratentorial PNET - Lymphatic leukemic, NOS: - text: Lymphatic leukemic, NOS - Epithelioma, NOS: - text: Epithelioma, NOS - Encapsulated papillary carcinoma: - text: Encapsulated papillary carcinoma - Gastrointestinal stromal tumor, uncertain malignant potential: - text: Gastrointestinal stromal tumor, uncertain malignant potential - Acute lymphoblastic leukemia, L2 type, NOS: - text: Acute lymphoblastic leukemia, L2 type, NOS - Adrenal medullary paraganglioma: - text: Adrenal medullary paraganglioma - Thymic large B-cell lymphoma: - text: Thymic large B-cell lymphoma - Acute promyelocytic leukemia, NOS: - text: Acute promyelocytic leukemia, NOS - Mesoblastic nephroma: - text: Mesoblastic nephroma - Leiomyosarcoma, NOS: - text: Leiomyosarcoma, NOS - Pleomorphic lipoma: - text: Pleomorphic lipoma - Cutaneous mastocytosis: - text: Cutaneous mastocytosis - Acute mixed lineage leukemia: - text: Acute mixed lineage leukemia - Dermatofibrosarcoma, NOS: - text: Dermatofibrosarcoma, NOS - Sertoli cell tumor, NOS: - text: Sertoli cell tumor, NOS - Papillary carcinoma, oxyphilic cell: - text: Papillary carcinoma, oxyphilic cell - Acinar cell tumor: - text: Acinar cell tumor - Gonadoblastoma: - text: Gonadoblastoma - Papillary ependymoma: - text: Papillary ependymoma - Thymoma, atypical, malignant: - text: Thymoma, atypical, malignant - Adenocarcinoma admixed with neuroendocrine carcinoma: - text: Adenocarcinoma admixed with neuroendocrine carcinoma - Stromal tumor, NOS: - text: Stromal tumor, NOS - Intraductal papillary-mucinous neoplasm with low grade dysplasia: - text: Intraductal papillary-mucinous neoplasm with low grade dysplasia - Basal cell carcinoma, NOS: - text: Basal cell carcinoma, NOS - Papillary pseudomucinous cystadenocarcinoma: - text: Papillary pseudomucinous cystadenocarcinoma - Acute granulocytic leukemia: - text: Acute granulocytic leukemia - Superficial spreading melanoma: - text: Superficial spreading melanoma - description: Superficial Spreading Melanoma - Ependymoma, RELA fusion-positive: - text: Ependymoma, RELA fusion-positive - Adamantinoma of long bones: - text: Adamantinoma of long bones - Glomoid sarcoma: - text: Glomoid sarcoma - Mixed germ cell sex cord-stromal tumor, unclassified: - text: Mixed germ cell sex cord-stromal tumor, unclassified - Sweat gland adenocarcinoma: - text: Sweat gland adenocarcinoma - Glomus tumor, malignant: - text: Glomus tumor, malignant - Calcifying epithelioma of Malherbe: - text: Calcifying epithelioma of Malherbe - Hodgkin lymphoma, nodular sclerosis, grade 2: - text: Hodgkin lymphoma, nodular sclerosis, grade 2 - Somatostatinoma, NOS: - text: Somatostatinoma, NOS - Aggressive systemic mastocytosis: - text: Aggressive systemic mastocytosis - Adrenal cortical tumor, benign: - text: Adrenal cortical tumor, benign - Malignant teratoma, trophoblastic: - text: Malignant teratoma, trophoblastic - Undifferentiated uterine sarcoma: - text: Undifferentiated uterine sarcoma - Essential thrombocythemia: - text: Essential thrombocythemia - ACTH-producing tumor: - text: ACTH-producing tumor - Acinar adenocarcinoma, sarcomatoid: - text: Acinar adenocarcinoma, sarcomatoid - Ductal carcinoma in situ, cribriform type: - text: Ductal carcinoma in situ, cribriform type - Papillary urothelial neoplasm of low malignant potential: - text: Papillary urothelial neoplasm of low malignant potential - Teratoid medulloepithelioma, benign: - text: Teratoid medulloepithelioma, benign - Fibrous histiocytoma, NOS: - text: Fibrous histiocytoma, NOS - Mucous carcinoma: - text: Mucous carcinoma - Myxoid fibroma: - text: Myxoid fibroma - Carcinoma in a polyp, NOS: - text: Carcinoma in a polyp, NOS - Anaplastic large cell lymphoma, ALK negative: - text: Anaplastic large cell lymphoma, ALK negative - Retinocytoma: - text: Retinocytoma - Symplastic leiomyoma: - text: Symplastic leiomyoma - Pancreatic endocrine tumor, malignant: - text: Pancreatic endocrine tumor, malignant - Intraductal papillary neoplasm, NOS: - text: Intraductal papillary neoplasm, NOS - Malignant melanoma in precancerous melanosis: - text: Malignant melanoma in precancerous melanosis - Glomus jugulare tumor, NOS: - text: Glomus jugulare tumor, NOS - Chondroid syringoma: - text: Chondroid syringoma - Ameloblastic fibrodentinosarcoma: - text: Ameloblastic fibrodentinosarcoma - Non-invasive low grade serous carcinoma: - text: Non-invasive low grade serous carcinoma - Melanoameloblastoma: - text: Melanoameloblastoma - Chronic myelogenous leukemia, Philadelphia chromosome (Ph 1) positive: - text: Chronic myelogenous leukemia, Philadelphia chromosome (Ph 1) positive - Myelodysplastic syndrome, NOS: - text: Myelodysplastic syndrome, NOS - GIST, benign: - text: GIST, benign - Intraductal papillary tumor with high grade intraepithelial neoplasia: - text: Intraductal papillary tumor with high grade intraepithelial neoplasia - Villous adenoma, NOS: - text: Villous adenoma, NOS - Odontogenic ghost cell tumor: - text: Odontogenic ghost cell tumor - DCIS, papillary: - text: DCIS, papillary - Bile duct cystadenocarcinoma: - text: Bile duct cystadenocarcinoma - Myxoid chondrosarcoma: - text: Myxoid chondrosarcoma - Intraepidermal nevus: - text: Intraepidermal nevus - Myxoid leiomyosarcoma: - text: Myxoid leiomyosarcoma - Infiltrating duct mixed with other types of carcinoma: - text: Infiltrating duct mixed with other types of carcinoma - Prolymphocytic leukemia, T-cell type: - text: Prolymphocytic leukemia, T-cell type - Angiomyoma: - text: Angiomyoma - Skin appendage tumor, benign: - text: Skin appendage tumor, benign - Ghost cell odontogenic carcinoma: - text: Ghost cell odontogenic carcinoma - Acute erythroid leukaemia: - text: Acute erythroid leukaemia - Steroid cell tumor, malignant: - text: Steroid cell tumor, malignant - Extraventricular neurocytoma: - text: Extraventricular neurocytoma - Mucoid carcinoma: - text: Mucoid carcinoma - FAB M6: - text: FAB M6 - Infiltrating duct carcinoma, NOS: - text: Infiltrating duct carcinoma, NOS - Neoplasm, metastatic: - text: Neoplasm, metastatic - Islet cell adenocarcinoma: - text: Islet cell adenocarcinoma - Atypical lipoma: - text: Atypical lipoma - Noninfiltrating intraductal papillary adenocarcinoma: - text: Noninfiltrating intraductal papillary adenocarcinoma - Intraductal papilloma: - text: Intraductal papilloma - Oligodendroglioma, NOS: - text: Oligodendroglioma, NOS - Medulloblastoma with extensive nodularity: - text: Medulloblastoma with extensive nodularity - Thymoma, cortical, malignant: - text: Thymoma, cortical, malignant - MPNST with rhabdomyoblastic differentiation: - text: MPNST with rhabdomyoblastic differentiation - Atypical polypoid adenomyoma: - text: Atypical polypoid adenomyoma - Seminoma with high mitotic index: - text: Seminoma with high mitotic index - Enteropathy associated T-cell lymphoma: - text: Enteropathy associated T-cell lymphoma - Anaplastic pleomorphic xanthroastrocytoma: - text: Anaplastic pleomorphic xanthroastrocytoma - Ganglioneuroblastoma: - text: Ganglioneuroblastoma - Thymoma, type B3, malignant: - text: Thymoma, type B3, malignant - Polyembryoma: - text: Polyembryoma - Perifollicular fibroma: - text: Perifollicular fibroma - Chorioepithelioma: - text: Chorioepithelioma - GANT: - text: GANT - Meningeal melanoma: - text: Meningeal melanoma - Mixed acinar-endocrine carcinoma: - text: Mixed acinar-endocrine carcinoma - Noninfiltrating intracystic carcinoma: - text: Noninfiltrating intracystic carcinoma - B lymphoblastic leukemia/lymphoma with t(5;14)(q31;q32); IL3-IGH: - text: B lymphoblastic leukemia/lymphoma with t(5;14)(q31;q32); IL3-IGH - Carcinoma with osseous differentiation: - text: Carcinoma with osseous differentiation - Invasive hydatidiform mole: - text: Invasive hydatidiform mole - Monstrocellular sarcoma: - text: Monstrocellular sarcoma - Glandular intraepithelial neoplasia, low grade: - text: Glandular intraepithelial neoplasia, low grade - Linitis plastica: - text: Linitis plastica - Astroglioma: - text: Astroglioma - Refractory anemia without sideroblasts: - text: Refractory anemia without sideroblasts - Malignant peripheral nerve sheath tumor: - text: Malignant peripheral nerve sheath tumor - Dentinoma: - text: Dentinoma - Embryonal teratoma: - text: Embryonal teratoma - Trabecular adenoma: - text: Trabecular adenoma - Giant cell tumor of soft parts, NOS: - text: Giant cell tumor of soft parts, NOS - Fibrous mesothelioma, benign: - text: Fibrous mesothelioma, benign - Rhabdomyosarcoma, NOS: - text: Rhabdomyosarcoma, NOS - Ganglioneuroma: - text: Ganglioneuroma - Histiocytic medullary reticulosis: - text: Histiocytic medullary reticulosis - Plasmacytoma, NOS: - text: Plasmacytoma, NOS - Cystadenocarcinoma, NOS: - text: Cystadenocarcinoma, NOS - Immunoproliferative disease, NOS: - text: Immunoproliferative disease, NOS - Hepatocellular carcinoma, pleomorphic type: - text: Hepatocellular carcinoma, pleomorphic type - Low-grade intramedullary osteosarcoma: - text: Low-grade intramedullary osteosarcoma - Papillary adenocarcinoma, follicular variant: - text: Papillary adenocarcinoma, follicular variant - Solid pseudopapillary carcinoma: - text: Solid pseudopapillary carcinoma - Plasma cell tumor: - text: Plasma cell tumor - Solitary myeloma: - text: Solitary myeloma - Acute non-lymphocytic leukemia: - text: Acute non-lymphocytic leukemia - Hairy cell leukemia variant: - text: Hairy cell leukemia variant - Adenocarcinoma in situ, mucinous: - text: Adenocarcinoma in situ, mucinous - description: Mucinous Lung Adenocarcinoma In Situ - Adenocarcinoma with cartilaginous and osseous metaplasia: - text: Adenocarcinoma with cartilaginous and osseous metaplasia - Anaplastic large cell lymphoma, CD30+: - text: Anaplastic large cell lymphoma, CD30+ - Mucinous cystadenoma, NOS: - text: Mucinous cystadenoma, NOS - Gastrointestinal stromal sarcoma: - text: Gastrointestinal stromal sarcoma - Precancerous melanosis, NOS: - text: Precancerous melanosis, NOS - Renal medullary carcinoma: - text: Renal medullary carcinoma - description: Kidney Medullary Carcinoma - Serous papillary cystic tumor of borderline malignancy: - text: Serous papillary cystic tumor of borderline malignancy - Bile duct carcinoma: - text: Bile duct carcinoma - Intraductal papillary neoplasm with high grade intraepithelial neoplasia: - text: Intraductal papillary neoplasm with high grade intraepithelial neoplasia - Clear cell chondrosarcoma: - text: Clear cell chondrosarcoma - Acute myelocytic leukemia: - text: Acute myelocytic leukemia - Noninvasive pancreatobiliary papillary neoplasm with high grade dysplasia: - text: Noninvasive pancreatobiliary papillary neoplasm with high grade dysplasia - Lymphoma, NOS: - text: Lymphoma, NOS - Mixed glioma: - text: Mixed glioma - Lymphoepithelial carcinoma: - text: Lymphoepithelial carcinoma - description: Nasopharyngeal Type Undifferentiated Carcinoma - Intraepidermal epithelioma of Jadassohn: - text: Intraepidermal epithelioma of Jadassohn - Pleuropulmonary blastoma: - text: Pleuropulmonary blastoma - Carcinoid, NOS, of appendix: - text: Carcinoid, NOS, of appendix - Sialoblastoma: - text: Sialoblastoma - Diffuse midline glioma, H3 K27M-mutant: - text: Diffuse midline glioma, H3 K27M-mutant - Osteosarcoma, NOS: - text: Osteosarcoma, NOS - Neurilemoma, malignant: - text: Neurilemoma, malignant - Collecting duct carcinoma: - text: Collecting duct carcinoma - description: Carcinoma of the Collecting Ducts of Bellini - Undifferentiated spindle cell sarcoma: - text: Undifferentiated spindle cell sarcoma - Papillary mucinous cystadenocarcinoma: - text: Papillary mucinous cystadenocarcinoma - PIN III: - text: PIN III - Paraganglioma, NOS: - text: Paraganglioma, NOS - Protoplasmic astrocytoma: - text: Protoplasmic astrocytoma - Bile duct adenoma: - text: Bile duct adenoma - Squamous cell carcinoma, metastatic, NOS: - text: Squamous cell carcinoma, metastatic, NOS - Neurilemoma, NOS: - text: Neurilemoma, NOS - Odontogenic sarcoma: - text: Odontogenic sarcoma - Atypical carcinoid tumor: - text: Atypical carcinoid tumor - ALK positive large B-cell lymphoma: - text: ALK positive large B-cell lymphoma - Superficial well differentiated liposarcoma: - text: Superficial well differentiated liposarcoma - Klatskin tumor: - text: Klatskin tumor - Pleomorphic liposarcoma: - text: Pleomorphic liposarcoma - Soft tissue perineurioma: - text: Soft tissue perineurioma - Follicular carcinoma, well differentiated: - text: Follicular carcinoma, well differentiated - Combined/mixed carcinoid and adenocarcinoma: - text: Combined/mixed carcinoid and adenocarcinoma - Endometrioid cystadenoma, NOS: - text: Endometrioid cystadenoma, NOS - Transient abnormal myelopoiesis: - text: Transient abnormal myelopoiesis - Jugular paraganglioma: - text: Jugular paraganglioma - Papillary serous adenocarcinoma: - text: Papillary serous adenocarcinoma - Hepatocellular adenoma: - text: Hepatocellular adenoma - Congenital peribronchial myofibroblastic tumor: - text: Congenital peribronchial myofibroblastic tumor - Chronic granulocytic leukemia, Philadelphia chromosome (Ph1) positive: - text: Chronic granulocytic leukemia, Philadelphia chromosome (Ph1) positive - Melanocytoma, eyeball: - text: Melanocytoma, eyeball - Teratoma with malignant transformation: - text: Teratoma with malignant transformation - Paget disease, extramammary: - text: Paget disease, extramammary - Infiltrating basal cell carcinoma, NOS: - text: Infiltrating basal cell carcinoma, NOS - Leydig cell tumor, NOS: - text: Leydig cell tumor, NOS - Intraductal papillary-mucinous carcinoma, non-invasive: - text: Intraductal papillary-mucinous carcinoma, non-invasive - Basaloid squamous cell carcinoma: - text: Basaloid squamous cell carcinoma - description: Basaloid Squamous Cell Carcinoma - Atypical leiomyoma: - text: Atypical leiomyoma - Merkel cell tumor: - text: Merkel cell tumor - Mesonephroma, NOS: - text: Mesonephroma, NOS - Epithelioid cell melanoma: - text: Epithelioid cell melanoma - Mixed mesenchymal sarcoma: - text: Mixed mesenchymal sarcoma - Adenocarcinoma, metastatic, NOS: - text: Adenocarcinoma, metastatic, NOS - Malignant lymphoma, large B-cell, NOS: - text: Malignant lymphoma, large B-cell, NOS - Juxtacortical chondroma: - text: Juxtacortical chondroma - Midline carcinoma of children and young adults with NUT rearrangement: - text: Midline carcinoma of children and young adults with NUT rearrangement - Adrenal medullary paraganglioma, malignant: - text: Adrenal medullary paraganglioma, malignant - Florid osseous dysplasia: - text: Florid osseous dysplasia - VAIN III: - text: VAIN III - Splenic diffuse red pulp small B-cell lymphoma: - text: Splenic diffuse red pulp small B-cell lymphoma - Giant cell tumor of bone, NOS: - text: Giant cell tumor of bone, NOS - Insulinoma, malignant: - text: Insulinoma, malignant - Fibrous mesothelioma, malignant: - text: Fibrous mesothelioma, malignant - Traditional serrated adenoma: - text: Traditional serrated adenoma - Burkitt tumor: - text: Burkitt tumor - Acoustic neuroma: - text: Acoustic neuroma - Adenoid cystic carcinoma: - text: Adenoid cystic carcinoma - Acute lymphoblastic leukemia, NOS: - text: Acute lymphoblastic leukemia, NOS - Mature T ALL: - text: Mature T ALL - Medulloblastoma, group 4: - text: Medulloblastoma, group 4 - Malignant lymphoma, small lymphocytic, diffuse: - text: Malignant lymphoma, small lymphocytic, diffuse - enum_CCDH_Diagnosis_morphology: - name: enum_CCDH_Diagnosis_morphology - description: Autogenerated Enumeration for CRDC-H Diagnosis morphology - comments: - - 'Name according to TCCM: "CRDC-H.Diagnosis.morphology"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Diagnosis.morphology - code_set_version: '2021-07-21T20:42:45.513623+00:00' - permissible_values: - 9261/3: - text: 9261/3 - 8814/3: - text: 8814/3 - 9385/3: - text: 9385/3 - 9662/3: - text: 9662/3 - 9011/0: - text: 9011/0 - 8824/0: - text: 8824/0 - 8936/1: - text: 8936/1 - 8503/0: - text: 8503/0 - 9392/3: - text: 9392/3 - 8500/2: - text: 8500/2 - 8550/0: - text: 8550/0 - 8072/3: - text: 8072/3 - 9751/3: - text: 9751/3 - 9762/3: - text: 9762/3 - 8621/1: - text: 8621/1 - 9492/0: - text: 9492/0 - 9051/3: - text: 9051/3 - 8346/3: - text: 8346/3 - 8454/0: - text: 8454/0 - 8522/3: - text: 8522/3 - 8800/3: - text: 8800/3 - 8631/3: - text: 8631/3 - 8010/3: - text: 8010/3 - 9045/3: - text: 9045/3 - 8508/3: - text: 8508/3 - 9891/3: - text: 9891/3 - 8001/0: - text: 8001/0 - 9054/0: - text: 9054/0 - 8262/3: - text: 8262/3 - 8780/3: - text: 8780/3 - 8221/3: - text: 8221/3 - 9120/3: - text: 9120/3 - 8742/3: - text: 8742/3 - 8240/1: - text: 8240/1 - 8641/0: - text: 8641/0 - 9477/3: - text: 9477/3 - 9040/0: - text: 9040/0 - 9560/1: - text: 9560/1 - 9100/3: - text: 9100/3 - 8880/0: - text: 8880/0 - 8811/0: - text: 8811/0 - 8251/0: - text: 8251/0 - 9510/0: - text: 9510/0 - 9150/3: - text: 9150/3 - 9195/3: - text: 9195/3 - 8264/0: - text: 8264/0 - 9535/0: - text: 9535/0 - 8770/0: - text: 8770/0 - 8815/0: - text: 8815/0 - 8330/0: - text: 8330/0 - 9200/1: - text: 9200/1 - 9700/3: - text: 9700/3 - 8602/0: - text: 8602/0 - 8010/0: - text: 8010/0 - 8481/3: - text: 8481/3 - 8593/1: - text: 8593/1 - 8890/1: - text: 8890/1 - 9581/3: - text: 9581/3 - 9684/3: - text: 9684/3 - 9262/0: - text: 9262/0 - 9650/3: - text: 9650/3 - 8640/3: - text: 8640/3 - 9540/0: - text: 9540/0 - 9653/3: - text: 9653/3 - 8096/0: - text: 8096/0 - 8812/0: - text: 8812/0 - 9665/3: - text: 9665/3 - 8552/3: - text: 8552/3 - 8322/3: - text: 8322/3 - 9470/3: - text: 9470/3 - 9471/3: - text: 9471/3 - 8313/1: - text: 8313/1 - 8140/2: - text: 8140/2 - 9382/3: - text: 9382/3 - 8760/0: - text: 8760/0 - 8950/3: - text: 8950/3 - 9815/3: - text: 9815/3 - 9834/3: - text: 9834/3 - 8121/0: - text: 8121/0 - 9110/0: - text: 9110/0 - 9727/3: - text: 9727/3 - 8509/2: - text: 8509/2 - 9876/3: - text: 9876/3 - 8474/1: - text: 8474/1 - 8472/1: - text: 8472/1 - 8390/3: - text: 8390/3 - 9836/3: - text: 9836/3 - 9963/3: - text: 9963/3 - 8246/3: - text: 8246/3 - 9424/3: - text: 9424/3 - 8824/1: - text: 8824/1 - 8452/1: - text: 8452/1 - 8102/0: - text: 8102/0 - 8610/0: - text: 8610/0 - 9230/3: - text: 9230/3 - 9967/3: - text: 9967/3 - 8857/0: - text: 8857/0 - 9531/0: - text: 9531/0 - 8410/3: - text: 8410/3 - 8120/0: - text: 8120/0 - 9475/3: - text: 9475/3 - 8158/1: - text: 8158/1 - 8990/1: - text: 8990/1 - 9817/3: - text: 9817/3 - 9170/0: - text: 9170/0 - 9800/3: - text: 9800/3 - 8140/1: - text: 8140/1 - 8408/1: - text: 8408/1 - 8981/3: - text: 8981/3 - 9050/0: - text: 9050/0 - 8215/3: - text: 8215/3 - 8771/3: - text: 8771/3 - 8771/0: - text: 8771/0 - 8812/3: - text: 8812/3 - 8524/3: - text: 8524/3 - 9505/1: - text: 9505/1 - 9063/3: - text: 9063/3 - 9130/0: - text: 9130/0 - 8146/0: - text: 8146/0 - 9136/1: - text: 9136/1 - 8090/1: - text: 8090/1 - 8560/0: - text: 8560/0 - 8530/3: - text: 8530/3 - 8272/3: - text: 8272/3 - 8580/1: - text: 8580/1 - 9015/1: - text: 9015/1 - 9808/3: - text: 9808/3 - 9170/3: - text: 9170/3 - 8034/3: - text: 8034/3 - 9210/0: - text: 9210/0 - 8010/9: - text: 8010/9 - 8147/3: - text: 8147/3 - 8630/1: - text: 8630/1 - 8372/0: - text: 8372/0 - 8762/1: - text: 8762/1 - 8151/0: - text: 8151/0 - Unknown: - text: Unknown - 9712/3: - text: 9712/3 - 9440/3: - text: 9440/3 - 9816/3: - text: 9816/3 - 8313/3: - text: 8313/3 - 8583/1: - text: 8583/1 - 9679/3: - text: 9679/3 - 8149/0: - text: 8149/0 - 9971/1: - text: 9971/1 - 9870/3: - text: 9870/3 - 8830/3: - text: 8830/3 - 8152/1: - text: 8152/1 - 8921/3: - text: 8921/3 - 8761/1: - text: 8761/1 - 9560/3: - text: 9560/3 - 8728/1: - text: 8728/1 - 8076/2: - text: 8076/2 - 9872/3: - text: 9872/3 - 8152/3: - text: 8152/3 - 8032/3: - text: 8032/3 - 8471/3: - text: 8471/3 - 9270/3: - text: 9270/3 - 8153/3: - text: 8153/3 - 8895/3: - text: 8895/3 - 8316/3: - text: 8316/3 - 9065/3: - text: 9065/3 - 8140/3: - text: 8140/3 - 9950/3: - text: 9950/3 - 8120/2: - text: 8120/2 - 9015/3: - text: 9015/3 - 9539/3: - text: 9539/3 - 9480/3: - text: 9480/3 - 9812/3: - text: 9812/3 - 8741/3: - text: 8741/3 - 8891/3: - text: 8891/3 - 9874/3: - text: 9874/3 - 9131/0: - text: 9131/0 - 8261/3: - text: 8261/3 - 9534/0: - text: 9534/0 - 9971/3: - text: 9971/3 - 9270/1: - text: 9270/1 - 9562/0: - text: 9562/0 - 8851/3: - text: 8851/3 - 9130/1: - text: 9130/1 - 8074/3: - text: 8074/3 - 8101/0: - text: 8101/0 - 8161/0: - text: 8161/0 - 8586/3: - text: 8586/3 - 8005/3: - text: 8005/3 - 9220/3: - text: 9220/3 - 8461/3: - text: 8461/3 - 9741/3: - text: 9741/3 - 9764/3: - text: 9764/3 - 8250/2: - text: 8250/2 - 9341/3: - text: 9341/3 - 8144/3: - text: 8144/3 - 8040/1: - text: 8040/1 - 8073/3: - text: 8073/3 - 9312/0: - text: 9312/0 - 9533/0: - text: 9533/0 - 8723/3: - text: 8723/3 - 8901/3: - text: 8901/3 - 9064/3: - text: 9064/3 - 9521/3: - text: 9521/3 - 8800/0: - text: 8800/0 - 8201/3: - text: 8201/3 - 8082/3: - text: 8082/3 - 9984/3: - text: 9984/3 - 8743/3: - text: 8743/3 - 8790/0: - text: 8790/0 - 8022/3: - text: 8022/3 - 9507/0: - text: 9507/0 - 8631/0: - text: 8631/0 - 9411/3: - text: 9411/3 - 9652/3: - text: 9652/3 - 8936/3: - text: 8936/3 - 8772/0: - text: 8772/0 - 9814/3: - text: 9814/3 - 8031/3: - text: 8031/3 - 9813/3: - text: 9813/3 - 9360/1: - text: 9360/1 - 9137/3: - text: 9137/3 - 9560/0: - text: 9560/0 - 8334/0: - text: 8334/0 - 9741/1: - text: 9741/1 - 8711/3: - text: 8711/3 - 9133/3: - text: 9133/3 - 9100/0: - text: 9100/0 - 8934/3: - text: 8934/3 - 8170/3: - text: 8170/3 - 8870/0: - text: 8870/0 - 8162/3: - text: 8162/3 - 8163/0: - text: 8163/0 - 8480/1: - text: 8480/1 - 8935/1: - text: 8935/1 - 9920/3: - text: 9920/3 - 8097/3: - text: 8097/3 - 8633/1: - text: 8633/1 - 9719/3: - text: 9719/3 - 8720/2: - text: 8720/2 - 8471/0: - text: 8471/0 - 8263/3: - text: 8263/3 - 8084/3: - text: 8084/3 - 9384/1: - text: 9384/1 - 8813/0: - text: 8813/0 - 8070/33: - text: 8070/33 - 8091/3: - text: 8091/3 - 9381/3: - text: 9381/3 - 9571/0: - text: 9571/0 - 9930/3: - text: 9930/3 - 8590/1: - text: 8590/1 - 9508/3: - text: 9508/3 - 8190/3: - text: 8190/3 - 9512/3: - text: 9512/3 - 9827/3: - text: 9827/3 - 8190/0: - text: 8190/0 - 8214/3: - text: 8214/3 - 9702/3: - text: 9702/3 - 8150/3: - text: 8150/3 - 8280/3: - text: 8280/3 - 9281/0: - text: 9281/0 - 8860/0: - text: 8860/0 - 9509/1: - text: 9509/1 - 8340/3: - text: 8340/3 - 9442/3: - text: 9442/3 - 9175/0: - text: 9175/0 - 9501/0: - text: 9501/0 - 8951/3: - text: 8951/3 - 9350/1: - text: 9350/1 - 9818/3: - text: 9818/3 - 8380/2: - text: 8380/2 - 9090/3: - text: 9090/3 - 9898/1: - text: 9898/1 - 8413/3: - text: 8413/3 - 9383/1: - text: 9383/1 - 8825/3: - text: 8825/3 - 9104/1: - text: 9104/1 - 9241/0: - text: 9241/0 - 8510/3: - text: 8510/3 - 9840/3: - text: 9840/3 - 8650/0: - text: 8650/0 - 9873/3: - text: 9873/3 - 8263/0: - text: 8263/0 - 9961/3: - text: 9961/3 - 9372/3: - text: 9372/3 - 8902/3: - text: 8902/3 - 8562/3: - text: 8562/3 - 8830/0: - text: 8830/0 - 8713/0: - text: 8713/0 - 9580/3: - text: 9580/3 - 9043/3: - text: 9043/3 - 8834/1: - text: 8834/1 - 8740/3: - text: 8740/3 - 8221/0: - text: 8221/0 - 9010/0: - text: 9010/0 - 9731/3: - text: 9731/3 - 8043/3: - text: 8043/3 - 8071/3: - text: 8071/3 - 8519/2: - text: 8519/2 - 9085/3: - text: 9085/3 - 9701/3: - text: 9701/3 - 8967/0: - text: 8967/0 - 9272/0: - text: 9272/0 - 9080/1: - text: 9080/1 - 9055/1: - text: 9055/1 - 8581/1: - text: 8581/1 - 9160/0: - text: 9160/0 - 8408/0: - text: 8408/0 - 8574/3: - text: 8574/3 - 8904/0: - text: 8904/0 - 9964/3: - text: 9964/3 - 9120/0: - text: 9120/0 - 8078/3: - text: 8078/3 - 8620/3: - text: 8620/3 - 8550/3: - text: 8550/3 - 9172/0: - text: 9172/0 - 8856/0: - text: 8856/0 - 9960/3: - text: 9960/3 - 8680/1: - text: 8680/1 - 8011/3: - text: 8011/3 - 9591/3: - text: 9591/3 - 9511/3: - text: 9511/3 - 9698/3: - text: 9698/3 - 8092/3: - text: 8092/3 - 8180/3: - text: 8180/3 - 8332/3: - text: 8332/3 - 9946/3: - text: 9946/3 - 9991/3: - text: 9991/3 - 8632/1: - text: 8632/1 - 9393/3: - text: 9393/3 - 9490/0: - text: 9490/0 - 8210/0: - text: 8210/0 - 9184/3: - text: 9184/3 - 9561/3: - text: 9561/3 - 8746/3: - text: 8746/3 - 9444/1: - text: 9444/1 - 9766/1: - text: 9766/1 - 9390/3: - text: 9390/3 - 8317/3: - text: 8317/3 - 8842/0: - text: 8842/0 - 9390/1: - text: 9390/1 - 9070/3: - text: 9070/3 - 8211/0: - text: 8211/0 - 9361/1: - text: 9361/1 - 8742/2: - text: 8742/2 - 8509/3: - text: 8509/3 - 9250/3: - text: 9250/3 - 8750/0: - text: 8750/0 - 9013/0: - text: 9013/0 - 8242/1: - text: 8242/1 - 8220/3: - text: 8220/3 - 9678/3: - text: 9678/3 - 8124/3: - text: 8124/3 - 9726/3: - text: 9726/3 - 8935/3: - text: 8935/3 - 8521/1: - text: 8521/1 - 9194/3: - text: 9194/3 - 8982/0: - text: 8982/0 - 9689/3: - text: 9689/3 - 8290/3: - text: 8290/3 - 8381/1: - text: 8381/1 - 8634/3: - text: 8634/3 - 9965/3: - text: 9965/3 - 8250/3: - text: 8250/3 - 8373/0: - text: 8373/0 - 8015/3: - text: 8015/3 - 8370/1: - text: 8370/1 - 8260/0: - text: 8260/0 - 9080/3: - text: 9080/3 - 9875/3: - text: 9875/3 - 9752/1: - text: 9752/1 - 8339/3: - text: 8339/3 - 8523/3: - text: 8523/3 - 9542/3: - text: 9542/3 - 8035/3: - text: 8035/3 - 8900/0: - text: 8900/0 - 8347/3: - text: 8347/3 - 8855/3: - text: 8855/3 - 8330/3: - text: 8330/3 - 9301/0: - text: 9301/0 - 8404/0: - text: 8404/0 - 8200/3: - text: 8200/3 - 9831/3: - text: 9831/3 - 8143/3: - text: 8143/3 - 9280/0: - text: 9280/0 - 9451/3: - text: 9451/3 - 8542/3: - text: 8542/3 - 9101/3: - text: 9101/3 - 8120/1: - text: 8120/1 - 8210/2: - text: 8210/2 - 8833/3: - text: 8833/3 - 9522/3: - text: 9522/3 - 8408/3: - text: 8408/3 - 9124/3: - text: 9124/3 - 9193/3: - text: 9193/3 - 8601/0: - text: 8601/0 - 9690/3: - text: 9690/3 - 9910/3: - text: 9910/3 - 9737/3: - text: 9737/3 - 8300/3: - text: 8300/3 - 8343/2: - text: 8343/2 - 9180/3: - text: 9180/3 - 8103/0: - text: 8103/0 - 9396/3: - text: 9396/3 - 8086/3: - text: 8086/3 - 8774/3: - text: 8774/3 - 9251/3: - text: 9251/3 - 8600/0: - text: 8600/0 - 9431/1: - text: 9431/1 - 8245/1: - text: 8245/1 - 9330/3: - text: 9330/3 - 8102/3: - text: 8102/3 - 8249/3: - text: 8249/3 - 8148/2: - text: 8148/2 - 8315/3: - text: 8315/3 - 8441/3: - text: 8441/3 - 9150/0: - text: 9150/0 - 9042/3: - text: 9042/3 - 8861/0: - text: 8861/0 - 8522/2: - text: 8522/2 - 8375/0: - text: 8375/0 - 9130/3: - text: 9130/3 - 8000/1: - text: 8000/1 - 9182/3: - text: 9182/3 - 8000/3: - text: 8000/3 - 8010/2: - text: 8010/2 - 8504/2: - text: 8504/2 - 8172/3: - text: 8172/3 - 9699/3: - text: 9699/3 - 9537/0: - text: 9537/0 - 8841/1: - text: 8841/1 - 9103/0: - text: 9103/0 - 8013/3: - text: 8013/3 - 8083/3: - text: 8083/3 - 8371/0: - text: 8371/0 - 9020/1: - text: 9020/1 - 9423/3: - text: 9423/3 - 8342/3: - text: 8342/3 - 8337/3: - text: 8337/3 - 8525/3: - text: 8525/3 - 9072/3: - text: 9072/3 - 8936/0: - text: 8936/0 - 8319/3: - text: 8319/3 - 8120/3: - text: 8120/3 - 9897/3: - text: 9897/3 - 8910/3: - text: 8910/3 - 9671/3: - text: 9671/3 - 9073/1: - text: 9073/1 - 8244/3: - text: 8244/3 - 8160/0: - text: 8160/0 - 9330/0: - text: 9330/0 - 8050/0: - text: 8050/0 - 9735/3: - text: 9735/3 - 8980/3: - text: 8980/3 - 8442/1: - text: 8442/1 - 9181/3: - text: 9181/3 - 8154/3: - text: 8154/3 - 9105/3: - text: 9105/3 - 9962/3: - text: 9962/3 - 8972/3: - text: 8972/3 - 8080/2: - text: 8080/2 - 8321/0: - text: 8321/0 - 9724/3: - text: 9724/3 - 8896/3: - text: 8896/3 - 8070/6: - text: 8070/6 - 8090/3: - text: 8090/3 - 8130/2: - text: 8130/2 - 8854/0: - text: 8854/0 - 9945/3: - text: 9945/3 - 8932/0: - text: 8932/0 - 8966/0: - text: 8966/0 - 9364/3: - text: 9364/3 - 9740/1: - text: 9740/1 - 9680/3: - text: 9680/3 - 8156/3: - text: 8156/3 - 9341/1: - text: 9341/1 - 8990/3: - text: 8990/3 - 8589/3: - text: 8589/3 - 8631/1: - text: 8631/1 - 8248/1: - text: 8248/1 - 8801/3: - text: 8801/3 - 8891/0: - text: 8891/0 - 9015/0: - text: 9015/0 - 8310/0: - text: 8310/0 - 9121/0: - text: 9121/0 - 8420/0: - text: 8420/0 - 9135/1: - text: 9135/1 - 8374/0: - text: 8374/0 - 8930/3: - text: 8930/3 - 8241/3: - text: 8241/3 - 8370/0: - text: 8370/0 - 8245/3: - text: 8245/3 - 8075/3: - text: 8075/3 - 8551/3: - text: 8551/3 - 9210/1: - text: 9210/1 - 8825/0: - text: 8825/0 - 9580/0: - text: 9580/0 - 9290/0: - text: 9290/0 - 9302/3: - text: 9302/3 - 9000/0: - text: 9000/0 - 8815/3: - text: 8815/3 - 8000/6: - text: 8000/6 - 8905/0: - text: 8905/0 - 9705/3: - text: 9705/3 - 9231/3: - text: 9231/3 - 9240/3: - text: 9240/3 - 8940/0: - text: 8940/0 - 8520/2: - text: 8520/2 - 9491/0: - text: 9491/0 - 8345/3: - text: 8345/3 - 8831/0: - text: 8831/0 - 9012/0: - text: 9012/0 - 9086/3: - text: 9086/3 - 8982/3: - text: 8982/3 - 8550/1: - text: 8550/1 - 9663/3: - text: 9663/3 - 9220/0: - text: 9220/0 - 9755/3: - text: 9755/3 - 8325/0: - text: 8325/0 - 8512/3: - text: 8512/3 - 9992/3: - text: 9992/3 - 9425/3: - text: 9425/3 - 8623/1: - text: 8623/1 - 9050/3: - text: 9050/3 - 9987/3: - text: 9987/3 - 8650/1: - text: 8650/1 - 8772/3: - text: 8772/3 - 8173/3: - text: 8173/3 - 9432/1: - text: 9432/1 - 8650/3: - text: 8650/3 - 8634/1: - text: 8634/1 - 8441/2: - text: 8441/2 - 9055/0: - text: 9055/0 - 8402/0: - text: 8402/0 - 9597/3: - text: 9597/3 - 8683/0: - text: 8683/0 - 8147/0: - text: 8147/0 - 8990/0: - text: 8990/0 - 8263/2: - text: 8263/2 - 8430/1: - text: 8430/1 - 8270/0: - text: 8270/0 - 8730/0: - text: 8730/0 - 8160/3: - text: 8160/3 - 8728/3: - text: 8728/3 - 8253/3: - text: 8253/3 - 8482/3: - text: 8482/3 - 9807/3: - text: 9807/3 - 8281/3: - text: 8281/3 - 9532/0: - text: 9532/0 - 8440/3: - text: 8440/3 - 8473/1: - text: 8473/1 - 8964/3: - text: 8964/3 - 8341/3: - text: 8341/3 - 8070/2: - text: 8070/2 - 9539/1: - text: 9539/1 - 8543/3: - text: 8543/3 - 9110/3: - text: 9110/3 - 9530/3: - text: 9530/3 - 8851/0: - text: 8851/0 - 8594/1: - text: 8594/1 - 8220/0: - text: 8220/0 - 8254/3: - text: 8254/3 - 9150/1: - text: 9150/1 - 9867/3: - text: 9867/3 - 9503/3: - text: 9503/3 - 8974/1: - text: 8974/1 - 8460/0: - text: 8460/0 - 8858/3: - text: 8858/3 - 8983/3: - text: 8983/3 - 8350/3: - text: 8350/3 - 8931/3: - text: 8931/3 - 9174/0: - text: 9174/0 - 8420/3: - text: 8420/3 - 8014/3: - text: 8014/3 - 9174/1: - text: 9174/1 - 8403/0: - text: 8403/0 - 8272/0: - text: 8272/0 - 8001/3: - text: 8001/3 - 9020/0: - text: 9020/0 - 8142/3: - text: 8142/3 - 8270/3: - text: 8270/3 - 8261/2: - text: 8261/2 - 8290/0: - text: 8290/0 - 8042/3: - text: 8042/3 - 8991/3: - text: 8991/3 - 9582/0: - text: 9582/0 - 9708/3: - text: 9708/3 - 9758/3: - text: 9758/3 - 9186/3: - text: 9186/3 - 9391/3: - text: 9391/3 - 8720/3: - text: 8720/3 - 8409/3: - text: 8409/3 - 8407/0: - text: 8407/0 - 8050/2: - text: 8050/2 - 8001/1: - text: 8001/1 - 8155/3: - text: 8155/3 - 8121/3: - text: 8121/3 - 8210/3: - text: 8210/3 - 8804/3: - text: 8804/3 - 8728/0: - text: 8728/0 - 8893/0: - text: 8893/0 - 8862/0: - text: 8862/0 - 8770/3: - text: 8770/3 - 8894/0: - text: 8894/0 - 9474/3: - text: 9474/3 - 8585/3: - text: 8585/3 - 9410/3: - text: 9410/3 - 9753/1: - text: 9753/1 - 8046/3: - text: 8046/3 - 9342/3: - text: 9342/3 - 9983/3: - text: 9983/3 - 9673/3: - text: 9673/3 - 9734/3: - text: 9734/3 - 8453/3: - text: 8453/3 - 8501/3: - text: 8501/3 - 8504/0: - text: 8504/0 - 9322/0: - text: 9322/0 - 8451/1: - text: 8451/1 - 8975/1: - text: 8975/1 - 8453/2: - text: 8453/2 - 9221/3: - text: 9221/3 - 8382/3: - text: 8382/3 - 8005/0: - text: 8005/0 - 8503/3: - text: 8503/3 - 8898/1: - text: 8898/1 - 9014/1: - text: 9014/1 - 9733/3: - text: 9733/3 - 8150/0: - text: 8150/0 - 9082/3: - text: 9082/3 - 8231/3: - text: 8231/3 - 8670/3: - text: 8670/3 - 9866/3: - text: 9866/3 - 8361/0: - text: 8361/0 - 9161/1: - text: 9161/1 - 9931/3: - text: 9931/3 - 8963/3: - text: 8963/3 - 9754/3: - text: 9754/3 - 9090/0: - text: 9090/0 - 8811/1: - text: 8811/1 - 8744/3: - text: 8744/3 - 9761/3: - text: 9761/3 - 8081/2: - text: 8081/2 - 8140/0: - text: 8140/0 - 9275/0: - text: 9275/0 - 9989/3: - text: 9989/3 - 9321/0: - text: 9321/0 - 8311/3: - text: 8311/3 - 8174/3: - text: 8174/3 - 8514/3: - text: 8514/3 - 9132/0: - text: 9132/0 - 8890/0: - text: 8890/0 - 9052/0: - text: 9052/0 - 9430/3: - text: 9430/3 - 8591/1: - text: 8591/1 - 8912/3: - text: 8912/3 - 8392/0: - text: 8392/0 - 8959/1: - text: 8959/1 - 8592/1: - text: 8592/1 - 8085/3: - text: 8085/3 - 8010/6: - text: 8010/6 - 8230/2: - text: 8230/2 - 8191/0: - text: 8191/0 - 9514/1: - text: 9514/1 - 9040/3: - text: 9040/3 - 8148/0: - text: 8148/0 - 8585/1: - text: 8585/1 - 8211/3: - text: 8211/3 - 8773/3: - text: 8773/3 - 8693/3: - text: 8693/3 - 9801/3: - text: 9801/3 - 9472/3: - text: 9472/3 - 8740/0: - text: 8740/0 - 8265/3: - text: 8265/3 - 8247/3: - text: 8247/3 - 8712/0: - text: 8712/0 - 9729/3: - text: 9729/3 - 9860/3: - text: 9860/3 - 9185/3: - text: 9185/3 - 9273/0: - text: 9273/0 - 8003/3: - text: 8003/3 - 9675/3: - text: 9675/3 - 8400/0: - text: 8400/0 - 8430/3: - text: 8430/3 - 9062/3: - text: 9062/3 - 8033/3: - text: 8033/3 - 9505/3: - text: 9505/3 - 9759/3: - text: 9759/3 - 9282/0: - text: 9282/0 - 8441/0: - text: 8441/0 - 8660/0: - text: 8660/0 - 8580/3: - text: 8580/3 - 8381/3: - text: 8381/3 - 8331/3: - text: 8331/3 - 9016/0: - text: 9016/0 - 9530/0: - text: 9530/0 - 9751/1: - text: 9751/1 - 9380/3: - text: 9380/3 - 8200/0: - text: 8200/0 - 8460/2: - text: 8460/2 - 9460/3: - text: 9460/3 - 9363/0: - text: 9363/0 - 9183/3: - text: 9183/3 - 9220/1: - text: 9220/1 - 8310/3: - text: 8310/3 - 9000/1: - text: 9000/1 - 8443/0: - text: 8443/0 - 8802/3: - text: 8802/3 - 8810/1: - text: 8810/1 - 8803/3: - text: 8803/3 - 8252/3: - text: 8252/3 - 8333/0: - text: 8333/0 - 9805/3: - text: 9805/3 - 9140/3: - text: 9140/3 - 8507/3: - text: 8507/3 - 8587/0: - text: 8587/0 - 9192/3: - text: 9192/3 - 8380/0: - text: 8380/0 - 9000/3: - text: 9000/3 - 8561/0: - text: 8561/0 - 9980/3: - text: 9980/3 - 8004/3: - text: 8004/3 - 8271/0: - text: 8271/0 - 9100/1: - text: 9100/1 - 8281/0: - text: 8281/0 - 8500/3: - text: 8500/3 - 9806/3: - text: 9806/3 - 9664/3: - text: 9664/3 - 8722/0: - text: 8722/0 - 8343/3: - text: 8343/3 - 9718/3: - text: 9718/3 - 8741/2: - text: 8741/2 - 8903/0: - text: 8903/0 - 8401/3: - text: 8401/3 - 8761/0: - text: 8761/0 - 8854/3: - text: 8854/3 - 8444/1: - text: 8444/1 - 8021/3: - text: 8021/3 - 8745/3: - text: 8745/3 - 8077/2: - text: 8077/2 - 8098/3: - text: 8098/3 - 9441/3: - text: 9441/3 - 8030/3: - text: 8030/3 - 8504/3: - text: 8504/3 - 8140/33: - text: 8140/33 - 8474/3: - text: 8474/3 - 9071/3: - text: 9071/3 - 8693/1: - text: 8693/1 - 8857/3: - text: 8857/3 - 8933/3: - text: 8933/3 - 8314/3: - text: 8314/3 - 8640/1: - text: 8640/1 - 9896/3: - text: 9896/3 - 9716/3: - text: 9716/3 - 8204/0: - text: 8204/0 - 9500/3: - text: 9500/3 - 8940/3: - text: 8940/3 - 8810/0: - text: 8810/0 - 9080/0: - text: 9080/0 - 9530/1: - text: 9530/1 - 8095/3: - text: 8095/3 - 8970/3: - text: 8970/3 - 8895/0: - text: 8895/0 - 8480/6: - text: 8480/6 - 8682/1: - text: 8682/1 - 8630/3: - text: 8630/3 - 8462/1: - text: 8462/1 - 8502/3: - text: 8502/3 - 9661/3: - text: 9661/3 - 8600/3: - text: 8600/3 - 8960/3: - text: 8960/3 - 8171/3: - text: 8171/3 - 9811/3: - text: 9811/3 - 9053/3: - text: 9053/3 - 8201/2: - text: 8201/2 - 8150/1: - text: 8150/1 - 8826/0: - text: 8826/0 - 8894/3: - text: 8894/3 - 8460/3: - text: 8460/3 - 8463/1: - text: 8463/1 - 8450/3: - text: 8450/3 - 9861/3: - text: 9861/3 - 8727/0: - text: 8727/0 - 8576/3: - text: 8576/3 - 9493/0: - text: 9493/0 - 9373/0: - text: 9373/0 - 9898/3: - text: 9898/3 - 9478/3: - text: 9478/3 - 9948/3: - text: 9948/3 - 8077/0: - text: 8077/0 - 8041/3: - text: 8041/3 - 9362/3: - text: 9362/3 - 8324/0: - text: 8324/0 - 9251/1: - text: 9251/1 - 8575/3: - text: 8575/3 - 9142/0: - text: 9142/0 - 9667/3: - text: 9667/3 - 8213/0: - text: 8213/0 - 8023/3: - text: 8023/3 - 8622/1: - text: 8622/1 - 9051/0: - text: 9051/0 - 8541/3: - text: 8541/3 - 9571/3: - text: 9571/3 - 8730/3: - text: 8730/3 - 8333/3: - text: 8333/3 - 9200/0: - text: 9200/0 - 8155/1: - text: 8155/1 - 8318/3: - text: 8318/3 - 9395/3: - text: 9395/3 - 8973/3: - text: 8973/3 - 8825/1: - text: 8825/1 - 8402/3: - text: 8402/3 - 8960/1: - text: 8960/1 - 9442/1: - text: 9442/1 - 9401/3: - text: 9401/3 - 9041/3: - text: 9041/3 - 8409/0: - text: 8409/0 - 9506/1: - text: 9506/1 - 8520/3: - text: 8520/3 - 8360/1: - text: 8360/1 - 9550/0: - text: 9550/0 - 8900/3: - text: 8900/3 - 8920/3: - text: 8920/3 - 8800/9: - text: 8800/9 - 9252/3: - text: 9252/3 - 8941/3: - text: 8941/3 - 8850/3: - text: 8850/3 - 9490/3: - text: 9490/3 - 9371/3: - text: 9371/3 - 8311/1: - text: 8311/1 - 9365/3: - text: 9365/3 - 8470/3: - text: 8470/3 - 9320/0: - text: 9320/0 - 9540/3: - text: 9540/3 - 9695/3: - text: 9695/3 - 8521/3: - text: 8521/3 - 8470/0: - text: 8470/0 - 8076/3: - text: 8076/3 - 8140/6: - text: 8140/6 - 8401/0: - text: 8401/0 - 8093/3: - text: 8093/3 - 8110/0: - text: 8110/0 - 8461/0: - text: 8461/0 - 9596/3: - text: 9596/3 - 8161/3: - text: 8161/3 - 9290/3: - text: 9290/3 - 9260/3: - text: 9260/3 - 9510/3: - text: 9510/3 - 9445/3: - text: 9445/3 - 8642/1: - text: 8642/1 - 8725/0: - text: 8725/0 - 8250/1: - text: 8250/1 - 8130/3: - text: 8130/3 - 8051/0: - text: 8051/0 - 8041/34: - text: 8041/34 - 8406/0: - text: 8406/0 - 9413/0: - text: 9413/0 - 8726/0: - text: 8726/0 - 8722/3: - text: 8722/3 - 8230/3: - text: 8230/3 - 8313/0: - text: 8313/0 - 8584/3: - text: 8584/3 - 8832/3: - text: 8832/3 - 8811/3: - text: 8811/3 - 8390/0: - text: 8390/0 - 8052/2: - text: 8052/2 - 9310/0: - text: 9310/0 - 9520/3: - text: 9520/3 - 8050/3: - text: 8050/3 - 8582/3: - text: 8582/3 - 9270/0: - text: 9270/0 - 8959/3: - text: 8959/3 - 9570/0: - text: 9570/0 - 8892/0: - text: 8892/0 - 8850/1: - text: 8850/1 - 8100/0: - text: 8100/0 - 9659/3: - text: 9659/3 - 8261/0: - text: 8261/0 - 8391/0: - text: 8391/0 - 8840/0: - text: 8840/0 - 8711/0: - text: 8711/0 - 9390/0: - text: 9390/0 - 8852/0: - text: 8852/0 - 9832/3: - text: 9832/3 - 8151/3: - text: 8151/3 - 8832/0: - text: 8832/0 - 8971/3: - text: 8971/3 - 8588/3: - text: 8588/3 - 9060/3: - text: 9060/3 - 8680/3: - text: 8680/3 - 9728/3: - text: 9728/3 - 8255/3: - text: 8255/3 - 8822/1: - text: 8822/1 - 9125/0: - text: 9125/0 - 8580/0: - text: 8580/0 - 8320/3: - text: 8320/3 - 9687/3: - text: 9687/3 - 8820/0: - text: 8820/0 - 8721/3: - text: 8721/3 - 9161/0: - text: 9161/0 - 9102/3: - text: 9102/3 - 9768/1: - text: 9768/1 - 8450/0: - text: 8450/0 - 9738/3: - text: 9738/3 - 8582/1: - text: 8582/1 - 8690/1: - text: 8690/1 - 9654/3: - text: 9654/3 - 8122/3: - text: 8122/3 - 8060/0: - text: 8060/0 - 9230/0: - text: 9230/0 - 9740/3: - text: 9740/3 - 8505/0: - text: 8505/0 - 9986/3: - text: 9986/3 - 8572/3: - text: 8572/3 - 8045/3: - text: 8045/3 - 9823/3: - text: 9823/3 - 8827/1: - text: 8827/1 - 9835/3: - text: 9835/3 - 8583/3: - text: 8583/3 - 9180/0: - text: 9180/0 - 9966/3: - text: 9966/3 - 8965/0: - text: 8965/0 - 9473/3: - text: 9473/3 - 8380/3: - text: 8380/3 - 8810/3: - text: 8810/3 - 8681/1: - text: 8681/1 - 9863/3: - text: 9863/3 - 8370/3: - text: 8370/3 - 8821/1: - text: 8821/1 - 9742/3: - text: 9742/3 - 9310/3: - text: 9310/3 - 9760/3: - text: 9760/3 - 8691/1: - text: 8691/1 - 8384/3: - text: 8384/3 - 8983/0: - text: 8983/0 - 9809/3: - text: 9809/3 - 9191/0: - text: 9191/0 - 9123/0: - text: 9123/0 - 8153/1: - text: 8153/1 - 8813/3: - text: 8813/3 - 8881/0: - text: 8881/0 - 9911/3: - text: 9911/3 - 8012/3: - text: 8012/3 - 9970/1: - text: 9970/1 - 9083/3: - text: 9083/3 - 8470/2: - text: 8470/2 - 8700/3: - text: 8700/3 - 8620/1: - text: 8620/1 - 8312/3: - text: 8312/3 - 9940/3: - text: 9940/3 - 8145/3: - text: 8145/3 - 8410/0: - text: 8410/0 - 8507/2: - text: 8507/2 - 8815/1: - text: 8815/1 - 8052/0: - text: 8052/0 - 8780/0: - text: 8780/0 - 8257/3: - text: 8257/3 - 8251/3: - text: 8251/3 - 8403/3: - text: 8403/3 - 8400/1: - text: 8400/1 - 8336/0: - text: 8336/0 - 9895/3: - text: 9895/3 - 9871/3: - text: 9871/3 - 8842/3: - text: 8842/3 - 9865/3: - text: 9865/3 - 9502/0: - text: 9502/0 - 8071/2: - text: 8071/2 - 9476/3: - text: 9476/3 - 9400/3: - text: 9400/3 - 9064/2: - text: 9064/2 - 9141/0: - text: 9141/0 - 9767/1: - text: 9767/1 - 8835/1: - text: 8835/1 - 9750/3: - text: 9750/3 - 9221/0: - text: 9221/0 - 9242/3: - text: 9242/3 - 9020/3: - text: 9020/3 - 8110/3: - text: 8110/3 - 9340/0: - text: 9340/0 - 8070/3: - text: 8070/3 - 8710/3: - text: 8710/3 - 8163/2: - text: 8163/2 - 8890/3: - text: 8890/3 - 8503/2: - text: 8503/2 - 9869/3: - text: 9869/3 - 9709/3: - text: 9709/3 - 8581/3: - text: 8581/3 - 8040/0: - text: 8040/0 - 8573/3: - text: 8573/3 - 8052/3: - text: 8052/3 - 9252/0: - text: 9252/0 - 9014/0: - text: 9014/0 - 9540/1: - text: 9540/1 - 8670/0: - text: 8670/0 - 8823/0: - text: 8823/0 - 8407/3: - text: 8407/3 - 8094/3: - text: 8094/3 - 9765/1: - text: 9765/1 - 9757/3: - text: 9757/3 - 8044/3: - text: 8044/3 - 8051/3: - text: 8051/3 - 8720/0: - text: 8720/0 - 8323/3: - text: 8323/3 - 8323/0: - text: 8323/0 - 9133/1: - text: 9133/1 - 8011/0: - text: 8011/0 - 8692/1: - text: 8692/1 - 9756/3: - text: 9756/3 - 8452/3: - text: 8452/3 - 9351/1: - text: 9351/1 - 8280/0: - text: 8280/0 - 9300/0: - text: 9300/0 - 9590/3: - text: 9590/3 - 9274/0: - text: 9274/0 - 9084/3: - text: 9084/3 - 8121/1: - text: 8121/1 - 8131/3: - text: 8131/3 - 8935/0: - text: 8935/0 - 8383/3: - text: 8383/3 - 8440/0: - text: 8440/0 - 8000/0: - text: 8000/0 - 9538/3: - text: 9538/3 - 9769/1: - text: 9769/1 - 9523/3: - text: 9523/3 - 8897/1: - text: 8897/1 - 9271/0: - text: 9271/0 - 8506/0: - text: 8506/0 - 8680/0: - text: 8680/0 - 9975/3: - text: 9975/3 - 8852/3: - text: 8852/3 - 9833/3: - text: 9833/3 - 9110/1: - text: 9110/1 - 9502/3: - text: 9502/3 - 8322/0: - text: 8322/0 - 8405/0: - text: 8405/0 - 8853/3: - text: 8853/3 - 9732/3: - text: 9732/3 - 9725/3: - text: 9725/3 - 8300/0: - text: 8300/0 - 9670/3: - text: 9670/3 - 9243/3: - text: 9243/3 - 9302/0: - text: 9302/0 - 8584/1: - text: 8584/1 - 8571/3: - text: 8571/3 - 8240/3: - text: 8240/3 - 8570/3: - text: 8570/3 - 8453/0: - text: 8453/0 - 9044/3: - text: 9044/3 - 8540/3: - text: 8540/3 - 9052/3: - text: 9052/3 - 8260/3: - text: 8260/3 - 8213/3: - text: 8213/3 - 9826/3: - text: 9826/3 - 8002/3: - text: 8002/3 - 8053/0: - text: 8053/0 - 9837/3: - text: 9837/3 - 9651/3: - text: 9651/3 - 8836/1: - text: 8836/1 - 8130/1: - text: 8130/1 - 8020/3: - text: 8020/3 - 9691/3: - text: 9691/3 - 9541/0: - text: 9541/0 - 9171/0: - text: 9171/0 - 8141/3: - text: 8141/3 - 9352/1: - text: 9352/1 - 8480/0: - text: 8480/0 - 9985/3: - text: 9985/3 - 9655/3: - text: 9655/3 - 8381/0: - text: 8381/0 - 9030/0: - text: 9030/0 - 8501/2: - text: 8501/2 - 9421/1: - text: 9421/1 - 8560/3: - text: 8560/3 - 8175/3: - text: 8175/3 - 9014/3: - text: 9014/3 - 8959/0: - text: 8959/0 - 8761/3: - text: 8761/3 - 9717/3: - text: 9717/3 - 8805/3: - text: 8805/3 - 9187/3: - text: 9187/3 - 8700/0: - text: 8700/0 - 9081/3: - text: 9081/3 - 9311/0: - text: 9311/0 - 8806/3: - text: 8806/3 - 8202/0: - text: 8202/0 - 9513/3: - text: 9513/3 - 9091/1: - text: 9091/1 - 8671/0: - text: 8671/0 - 9688/3: - text: 9688/3 - 9982/3: - text: 9982/3 - 8170/0: - text: 8170/0 - 9412/1: - text: 9412/1 - 8344/3: - text: 8344/3 - 8335/3: - text: 8335/3 - Not Reported: - text: Not Reported - 8490/6: - text: 8490/6 - 8513/3: - text: 8513/3 - 8522/1: - text: 8522/1 - 8850/0: - text: 8850/0 - 9714/3: - text: 9714/3 - 9820/3: - text: 9820/3 - 9084/0: - text: 9084/0 - 8930/0: - text: 8930/0 - 8380/1: - text: 8380/1 - 9250/1: - text: 9250/1 - 9122/0: - text: 9122/0 - 8830/1: - text: 8830/1 - 8723/0: - text: 8723/0 - 8212/0: - text: 8212/0 - 8490/3: - text: 8490/3 - 8330/1: - text: 8330/1 - 8630/0: - text: 8630/0 - 8000/9: - text: 8000/9 - 9420/3: - text: 9420/3 - 8256/3: - text: 8256/3 - 9450/3: - text: 9450/3 - 9061/3: - text: 9061/3 - 9538/1: - text: 9538/1 - 9173/0: - text: 9173/0 - 8123/3: - text: 8123/3 - 9370/3: - text: 9370/3 - 8242/3: - text: 8242/3 - 9504/3: - text: 9504/3 - 8163/3: - text: 8163/3 - 8156/1: - text: 8156/1 - 8480/3: - text: 8480/3 - 8714/3: - text: 8714/3 - 9394/1: - text: 9394/1 - 8400/3: - text: 8400/3 - 8840/3: - text: 8840/3 - 9501/3: - text: 9501/3 - 8243/3: - text: 8243/3 - 8046/6: - text: 8046/6 - 8801/6: - text: 8801/6 - 8249/6: - text: 8249/6 - 9440/6: - text: 9440/6 - 8804/6: - text: 8804/6 - 8240/6: - text: 8240/6 - 8441/6: - text: 8441/6 - 8806/6: - text: 8806/6 - 8500/6: - text: 8500/6 - 8041/6: - text: 8041/6 - 8800/6: - text: 8800/6 - 8020/6: - text: 8020/6 - 8040/3: - text: 8040/3 - 8482/6: - text: 8482/6 - 8720/6: - text: 8720/6 - 9180/6: - text: 9180/6 - 8471/1: - text: 8471/1 - 8920/6: - text: 8920/6 - 8311/6: - text: 8311/6 - 8950/6: - text: 8950/6 - 8310/6: - text: 8310/6 - enum_CCDH_Diagnosis_disease_status: - name: enum_CCDH_Diagnosis_disease_status - description: Autogenerated Enumeration for CRDC-H Diagnosis disease_status - comments: - - 'Name according to TCCM: "CRDC-H.Diagnosis.disease_status"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Diagnosis.disease_status - code_set_version: '2021-07-21T20:42:46.395853+00:00' - permissible_values: - Initial Diagnosis: - text: Initial Diagnosis - Not Reported: - text: Not Reported - Unknown: - text: Unknown - Residual Disease: - text: Residual Disease - Recurrent Disease: - text: Recurrent Disease - Progressive Disease: - text: Progressive Disease - enum_CCDH_Diagnosis_method_of_diagnosis: - name: enum_CCDH_Diagnosis_method_of_diagnosis - description: Autogenerated Enumeration for CRDC-H Diagnosis method_of_diagnosis - comments: - - 'Name according to TCCM: "CRDC-H.Diagnosis.method_of_diagnosis"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Diagnosis.method_of_diagnosis - code_set_version: '2021-07-21T20:42:46.551160+00:00' - permissible_values: - Surgical Resection: - text: Surgical Resection - description: Excision - Incisional Biopsy: - text: Incisional Biopsy - description: Incisional Biopsy - Dilation and Curettage Procedure: - text: Dilation and Curettage Procedure - description: Dilation and Curettage - Cystoscopy: - text: Cystoscopy - description: Cystoscopy - Laparoscopy: - text: Laparoscopy - description: Laparoscopy - Debulking: - text: Debulking - description: Debulking - Not Allowed To Collect: - text: Not Allowed To Collect - Other: - text: Other - description: Other - Pathologic Review: - text: Pathologic Review - description: Pathologic Examination - Physical Exam: - text: Physical Exam - description: Physical Examination - Ultrasound Guided Biopsy: - text: Ultrasound Guided Biopsy - description: Ultrasound guided biopsy - Cytology: - text: Cytology - description: Cytology - Unknown: - text: Unknown - description: Unknown - Pap Smear: - text: Pap Smear - description: Papanicolaou Smear Procedure - Blood Draw: - text: Blood Draw - description: Phlebotomy - Laparotomy: - text: Laparotomy - description: Laparotomy - Excisional Biopsy: - text: Excisional Biopsy - description: Excisional Biopsy - Fine Needle Aspiration: - text: Fine Needle Aspiration - description: Fine-Needle Aspiration - Bone Marrow Aspirate: - text: Bone Marrow Aspirate - description: Bone Marrow Aspiration - Core Biopsy: - text: Core Biopsy - description: Core Biopsy - Not Reported: - text: Not Reported - description: Not Reported - Diagnostic Imaging: - text: Diagnostic Imaging - description: Diagnostic Imaging - Enucleation: - text: Enucleation - description: Enucleation - Thoracentesis: - text: Thoracentesis - description: Thoracentesis - Biopsy: - text: Biopsy - description: Biopsy - Autopsy: - text: Autopsy - description: Autopsy - Imaging: - text: Imaging - description: Imaging Technique - enum_CCDH_DimensionalObservation_category: - name: enum_CCDH_DimensionalObservation_category - description: Autogenerated Enumeration for CRDC-H DimensionalObservation category - comments: - - 'Name according to TCCM: "CRDC-H.DimensionalObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.DimensionalObservation.category - code_set_version: '2021-07-21T20:42:46.730386+00:00' - enum_CCDH_DimensionalObservation_observation_type: - name: enum_CCDH_DimensionalObservation_observation_type - description: Types of measurements that describe the physical dimensions of an - entity (e.g. a Specimen) - notes: - - Derived from [DimensionalObservation.observation_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - length: - text: length - description: The length of a three-dimensional specimen, as measured in a - plane perpendicular to the planes in which the width and height of the specimen - are measured. - width: - text: width - description: The width of a three-dimensional specimen, as measured in a plane - perpendicular to the planes in which the length and height of the specimen - are measured. - longest_dimension: - text: longest_dimension - description: The measured extent of the longest straight path across a specimen. - shortest_dimension: - text: shortest_dimension - description: The measured extent of the shortest straight path across a specimen. - intermediate_dimension: - text: intermediate_dimension - description: The measured extent of the intermediate straight path across - a specimen. - surface_area: - text: surface_area - description: The total surface area of the specimen - enum_CCDH_DimensionalObservation_method_type: - name: enum_CCDH_DimensionalObservation_method_type - description: Autogenerated Enumeration for CRDC-H DimensionalObservation method_type - comments: - - 'Name according to TCCM: "CRDC-H.DimensionalObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.DimensionalObservation.method_type - code_set_version: '2021-07-21T20:42:47.024096+00:00' - enum_CCDH_DimensionalObservationSet_category: - name: enum_CCDH_DimensionalObservationSet_category - description: Autogenerated Enumeration for CRDC-H DimensionalObservationSet category - comments: - - 'Name according to TCCM: "CRDC-H.DimensionalObservationSet.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.DimensionalObservationSet.category - code_set_version: '2021-07-21T20:42:47.168003+00:00' - enum_CCDH_DimensionalObservationSet_method_type: - name: enum_CCDH_DimensionalObservationSet_method_type - description: Autogenerated Enumeration for CRDC-H DimensionalObservationSet method_type - comments: - - 'Name according to TCCM: "CRDC-H.DimensionalObservationSet.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.DimensionalObservationSet.method_type - code_set_version: '2021-07-21T20:42:47.324254+00:00' - enum_CCDH_Document_document_type: - name: enum_CCDH_Document_document_type - description: The high-level type of the report (e.g. 'pathology report') - notes: - - Derived from [Document.document_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - pathology report: - text: pathology report - description: A pathology report describing the specimen - protocol: - text: protocol - description: A protocol by which the sample was obtained or generated (e.g. - a protocol listed in protocols.io) - enum_CCDH_EnvironmentalExposureObservation_category: - name: enum_CCDH_EnvironmentalExposureObservation_category - description: Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation - category - comments: - - 'Name according to TCCM: "CRDC-H.EnvironmentalExposureObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.EnvironmentalExposureObservation.category - code_set_version: '2021-07-21T20:42:47.621549+00:00' - enum_CCDH_EnvironmentalExposureObservation_observation_type: - name: enum_CCDH_EnvironmentalExposureObservation_observation_type - description: Types of observations about a Subject's environmental exposures. - notes: - - Derived from [EnvironmentalExposureObservation.observation_type in sheet O_CCDH - Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - asbestos_exposure: - text: asbestos_exposure - description: The yes/no/unknown indicator used to describe whether the patient - was exposed to asbestos. - coal_dust_exposure: - text: coal_dust_exposure - description: The yes/no/unknown indicator used to describe whether a patient - was exposed to fine powder derived by the crushing of coal. - radon_exposure: - text: radon_exposure - description: The yes/no/unknown indicator used to describe whether the patient - was exposed to radon. - respirable_crystalline_silica_exposure: - text: respirable_crystalline_silica_exposure - description: The yes/no/unknown indicator used to describe whether a patient - was exposed to respirable crystalline silica, a widespread, naturally occurring, - crystalline metal oxide that consists of different forms including quartz, - cristobalite, tridymite, tripoli, ganister, chert and novaculite. - type_of_smoke_exposure: - text: type_of_smoke_exposure - description: The text term used to describe the patient's specific type of - smoke exposure. - enum_CCDH_EnvironmentalExposureObservation_method_type: - name: enum_CCDH_EnvironmentalExposureObservation_method_type - description: Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation - method_type - comments: - - 'Name according to TCCM: "CRDC-H.EnvironmentalExposureObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.EnvironmentalExposureObservation.method_type - code_set_version: '2021-07-21T20:42:47.920374+00:00' - enum_CCDH_EnvironmentalExposureObservation_valueCodeableConcept: - name: enum_CCDH_EnvironmentalExposureObservation_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H EnvironmentalExposureObservation - valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.EnvironmentalExposureObservation.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.EnvironmentalExposureObservation.valueCodeableConcept - code_set_version: '2021-07-21T20:42:48.072237+00:00' - permissible_values: - Work-related smoke, plumbing: - text: Work-related smoke, plumbing - Grilling smoke: - text: Grilling smoke - Indoor stove or fireplace smoke, wood burning: - text: Indoor stove or fireplace smoke, wood burning - Accidental building fire smoke: - text: Accidental building fire smoke - Smoke exposure, NOS: - text: Smoke exposure, NOS - Accidental forest fire smoke: - text: Accidental forest fire smoke - Cooking-related smoke, NOS: - text: Cooking-related smoke, NOS - Work-related smoke, military: - text: Work-related smoke, military - Fire smoke, NOS: - text: Fire smoke, NOS - Wood burning smoke, NOS: - text: Wood burning smoke, NOS - Work-related smoke, generators: - text: Work-related smoke, generators - Marijuana smoke: - text: Marijuana smoke - Electronic cigarette smoke, NOS: - text: Electronic cigarette smoke, NOS - Work-related smoke, fire fighting: - text: Work-related smoke, fire fighting - Burning tree smoke: - text: Burning tree smoke - Factory smokestack smoke: - text: Factory smokestack smoke - Work-related smoke, plastics factory: - text: Work-related smoke, plastics factory - Field burning smoke: - text: Field burning smoke - Accidental vehicle fire smoke: - text: Accidental vehicle fire smoke - Work-related smoke, foundry: - text: Work-related smoke, foundry - Gas burning smoke, propane: - text: Gas burning smoke, propane - Furnace or boiler smoke: - text: Furnace or boiler smoke - Waste burning smoke: - text: Waste burning smoke - No Smoke Exposure: - text: No Smoke Exposure - Coal smoke, NOS: - text: Coal smoke, NOS - Volcanic smoke: - text: Volcanic smoke - Oil burning smoke, Kerosene: - text: Oil burning smoke, Kerosene - Accidental fire smoke, grass: - text: Accidental fire smoke, grass - Electrical fire smoke: - text: Electrical fire smoke - Work-related smoke, paint baking: - text: Work-related smoke, paint baking - Unknown: - text: Unknown - description: Unknown - Tobacco smoke, cigarettes: - text: Tobacco smoke, cigarettes - Accidental fire smoke, NOS: - text: Accidental fire smoke, NOS - Recreational fire smoke: - text: Recreational fire smoke - Grease fire smoke: - text: Grease fire smoke - Hashish smoke: - text: Hashish smoke - Smokehouse smoke: - text: Smokehouse smoke - Indoor stove or fireplace smoke, coal burning: - text: Indoor stove or fireplace smoke, coal burning - Work-related smoke, soldering/welding: - text: Work-related smoke, soldering/welding - Tobacco smoke, cigar: - text: Tobacco smoke, cigar - Work-related smoke, artificial smoke machines: - text: Work-related smoke, artificial smoke machines - Aircraft smoke: - text: Aircraft smoke - Environmental tobacco smoke: - text: Environmental tobacco smoke - Tobacco smoke, pipe: - text: Tobacco smoke, pipe - Indoor stove or fireplace smoke, NOS: - text: Indoor stove or fireplace smoke, NOS - Wood burning smoke, factory: - text: Wood burning smoke, factory - Oil burning smoke, NOS: - text: Oil burning smoke, NOS - Work-related smoke, NOS: - text: Work-related smoke, NOS - Machine smoke: - text: Machine smoke - Not Reported: - text: Not Reported - 'No': - text: 'No' - 'Yes': - text: 'Yes' - Tobacco smoke, NOS: - text: Tobacco smoke, NOS - enum_CCDH_ExecutionTimeObservation_category: - name: enum_CCDH_ExecutionTimeObservation_category - description: Autogenerated Enumeration for CRDC-H ExecutionTimeObservation category - comments: - - 'Name according to TCCM: "CRDC-H.ExecutionTimeObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ExecutionTimeObservation.category - code_set_version: '2021-07-21T20:42:48.257156+00:00' - enum_CCDH_ExecutionTimeObservation_observation_type: - name: enum_CCDH_ExecutionTimeObservation_observation_type - description: Autogenerated Enumeration for CRDC-H ExecutionTimeObservation observation_type - comments: - - 'Name according to TCCM: "CRDC-H.ExecutionTimeObservation.observation_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ExecutionTimeObservation.observation_type - code_set_version: '2021-07-21T20:42:48.405823+00:00' - enum_CCDH_ExecutionTimeObservation_method_type: - name: enum_CCDH_ExecutionTimeObservation_method_type - description: Autogenerated Enumeration for CRDC-H ExecutionTimeObservation method_type - comments: - - 'Name according to TCCM: "CRDC-H.ExecutionTimeObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ExecutionTimeObservation.method_type - code_set_version: '2021-07-21T20:42:48.555058+00:00' - enum_CCDH_ExecutionConditionObservation_category: - name: enum_CCDH_ExecutionConditionObservation_category - description: Autogenerated Enumeration for CRDC-H ExecutionConditionObservation - category - comments: - - 'Name according to TCCM: "CRDC-H.ExecutionConditionObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ExecutionConditionObservation.category - code_set_version: '2021-07-21T20:42:48.692330+00:00' - enum_CCDH_ExecutionConditionObservation_observation_type: - name: enum_CCDH_ExecutionConditionObservation_observation_type - description: Autogenerated Enumeration for CRDC-H ExecutionConditionObservation - observation_type - comments: - - 'Name according to TCCM: "CRDC-H.ExecutionConditionObservation.observation_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ExecutionConditionObservation.observation_type - code_set_version: '2021-07-21T20:42:48.840839+00:00' - enum_CCDH_ExecutionConditionObservation_method_type: - name: enum_CCDH_ExecutionConditionObservation_method_type - description: Autogenerated Enumeration for CRDC-H ExecutionConditionObservation - method_type - comments: - - 'Name according to TCCM: "CRDC-H.ExecutionConditionObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ExecutionConditionObservation.method_type - code_set_version: '2021-07-21T20:42:48.997995+00:00' - enum_CCDH_ExecutionConditionObservation_valueCodeableConcept: - name: enum_CCDH_ExecutionConditionObservation_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H ExecutionConditionObservation - valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.ExecutionConditionObservation.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ExecutionConditionObservation.valueCodeableConcept - code_set_version: '2021-07-21T20:42:49.151276+00:00' - enum_CCDH_HistologicalCompositionObservation_category: - name: enum_CCDH_HistologicalCompositionObservation_category - description: Autogenerated Enumeration for CRDC-H HistologicalCompositionObservation - category - comments: - - 'Name according to TCCM: "CRDC-H.HistologicalCompositionObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.HistologicalCompositionObservation.category - code_set_version: '2021-07-21T20:42:49.299681+00:00' - enum_CCDH_HistologicalCompositionObservation_observation_type: - name: enum_CCDH_HistologicalCompositionObservation_observation_type - description: Types of measurements that describe microscopic characteristics of - a specimen - typically related to its cellular and tissue composition. - notes: - - Derived from [HistologicalCompositionObservation.observation_type in sheet O_CCDH - Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - number_proliferating_cells: - text: number_proliferating_cells - description: Numeric value that represents the count of proliferating cells - determined during pathologic review of the sample slide(s). - percent_eosinophil_infiltration: - text: percent_eosinophil_infiltration - description: Numeric value to represent the percentage of infiltration by - eosinophils in a tumor sample or specimen. - percent_granulocyte_infiltration: - text: percent_granulocyte_infiltration - description: Numeric value to represent the percentage of infiltration by - granulocytes in a tumor sample or specimen. - percent_inflam_infiltration: - text: percent_inflam_infiltration - description: Numeric value to represent local response to cellular injury, - marked by capillary dilatation, edema and leukocyte infiltration; clinically, - inflammation is manifest by redness, heat, pain, swelling and loss of function, - with the need to heal damaged tissue. - percent_lymphocyte_infiltration: - text: percent_lymphocyte_infiltration - description: Numeric value to represent the percentage of infiltration by - lymphocytes in a solid tissue normal sample or specimen. - percent_monocyte_infiltration: - text: percent_monocyte_infiltration - description: Numeric value to represent the percentage of monocyte infiltration - in a sample or specimen. - percent_necrosis: - text: percent_necrosis - description: Numeric value to represent the percentage of cell death in a - malignant tumor sample or specimen. - percent_neutrophil_infiltration: - text: percent_neutrophil_infiltration - description: Numeric value to represent the percentage of infiltration by - neutrophils in a tumor sample or specimen. - percent_normal_cells: - text: percent_normal_cells - description: Numeric value to represent the percentage of normal cell content - in a malignant tumor sample or specimen. - percent_stromal_cells: - text: percent_stromal_cells - description: Numeric value to represent the percentage of reactive cells that - are present in a malignant tumor sample or specimen but are not malignant - such as fibroblasts, vascular structures, etc. - percent_tumor_cells: - text: percent_tumor_cells - description: Numeric value that represents the percentage of infiltration - by tumor cells in a sample. - percent_tumor_nuclei: - text: percent_tumor_nuclei - description: Numeric value to represent the percentage of tumor nuclei in - a malignant neoplasm sample or specimen. - tumor_infiltrating_lymphocytes: - text: tumor_infiltrating_lymphocytes - description: Measure of Tumor-Infiltrating Lymphocytes - non_tumor_tissue_area: - text: non_tumor_tissue_area - description: The area within a sample that is represented by non-tumor tissue. - tumor_tissue_area: - text: tumor_tissue_area - description: The area within a sample that is comprised of tumor tissue. - analysis_area: - text: analysis_area - description: The total area of a sample that is used for analysis. - analysis_area_percentage_stroma: - text: analysis_area_percentage_stroma - description: The percentage of the analysis area that is represented by stromal - tissue. - analysis_area_percentage_tumor: - text: analysis_area_percentage_tumor - description: The percentage of the analysis area that is represented by tumor - tissue. - analysis_area_percentage_glass: - text: analysis_area_percentage_glass - description: The area of a sample on a slide that is represented by glass; - the area of the sample that represents gaps in the sample. - analysis_area_percentage_pigmented_tumor: - text: analysis_area_percentage_pigmented_tumor - description: The area of a sample on a slide that is represented by pigmented - tumor tissue, which will be analyzed. - enum_CCDH_HistologicalCompositionObservation_method_type: - name: enum_CCDH_HistologicalCompositionObservation_method_type - description: Autogenerated Enumeration for CRDC-H HistologicalCompositionObservation - method_type - comments: - - 'Name according to TCCM: "CRDC-H.HistologicalCompositionObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.HistologicalCompositionObservation.method_type - code_set_version: '2021-07-21T20:42:49.608930+00:00' - enum_CCDH_HistologicalCompositionObservationSet_category: - name: enum_CCDH_HistologicalCompositionObservationSet_category - description: Autogenerated Enumeration for CRDC-H HistologicalCompositionObservationSet - category - comments: - - 'Name according to TCCM: "CRDC-H.HistologicalCompositionObservationSet.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.HistologicalCompositionObservationSet.category - code_set_version: '2021-07-21T20:42:49.762669+00:00' - enum_CCDH_HistologicalCompositionObservationSet_method_type: - name: enum_CCDH_HistologicalCompositionObservationSet_method_type - description: Autogenerated Enumeration for CRDC-H HistologicalCompositionObservationSet - method_type - comments: - - 'Name according to TCCM: "CRDC-H.HistologicalCompositionObservationSet.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.HistologicalCompositionObservationSet.method_type - code_set_version: '2021-07-21T20:42:49.914640+00:00' - enum_CCDH_Identifier_type: - name: enum_CCDH_Identifier_type - description: Autogenerated Enumeration for CRDC-H Identifier type - comments: - - 'Name according to TCCM: "CRDC-H.Identifier.type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Identifier.type - code_set_version: '2021-07-21T20:42:50.053980+00:00' - enum_CCDH_Observation_category: - name: enum_CCDH_Observation_category - description: Autogenerated Enumeration for CRDC-H Observation category - comments: - - 'Name according to TCCM: "CRDC-H.Observation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Observation.category - code_set_version: '2021-07-21T20:42:50.204657+00:00' - enum_CCDH_Observation_observation_type: - name: enum_CCDH_Observation_observation_type - description: Autogenerated Enumeration for CRDC-H Observation observation_type - comments: - - 'Name according to TCCM: "CRDC-H.Observation.observation_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Observation.observation_type - code_set_version: '2021-07-21T20:42:50.349853+00:00' - enum_CCDH_Observation_method_type: - name: enum_CCDH_Observation_method_type - description: Autogenerated Enumeration for CRDC-H Observation method_type - comments: - - 'Name according to TCCM: "CRDC-H.Observation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Observation.method_type - code_set_version: '2021-07-21T20:42:50.498290+00:00' - enum_CCDH_Observation_valueCodeableConcept: - name: enum_CCDH_Observation_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H Observation valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.Observation.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Observation.valueCodeableConcept - code_set_version: '2021-07-21T20:42:50.641946+00:00' - enum_CCDH_ObservationSet_category: - name: enum_CCDH_ObservationSet_category - description: Autogenerated Enumeration for CRDC-H ObservationSet category - comments: - - 'Name according to TCCM: "CRDC-H.ObservationSet.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ObservationSet.category - code_set_version: '2021-07-21T20:42:50.785588+00:00' - enum_CCDH_ObservationSet_method_type: - name: enum_CCDH_ObservationSet_method_type - description: Autogenerated Enumeration for CRDC-H ObservationSet method_type - comments: - - 'Name according to TCCM: "CRDC-H.ObservationSet.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ObservationSet.method_type - code_set_version: '2021-07-21T20:42:50.936109+00:00' - enum_CCDH_Quantity_valueCodeableConcept: - name: enum_CCDH_Quantity_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H Quantity valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.Quantity.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Quantity.valueCodeableConcept - code_set_version: '2021-07-21T20:42:51.088916+00:00' - permissible_values: - Not Reported: - text: Not Reported - description: Not Reported - Distal (>2cm): - text: Distal (>2cm) - description: Distal - Unknown: - text: Unknown - description: Unknown - Adjacent (< or = 2cm): - text: Adjacent (< or = 2cm) - description: Adjacent - enum_CCDH_Quantity_unit: - name: enum_CCDH_Quantity_unit - description: Autogenerated Enumeration for CRDC-H Quantity unit - comments: - - 'Name according to TCCM: "CRDC-H.Quantity.unit"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Quantity.unit - code_set_version: '2021-07-21T20:42:51.237139+00:00' - enum_CCDH_ResearchProject_research_project_type: - name: enum_CCDH_ResearchProject_research_project_type - description: A high-level type of research activity - notes: - - Derived from [ResearchProject.research_project_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - Program: - text: Program - description: A broad framework of goals to be achieved. - Project: - text: Project - description: Any specifically defined piece of work that is undertaken or - attempted to meet a single requirement. - Clinical Trial: - text: Clinical Trial - description: A research study that prospectively assigns participants to one - or more health-related interventions to evaluate the effects on health outcomes. - enum_CCDH_ResearchSubject_primary_diagnosis_condition: - name: enum_CCDH_ResearchSubject_primary_diagnosis_condition - description: Autogenerated Enumeration for CRDC-H ResearchSubject primary_diagnosis_condition - comments: - - 'Name according to TCCM: "CRDC-H.ResearchSubject.primary_diagnosis_condition"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ResearchSubject.primary_diagnosis_condition - code_set_version: '2021-07-21T20:42:51.534105+00:00' - permissible_values: - Soft Tissue Tumors and Sarcomas, NOS: - text: Soft Tissue Tumors and Sarcomas, NOS - description: Soft Tissue Neoplasm and Soft Tissue Sarcoma - Precursor Cell Lymphoblastic Lymphoma: - text: Precursor Cell Lymphoblastic Lymphoma - description: Lymphoblastic Lymphoma - Myeloid Leukemias: - text: Myeloid Leukemias - description: Myeloid Leukemia - Hodgkin Lymphoma: - text: Hodgkin Lymphoma - description: Hodgkin Lymphoma - Not Reported: - text: Not Reported - description: Not Reported - Germ Cell Neoplasms: - text: Germ Cell Neoplasms - description: Germ Cell Tumor - Blood Vessel Tumors: - text: Blood Vessel Tumors - description: Blood Vessel Neoplasm - Fibroepithelial Neoplasms: - text: Fibroepithelial Neoplasms - description: Fibroepithelial Neoplasm - Neoplasms, NOS: - text: Neoplasms, NOS - description: Not Otherwise Specified Neoplasm - Basal Cell Neoplasms: - text: Basal Cell Neoplasms - description: Basal Cell Neoplasm - Mast Cell Tumors: - text: Mast Cell Tumors - description: Mast Cell Neoplasm - Complex Epithelial Neoplasms: - text: Complex Epithelial Neoplasms - Other Leukemias: - text: Other Leukemias - description: Other Leukemia - Complex Mixed and Stromal Neoplasms: - text: Complex Mixed and Stromal Neoplasms - description: Complex Mixed and Stromal Neoplasm - Not Applicable: - text: Not Applicable - Mature B-Cell Lymphomas: - text: Mature B-Cell Lymphomas - description: Mature B-Cell Non-Hodgkin Lymphoma - Adnexal and Skin Appendage Neoplasms: - text: Adnexal and Skin Appendage Neoplasms - description: Adnexal Carcinoma and Skin Appendage Neoplasm - Chronic Myeloproliferative Disorders: - text: Chronic Myeloproliferative Disorders - description: Chronic Myeloproliferative Neoplasm - Acinar Cell Neoplasms: - text: Acinar Cell Neoplasms - description: Acinar Cell Neoplasm - Osseous and Chondromatous Neoplasms: - text: Osseous and Chondromatous Neoplasms - description: Osteogenic Neoplasm and Chondrogenic Neoplasm - Miscellaneous Bone Tumors: - text: Miscellaneous Bone Tumors - description: Miscellaneous Bone Neoplasm - Paragangliomas and Glomus Tumors: - text: Paragangliomas and Glomus Tumors - description: Paraganglioma And Glomus Tumor - Fibromatous Neoplasms: - text: Fibromatous Neoplasms - description: Fibromatosis - Mesothelial Neoplasms: - text: Mesothelial Neoplasms - description: Mesothelial Neoplasm - Granular Cell Tumors and Alveolar Soft Part Sarcomas: - text: Granular Cell Tumors and Alveolar Soft Part Sarcomas - description: Granular Cell Tumor and Alveolar Soft Part Sarcoma - Neoplasms of Histiocytes and Accessory Lymphoid Cells: - text: Neoplasms of Histiocytes and Accessory Lymphoid Cells - description: Neoplasms of Histiocytes and Accessory Lymphoid Cells - Immunoproliferative Diseases: - text: Immunoproliferative Diseases - description: Immunoproliferative Disease - Thymic Epithelial Neoplasms: - text: Thymic Epithelial Neoplasms - description: Combined Thymic Epithelial Neoplasm - Mucoepidermoid Neoplasms: - text: Mucoepidermoid Neoplasms - description: Mucoepidermoid Carcinoma - Nerve Sheath Tumors: - text: Nerve Sheath Tumors - description: Nerve Sheath Neoplasm - Adenomas and Adenocarcinomas: - text: Adenomas and Adenocarcinomas - description: Adenoma and Adenocarcinoma - Lymphoid Leukemias: - text: Lymphoid Leukemias - description: Lymphoid Leukemia - Gliomas: - text: Gliomas - description: Glioma - Odontogenic Tumors: - text: Odontogenic Tumors - description: Odontogenic Neoplasm - Cystic, Mucinous and Serous Neoplasms: - text: Cystic, Mucinous and Serous Neoplasms - description: Cystic Neoplasm Mucinous Neoplasm and Serous Neoplasm - Squamous Cell Neoplasms: - text: Squamous Cell Neoplasms - description: Squamous Cell Neoplasm - Transitional Cell Papillomas and Carcinomas: - text: Transitional Cell Papillomas and Carcinomas - description: Transitional Cell Papilloma and Transitional Cell Carcinoma - Ductal and Lobular Neoplasms: - text: Ductal and Lobular Neoplasms - description: Ductal Breast Carcinoma In Situ and Lobular Carcinoma In Situ - Leukemias, NOS: - text: Leukemias, NOS - description: Not Otherwise Specified Leukemia - Trophoblastic neoplasms: - text: Trophoblastic neoplasms - description: Trophoblastic Tumor - Other Hematologic Disorders: - text: Other Hematologic Disorders - description: Other Hematologic and Lymphocytic Disorder - Epithelial Neoplasms, NOS: - text: Epithelial Neoplasms, NOS - description: Not Otherwise Specified Epithelial Neoplasm - Neuroepitheliomatous Neoplasms: - text: Neuroepitheliomatous Neoplasms - description: Neuroepithelial Neoplasm - Specialized Gonadal Neoplasms: - text: Specialized Gonadal Neoplasms - description: Specialized Gonadal Neoplasm - Myomatous Neoplasms: - text: Myomatous Neoplasms - description: Myomatous Neoplasm - Mesonephromas: - text: Mesonephromas - description: Mesonephric Neoplasm - Myelodysplastic Syndromes: - text: Myelodysplastic Syndromes - description: Myelodysplastic Syndrome - Mature T- and NK-Cell Lymphomas: - text: Mature T- and NK-Cell Lymphomas - description: Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma - Plasma Cell Tumors: - text: Plasma Cell Tumors - description: Plasma Cell Neoplasm - Unknown: - text: Unknown - description: Unknown - Meningiomas: - text: Meningiomas - description: Meningioma - Giant Cell Tumors: - text: Giant Cell Tumors - description: Giant Cell Tumor - Myxomatous Neoplasms: - text: Myxomatous Neoplasms - description: Myxoma - Miscellaneous Tumors: - text: Miscellaneous Tumors - description: Miscellaneous Neoplasm - Lymphatic Vessel Tumors: - text: Lymphatic Vessel Tumors - description: Lymphatic Vessel Neoplasm - Synovial-like Neoplasms: - text: Synovial-like Neoplasms - description: Synovial Neoplasm - Lipomatous Neoplasms: - text: Lipomatous Neoplasms - description: Lipomatous Neoplasm - Nevi and Melanomas: - text: Nevi and Melanomas - description: Melanocytic Nevus and Melanoma - Malignant Lymphomas, NOS or Diffuse: - text: Malignant Lymphomas, NOS or Diffuse - description: Not Otherwise Specified or Diffuse Lymphoma - Chromophobe Renal Cell Carcinoma: - text: Chromophobe Renal Cell Carcinoma - Clear Cell Renal Cell Carcinoma: - text: Clear Cell Renal Cell Carcinoma - Thyroid Carcinoma: - text: Thyroid Carcinoma - Prostate Adenocarcinoma: - text: Prostate Adenocarcinoma - HIV+ Tumor Molecular Characterization Project - Cervical Cancer: - text: HIV+ Tumor Molecular Characterization Project - Cervical Cancer - High-Risk Wilms Tumor: - text: High-Risk Wilms Tumor - Cholangiocarcinoma: - text: Cholangiocarcinoma - Thymoma: - text: Thymoma - Kidney Renal Papillary Cell Carcinoma: - text: Kidney Renal Papillary Cell Carcinoma - Sarcoma: - text: Sarcoma - Glioblastoma Multiforme: - text: Glioblastoma Multiforme - Head and Neck Squamous Cell Carcinoma: - text: Head and Neck Squamous Cell Carcinoma - Rectum Adenocarcinoma: - text: Rectum Adenocarcinoma - Rhabdoid Tumor: - text: Rhabdoid Tumor - Neuroblastoma: - text: Neuroblastoma - Ovarian Serous Cystadenocarcinoma: - text: Ovarian Serous Cystadenocarcinoma - HIV+ Tumor Molecular Characterization Project - Lung Cancer: - text: HIV+ Tumor Molecular Characterization Project - Lung Cancer - Pancreatic Ductal Adenocarcinoma: - text: Pancreatic Ductal Adenocarcinoma - Testicular Germ Cell Tumors: - text: Testicular Germ Cell Tumors - Cervical Squamous Cell Carcinoma and Endocervical Adenocarcinoma: - text: Cervical Squamous Cell Carcinoma and Endocervical Adenocarcinoma - Liver Hepatocellular Carcinoma: - text: Liver Hepatocellular Carcinoma - Kidney Renal Clear Cell Carcinoma: - text: Kidney Renal Clear Cell Carcinoma - Osteosarcoma: - text: Osteosarcoma - Hepatocellular Carcinoma: - text: Hepatocellular Carcinoma - Kidney Chromophobe: - text: Kidney Chromophobe - Skin Cutaneous Melanoma: - text: Skin Cutaneous Melanoma - Clear Cell Sarcoma of the Kidney: - text: Clear Cell Sarcoma of the Kidney - Bladder Urothelial Carcinoma: - text: Bladder Urothelial Carcinoma - Acute Lymphoblastic Leukemia: - text: Acute Lymphoblastic Leukemia - Lymphoid Neoplasm Diffuse Large B-cell Lymphoma: - text: Lymphoid Neoplasm Diffuse Large B-cell Lymphoma - Burkitt Lymphoma: - text: Burkitt Lymphoma - Papillary Renal Cell Carcinoma: - text: Papillary Renal Cell Carcinoma - Pheochromocytoma and Paraganglioma: - text: Pheochromocytoma and Paraganglioma - Stomach Adenocarcinoma: - text: Stomach Adenocarcinoma - Uveal Melanoma: - text: Uveal Melanoma - Esophageal Carcinoma: - text: Esophageal Carcinoma - Mesothelioma: - text: Mesothelioma - Pancreatic Adenocarcinoma: - text: Pancreatic Adenocarcinoma - Acute Myeloid Leukemia: - text: Acute Myeloid Leukemia - Glioblastoma: - text: Glioblastoma - Lung Adenocarcinoma: - text: Lung Adenocarcinoma - Multiple Myeloma: - text: Multiple Myeloma - Chronic Lymphocytic Leukemia: - text: Chronic Lymphocytic Leukemia - Adrenocortical Carcinoma: - text: Adrenocortical Carcinoma - Early Onset Gastric Cancer: - text: Early Onset Gastric Cancer - Lung Squamous Cell Carcinoma: - text: Lung Squamous Cell Carcinoma - Uterine Corpus Endometrial Carcinoma: - text: Uterine Corpus Endometrial Carcinoma - Uterine Carcinosarcoma: - text: Uterine Carcinosarcoma - Oral Squamous Cell Carcinoma: - text: Oral Squamous Cell Carcinoma - Brain Lower Grade Glioma: - text: Brain Lower Grade Glioma - Pediatric/AYA Brain Tumors: - text: Pediatric/AYA Brain Tumors - Breast Invasive Carcinoma: - text: Breast Invasive Carcinoma - Colon Adenocarcinoma: - text: Colon Adenocarcinoma - Other: - text: Other - enum_CCDH_ResearchSubject_index_timepoint: - name: enum_CCDH_ResearchSubject_index_timepoint - description: Autogenerated Enumeration for CRDC-H ResearchSubject index_timepoint - comments: - - 'Name according to TCCM: "CRDC-H.ResearchSubject.index_timepoint"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.ResearchSubject.index_timepoint - code_set_version: '2021-07-21T20:42:51.837790+00:00' - permissible_values: - Diagnosis: - text: Diagnosis - description: Diagnosis - Study Enrollment: - text: Study Enrollment - description: Clinical Study Enrollment - First Patient Visit: - text: First Patient Visit - description: First Patient Visit - First Treatment: - text: First Treatment - Sample Procurement: - text: Sample Procurement - description: Tissue Procurement - Initial Genomic Sequencing: - text: Initial Genomic Sequencing - Recurrence: - text: Recurrence - enum_CCDH_Specimen_specimen_type: - name: enum_CCDH_Specimen_specimen_type - description: A high-level type of specimen, based on its derivation provenance - (i.e. how far removed it is from the original sample extracted from a source). - notes: - - Derived from [Specimen.specimen_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - initial sample: - text: initial sample - description: A specimen representing the material that was directly collected - from a subject (i.e. not generated through portioning, aliquoting, or analyte - extraction from an existing specimen). - portion: - text: portion - description: A physical sub-part taken from an existing specimen. - aliquot: - text: aliquot - description: A specimen that results from the division of some parent specimen - into equal amounts for downstream analysis. - analyte: - text: analyte - description: A specimen generated through the extraction of a specified class - of substance/chemical (e.g. DNA, RNA, protein) from a parent specimen, which - is stored in solution as an analyte. - slide: - text: slide - description: A specimen that is mounted on a slide or coverslip for microscopic - analysis. - enum_CCDH_Specimen_analyte_type: - name: enum_CCDH_Specimen_analyte_type - description: Autogenerated Enumeration for CRDC-H Specimen analyte_type - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.analyte_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.analyte_type - code_set_version: '2021-07-21T20:42:52.134126+00:00' - permissible_values: - Repli-G (Qiagen) DNA: - text: Repli-G (Qiagen) DNA - description: Repli-G (Qiagen) DNA - cfDNA: - text: cfDNA - DNA: - text: DNA - description: DNA - FFPE RNA: - text: FFPE RNA - description: Formalin-Fixed Paraffin-Embedded RNA - Repli-G Pooled (Qiagen) DNA: - text: Repli-G Pooled (Qiagen) DNA - description: REPLI-g Pooled DNA - FFPE DNA: - text: FFPE DNA - description: Formalin-Fixed Paraffin-Embedded DNA - RNA: - text: RNA - description: Ribonucleic Acid - Nuclei RNA: - text: Nuclei RNA - Total RNA: - text: Total RNA - description: Total Ribonucleic Acid - EBV Immortalized Normal: - text: EBV Immortalized Normal - description: Normal Epstein-Barr Virus Immortalization - Repli-G X (Qiagen) DNA: - text: Repli-G X (Qiagen) DNA - description: Repli-G X (Qiagen) DNA - GenomePlex (Rubicon) Amplified DNA: - text: GenomePlex (Rubicon) Amplified DNA - H: - text: H - description: Hybrid Extraction RNA - E: - text: E - X: - text: X - description: Repli-G X (Qiagen) DNA - G: - text: G - description: GenomePlex (Rubicon) Amplified DNA - T: - text: T - description: Total Ribonucleic Acid - R: - text: R - description: Ribonucleic Acid - S: - text: S - D: - text: D - description: DNA - W: - text: W - description: Repli-G (Qiagen) DNA - Y: - text: Y - Protein: - text: Protein - description: Protein - enum_CCDH_Specimen_source_material_type: - name: enum_CCDH_Specimen_source_material_type - description: Autogenerated Enumeration for CRDC-H Specimen source_material_type - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.source_material_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.source_material_type - code_set_version: '2021-07-21T20:42:52.297814+00:00' - permissible_values: - Recurrent Blood Derived Cancer - Bone Marrow: - text: Recurrent Blood Derived Cancer - Bone Marrow - Fibroblasts from Bone Marrow Normal: - text: Fibroblasts from Bone Marrow Normal - Buccal Cell Normal: - text: Buccal Cell Normal - Lymphoid Normal: - text: Lymphoid Normal - Blood Derived Cancer - Peripheral Blood, Post-treatment: - text: Blood Derived Cancer - Peripheral Blood, Post-treatment - Solid Tissue Normal: - text: Solid Tissue Normal - Tumor: - text: Tumor - description: Neoplasm - Repli-G (Qiagen) DNA: - text: Repli-G (Qiagen) DNA - Blood Derived Cancer - Bone Marrow: - text: Blood Derived Cancer - Bone Marrow - Primary Xenograft Tissue: - text: Primary Xenograft Tissue - Cell Lines: - text: Cell Lines - Primary Tumor: - text: Primary Tumor - description: Primary Neoplasm - FFPE Recurrent: - text: FFPE Recurrent - Pleural Effusion: - text: Pleural Effusion - Benign Neoplasms: - text: Benign Neoplasms - Recurrent Tumor: - text: Recurrent Tumor - RNA: - text: RNA - Normal Adjacent Tissue: - text: Normal Adjacent Tissue - Control Analyte: - text: Control Analyte - Blood Derived Liquid Biopsy: - text: Blood Derived Liquid Biopsy - Post neo-adjuvant therapy: - text: Post neo-adjuvant therapy - Granulocytes: - text: Granulocytes - description: Granulocyte - Not Reported: - text: Not Reported - FFPE Scrolls: - text: FFPE Scrolls - description: Formalin Fixed Paraffin Embedded Tissue Scroll - Primary Blood Derived Cancer - Peripheral Blood: - text: Primary Blood Derived Cancer - Peripheral Blood - Primary Blood Derived Cancer - Bone Marrow: - text: Primary Blood Derived Cancer - Bone Marrow - Human Tumor Original Cells: - text: Human Tumor Original Cells - Expanded Next Generation Cancer Model: - text: Expanded Next Generation Cancer Model - In Situ Neoplasms: - text: In Situ Neoplasms - GenomePlex (Rubicon) Amplified DNA: - text: GenomePlex (Rubicon) Amplified DNA - Additional Metastatic: - text: Additional Metastatic - Blood Derived Normal: - text: Blood Derived Normal - Bone Marrow Normal: - text: Bone Marrow Normal - Neoplasms of Uncertain and Unknown Behavior: - text: Neoplasms of Uncertain and Unknown Behavior - Slides: - text: Slides - Not Allowed To Collect: - text: Not Allowed To Collect - Blood Derived Cancer - Peripheral Blood: - text: Blood Derived Cancer - Peripheral Blood - EBV Immortalized Normal: - text: EBV Immortalized Normal - Recurrent Blood Derived Cancer - Peripheral Blood: - text: Recurrent Blood Derived Cancer - Peripheral Blood - Repli-G X (Qiagen) DNA: - text: Repli-G X (Qiagen) DNA - Next Generation Cancer Model: - text: Next Generation Cancer Model - Additional - New Primary: - text: Additional - New Primary - Blood Derived Cancer - Bone Marrow, Post-treatment: - text: Blood Derived Cancer - Bone Marrow, Post-treatment - Total RNA: - text: Total RNA - DNA: - text: DNA - Unknown: - text: Unknown - Cell Line Derived Xenograft Tissue: - text: Cell Line Derived Xenograft Tissue - Xenograft Tissue: - text: Xenograft Tissue - Metastatic: - text: Metastatic - Tumor Adjacent Normal - Post Neo-adjuvant Therapy: - text: Tumor Adjacent Normal - Post Neo-adjuvant Therapy - Mononuclear Cells from Bone Marrow Normal: - text: Mononuclear Cells from Bone Marrow Normal - Mixed Adherent Suspension: - text: Mixed Adherent Suspension - Saliva: - text: Saliva - description: Saliva - '85': - text: '85' - 08: - text: 08 - 09: - text: 09 - '10': - text: '10' - '60': - text: '60' - '86': - text: '86' - '50': - text: '50' - '42': - text: '42' - '02': - text: '02' - '99': - text: '99' - '20': - text: '20' - '03': - text: '03' - '18': - text: '18' - '17': - text: '17' - '07': - text: '07' - '06': - text: '06' - '15': - text: '15' - '11': - text: '11' - '01': - text: '01' - '61': - text: '61' - '04': - text: '04' - '16': - text: '16' - '13': - text: '13' - '41': - text: '41' - '30': - text: '30' - '31': - text: '31' - '14': - text: '14' - '32': - text: '32' - '05': - text: '05' - '12': - text: '12' - '40': - text: '40' - enum_CCDH_Specimen_tumor_status_at_collection: - name: enum_CCDH_Specimen_tumor_status_at_collection - description: Autogenerated Enumeration for CRDC-H Specimen tumor_status_at_collection - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.tumor_status_at_collection"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.tumor_status_at_collection - code_set_version: '2021-07-21T20:42:52.499728+00:00' - permissible_values: - recurrence: - text: recurrence - other: - text: other - Not Allowed To Collect: - text: Not Allowed To Collect - not reported: - text: not reported - metastasis: - text: metastasis - Unknown: - text: Unknown - primary: - text: primary - Xenograft: - text: Xenograft - description: Xenograft - Premalignant: - text: Premalignant - description: Premalignant - NOS: - text: NOS - description: Not Otherwise Specified - Primary: - text: Primary - description: Primary Untreated Malignant Tumor Tissue - Not Applicable: - text: Not Applicable - Metastatic: - text: Metastatic - description: Metastatic Tumor Tissue - Recurrence: - text: Recurrence - Not Reported: - text: Not Reported - Progression: - text: Progression - enum_CCDH_Specimen_cellular_composition_type: - name: enum_CCDH_Specimen_cellular_composition_type - description: Autogenerated Enumeration for CRDC-H Specimen cellular_composition_type - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.cellular_composition_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.cellular_composition_type - code_set_version: '2021-07-21T20:42:52.662071+00:00' - permissible_values: - Lymphocytes: - text: Lymphocytes - description: Lymphocyte - Derived Cell Line: - text: Derived Cell Line - description: Derived Cell Line - Peripheral Whole Blood: - text: Peripheral Whole Blood - description: Peripheral Whole Blood - 2D Classical Conditionally Reprogrammed Cells: - text: 2D Classical Conditionally Reprogrammed Cells - Fibroblasts from Bone Marrow Normal: - text: Fibroblasts from Bone Marrow Normal - description: Normal Bone Marrow Fibroblast - Human Original Cells: - text: Human Original Cells - Plasma: - text: Plasma - description: Plasma - Peripheral Blood Components NOS: - text: Peripheral Blood Components NOS - description: Peripheral Blood Component Not Otherwise Specified - 3D Neurosphere: - text: 3D Neurosphere - Bone Marrow Components: - text: Bone Marrow Components - description: Bone Marrow Component - Control Analyte: - text: Control Analyte - description: Control Analyte - Sorted Cells: - text: Sorted Cells - Not Reported: - text: Not Reported - Unknown: - text: Unknown - 2D Modified Conditionally Reprogrammed Cells: - text: 2D Modified Conditionally Reprogrammed Cells - Mononuclear Cells from Bone Marrow Normal: - text: Mononuclear Cells from Bone Marrow Normal - description: Normal Bone Marrow Monocyte - Solid Tissue: - text: Solid Tissue - description: Solid Tissue - Whole Bone Marrow: - text: Whole Bone Marrow - description: Whole Bone Marrow - Mixed Adherent Suspension: - text: Mixed Adherent Suspension - Sputum: - text: Sputum - description: Sputum - 3D Air-Liquid Interface Organoid: - text: 3D Air-Liquid Interface Organoid - Liquid Suspension Cell Line: - text: Liquid Suspension Cell Line - Saliva: - text: Saliva - description: Saliva - Buccal Cells: - text: Buccal Cells - description: Buccal Cell - Granulocytes: - text: Granulocytes - description: Granulocyte - Cell: - text: Cell - description: Cell - EBV Immortalized: - text: EBV Immortalized - description: Epstein-Barr Virus Immortalized - Buffy Coat: - text: Buffy Coat - description: Buffy Coat - Bone Marrow Components NOS: - text: Bone Marrow Components NOS - description: Bone Marrow Component Not Otherwise Specified - Pleural Effusion: - text: Pleural Effusion - description: Pleural Fluid - Adherent Cell Line: - text: Adherent Cell Line - 3D Organoid: - text: 3D Organoid - Serum: - text: Serum - description: Serum - Not Allowed To Collect: - text: Not Allowed To Collect - enum_CCDH_Specimen_general_tissue_morphology: - name: enum_CCDH_Specimen_general_tissue_morphology - description: Autogenerated Enumeration for CRDC-H Specimen general_tissue_morphology - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.general_tissue_morphology"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.general_tissue_morphology - code_set_version: '2021-07-21T20:42:52.839807+00:00' - permissible_values: - Peritumoral: - text: Peritumoral - description: Peritumoral - Abnormal: - text: Abnormal - description: Abnormal - Normal: - text: Normal - description: Normal - Not Allowed To Collect: - text: Not Allowed To Collect - Unknown: - text: Unknown - description: Unknown - Tumor: - text: Tumor - description: Malignant Neoplasm - Not Reported: - text: Not Reported - enum_CCDH_Specimen_specific_tissue_morphology: - name: enum_CCDH_Specimen_specific_tissue_morphology - description: Autogenerated Enumeration for CRDC-H Specimen specific_tissue_morphology - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.specific_tissue_morphology"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.specific_tissue_morphology - code_set_version: '2021-07-21T20:42:52.997385+00:00' - permissible_values: - '61': - text: '61' - '70': - text: '70' - '30': - text: '30' - '63': - text: '63' - '71': - text: '71' - '51': - text: '51' - '80': - text: '80' - '02': - text: '02' - '65': - text: '65' - '04': - text: '04' - '60': - text: '60' - '03': - text: '03' - '50': - text: '50' - '52': - text: '52' - '15': - text: '15' - '10': - text: '10' - '00': - text: '00' - '01': - text: '01' - '21': - text: '21' - '20': - text: '20' - '62': - text: '62' - '40': - text: '40' - '64': - text: '64' - '81': - text: '81' - '41': - text: '41' - Rhabdoid tumor (kidney) (RT): - text: Rhabdoid tumor (kidney) (RT) - Acute myeloid leukemia (AML): - text: Acute myeloid leukemia (AML) - Anal Cancer (all types): - text: Anal Cancer (all types) - Non cancerous tissue: - text: Non cancerous tissue - CNS, low grade glioma (LGG): - text: CNS, low grade glioma (LGG) - Lung Cancer (all types): - text: Lung Cancer (all types) - CNS, ependymoma: - text: CNS, ependymoma - Rhabdomyosarcoma: - text: Rhabdomyosarcoma - Induction Failure AML (AML-IF): - text: Induction Failure AML (AML-IF) - Soft tissue sarcoma, non-rhabdomyosarcoma: - text: Soft tissue sarcoma, non-rhabdomyosarcoma - NHL, Burkitt lymphoma (BL): - text: NHL, Burkitt lymphoma (BL) - Neuroblastoma (NBL): - text: Neuroblastoma (NBL) - Diffuse Large B-Cell Lymphoma (DLBCL): - text: Diffuse Large B-Cell Lymphoma (DLBCL) - Acute lymphoblastic leukemia (ALL): - text: Acute lymphoblastic leukemia (ALL) - CNS, rhabdoid tumor: - text: CNS, rhabdoid tumor - CNS, medulloblastoma: - text: CNS, medulloblastoma - Cervical Cancer (all types): - text: Cervical Cancer (all types) - NHL, anaplastic large cell lymphoma: - text: NHL, anaplastic large cell lymphoma - Clear cell sarcoma of the kidney (CCSK): - text: Clear cell sarcoma of the kidney (CCSK) - CNS, glioblastoma (GBM): - text: CNS, glioblastoma (GBM) - Acute Leukemia of Ambiguous Lineage (ALAL): - text: Acute Leukemia of Ambiguous Lineage (ALAL) - CNS, other: - text: CNS, other - Ewing sarcoma: - text: Ewing sarcoma - Osteosarcoma (OS): - text: Osteosarcoma (OS) - Wilms tumor (WT): - text: Wilms tumor (WT) - enum_CCDH_Specimen_preinvasive_tissue_morphology: - name: enum_CCDH_Specimen_preinvasive_tissue_morphology - description: Autogenerated Enumeration for CRDC-H Specimen preinvasive_tissue_morphology - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.preinvasive_tissue_morphology"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.preinvasive_tissue_morphology - code_set_version: '2021-07-21T20:42:53.177421+00:00' - enum_CCDH_Specimen_morphology_assessor_role: - name: enum_CCDH_Specimen_morphology_assessor_role - description: Autogenerated Enumeration for CRDC-H Specimen morphology_assessor_role - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.morphology_assessor_role"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.morphology_assessor_role - code_set_version: '2021-07-21T20:42:53.324046+00:00' - enum_CCDH_Specimen_morphlogy_assessment_method: - name: enum_CCDH_Specimen_morphlogy_assessment_method - description: Autogenerated Enumeration for CRDC-H Specimen morphlogy_assessment_method - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.morphlogy_assessment_method"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.morphlogy_assessment_method - code_set_version: '2021-07-21T20:42:53.468214+00:00' - enum_CCDH_Specimen_degree_of_dysplasia: - name: enum_CCDH_Specimen_degree_of_dysplasia - description: Autogenerated Enumeration for CRDC-H Specimen degree_of_dysplasia - comments: - - 'Name according to TCCM: "CRDC-H.Specimen.degree_of_dysplasia"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Specimen.degree_of_dysplasia - code_set_version: '2021-07-21T20:42:53.617095+00:00' - enum_CCDH_Specimen_section_location: - name: enum_CCDH_Specimen_section_location - description: The location in a parent specimen from which a section/portion was - excised. - notes: - - Derived from [Specimen.section_location in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - related_mappings: - - GDC:Sample.section_location - permissible_values: - top: - text: top - description: The part of a specimen designated as its 'top' based on specified - orientation criteria. - unknown: - text: unknown - description: An unknown location on a specimen. - bottom: - text: bottom - description: The part of a specimen designated as its 'bottom' based on specified - orientation criteria. - enum_CCDH_SpecimenContainer_container_type: - name: enum_CCDH_SpecimenContainer_container_type - description: Autogenerated Enumeration for CRDC-H SpecimenContainer container_type - comments: - - 'Name according to TCCM: "CRDC-H.SpecimenContainer.container_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.SpecimenContainer.container_type - code_set_version: '2021-07-21T20:42:53.914816+00:00' - enum_CCDH_SpecimenCreationActivity_activity_type: - name: enum_CCDH_SpecimenCreationActivity_activity_type - description: The high-level type of activity through which the specimen was generated - (i.e. via collection from the original source, or via derivation from an existing - specimen) - notes: - - Derived from [SpecimenCreationActivity.activity_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - collection from source: - text: collection from source - description: An activity that collects an initial sample directly from a subject - / source. - derivation from specimen: - text: derivation from specimen - description: An activity that derives a new specimen from an existing one. - enum_CCDH_SpecimenCreationActivity_collection_method_type: - name: enum_CCDH_SpecimenCreationActivity_collection_method_type - description: Autogenerated Enumeration for CRDC-H SpecimenCreationActivity collection_method_type - comments: - - 'Name according to TCCM: "CRDC-H.SpecimenCreationActivity.collection_method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.SpecimenCreationActivity.collection_method_type - code_set_version: '2021-07-21T20:42:54.229501+00:00' - permissible_values: - 'Yes': - text: 'Yes' - 'No': - text: 'No' - Peritoneal Lavage: - text: Peritoneal Lavage - Oophorectomy: - text: Oophorectomy - Anterior Resection of Rectum: - text: Anterior Resection of Rectum - Not Reported: - text: Not Reported - Full Hysterectomy: - text: Full Hysterectomy - Salpingo-oophorectomy: - text: Salpingo-oophorectomy - Pneumonectomy: - text: Pneumonectomy - Transurethral resection (TURBT): - text: Transurethral resection (TURBT) - Right Hemicolectomy: - text: Right Hemicolectomy - Lumpectomy: - text: Lumpectomy - Unknown: - text: Unknown - Endoscopic Mucosal Resection (EMR): - text: Endoscopic Mucosal Resection (EMR) - Surgical Resection: - text: Surgical Resection - Laparoscopic Partial Nephrectomy: - text: Laparoscopic Partial Nephrectomy - Endo Rectal Tumor Resection: - text: Endo Rectal Tumor Resection - Hand Assisted Laparoscopic Radical Nephrectomy: - text: Hand Assisted Laparoscopic Radical Nephrectomy - Whipple Procedure: - text: Whipple Procedure - Bone Marrow Aspirate: - text: Bone Marrow Aspirate - Core Biopsy: - text: Core Biopsy - Laparoscopic Biopsy: - text: Laparoscopic Biopsy - Radical Hysterectomy: - text: Radical Hysterectomy - Punch Biopsy: - text: Punch Biopsy - Left Hemicolectomy: - text: Left Hemicolectomy - Simple Mastectomy: - text: Simple Mastectomy - Total Hepatectomy: - text: Total Hepatectomy - Pancreatectomy: - text: Pancreatectomy - Incisional Biopsy: - text: Incisional Biopsy - Thoracentesis: - text: Thoracentesis - Salpingectomy: - text: Salpingectomy - Blood Draw: - text: Blood Draw - Pan-Procto Colectomy: - text: Pan-Procto Colectomy - Laparoscopic Radical Prostatectomy with Robotics: - text: Laparoscopic Radical Prostatectomy with Robotics - Not Allowed To Collect: - text: Not Allowed To Collect - Supracervical Hysterectomy: - text: Supracervical Hysterectomy - Ascites Drainage: - text: Ascites Drainage - Enucleation: - text: Enucleation - Sigmoid Colectomy: - text: Sigmoid Colectomy - Tumor Resection: - text: Tumor Resection - Hysterectomy NOS: - text: Hysterectomy NOS - Aspirate: - text: Aspirate - Total Mastectomy: - text: Total Mastectomy - Needle Biopsy: - text: Needle Biopsy - Orchiectomy: - text: Orchiectomy - Laparoscopic Radical Prostatectomy without Robotics: - text: Laparoscopic Radical Prostatectomy without Robotics - Autopsy: - text: Autopsy - Fine Needle Aspiration: - text: Fine Needle Aspiration - Subtotal Resection: - text: Subtotal Resection - Modified Radical Mastectomy: - text: Modified Radical Mastectomy - Lymphadenectomy: - text: Lymphadenectomy - Tumor Debulking: - text: Tumor Debulking - Partial Hepatectomy: - text: Partial Hepatectomy - Wedge Resection: - text: Wedge Resection - Open Radical Nephrectomy: - text: Open Radical Nephrectomy - Laparoscopic Radical Nephrectomy: - text: Laparoscopic Radical Nephrectomy - Simple Hysterectomy: - text: Simple Hysterectomy - Total Colectomy: - text: Total Colectomy - Open Partial Nephrectomy: - text: Open Partial Nephrectomy - Lobectomy: - text: Lobectomy - Open Craniotomy: - text: Open Craniotomy - Cystectomy: - text: Cystectomy - Thoracoscopic Biopsy: - text: Thoracoscopic Biopsy - Transplant: - text: Transplant - Liquid Biopsy: - text: Liquid Biopsy - Abdomino-perineal Resection of Rectum: - text: Abdomino-perineal Resection of Rectum - Endoscopic Biopsy: - text: Endoscopic Biopsy - Biopsy: - text: Biopsy - Paracentesis: - text: Paracentesis - Transverse Colectomy: - text: Transverse Colectomy - Open Radical Prostatectomy: - text: Open Radical Prostatectomy - Omentectomy: - text: Omentectomy - Indeterminant: - text: Indeterminant - Excisional Biopsy: - text: Excisional Biopsy - Other Surgical Resection: - text: Other Surgical Resection - Local Resection (Exoresection; wall resection): - text: Local Resection (Exoresection; wall resection) - Metastasectomy: - text: Metastasectomy - Gross Total Resection: - text: Gross Total Resection - Other: - text: Other - Lymph Node Dissection: - text: Lymph Node Dissection - Total Nephrectomy: - text: Total Nephrectomy - Parotidectomy, NOS: - text: Parotidectomy, NOS - Partial Maxillectomy: - text: Partial Maxillectomy - Glossectomy: - text: Glossectomy - Partial Nephrectomy: - text: Partial Nephrectomy - Buccal Mucosal Resection: - text: Buccal Mucosal Resection - Total Laryngectomy: - text: Total Laryngectomy - Radical Nephrectomy: - text: Radical Nephrectomy - Mandibulectomy: - text: Mandibulectomy - Subtotal Prostatectomy: - text: Subtotal Prostatectomy - Transurethral Resection (TURP): - text: Transurethral Resection (TURP) - Laryngopharyngectomy: - text: Laryngopharyngectomy - Endolaryngeal Excision: - text: Endolaryngeal Excision - Tonsillectomy: - text: Tonsillectomy - Supracricoid Laryngectomy: - text: Supracricoid Laryngectomy - Radical Maxillectomy: - text: Radical Maxillectomy - Superficial Parotidectomy: - text: Superficial Parotidectomy - Deep Parotidectomy: - text: Deep Parotidectomy - Supraglottic Laryngectomy: - text: Supraglottic Laryngectomy - Radical Prostatectomy: - text: Radical Prostatectomy - Maxillectomy: - text: Maxillectomy - Partial Laryngectomy: - text: Partial Laryngectomy - Vertical Hemilaryngectomy: - text: Vertical Hemilaryngectomy - Transoral Laser Excision: - text: Transoral Laser Excision - Palatectomy: - text: Palatectomy - enum_CCDH_SpecimenCreationActivity_derivation_method_type: - name: enum_CCDH_SpecimenCreationActivity_derivation_method_type - description: Autogenerated Enumeration for CRDC-H SpecimenCreationActivity derivation_method_type - comments: - - 'Name according to TCCM: "CRDC-H.SpecimenCreationActivity.derivation_method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.SpecimenCreationActivity.derivation_method_type - code_set_version: '2021-07-21T20:42:54.438739+00:00' - enum_CCDH_SpecimenQualityObservation_category: - name: enum_CCDH_SpecimenQualityObservation_category - description: Autogenerated Enumeration for CRDC-H SpecimenQualityObservation category - comments: - - 'Name according to TCCM: "CRDC-H.SpecimenQualityObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.SpecimenQualityObservation.category - code_set_version: '2021-07-21T20:42:54.588980+00:00' - enum_CCDH_SpecimenQualityObservation_observation_type: - name: enum_CCDH_SpecimenQualityObservation_observation_type - description: Types of measurements that reflect the quality of a specimen or its - suitability for use. - notes: - - Derived from [SpecimenQualityObservation.observation_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - 'a260_a280_ratio ': - text: 'a260_a280_ratio ' - description: Ratio of absorbance measured at a wavelength of 260 over that - at a wavelength of 280. - ribosomal_rna_28s_16s_ratio: - text: ribosomal_rna_28s_16s_ratio - description: Ratio of quantity of 28s RNA over that of 16s RNA. - enum_CCDH_SpecimenQualityObservation_method_type: - name: enum_CCDH_SpecimenQualityObservation_method_type - description: A type of method used in determining the quantity of a specimen. - notes: - - Derived from [SpecimenQualityObservation.method_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - related_mappings: - - GDC:Analyte.spectrophotometer_method - - PDC:Analyte.spectrophotometer_method - permissible_values: - UV Spec: - text: UV Spec - description: A technique used to measure light absorbance across the ultraviolet - and visible ranges of the electromagnetic spectrum. - Pico Green: - text: Pico Green - description: A technique applying the Pico488 fluorescent sensor dye that - is used for quantifying the amount of double-stranded DNA (dsDNA) present - in a given sample. - enum_CCDH_SpecimenQuantityObservation_category: - name: enum_CCDH_SpecimenQuantityObservation_category - description: Autogenerated Enumeration for CRDC-H SpecimenQuantityObservation - category - comments: - - 'Name according to TCCM: "CRDC-H.SpecimenQuantityObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.SpecimenQuantityObservation.category - code_set_version: '2021-07-21T20:42:55.034186+00:00' - enum_CCDH_SpecimenQuantityObservation_observation_type: - name: enum_CCDH_SpecimenQuantityObservation_observation_type - description: Measures related to the quantity of a specimen or analyte it currently - contains - e.g. its weight, volume, or concentration. - notes: - - Derived from [SpecimenQuantityObservation.observation_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - weight: - text: weight - description: The current weight of the specimen, at the time of recording - (as opposed to an initial weight before its processing or portioning). - volume: - text: volume - description: The current total volume of the specimen, at the time of recording. - concentration: - text: concentration - description: The concentration of an extracted analyte that is present in - a specimen (specifically, in a specimen of type 'analyte', or an 'aliquot' - derived from an analyte). For example, the concentration of DNA in a specimen - created through extracting DNA from a blood sample. - enum_CCDH_SpecimenQuantityObservation_method_type: - name: enum_CCDH_SpecimenQuantityObservation_method_type - description: Autogenerated Enumeration for CRDC-H SpecimenQuantityObservation - method_type - comments: - - 'Name according to TCCM: "CRDC-H.SpecimenQuantityObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.SpecimenQuantityObservation.method_type - code_set_version: '2021-07-21T20:42:55.322096+00:00' - enum_CCDH_SpecimenProcessingActivity_activity_type: - name: enum_CCDH_SpecimenProcessingActivity_activity_type - description: The high-level type of processing activity performed. - notes: - - Derived from [SpecimenProcessingActivity.activity_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - Fixation: - text: Fixation - description: A processing activity that applies chemicals to preserve biological - tissues from decay due to autolysis or putrefaction - Freezing: - text: Freezing - description: A processing activity that aims to freeze a specimen. - Mounting: - text: Mounting - description: A processing activity that aims to secure a specimen or slide - in place in preparation for further examination (usually via microscopy) - Preservation: - text: Preservation - description: A processing activity that aims to preserve a specimen. - enum_CCDH_SpecimenProcessingActivity_method_type: - name: enum_CCDH_SpecimenProcessingActivity_method_type - description: A type of method used to process a specimen (e.g. freezing, fixing, - treating, preserving, labeling, etc.). - notes: - - Derived from [SpecimenProcessingActivity.method_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - related_mappings: - - GDC:Sample.freezing_method - - GDC:Sample.preservation_method - - GDC:Sample.is_ffpe - - GDC:Portion.is_ffpe - - GDC:Sample.oct_embedded - - PDC:Sample.freezing_method - - PDC:Sample.preservation_method - - PDC:Sample.is_ffpe - - GDC:Portion.is_ffpe - - PDC:Sample.oct_embedded - - HTAN:Biospecimen.PRESERVATION_METHOD - permissible_values: - '-80': - text: '-80' - description: Freezing at -80 degrees celcius - '-20': - text: '-20' - description: Freezing at -20 degrees celcius - LN2: - text: LN2 - description: Freezing in liquid nitrogen. - isopentane: - text: isopentane - description: Freezing in isopentane. - enum_CCDH_SpecimenStorageActivity_method_type: - name: enum_CCDH_SpecimenStorageActivity_method_type - description: Autogenerated Enumeration for CRDC-H SpecimenStorageActivity method_type - comments: - - 'Name according to TCCM: "CRDC-H.SpecimenStorageActivity.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.SpecimenStorageActivity.method_type - code_set_version: '2021-07-21T20:42:55.781350+00:00' - enum_CCDH_Subject_species: - name: enum_CCDH_Subject_species - description: The scientific binomial name for the species of the subject - notes: - - Derived from [Subject.species in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - Homo sapiens: - text: Homo sapiens - description: '' - Canis familiaris: - text: Canis familiaris - description: '' - Mus musculus: - text: Mus musculus - description: '' - enum_CCDH_Subject_breed: - name: enum_CCDH_Subject_breed - description: A label given to a group of animals homogeneous in appearance and - other characteristics that distinguish it from other animals of the same species. - notes: - - Derived from [Subject.breed in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - Akita: - text: Akita - description: '' - American Staffordshire Terrier: - text: American Staffordshire Terrier - description: '' - Australian Shepherd: - text: Australian Shepherd - description: '' - Basset Hound: - text: Basset Hound - description: '' - Beagle: - text: Beagle - description: '' - Belgian Malinois: - text: Belgian Malinois - description: '' - Bernese Mountain Dog: - text: Bernese Mountain Dog - description: '' - Black and Tan Coonhound: - text: Black and Tan Coonhound - description: '' - Border Collie: - text: Border Collie - description: '' - Boston Terrier: - text: Boston Terrier - description: '' - Bouvier des Flandres: - text: Bouvier des Flandres - description: '' - Boxer: - text: Boxer - description: '' - Bulldog: - text: Bulldog - description: '' - Bullmastiff: - text: Bullmastiff - description: '' - Cavalier King Charles Spaniel: - text: Cavalier King Charles Spaniel - description: '' - Chesapeake Bay Retriever: - text: Chesapeake Bay Retriever - description: '' - Chihuahua: - text: Chihuahua - description: '' - Chinese Shar-Pei: - text: Chinese Shar-Pei - description: '' - Cocker Spaniel: - text: Cocker Spaniel - description: '' - Dalmatian: - text: Dalmatian - description: '' - Doberman Pinscher: - text: Doberman Pinscher - description: '' - English Setter: - text: English Setter - description: '' - Flat-Coated Retriever: - text: Flat-Coated Retriever - description: '' - French Bulldog: - text: French Bulldog - description: '' - German Shepherd Dog: - text: German Shepherd Dog - description: '' - German Shorthaired Pointer: - text: German Shorthaired Pointer - description: '' - Giant Schnauzer: - text: Giant Schnauzer - description: '' - Golden Retriever: - text: Golden Retriever - description: '' - Gordon Setter: - text: Gordon Setter - description: '' - Greyhound: - text: Greyhound - description: '' - Irish Setter: - text: Irish Setter - description: '' - Irish Wolfhound: - text: Irish Wolfhound - description: '' - Labrador Retriever: - text: Labrador Retriever - description: '' - Mastiff: - text: Mastiff - description: '' - Miniature Schnauzer: - text: Miniature Schnauzer - description: '' - Mixed Breed: - text: Mixed Breed - description: '' - Parson Russell Terrier: - text: Parson Russell Terrier - description: '' - Poodle: - text: Poodle - description: '' - Rottweiler: - text: Rottweiler - description: '' - Saint Bernard: - text: Saint Bernard - description: '' - Samoyed: - text: Samoyed - description: '' - Shih Tzu: - text: Shih Tzu - description: '' - Staffordshire Bull Terrier: - text: Staffordshire Bull Terrier - description: '' - Vizsla: - text: Vizsla - description: '' - Weimaraner: - text: Weimaraner - description: '' - West Highland White Terrier: - text: West Highland White Terrier - description: '' - Yorkshire Terrier: - text: Yorkshire Terrier - description: '' - enum_CCDH_Subject_sex: - name: enum_CCDH_Subject_sex - description: Autogenerated Enumeration for CRDC-H Subject sex - comments: - - 'Name according to TCCM: "CRDC-H.Subject.sex"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Subject.sex - code_set_version: '2021-07-21T20:42:56.231870+00:00' - permissible_values: - unknown: - text: unknown - not reported: - text: not reported - female: - text: female - male: - text: male - unspecified: - text: unspecified - enum_CCDH_Subject_ethnicity: - name: enum_CCDH_Subject_ethnicity - description: Autogenerated Enumeration for CRDC-H Subject ethnicity - comments: - - 'Name according to TCCM: "CRDC-H.Subject.ethnicity"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Subject.ethnicity - code_set_version: '2021-07-21T20:42:56.385284+00:00' - permissible_values: - not hispanic or latino: - text: not hispanic or latino - hispanic or latino: - text: hispanic or latino - Unknown: - text: Unknown - description: Unknown - not reported: - text: not reported - unknown: - text: unknown - not allowed to collect: - text: not allowed to collect - enum_CCDH_Subject_race: - name: enum_CCDH_Subject_race - description: Autogenerated Enumeration for CRDC-H Subject race - comments: - - 'Name according to TCCM: "CRDC-H.Subject.race"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Subject.race - code_set_version: '2021-07-21T20:42:56.535704+00:00' - permissible_values: - not allowed to collect: - text: not allowed to collect - unknown: - text: unknown - not reported: - text: not reported - Unknown: - text: Unknown - description: Unknown - white: - text: white - native hawaiian or other pacific islander: - text: native hawaiian or other pacific islander - american indian or alaska native: - text: american indian or alaska native - asian: - text: asian - other: - text: other - black or african american: - text: black or african american - enum_CCDH_Subject_vital_status: - name: enum_CCDH_Subject_vital_status - description: Autogenerated Enumeration for CRDC-H Subject vital_status - comments: - - 'Name according to TCCM: "CRDC-H.Subject.vital_status"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Subject.vital_status - code_set_version: '2021-07-21T20:42:56.692309+00:00' - permissible_values: - Unknown: - text: Unknown - description: Unknown - Not Reported: - text: Not Reported - description: Not Reported - Dead: - text: Dead - description: DEAD - Alive: - text: Alive - description: ALIVE - enum_CCDH_Subject_cause_of_death: - name: enum_CCDH_Subject_cause_of_death - description: Autogenerated Enumeration for CRDC-H Subject cause_of_death - comments: - - 'Name according to TCCM: "CRDC-H.Subject.cause_of_death"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Subject.cause_of_death - code_set_version: '2021-07-21T20:42:56.857477+00:00' - permissible_values: - Infection: - text: Infection - description: Infection - Not Reported: - text: Not Reported - description: Not Reported - Surgical Complications: - text: Surgical Complications - description: Surgical Procedure Complication - Not Cancer Related: - text: Not Cancer Related - Toxicity: - text: Toxicity - description: Toxicity - End-stage Renal Disease: - text: End-stage Renal Disease - description: Chronic Kidney Disease, Stage 5 - Spinal Muscular Atrophy: - text: Spinal Muscular Atrophy - description: Spinal Muscular Atrophy - Renal Disorder, NOS: - text: Renal Disorder, NOS - description: Renal Disorder, NOS - Cardiovascular Disorder, NOS: - text: Cardiovascular Disorder, NOS - description: Cardiovascular Disorder, NOS - Cancer Related: - text: Cancer Related - Unknown: - text: Unknown - description: Unknown - enum_CCDH_Substance_substance_type: - name: enum_CCDH_Substance_substance_type - description: Autogenerated Enumeration for CRDC-H Substance substance_type - comments: - - 'Name according to TCCM: "CRDC-H.Substance.substance_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Substance.substance_type - code_set_version: '2021-07-21T20:42:57.020136+00:00' - permissible_values: - Anti-PTK7/Auristatin-0101 Antibody-drug Conjugate PF-06647020: - text: Anti-PTK7/Auristatin-0101 Antibody-drug Conjugate PF-06647020 - EGFR/TGFb Fusion Monoclonal Antibody BCA101: - text: EGFR/TGFb Fusion Monoclonal Antibody BCA101 - Naphthalimide Analogue UNBS5162: - text: Naphthalimide Analogue UNBS5162 - Oral Ixabepilone: - text: Oral Ixabepilone - DNA Minor Groove Binding Agent SG2000: - text: DNA Minor Groove Binding Agent SG2000 - Dromostanolone Propionate: - text: Dromostanolone Propionate - Pegylated Liposomal Nanoparticle-based Docetaxel Prodrug MNK-010: - text: Pegylated Liposomal Nanoparticle-based Docetaxel Prodrug MNK-010 - ALK/FAK/Pyk2 Inhibitor CT-707: - text: ALK/FAK/Pyk2 Inhibitor CT-707 - Attenuated Measles Virus Encoding SCD Transgene TMV-018: - text: Attenuated Measles Virus Encoding SCD Transgene TMV-018 - Zotatifin: - text: Zotatifin - Bcl-2 Inhibitor BGB-11417: - text: Bcl-2 Inhibitor BGB-11417 - Rovalpituzumab Tesirine: - text: Rovalpituzumab Tesirine - Erastin Analogue PRLX 93936: - text: Erastin Analogue PRLX 93936 - Mitoflaxone: - text: Mitoflaxone - Anti-EGFRvIII Antibody Drug Conjugate AMG 595: - text: Anti-EGFRvIII Antibody Drug Conjugate AMG 595 - Protein Arginine Methyltransferase 5 Inhibitor GSK3326595: - text: Protein Arginine Methyltransferase 5 Inhibitor GSK3326595 - Mcl-1 Inhibitor AZD5991: - text: Mcl-1 Inhibitor AZD5991 - Pasireotide: - text: Pasireotide - Anti-LAG-3 Monoclonal Antibody LAG525: - text: Anti-LAG-3 Monoclonal Antibody LAG525 - Anti-C4.4a Antibody-Drug Conjugate BAY1129980: - text: Anti-C4.4a Antibody-Drug Conjugate BAY1129980 - Alofanib: - text: Alofanib - Levothyroxine: - text: Levothyroxine - Epipropidine: - text: Epipropidine - Oblimersen Sodium: - text: Oblimersen Sodium - Navoximod: - text: Navoximod - Anti-NY-ESO1/LAGE-1A TCR/scFv Anti-CD3 IMCnyeso: - text: Anti-NY-ESO1/LAGE-1A TCR/scFv Anti-CD3 IMCnyeso - Infliximab: - text: Infliximab - Epothilone Analog UTD1: - text: Epothilone Analog UTD1 - Indicine-N-Oxide: - text: Indicine-N-Oxide - HER2-targeting Antibody Fc Fragment FS102: - text: HER2-targeting Antibody Fc Fragment FS102 - UAE Inhibitor TAK-243: - text: UAE Inhibitor TAK-243 - Toremifene: - text: Toremifene - HM2/MMAE Antibody-Drug Conjugate ALT-P7: - text: HM2/MMAE Antibody-Drug Conjugate ALT-P7 - Onvatilimab: - text: Onvatilimab - Tenalisib: - text: Tenalisib - Anti-PD-L1/4-1BB Bispecific Antibody INBRX-105: - text: Anti-PD-L1/4-1BB Bispecific Antibody INBRX-105 - Imaradenant: - text: Imaradenant - FGF Receptor Antagonist HGS1036: - text: FGF Receptor Antagonist HGS1036 - Anti-PR1/HLA-A2 Monoclonal Antibody Hu8F4: - text: Anti-PR1/HLA-A2 Monoclonal Antibody Hu8F4 - DR5-targeting Tetrameric Nanobody Agonist TAS266: - text: DR5-targeting Tetrameric Nanobody Agonist TAS266 - Nilotinib: - text: Nilotinib - Sobuzoxane: - text: Sobuzoxane - Safingol: - text: Safingol - Onartuzumab: - text: Onartuzumab - Methotrexate Sodium: - text: Methotrexate Sodium - Ipilimumab: - text: Ipilimumab - Hydroxychloroquine: - text: Hydroxychloroquine - Neoantigen-based Melanoma-Poly-ICLC Vaccine: - text: Neoantigen-based Melanoma-Poly-ICLC Vaccine - Phytochlorin Sodium-Polyvinylpyrrolidone Complex: - text: Phytochlorin Sodium-Polyvinylpyrrolidone Complex - Spongistatin: - text: Spongistatin - TRPM8 Agonist D-3263: - text: TRPM8 Agonist D-3263 - Folate Receptor-Targeted Vinca Alkaloid/Mitomycin C EC0225: - text: Folate Receptor-Targeted Vinca Alkaloid/Mitomycin C EC0225 - Trifluridine and Tipiracil Hydrochloride: - text: Trifluridine and Tipiracil Hydrochloride - Recombinant Anti-WT1 Immunotherapeutic GSK2302024A: - text: Recombinant Anti-WT1 Immunotherapeutic GSK2302024A - Cytokine-based Biologic Agent IRX-2: - text: Cytokine-based Biologic Agent IRX-2 - Anti-LIF Monoclonal Antibody MSC-1: - text: Anti-LIF Monoclonal Antibody MSC-1 - Anti-Ribonucleoprotein Antibody ATRC-101: - text: Anti-Ribonucleoprotein Antibody ATRC-101 - PARP-1/2 Inhibitor ABT-767: - text: PARP-1/2 Inhibitor ABT-767 - Bemcentinib: - text: Bemcentinib - 2-Methoxyestradiol Nanocrystal Colloidal Dispersion: - text: 2-Methoxyestradiol Nanocrystal Colloidal Dispersion - Yttrium Y 90 DOTA Anti-CEA Monoclonal Antibody M5A: - text: Yttrium Y 90 DOTA Anti-CEA Monoclonal Antibody M5A - Bis(choline)tetrathiomolybdate: - text: Bis(choline)tetrathiomolybdate - AXL/ FLT3/VEGFR2 Inhibitor KC1036: - text: AXL/ FLT3/VEGFR2 Inhibitor KC1036 - Soy Protein Isolate: - text: Soy Protein Isolate - Anti-LIV-1 Monoclonal Antibody-MMAE Conjugate SGN-LIV1A: - text: Anti-LIV-1 Monoclonal Antibody-MMAE Conjugate SGN-LIV1A - Ipafricept: - text: Ipafricept - Doxorubicin-HPMA Conjugate: - text: Doxorubicin-HPMA Conjugate - Allogeneic GM-CSF-secreting Breast Cancer Vaccine SV-BR-1-GM: - text: Allogeneic GM-CSF-secreting Breast Cancer Vaccine SV-BR-1-GM - p70S6K/Akt Inhibitor MSC2363318A: - text: p70S6K/Akt Inhibitor MSC2363318A - Acridine: - text: Acridine - p97 Inhibitor CB-5339: - text: p97 Inhibitor CB-5339 - Pan-KRAS Inhibitor BI 1701963: - text: Pan-KRAS Inhibitor BI 1701963 - Brentuximab: - text: Brentuximab - Zuclomiphene Citrate: - text: Zuclomiphene Citrate - Retelliptine: - text: Retelliptine - Zorubicin: - text: Zorubicin - Recombinant Interferon: - text: Recombinant Interferon - Lurtotecan: - text: Lurtotecan - Pirfenidone: - text: Pirfenidone - Non-Small Cell Lung Cancer mRNA-Derived Vaccine CV9201: - text: Non-Small Cell Lung Cancer mRNA-Derived Vaccine CV9201 - Trans Sodium Crocetinate: - text: Trans Sodium Crocetinate - Androgen Receptor Ligand-binding Domain-encoding Plasmid DNA Vaccine MVI-118: - text: Androgen Receptor Ligand-binding Domain-encoding Plasmid DNA Vaccine - MVI-118 - PE/HPV16 E7/KDEL Fusion Protein/GPI-0100 TVGV-1: - text: PE/HPV16 E7/KDEL Fusion Protein/GPI-0100 TVGV-1 - Androstane Steroid HE3235: - text: Androstane Steroid HE3235 - Antibody-drug Conjugate ABBV-085: - text: Antibody-drug Conjugate ABBV-085 - Bicalutamide: - text: Bicalutamide - Recombinant Granulocyte-Macrophage Colony-Stimulating Factor: - text: Recombinant Granulocyte-Macrophage Colony-Stimulating Factor - OPCs/Green Tea/Spirullina/Curcumin/Antrodia Camphorate/Fermented Soymilk Extract Capsule: - text: OPCs/Green Tea/Spirullina/Curcumin/Antrodia Camphorate/Fermented Soymilk - Extract Capsule - Bortezomib: - text: Bortezomib - Oxaliplatin: - text: Oxaliplatin - Lipid Nanoparticle Encapsulated mRNAs Encoding Human IL-12A/IL-12B MEDI-1191: - text: Lipid Nanoparticle Encapsulated mRNAs Encoding Human IL-12A/IL-12B MEDI-1191 - Ribonuclease QBI-139: - text: Ribonuclease QBI-139 - Detorubicin: - text: Detorubicin - Folate Receptor-Targeted Tubulysin Conjugate EC1456: - text: Folate Receptor-Targeted Tubulysin Conjugate EC1456 - Alemtuzumab: - text: Alemtuzumab - Fas Ligand-treated Allogeneic Mobilized Peripheral Blood Cells: - text: Fas Ligand-treated Allogeneic Mobilized Peripheral Blood Cells - Bruceanol A: - text: Bruceanol A - Ispinesib Mesylate: - text: Ispinesib Mesylate - Buthionine Sulfoximine: - text: Buthionine Sulfoximine - Pentoxifylline: - text: Pentoxifylline - Recombinant Fractalkine: - text: Recombinant Fractalkine - IDH1(R132) Inhibitor IDH305: - text: IDH1(R132) Inhibitor IDH305 - XBP1-US/XBP1-SP/CD138/CS1 Multipeptide Vaccine PVX-410: - text: XBP1-US/XBP1-SP/CD138/CS1 Multipeptide Vaccine PVX-410 - Mezagitamab: - text: Mezagitamab - Anti-GARP Monoclonal Antibody ABBV-151: - text: Anti-GARP Monoclonal Antibody ABBV-151 - Tubercidin: - text: Tubercidin - Dacarbazine: - text: Dacarbazine - NG-nitro-L-arginine: - text: NG-nitro-L-arginine - FGFR2 Inhibitor RLY-4008: - text: FGFR2 Inhibitor RLY-4008 - Radotinib Hydrochloride: - text: Radotinib Hydrochloride - Vascular Disrupting Agent BNC105P: - text: Vascular Disrupting Agent BNC105P - Sustained-release Mitomycin C Hydrogel Formulation UGN-101: - text: Sustained-release Mitomycin C Hydrogel Formulation UGN-101 - Anti-CXCR4 Monoclonal Antibody PF-06747143: - text: Anti-CXCR4 Monoclonal Antibody PF-06747143 - Iodine I-131: - text: Iodine I-131 - iPSC-derived Natural Killer Cells FT500: - text: iPSC-derived Natural Killer Cells FT500 - HDAC8 Inhibitor NBM-BMX: - text: HDAC8 Inhibitor NBM-BMX - Anti-CLDN6 Monoclonal Antibody ASP1650: - text: Anti-CLDN6 Monoclonal Antibody ASP1650 - Piroxantrone Hydrochloride: - text: Piroxantrone Hydrochloride - Sizofiran: - text: Sizofiran - Allogeneic Cellular Vaccine 1650-G: - text: Allogeneic Cellular Vaccine 1650-G - Fianlimab: - text: Fianlimab - Bcl-2 Inhibitor S65487: - text: Bcl-2 Inhibitor S65487 - Oxidopamine: - text: Oxidopamine - Rhenium Re-186 Hydroxyethylidene Diphosphonate: - text: Rhenium Re-186 Hydroxyethylidene Diphosphonate - TRK Inhibitor AZD6918: - text: TRK Inhibitor AZD6918 - MCL-1 Inhibitor AMG 176: - text: MCL-1 Inhibitor AMG 176 - Plitidepsin: - text: Plitidepsin - Tubulin-Binding Agent SSR97225: - text: Tubulin-Binding Agent SSR97225 - Anti-CD32B Monoclonal Antibody BI-1206: - text: Anti-CD32B Monoclonal Antibody BI-1206 - Metatinib Tromethamine: - text: Metatinib Tromethamine - Oral Cancer Vaccine V3-OVA: - text: Oral Cancer Vaccine V3-OVA - Anti-IL-8 Monoclonal Antibody HuMax-IL8: - text: Anti-IL-8 Monoclonal Antibody HuMax-IL8 - Ingenol Mebutate Gel: - text: Ingenol Mebutate Gel - Docetaxel Polymeric Micelles: - text: Docetaxel Polymeric Micelles - Ametantrone: - text: Ametantrone - MEK inhibitor CS3006: - text: MEK inhibitor CS3006 - Sunitinib Malate: - text: Sunitinib Malate - Autologous ROR2-targeted CAR T-cells CCT301-59: - text: Autologous ROR2-targeted CAR T-cells CCT301-59 - Cell Cycle Checkpoint/DNA Repair Antagonist IC83: - text: Cell Cycle Checkpoint/DNA Repair Antagonist IC83 - Enasidenib: - text: Enasidenib - Nogapendekin Alfa: - text: Nogapendekin Alfa - Intetumumab: - text: Intetumumab - Chiauranib: - text: Chiauranib - CAR T-Cells AMG 119: - text: CAR T-Cells AMG 119 - Fadrozole Hydrochloride: - text: Fadrozole Hydrochloride - Anti-PD-L1 Monoclonal Antibody RC98: - text: Anti-PD-L1 Monoclonal Antibody RC98 - Etirinotecan Pegol: - text: Etirinotecan Pegol - Thalidomide: - text: Thalidomide - Mafosfamide: - text: Mafosfamide - Protein Phosphatase 2A Inhibitor LB-100: - text: Protein Phosphatase 2A Inhibitor LB-100 - Calaspargase Pegol-mknl: - text: Calaspargase Pegol-mknl - Polypodium leucotomos Extract: - text: Polypodium leucotomos Extract - Tegafur-Uracil: - text: Tegafur-Uracil - FAK Inhibitor VS-4718: - text: FAK Inhibitor VS-4718 - Acodazole: - text: Acodazole - Genistein: - text: Genistein - BTK Inhibitor HZ-A-018: - text: BTK Inhibitor HZ-A-018 - 4'-Iodo-4'-Deoxydoxorubicin: - text: 4'-Iodo-4'-Deoxydoxorubicin - Sulofenur: - text: Sulofenur - Paclitaxel: - text: Paclitaxel - PARP Inhibitor E7016: - text: PARP Inhibitor E7016 - Anti-PD-L1/TIM-3 Bispecific Antibody LY3415244: - text: Anti-PD-L1/TIM-3 Bispecific Antibody LY3415244 - Afatinib: - text: Afatinib - Akt/ERK Inhibitor ONC201: - text: Akt/ERK Inhibitor ONC201 - Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01: - text: Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01 - Checkpoint Kinase Inhibitor XL844: - text: Checkpoint Kinase Inhibitor XL844 - Autologous CD19/PD-1 Bispecific CAR-T Cells: - text: Autologous CD19/PD-1 Bispecific CAR-T Cells - Long Peptide Vaccine 7: - text: Long Peptide Vaccine 7 - Matrix Metalloproteinase Inhibitor MMI270: - text: Matrix Metalloproteinase Inhibitor MMI270 - Tivantinib: - text: Tivantinib - Pinometostat: - text: Pinometostat - Bleomycin Sulfate: - text: Bleomycin Sulfate - EGFR Inhibitor TY-9591: - text: EGFR Inhibitor TY-9591 - Samuraciclib: - text: Samuraciclib - Anti-CD30 Monoclonal Antibody MDX-1401: - text: Anti-CD30 Monoclonal Antibody MDX-1401 - Survivin mRNA Antagonist EZN-3042: - text: Survivin mRNA Antagonist EZN-3042 - Ianalumab: - text: Ianalumab - Anti-VEGF Anticalin PRS-050-PEG40: - text: Anti-VEGF Anticalin PRS-050-PEG40 - LMB-2 Immunotoxin: - text: LMB-2 Immunotoxin - Crenolanib: - text: Crenolanib - Verubulin: - text: Verubulin - Chlorodihydropyrimidine: - text: Chlorodihydropyrimidine - St. John's Wort: - text: St. John's Wort - Brequinar Sodium: - text: Brequinar Sodium - mTOR Kinase Inhibitor PP242: - text: mTOR Kinase Inhibitor PP242 - 2-Hydroxyestrone: - text: 2-Hydroxyestrone - Delanzomib: - text: Delanzomib - Tomaralimab: - text: Tomaralimab - Total Androgen Blockade: - text: Total Androgen Blockade - FGFR/VEGFR/PDGFR/FLT3/SRC Inhibitor XL999: - text: FGFR/VEGFR/PDGFR/FLT3/SRC Inhibitor XL999 - Cactinomycin: - text: Cactinomycin - Anti-PD-1 Monoclonal Antibody AK105: - text: Anti-PD-1 Monoclonal Antibody AK105 - Talaporfin Sodium: - text: Talaporfin Sodium - PKC-beta Inhibitor MS-553: - text: PKC-beta Inhibitor MS-553 - Azathioprine: - text: Azathioprine - Autologous Genetically-modified MAGE-A4 C1032 T Cells: - text: Autologous Genetically-modified MAGE-A4 C1032 T Cells - Zinc Finger Nuclease ZFN-758: - text: Zinc Finger Nuclease ZFN-758 - Prednisolone Sodium Phosphate: - text: Prednisolone Sodium Phosphate - MUC1-targeted Peptide GO-203-2C: - text: MUC1-targeted Peptide GO-203-2C - Aminopterin Sodium: - text: Aminopterin Sodium - Serplulimab: - text: Serplulimab - 2-Hydroxyestradiol: - text: 2-Hydroxyestradiol - Plasmid DNA Vaccine pING-hHER3FL: - text: Plasmid DNA Vaccine pING-hHER3FL - Ang2/VEGF-Binding Peptides-Antibody Fusion Protein CVX-241: - text: Ang2/VEGF-Binding Peptides-Antibody Fusion Protein CVX-241 - Anti-GRP78 Monoclonal Antibody PAT-SM6: - text: Anti-GRP78 Monoclonal Antibody PAT-SM6 - Anti-LAG-3 Monoclonal Antibody IBI-110: - text: Anti-LAG-3 Monoclonal Antibody IBI-110 - Anti-CD123/CD3 Bispecific Antibody APVO436: - text: Anti-CD123/CD3 Bispecific Antibody APVO436 - Cimetidine: - text: Cimetidine - Synthetic hTERT DNA Vaccine INO-1401: - text: Synthetic hTERT DNA Vaccine INO-1401 - Infigratinib Mesylate: - text: Infigratinib Mesylate - Cedazuridine: - text: Cedazuridine - Tilogotamab: - text: Tilogotamab - Anti-TROP2 Antibody-drug Conjugate BAT8003: - text: Anti-TROP2 Antibody-drug Conjugate BAT8003 - Oxaliplatin-Encapsulated Transferrin-Conjugated N-glutaryl Phosphatidylethanolamine Liposome: - text: Oxaliplatin-Encapsulated Transferrin-Conjugated N-glutaryl Phosphatidylethanolamine - Liposome - Autologous Anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T Lymphocytes GSK3377794: - text: Autologous Anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T Lymphocytes GSK3377794 - Spirogermanium: - text: Spirogermanium - HSP90-targeted SN-38 Conjugate PEN-866: - text: HSP90-targeted SN-38 Conjugate PEN-866 - Prednisolone: - text: Prednisolone - Ras Peptide CYS: - text: Ras Peptide CYS - SHP2 Inhibitor RMC-4630: - text: SHP2 Inhibitor RMC-4630 - Copper Cu 67 Tyr3-octreotate: - text: Copper Cu 67 Tyr3-octreotate - Integrin alpha-2 Inhibitor E7820: - text: Integrin alpha-2 Inhibitor E7820 - Survivin Antigen Vaccine DPX-Survivac: - text: Survivin Antigen Vaccine DPX-Survivac - Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s: - text: Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s - ALK/TRK Inhibitor TSR-011: - text: ALK/TRK Inhibitor TSR-011 - Anti-PRL-3 Monoclonal Antibody PRL3-zumab: - text: Anti-PRL-3 Monoclonal Antibody PRL3-zumab - Tenifatecan: - text: Tenifatecan - FGFR Inhibitor TAS-120: - text: FGFR Inhibitor TAS-120 - Siltuximab: - text: Siltuximab - Denintuzumab Mafodotin: - text: Denintuzumab Mafodotin - PI3K-delta Inhibitor HMPL 689: - text: PI3K-delta Inhibitor HMPL 689 - Topical Betulinic Acid: - text: Topical Betulinic Acid - Hsp90-targeted Photosensitizer HS-201: - text: Hsp90-targeted Photosensitizer HS-201 - Pimasertib: - text: Pimasertib - Heparan Sulfate Glycosaminoglycan Mimetic M402: - text: Heparan Sulfate Glycosaminoglycan Mimetic M402 - Hsp90 Inhibitor AB-010: - text: Hsp90 Inhibitor AB-010 - Anti-CD19 iCAR NK Cells: - text: Anti-CD19 iCAR NK Cells - Polyunsaturated Fatty Acid: - text: Polyunsaturated Fatty Acid - CAB-ROR2-ADC BA3021: - text: CAB-ROR2-ADC BA3021 - Levothyroxine Sodium: - text: Levothyroxine Sodium - Fenebrutinib: - text: Fenebrutinib - Triptolide Analog: - text: Triptolide Analog - Panobinostat Nanoparticle Formulation MTX110: - text: Panobinostat Nanoparticle Formulation MTX110 - HLA-A2-restricted Melanoma-specific Peptides Vaccine GRN-1201: - text: HLA-A2-restricted Melanoma-specific Peptides Vaccine GRN-1201 - Anti-VEGF/ANG2 Nanobody BI 836880: - text: Anti-VEGF/ANG2 Nanobody BI 836880 - Iodine I 131 Derlotuximab Biotin: - text: Iodine I 131 Derlotuximab Biotin - Digitoxin: - text: Digitoxin - Rindopepimut: - text: Rindopepimut - Nucleotide Analogue GS 9219: - text: Nucleotide Analogue GS 9219 - Anti-CD47 ADC SGN-CD47M: - text: Anti-CD47 ADC SGN-CD47M - Triptorelin: - text: Triptorelin - Anti-PSMA/CD3 Monoclonal Antibody MOR209/ES414: - text: Anti-PSMA/CD3 Monoclonal Antibody MOR209/ES414 - Ets-family Transcription Factor Inhibitor TK216: - text: Ets-family Transcription Factor Inhibitor TK216 - Adenosine A2A/A2B Receptor Antagonist AB928: - text: Adenosine A2A/A2B Receptor Antagonist AB928 - Anti-PD-L1 Monoclonal Antibody TG-1501: - text: Anti-PD-L1 Monoclonal Antibody TG-1501 - Lintuzumab: - text: Lintuzumab - Roniciclib: - text: Roniciclib - Pexmetinib: - text: Pexmetinib - Ispinesib: - text: Ispinesib - Dexamethason: - text: Dexamethason - Oral Hsp90 Inhibitor IPI-493: - text: Oral Hsp90 Inhibitor IPI-493 - Monalizumab: - text: Monalizumab - Anti-PVRIG Monoclonal Antibody COM701: - text: Anti-PVRIG Monoclonal Antibody COM701 - Selinexor: - text: Selinexor - Budigalimab: - text: Budigalimab - DHEA Mustard: - text: DHEA Mustard - SSTR2-targeting Protein/DM1 Conjugate PEN-221: - text: SSTR2-targeting Protein/DM1 Conjugate PEN-221 - Annamycin: - text: Annamycin - Anti-CEACAM1 Monoclonal Antibody CM-24: - text: Anti-CEACAM1 Monoclonal Antibody CM-24 - Enavatuzumab: - text: Enavatuzumab - Ensituximab: - text: Ensituximab - Anti-PD-1 Monoclonal Antibody BAT1306: - text: Anti-PD-1 Monoclonal Antibody BAT1306 - Raf Kinase Inhibitor HM95573: - text: Raf Kinase Inhibitor HM95573 - Emapalumab: - text: Emapalumab - Canfosfamide: - text: Canfosfamide - Anti-PD-L1 Monoclonal Antibody MDX-1105: - text: Anti-PD-L1 Monoclonal Antibody MDX-1105 - Palonosetron Hydrochloride: - text: Palonosetron Hydrochloride - Gemcitabine-Releasing Intravesical System: - text: Gemcitabine-Releasing Intravesical System - Allogeneic Anti-CD20-CAR T-cells PBCAR20A: - text: Allogeneic Anti-CD20-CAR T-cells PBCAR20A - Yttrium Y 90 Colloid: - text: Yttrium Y 90 Colloid - Colchicine-Site Binding Agent ABT-751: - text: Colchicine-Site Binding Agent ABT-751 - Antineoplastic Agent Combination SM-88: - text: Antineoplastic Agent Combination SM-88 - Pan-AKT Inhibitor ARQ751: - text: Pan-AKT Inhibitor ARQ751 - Zalutumumab: - text: Zalutumumab - Filanesib: - text: Filanesib - White Carrot: - text: White Carrot - Marizomib: - text: Marizomib - HPV 16 E7 Antigen-expressing Lactobacillis casei Vaccine BLS-ILB-E710c: - text: HPV 16 E7 Antigen-expressing Lactobacillis casei Vaccine BLS-ILB-E710c - Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody BTRC 4017A: - text: Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody BTRC 4017A - Lutetium Lu 177-DTPA-omburtamab: - text: Lutetium Lu 177-DTPA-omburtamab - Bufalin: - text: Bufalin - Cladribine: - text: Cladribine - Azimexon: - text: Azimexon - Imetelstat Sodium: - text: Imetelstat Sodium - Pan-PIM Inhibitor INCB053914: - text: Pan-PIM Inhibitor INCB053914 - Liposomal Curcumin: - text: Liposomal Curcumin - Cyclodextrin-Based Polymer-Camptothecin CRLX101: - text: Cyclodextrin-Based Polymer-Camptothecin CRLX101 - Streptozocin: - text: Streptozocin - Anti-BCMA/CD3 BiTE Antibody AMG 701: - text: Anti-BCMA/CD3 BiTE Antibody AMG 701 - Anti-MUC16/CD3 BiTE Antibody REGN4018: - text: Anti-MUC16/CD3 BiTE Antibody REGN4018 - Oltipraz: - text: Oltipraz - Tetrahydrouridine: - text: Tetrahydrouridine - Telratolimod: - text: Telratolimod - Amuvatinib Hydrochloride: - text: Amuvatinib Hydrochloride - Sodium Salicylate: - text: Sodium Salicylate - Sirolimus: - text: Sirolimus - Anti-TIM3 Monoclonal Antibody SHR-1702: - text: Anti-TIM3 Monoclonal Antibody SHR-1702 - DEC-205/NY-ESO-1 Fusion Protein CDX-1401: - text: DEC-205/NY-ESO-1 Fusion Protein CDX-1401 - Methanol Extraction Residue of BCG: - text: Methanol Extraction Residue of BCG - Aminoflavone Prodrug AFP464: - text: Aminoflavone Prodrug AFP464 - Autologous BCMA-targeted CAR T Cells CC-98633: - text: Autologous BCMA-targeted CAR T Cells CC-98633 - Icrucumab: - text: Icrucumab - Autologous Prostate Cancer Antigen-expressing Dendritic Cell Vaccine BPX-101: - text: Autologous Prostate Cancer Antigen-expressing Dendritic Cell Vaccine - BPX-101 - Engineered Human Umbilical Vein Endothelial Cells AB-205: - text: Engineered Human Umbilical Vein Endothelial Cells AB-205 - Ifabotuzumab: - text: Ifabotuzumab - Sodium Phenylbutyrate: - text: Sodium Phenylbutyrate - FGFR Inhibitor Debio 1347: - text: FGFR Inhibitor Debio 1347 - Pyrotinib Dimaleate: - text: Pyrotinib Dimaleate - CD40 Agonist Monoclonal Antibody CP-870,893: - text: CD40 Agonist Monoclonal Antibody CP-870,893 - Alpha-Thioguanine Deoxyriboside: - text: Alpha-Thioguanine Deoxyriboside - Bispecific Antibody 2B1: - text: Bispecific Antibody 2B1 - Rocapuldencel-T: - text: Rocapuldencel-T - NLRP3 Agonist BMS-986299: - text: NLRP3 Agonist BMS-986299 - Anti-alpha5beta1 Integrin Antibody MINT1526A: - text: Anti-alpha5beta1 Integrin Antibody MINT1526A - Anti-CD33 Antibody-drug Conjugate IMGN779: - text: Anti-CD33 Antibody-drug Conjugate IMGN779 - Glofitamab: - text: Glofitamab - Anti-CD20 Monoclonal Antibody MIL62: - text: Anti-CD20 Monoclonal Antibody MIL62 - Anti-FGFR2 Antibody BAY1179470: - text: Anti-FGFR2 Antibody BAY1179470 - Anti-TIM-3 Monoclonal Antibody INCAGN02390: - text: Anti-TIM-3 Monoclonal Antibody INCAGN02390 - Tasisulam: - text: Tasisulam - Firtecan Pegol: - text: Firtecan Pegol - Bafetinib: - text: Bafetinib - BRAF(V600E) Kinase Inhibitor ABM-1310: - text: BRAF(V600E) Kinase Inhibitor ABM-1310 - Urabrelimab: - text: Urabrelimab - Puquitinib: - text: Puquitinib - Salmonella VNP20009: - text: Salmonella VNP20009 - Hyaluronidase-zzxf/Pertuzumab/Trastuzumab: - text: Hyaluronidase-zzxf/Pertuzumab/Trastuzumab - Belotecan Hydrochloride: - text: Belotecan Hydrochloride - BET Inhibitor CPI-0610: - text: BET Inhibitor CPI-0610 - Camptothecin-20(S)-O-Propionate Hydrate: - text: Camptothecin-20(S)-O-Propionate Hydrate - Colloidal Gold-Bound Tumor Necrosis Factor: - text: Colloidal Gold-Bound Tumor Necrosis Factor - Mitomycin B: - text: Mitomycin B - Anti-DR5 Agonist Monoclonal Antibody TRA-8: - text: Anti-DR5 Agonist Monoclonal Antibody TRA-8 - Sabarubicin: - text: Sabarubicin - Navarixin: - text: Navarixin - Parsaclisib: - text: Parsaclisib - Ulocuplumab: - text: Ulocuplumab - Yttrium Y 90 Tabituximab Barzuxetan: - text: Yttrium Y 90 Tabituximab Barzuxetan - Anti-CTLA-4 Monoclonal Antibody BCD-145: - text: Anti-CTLA-4 Monoclonal Antibody BCD-145 - Iodine I 131 MIP-1095: - text: Iodine I 131 MIP-1095 - Roflumilast: - text: Roflumilast - Multipeptide Vaccine S-588210: - text: Multipeptide Vaccine S-588210 - Selonsertib: - text: Selonsertib - Adenoviral Tumor-specific Neoantigen Priming Vaccine GRT-C901: - text: Adenoviral Tumor-specific Neoantigen Priming Vaccine GRT-C901 - Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody JNJ-64007957: - text: Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody JNJ-64007957 - Chlorambucil: - text: Chlorambucil - Teclistamab: - text: Teclistamab - Green Tea Extract-based Antioxidant Supplement: - text: Green Tea Extract-based Antioxidant Supplement - IDO1/TDO2 Inhibitor DN1406131: - text: IDO1/TDO2 Inhibitor DN1406131 - Anti-EphA2 Antibody-directed Liposomal Docetaxel Prodrug MM-310: - text: Anti-EphA2 Antibody-directed Liposomal Docetaxel Prodrug MM-310 - PDK1 Inhibitor AR-12: - text: PDK1 Inhibitor AR-12 - Topical Gemcitabine Hydrochloride: - text: Topical Gemcitabine Hydrochloride - Methotrexate-Encapsulating Autologous Tumor-Derived Microparticles: - text: Methotrexate-Encapsulating Autologous Tumor-Derived Microparticles - Pioglitazone: - text: Pioglitazone - Rigosertib: - text: Rigosertib - Zalcitabine: - text: Zalcitabine - Shenqi Fuzheng Injection SQ001: - text: Shenqi Fuzheng Injection SQ001 - Chlorotoxin: - text: Chlorotoxin - Selective Estrogen Receptor Degrader LX-039: - text: Selective Estrogen Receptor Degrader LX-039 - Chk1 Inhibitor GDC-0575: - text: Chk1 Inhibitor GDC-0575 - Bexmarilimab: - text: Bexmarilimab - Lutetium Lu-177 Girentuximab: - text: Lutetium Lu-177 Girentuximab - Coenzyme Q10: - text: Coenzyme Q10 - ChiNing Decoction: - text: ChiNing Decoction - Darleukin: - text: Darleukin - Immediate-release Tablet Afuresertib: - text: Immediate-release Tablet Afuresertib - Pelareorep: - text: Pelareorep - Anti-GD2 Monoclonal Antibody MORAb-028: - text: Anti-GD2 Monoclonal Antibody MORAb-028 - Banoxantrone: - text: Banoxantrone - Holmium Ho 166 Poly(L-Lactic Acid) Microspheres: - text: Holmium Ho 166 Poly(L-Lactic Acid) Microspheres - Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing CD4+/CD8+ T-lymphocytes JCARH125: - text: Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing CD4+/CD8+ T-lymphocytes - JCARH125 - Luminespib Mesylate: - text: Luminespib Mesylate - Sacituzumab Govitecan: - text: Sacituzumab Govitecan - Kanglaite: - text: Kanglaite - PLK1 Inhibitor CYC140: - text: PLK1 Inhibitor CYC140 - Gastrin Immunotoxin: - text: Gastrin Immunotoxin - Anti-B7-H3 Antibody DS-5573a: - text: Anti-B7-H3 Antibody DS-5573a - mTOR Kinase Inhibitor OSI-027: - text: mTOR Kinase Inhibitor OSI-027 - Beta-Glucan MM-10-001: - text: Beta-Glucan MM-10-001 - Therapeutic Estradiol: - text: Therapeutic Estradiol - Interleukin-15/Interleukin-15 Receptor Alpha Complex-Fc Fusion Protein XmAb24306: - text: Interleukin-15/Interleukin-15 Receptor Alpha Complex-Fc Fusion Protein - XmAb24306 - Tasisulam Sodium: - text: Tasisulam Sodium - Eniluracil/5-FU Combination Tablet: - text: Eniluracil/5-FU Combination Tablet - Botanical Agent LEAC-102: - text: Botanical Agent LEAC-102 - Androgen Receptor Antagonist TAS3681: - text: Androgen Receptor Antagonist TAS3681 - Lontucirev: - text: Lontucirev - Lipid Encapsulated Anti-PLK1 siRNA TKM-PLK1: - text: Lipid Encapsulated Anti-PLK1 siRNA TKM-PLK1 - Exatecan Mesylate Anhydrous: - text: Exatecan Mesylate Anhydrous - Samalizumab: - text: Samalizumab - Betulinic Acid: - text: Betulinic Acid - CD11b Agonist GB1275: - text: CD11b Agonist GB1275 - Apomine: - text: Apomine - ROBO1-targeted BiCAR-NKT Cells: - text: ROBO1-targeted BiCAR-NKT Cells - Attenuated Listeria monocytogenes CRS-100: - text: Attenuated Listeria monocytogenes CRS-100 - Saracatinib: - text: Saracatinib - Anti-ICOS Monoclonal Antibody MEDI-570: - text: Anti-ICOS Monoclonal Antibody MEDI-570 - 10-Deacetyltaxol: - text: 10-Deacetyltaxol - Tasquinimod: - text: Tasquinimod - Gemcitabine Hydrochloride Emulsion: - text: Gemcitabine Hydrochloride Emulsion - Belinostat: - text: Belinostat - Methylselenocysteine: - text: Methylselenocysteine - Selective Estrogen Receptor Modulator TAS-108: - text: Selective Estrogen Receptor Modulator TAS-108 - Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes ACTR087: - text: Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes - ACTR087 - Taxol Analogue SID 530: - text: Taxol Analogue SID 530 - Tisotumab Vedotin: - text: Tisotumab Vedotin - Y 90 Monoclonal Antibody M195: - text: Y 90 Monoclonal Antibody M195 - SERD G1T48: - text: SERD G1T48 - Tositumomab: - text: Tositumomab - PARP Inhibitor NMS-03305293: - text: PARP Inhibitor NMS-03305293 - Serdemetan: - text: Serdemetan - Niraparib Tosylate Monohydrate: - text: Niraparib Tosylate Monohydrate - Maraba Oncolytic Virus Expressing Mutant HPV E6/E7: - text: Maraba Oncolytic Virus Expressing Mutant HPV E6/E7 - Silicon Phthalocyanine 4: - text: Silicon Phthalocyanine 4 - Tipifarnib: - text: Tipifarnib - pan-PI3K/mTOR Inhibitor SF1126: - text: pan-PI3K/mTOR Inhibitor SF1126 - Cortisone Acetate: - text: Cortisone Acetate - Tarenflurbil: - text: Tarenflurbil - Venetoclax: - text: Venetoclax - Melphalan: - text: Melphalan - Src Kinase Inhibitor M475271: - text: Src Kinase Inhibitor M475271 - TLR8 Agonist DN1508052: - text: TLR8 Agonist DN1508052 - Gemcitabine Hydrochloride: - text: Gemcitabine Hydrochloride - Carbon C 14-pamiparib: - text: Carbon C 14-pamiparib - GSK-3 Inhibitor 9-ING-41: - text: GSK-3 Inhibitor 9-ING-41 - Methylprednisolone Acetate: - text: Methylprednisolone Acetate - Anti-HER2-DM1 Antibody-drug Conjugate GQ1001: - text: Anti-HER2-DM1 Antibody-drug Conjugate GQ1001 - Genetically Modified Interleukin-12 Transgene-encoding Bifidobacterium longum: - text: Genetically Modified Interleukin-12 Transgene-encoding Bifidobacterium - longum - Darolutamide: - text: Darolutamide - Zanolimumab: - text: Zanolimumab - Ganitumab: - text: Ganitumab - Vedolizumab: - text: Vedolizumab - PCNU: - text: PCNU - Brentuximab Vedotin: - text: Brentuximab Vedotin - Elagolix: - text: Elagolix - EGFR Antisense DNA BB-401: - text: EGFR Antisense DNA BB-401 - Synthetic hTERT DNA Vaccine INO-1400: - text: Synthetic hTERT DNA Vaccine INO-1400 - Black Cohosh: - text: Black Cohosh - Vinfosiltine: - text: Vinfosiltine - Aprutumab Ixadotin: - text: Aprutumab Ixadotin - Personalized Neoantigen DNA Vaccine GNOS-PVO2: - text: Personalized Neoantigen DNA Vaccine GNOS-PVO2 - Anti-FLT3 Monoclonal Antibody IMC-EB10: - text: Anti-FLT3 Monoclonal Antibody IMC-EB10 - Doxifluridine: - text: Doxifluridine - Anti-CTLA-4 Monoclonal Antibody HBM4003: - text: Anti-CTLA-4 Monoclonal Antibody HBM4003 - Mifamurtide: - text: Mifamurtide - Leurubicin: - text: Leurubicin - Diarylsulfonylurea Compound ILX-295501: - text: Diarylsulfonylurea Compound ILX-295501 - Cordycepin Triphosphate: - text: Cordycepin Triphosphate - Selective Human Estrogen-receptor Alpha Partial Agonist TTC-352: - text: Selective Human Estrogen-receptor Alpha Partial Agonist TTC-352 - Tesevatinib: - text: Tesevatinib - Anti-OX40 Monoclonal Antibody IBI101: - text: Anti-OX40 Monoclonal Antibody IBI101 - Tavokinogene Telseplasmid: - text: Tavokinogene Telseplasmid - Asparaginase Erwinia chrysanthemi: - text: Asparaginase Erwinia chrysanthemi - HPV E6/E7-encoding Arenavirus Vaccine HB-201: - text: HPV E6/E7-encoding Arenavirus Vaccine HB-201 - Beta-Thioguanine Deoxyriboside: - text: Beta-Thioguanine Deoxyriboside - AXL Inhibitor DS-1205c: - text: AXL Inhibitor DS-1205c - Hsp90 Inhibitor BIIB028: - text: Hsp90 Inhibitor BIIB028 - Clivatuzumab: - text: Clivatuzumab - Iodine I 131 Tositumomab: - text: Iodine I 131 Tositumomab - Aziridinylbenzoquinone RH1: - text: Aziridinylbenzoquinone RH1 - Hycanthone: - text: Hycanthone - Lutetium Lu 177 Lilotomab-satetraxetan: - text: Lutetium Lu 177 Lilotomab-satetraxetan - Epirubicin: - text: Epirubicin - Trimetrexate Glucuronate: - text: Trimetrexate Glucuronate - Antimetabolite FF-10502: - text: Antimetabolite FF-10502 - Monoclonal Antibody HuAFP31: - text: Monoclonal Antibody HuAFP31 - Dual IGF-1R/InsR Inhibitor BMS-754807: - text: Dual IGF-1R/InsR Inhibitor BMS-754807 - Budotitane: - text: Budotitane - Synthetic Alkaloid PM00104: - text: Synthetic Alkaloid PM00104 - Anti-TIM-3 Monoclonal Antibody MBG453: - text: Anti-TIM-3 Monoclonal Antibody MBG453 - 7-Cyanoquinocarcinol: - text: 7-Cyanoquinocarcinol - Autologous CD19 CAR-expressing CD4+/CD8+ T-cells MB-CART19.1: - text: Autologous CD19 CAR-expressing CD4+/CD8+ T-cells MB-CART19.1 - Fluoxymesterone: - text: Fluoxymesterone - Revdofilimab: - text: Revdofilimab - Capecitabine: - text: Capecitabine - Vorinostat: - text: Vorinostat - BTK Inhibitor LOXO-305: - text: BTK Inhibitor LOXO-305 - Annamycin Liposomal: - text: Annamycin Liposomal - Pseudoisocytidine: - text: Pseudoisocytidine - Dactinomycin: - text: Dactinomycin - Seneca Valley Virus-001: - text: Seneca Valley Virus-001 - Anti-CD20-engineered Toxin Body MT-3724: - text: Anti-CD20-engineered Toxin Body MT-3724 - GBM Antigens and Alloantigens Immunotherapeutic Vaccine: - text: GBM Antigens and Alloantigens Immunotherapeutic Vaccine - Nanoparticle-based Paclitaxel Suspension: - text: Nanoparticle-based Paclitaxel Suspension - Puromycin: - text: Puromycin - Rodorubicin: - text: Rodorubicin - Yttrium Y 90-DOTA-Biotin: - text: Yttrium Y 90-DOTA-Biotin - Adenoviral Transduced hIL-12-expressing Autologous Dendritic Cells INXN-3001 Plus Activator Ligand INXN-1001: - text: Adenoviral Transduced hIL-12-expressing Autologous Dendritic Cells INXN-3001 - Plus Activator Ligand INXN-1001 - Pralatrexate: - text: Pralatrexate - Metformin Hydrochloride: - text: Metformin Hydrochloride - Erdafitinib: - text: Erdafitinib - Anti-CD27 Agonistic Monoclonal Antibody MK-5890: - text: Anti-CD27 Agonistic Monoclonal Antibody MK-5890 - Copanlisib: - text: Copanlisib - Teprotumumab: - text: Teprotumumab - Spherical Nucleic Acid Nanoparticle NU-0129: - text: Spherical Nucleic Acid Nanoparticle NU-0129 - Prinomastat: - text: Prinomastat - SN-38-Loaded Polymeric Micelles NK012: - text: SN-38-Loaded Polymeric Micelles NK012 - IMT-1012 Immunotherapeutic Vaccine: - text: IMT-1012 Immunotherapeutic Vaccine - Vulinacimab: - text: Vulinacimab - TP40 Immunotoxin: - text: TP40 Immunotoxin - TGF-beta Receptor 1 Kinase Inhibitor SH3051: - text: TGF-beta Receptor 1 Kinase Inhibitor SH3051 - Anti-PD-L1 Monoclonal Antibody A167: - text: Anti-PD-L1 Monoclonal Antibody A167 - Radgocitabine Hydrochloride: - text: Radgocitabine Hydrochloride - Anti-HER2 Monoclonal Antibody B002: - text: Anti-HER2 Monoclonal Antibody B002 - Zandelisib: - text: Zandelisib - Ofranergene Obadenovec: - text: Ofranergene Obadenovec - Liposomal Docetaxel: - text: Liposomal Docetaxel - Anti-CSF1R Monoclonal Antibody IMC-CS4: - text: Anti-CSF1R Monoclonal Antibody IMC-CS4 - Peptichemio: - text: Peptichemio - Trigriluzole: - text: Trigriluzole - LV.IL-2/B7.1-Transduced AML Blast Vaccine RFUSIN2-AML1: - text: LV.IL-2/B7.1-Transduced AML Blast Vaccine RFUSIN2-AML1 - Docetaxel-PNP: - text: Docetaxel-PNP - Radgocitabine: - text: Radgocitabine - MET Tyrosine Kinase Inhibitor SAR125844: - text: MET Tyrosine Kinase Inhibitor SAR125844 - LMP7 Inhibitor M3258: - text: LMP7 Inhibitor M3258 - Ionomycin: - text: Ionomycin - Fisogatinib: - text: Fisogatinib - Vincristine Sulfate: - text: Vincristine Sulfate - Triethylenemelamine: - text: Triethylenemelamine - Yttrium Y 90-Edotreotide: - text: Yttrium Y 90-Edotreotide - CK2-targeting Synthetic Peptide CIGB-300: - text: CK2-targeting Synthetic Peptide CIGB-300 - Anti-PD-1/CTLA-4 Bispecific Antibody AK104: - text: Anti-PD-1/CTLA-4 Bispecific Antibody AK104 - Spiromustine: - text: Spiromustine - Ivosidenib: - text: Ivosidenib - ALK Inhibitor RO5424802: - text: ALK Inhibitor RO5424802 - MDM2 Inhibitor AMGMDS3: - text: MDM2 Inhibitor AMGMDS3 - Mivebresib: - text: Mivebresib - Autologous Peripheral Blood Lymphocytes from Ibrutinib-treated Chronic Lymphocytic Leukemia Patients IOV-2001: - text: Autologous Peripheral Blood Lymphocytes from Ibrutinib-treated Chronic - Lymphocytic Leukemia Patients IOV-2001 - PRIMA-1 Analog APR-246: - text: PRIMA-1 Analog APR-246 - BTK Inhibitor DTRMWXHS-12: - text: BTK Inhibitor DTRMWXHS-12 - Daratumumab: - text: Daratumumab - GS/pan-Notch Inhibitor AL101: - text: GS/pan-Notch Inhibitor AL101 - Monoclonal Antibody 105AD7 Anti-idiotype Vaccine: - text: Monoclonal Antibody 105AD7 Anti-idiotype Vaccine - Anti-c-Met Monoclonal Antibody HLX55: - text: Anti-c-Met Monoclonal Antibody HLX55 - Combretastatin A1 Diphosphate: - text: Combretastatin A1 Diphosphate - Anti-CD70 CAR-expressing T Lymphocytes: - text: Anti-CD70 CAR-expressing T Lymphocytes - NTRK/ROS1 Inhibitor DS-6051b: - text: NTRK/ROS1 Inhibitor DS-6051b - Vibecotamab: - text: Vibecotamab - Nemorubicin Hydrochloride: - text: Nemorubicin Hydrochloride - Paricalcitol: - text: Paricalcitol - Mosedipimod: - text: Mosedipimod - Mesothelin/CD3e Tri-specific T-cell Activating Construct HPN536: - text: Mesothelin/CD3e Tri-specific T-cell Activating Construct HPN536 - Cyclophosphamide: - text: Cyclophosphamide - Muscadine Grape Extract: - text: Muscadine Grape Extract - Acolbifene Hydrochloride: - text: Acolbifene Hydrochloride - Asaley: - text: Asaley - Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine ICT-107: - text: Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine - ICT-107 - Synthetic Hypericin: - text: Synthetic Hypericin - Toll-like Receptor 7 Agonist DSP-0509: - text: Toll-like Receptor 7 Agonist DSP-0509 - Nortopixantrone: - text: Nortopixantrone - pan-PIM Kinase Inhibitor NVP-LGB-321: - text: pan-PIM Kinase Inhibitor NVP-LGB-321 - Dihydro-5-Azacytidine: - text: Dihydro-5-Azacytidine - Atorvastatin Calcium: - text: Atorvastatin Calcium - Immunomodulator OHR/AVR118: - text: Immunomodulator OHR/AVR118 - Anti-HIF-1alpha LNA Antisense Oligonucleotide EZN-2968: - text: Anti-HIF-1alpha LNA Antisense Oligonucleotide EZN-2968 - Mirzotamab Clezutoclax: - text: Mirzotamab Clezutoclax - Bevacizumab: - text: Bevacizumab - PI3K Inhibitor BGT226: - text: PI3K Inhibitor BGT226 - Irinotecan Hydrochloride: - text: Irinotecan Hydrochloride - Luminespib: - text: Luminespib - Tucotuzumab Celmoleukin: - text: Tucotuzumab Celmoleukin - MARCKS Protein Inhibitor BIO-11006: - text: MARCKS Protein Inhibitor BIO-11006 - Perflenapent Emulsion: - text: Perflenapent Emulsion - Anti-prolactin Receptor Antibody LFA102: - text: Anti-prolactin Receptor Antibody LFA102 - Pibrozelesin: - text: Pibrozelesin - 9-Ethyl 6-Mercaptopurine: - text: 9-Ethyl 6-Mercaptopurine - CDK Inhibitor R547: - text: CDK Inhibitor R547 - Cathelicidin LL-37: - text: Cathelicidin LL-37 - VEGF Inhibitor PTC299: - text: VEGF Inhibitor PTC299 - Polo-like Kinase 1 Inhibitor NMS-1286937: - text: Polo-like Kinase 1 Inhibitor NMS-1286937 - BCMA-CD19 Compound CAR T Cells: - text: BCMA-CD19 Compound CAR T Cells - Anti-PD-1 Monoclonal Antibody JTX-4014: - text: Anti-PD-1 Monoclonal Antibody JTX-4014 - Leucovorin Calcium: - text: Leucovorin Calcium - Anti-BCMA Antibody-drug Conjugate AMG 224: - text: Anti-BCMA Antibody-drug Conjugate AMG 224 - Forodesine Hydrochloride: - text: Forodesine Hydrochloride - Bispecific Antibody AGEN1223: - text: Bispecific Antibody AGEN1223 - Anti-PD-1 Monoclonal Antibody Sym021: - text: Anti-PD-1 Monoclonal Antibody Sym021 - Anti-VEGFR3 Monoclonal Antibody IMC-3C5: - text: Anti-VEGFR3 Monoclonal Antibody IMC-3C5 - Arginine Butyrate: - text: Arginine Butyrate - pNGVL4a-CRT-E6E7L2 DNA Vaccine: - text: pNGVL4a-CRT-E6E7L2 DNA Vaccine - Anti-BCMA Antibody SEA-BCMA: - text: Anti-BCMA Antibody SEA-BCMA - Leucovorin: - text: Leucovorin - SLC6A8 Inhibitor RGX-202: - text: SLC6A8 Inhibitor RGX-202 - Anti-Met Monoclonal Antibody Mixture Sym015: - text: Anti-Met Monoclonal Antibody Mixture Sym015 - Paclitaxel PPE Microspheres: - text: Paclitaxel PPE Microspheres - Elesclomol Sodium: - text: Elesclomol Sodium - Pibenzimol: - text: Pibenzimol - Cereblon Modulator CC-90009: - text: Cereblon Modulator CC-90009 - EGFR Inhibitor DBPR112: - text: EGFR Inhibitor DBPR112 - Anti-CD47 Monoclonal Antibody SRF231: - text: Anti-CD47 Monoclonal Antibody SRF231 - Modotuximab: - text: Modotuximab - Etoglucid: - text: Etoglucid - Iodine I 131 Rituximab: - text: Iodine I 131 Rituximab - Lometrexol Sodium: - text: Lometrexol Sodium - Teloxantrone Hydrochloride: - text: Teloxantrone Hydrochloride - Human Papillomavirus 16 E7 Peptide/Padre 965.10: - text: Human Papillomavirus 16 E7 Peptide/Padre 965.10 - Trebananib: - text: Trebananib - Bendamustine: - text: Bendamustine - Zibotentan: - text: Zibotentan - NY-ESO-B: - text: NY-ESO-B - Tagraxofusp-erzs: - text: Tagraxofusp-erzs - Omipalisib: - text: Omipalisib - Dinutuximab: - text: Dinutuximab - Immunomodulatory Oligonucleotide HYB2055: - text: Immunomodulatory Oligonucleotide HYB2055 - Live-attenuated Listeria monocytogenes-encoding EGFRvIII-NY-ESO-1 Vaccine ADU-623: - text: Live-attenuated Listeria monocytogenes-encoding EGFRvIII-NY-ESO-1 Vaccine - ADU-623 - Taxane Compound: - text: Taxane Compound - Squalamine Lactate: - text: Squalamine Lactate - Citarinostat: - text: Citarinostat - Cytarabine-asparagine Prodrug BST-236: - text: Cytarabine-asparagine Prodrug BST-236 - Triaziquone: - text: Triaziquone - Tubulin Binding Agent TTI-237: - text: Tubulin Binding Agent TTI-237 - Anti-CD157 Monoclonal Antibody MEN1112: - text: Anti-CD157 Monoclonal Antibody MEN1112 - Camptothecin: - text: Camptothecin - Anti-CD33/CD3 Bispecific Antibody GEM 333: - text: Anti-CD33/CD3 Bispecific Antibody GEM 333 - Galiximab: - text: Galiximab - Carbetimer: - text: Carbetimer - CEA-targeting Agent RG6123: - text: CEA-targeting Agent RG6123 - Iniparib: - text: Iniparib - MOv-gamma Chimeric Receptor Gene: - text: MOv-gamma Chimeric Receptor Gene - Realgar-Indigo naturalis Formulation: - text: Realgar-Indigo naturalis Formulation - Fosbretabulin Disodium: - text: Fosbretabulin Disodium - Sodium-Potassium Adenosine Triphosphatase Inhibitor RX108: - text: Sodium-Potassium Adenosine Triphosphatase Inhibitor RX108 - Tamrintamab Pamozirine: - text: Tamrintamab Pamozirine - Vadacabtagene Leraleucel: - text: Vadacabtagene Leraleucel - Anti-CD47 Monoclonal Antibody IMC-002: - text: Anti-CD47 Monoclonal Antibody IMC-002 - Efatutazone Dihydrochloride: - text: Efatutazone Dihydrochloride - Talampanel: - text: Talampanel - Rubitecan: - text: Rubitecan - Gedatolisib: - text: Gedatolisib - Anti-CD33 Antigen/CD3 Receptor Bispecific Monoclonal Antibody AMV564: - text: Anti-CD33 Antigen/CD3 Receptor Bispecific Monoclonal Antibody AMV564 - Matuzumab: - text: Matuzumab - MET Kinase Inhibitor OMO-1: - text: MET Kinase Inhibitor OMO-1 - Monoclonal Antibody CC49-delta CH2: - text: Monoclonal Antibody CC49-delta CH2 - Anti-PSMA/PBD ADC MEDI3726: - text: Anti-PSMA/PBD ADC MEDI3726 - N-dihydrogalactochitosan: - text: N-dihydrogalactochitosan - FPV Vaccine CV301: - text: FPV Vaccine CV301 - Sialyl Tn-KLH Vaccine: - text: Sialyl Tn-KLH Vaccine - Anti-TGF-beta Monoclonal Antibody SAR-439459: - text: Anti-TGF-beta Monoclonal Antibody SAR-439459 - Sipuleucel-T: - text: Sipuleucel-T - LSD1 Inhibitor RO7051790: - text: LSD1 Inhibitor RO7051790 - Anti-CD47 Monoclonal Antibody IBI188: - text: Anti-CD47 Monoclonal Antibody IBI188 - PSA/PSMA DNA Plasmid INO-5150: - text: PSA/PSMA DNA Plasmid INO-5150 - Cixutumumab: - text: Cixutumumab - hTERT Vaccine V934/V935: - text: hTERT Vaccine V934/V935 - Atiprimod: - text: Atiprimod - Oxaliplatin Eluting Beads: - text: Oxaliplatin Eluting Beads - Anti-ICOS Agonist Antibody GSK3359609: - text: Anti-ICOS Agonist Antibody GSK3359609 - Belvarafenib: - text: Belvarafenib - Allogeneic CD8+ Leukemia-associated Antigens Specific T Cells NEXI-001: - text: Allogeneic CD8+ Leukemia-associated Antigens Specific T Cells NEXI-001 - CD80-Fc Fusion Protein ALPN-202: - text: CD80-Fc Fusion Protein ALPN-202 - Monoclonal Antibody GD2 Anti-Idiotype Vaccine: - text: Monoclonal Antibody GD2 Anti-Idiotype Vaccine - dUTPase/DPD Inhibitor TAS-114: - text: dUTPase/DPD Inhibitor TAS-114 - Interferon Alfacon-1: - text: Interferon Alfacon-1 - Duvortuxizumab: - text: Duvortuxizumab - Dimethylmyleran: - text: Dimethylmyleran - Antiangiogenic Drug Combination TL-118: - text: Antiangiogenic Drug Combination TL-118 - Cationic Liposome-Encapsulated Paclitaxel: - text: Cationic Liposome-Encapsulated Paclitaxel - Actinomycin C3: - text: Actinomycin C3 - Methionine Aminopeptidase 2 Inhibitor PPI-2458: - text: Methionine Aminopeptidase 2 Inhibitor PPI-2458 - Anti-PD-1 Monoclonal Antibody BCD-100: - text: Anti-PD-1 Monoclonal Antibody BCD-100 - ICT-121 Dendritic Cell Vaccine: - text: ICT-121 Dendritic Cell Vaccine - Obatoclax Mesylate: - text: Obatoclax Mesylate - PGG Beta-Glucan: - text: PGG Beta-Glucan - Ibandronate Sodium: - text: Ibandronate Sodium - Degarelix: - text: Degarelix - PI3K Inhibitor ZSTK474: - text: PI3K Inhibitor ZSTK474 - Alitretinoin: - text: Alitretinoin - Prohibitin-Targeting Peptide 1: - text: Prohibitin-Targeting Peptide 1 - Namodenoson: - text: Namodenoson - Pan-TRK Inhibitor ONO-7579: - text: Pan-TRK Inhibitor ONO-7579 - Nimesulide-Hyaluronic Acid Conjugate CA102N: - text: Nimesulide-Hyaluronic Acid Conjugate CA102N - Anti-HIV-1 Lentiviral Vector-expressing sh5/C46 Cal-1: - text: Anti-HIV-1 Lentiviral Vector-expressing sh5/C46 Cal-1 - Anti-CD3/Anti-GPRC5D Bispecific Monoclonal Antibody JNJ-64407564: - text: Anti-CD3/Anti-GPRC5D Bispecific Monoclonal Antibody JNJ-64407564 - Recombinant Interleukin-12: - text: Recombinant Interleukin-12 - Jin Fu Kang: - text: Jin Fu Kang - Cord Blood-derived Expanded Natural Killer Cells PNK-007: - text: Cord Blood-derived Expanded Natural Killer Cells PNK-007 - Fluvastatin Sodium: - text: Fluvastatin Sodium - Anti-CD123 Monoclonal Antibody CSL360: - text: Anti-CD123 Monoclonal Antibody CSL360 - Recombinant Fas Ligand: - text: Recombinant Fas Ligand - Morpholinodoxorubicin: - text: Morpholinodoxorubicin - Irofulven: - text: Irofulven - Therapeutic Breast/Ovarian/Prostate Peptide Cancer Vaccine DPX-0907: - text: Therapeutic Breast/Ovarian/Prostate Peptide Cancer Vaccine DPX-0907 - Axicabtagene Ciloleucel: - text: Axicabtagene Ciloleucel - Recombinant Tyrosinase-Related Protein-2: - text: Recombinant Tyrosinase-Related Protein-2 - Artemisinin Dimer: - text: Artemisinin Dimer - DPT/Typhoid/Staphylococcus aureus/Paratyphoid A/Paratyphoid B Vaccine: - text: DPT/Typhoid/Staphylococcus aureus/Paratyphoid A/Paratyphoid B Vaccine - Mutant-selective EGFR Inhibitor PF-06459988: - text: Mutant-selective EGFR Inhibitor PF-06459988 - Famitinib: - text: Famitinib - Abarelix: - text: Abarelix - Milademetan Tosylate: - text: Milademetan Tosylate - Light-activated AU-011: - text: Light-activated AU-011 - Fazarabine: - text: Fazarabine - iPSC-derived CD16-expressing Natural Killer Cells FT516: - text: iPSC-derived CD16-expressing Natural Killer Cells FT516 - Selective Cytokine Inhibitory Drug CC-1088: - text: Selective Cytokine Inhibitory Drug CC-1088 - Clodronic Acid: - text: Clodronic Acid - Lutetium Lu 177 DOTA-biotin: - text: Lutetium Lu 177 DOTA-biotin - Batabulin Sodium: - text: Batabulin Sodium - Compound Kushen Injection: - text: Compound Kushen Injection - Ontorpacept: - text: Ontorpacept - Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa: - text: Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa - Talimogene Laherparepvec: - text: Talimogene Laherparepvec - Topotecan Sustained-release Episcleral Plaque: - text: Topotecan Sustained-release Episcleral Plaque - mRNA-based Personalized Cancer Vaccine mRNA-4157: - text: mRNA-based Personalized Cancer Vaccine mRNA-4157 - CD123-CD33 Compound CAR T Cells: - text: CD123-CD33 Compound CAR T Cells - mTOR Inhibitor GDC-0349: - text: mTOR Inhibitor GDC-0349 - Itraconazole: - text: Itraconazole - Polyethylene Glycol Recombinant Endostatin: - text: Polyethylene Glycol Recombinant Endostatin - Idiotype-Pulsed Autologous Dendritic Cell Vaccine APC8020: - text: Idiotype-Pulsed Autologous Dendritic Cell Vaccine APC8020 - Camptothecin Analogue TLC388: - text: Camptothecin Analogue TLC388 - Picrasinoside H: - text: Picrasinoside H - Maytansine: - text: Maytansine - Beta-lapachone Prodrug ARQ 761: - text: Beta-lapachone Prodrug ARQ 761 - TRPV6 Calcium Channel Inhibitor SOR-C13: - text: TRPV6 Calcium Channel Inhibitor SOR-C13 - Anti-CD38 Monoclonal Antibody SAR442085: - text: Anti-CD38 Monoclonal Antibody SAR442085 - VEGFR2 Tyrosine Kinase Inhibitor PF-00337210: - text: VEGFR2 Tyrosine Kinase Inhibitor PF-00337210 - Treosulfan: - text: Treosulfan - Ragifilimab: - text: Ragifilimab - Spartalizumab: - text: Spartalizumab - 13-Deoxydoxorubicin: - text: 13-Deoxydoxorubicin - PLK1 Inhibitor TAK-960: - text: PLK1 Inhibitor TAK-960 - Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001: - text: Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001 - Bcl-2 Inhibitor BCL201: - text: Bcl-2 Inhibitor BCL201 - Oral Azacitidine: - text: Oral Azacitidine - Pepinemab: - text: Pepinemab - Andrographolide: - text: Andrographolide - Fedratinib: - text: Fedratinib - Yttrium Y 90 Anti-CEA Monoclonal Antibody cT84.66: - text: Yttrium Y 90 Anti-CEA Monoclonal Antibody cT84.66 - Amifostine: - text: Amifostine - Mobocertinib: - text: Mobocertinib - Perfosfamide: - text: Perfosfamide - RSK1-4 Inhibitor PMD-026: - text: RSK1-4 Inhibitor PMD-026 - Anti-BCMA/PBD ADC MEDI2228: - text: Anti-BCMA/PBD ADC MEDI2228 - Upifitamab: - text: Upifitamab - Anti-FGFR4 Monoclonal Antibody U3-1784: - text: Anti-FGFR4 Monoclonal Antibody U3-1784 - Monoclonal Antibody RAV12: - text: Monoclonal Antibody RAV12 - BTK Inhibitor CT-1530: - text: BTK Inhibitor CT-1530 - Anti-fucosyl-GM1 Monoclonal Antibody BMS-986012: - text: Anti-fucosyl-GM1 Monoclonal Antibody BMS-986012 - Padeliporfin: - text: Padeliporfin - Cancell: - text: Cancell - Oxidative Phosphorylation Inhibitor IACS-010759: - text: Oxidative Phosphorylation Inhibitor IACS-010759 - ERK Inhibitor MK-8353: - text: ERK Inhibitor MK-8353 - Milataxel: - text: Milataxel - Cemiplimab: - text: Cemiplimab - IGF-methotrexate Conjugate: - text: IGF-methotrexate Conjugate - NEDD8 Activating Enzyme E1 Inhibitor TAS4464: - text: NEDD8 Activating Enzyme E1 Inhibitor TAS4464 - Naptumomab Estafenatox: - text: Naptumomab Estafenatox - Cabiralizumab: - text: Cabiralizumab - hTERT-encoding DNA Vaccine INVAC-1: - text: hTERT-encoding DNA Vaccine INVAC-1 - Monoclonal Antibody R24: - text: Monoclonal Antibody R24 - PRMT5 Inhibitor PRT811: - text: PRMT5 Inhibitor PRT811 - Anti-CEA BiTE Monoclonal Antibody AMG211: - text: Anti-CEA BiTE Monoclonal Antibody AMG211 - Liposomal Mitoxantrone Hydrochloride: - text: Liposomal Mitoxantrone Hydrochloride - RhoC Peptide Vaccine RV001V: - text: RhoC Peptide Vaccine RV001V - CD44v6-specific CAR T-cells: - text: CD44v6-specific CAR T-cells - Geranylgeranyltransferase I Inhibitor: - text: Geranylgeranyltransferase I Inhibitor - SERD SAR439859: - text: SERD SAR439859 - Chlorozotocin: - text: Chlorozotocin - Allogeneic Anti-CD19-CAR T-cells PBCAR0191: - text: Allogeneic Anti-CD19-CAR T-cells PBCAR0191 - Pan-FLT3/Pan-BTK Multi-kinase Inhibitor CG-806: - text: Pan-FLT3/Pan-BTK Multi-kinase Inhibitor CG-806 - Pegylated SN-38 Conjugate PLX038: - text: Pegylated SN-38 Conjugate PLX038 - Pegaspargase: - text: Pegaspargase - Autologous AFP Specific T Cell Receptor Transduced T Cells C-TCR055: - text: Autologous AFP Specific T Cell Receptor Transduced T Cells C-TCR055 - Zotiraciclib Citrate: - text: Zotiraciclib Citrate - Pegylated Recombinant L-asparaginase Erwinia chrysanthemi: - text: Pegylated Recombinant L-asparaginase Erwinia chrysanthemi - Taurolidine: - text: Taurolidine - Ningetinib Tosylate: - text: Ningetinib Tosylate - Seviteronel: - text: Seviteronel - Fluorouracil: - text: Fluorouracil - Dociparstat sodium: - text: Dociparstat sodium - Amrubicin: - text: Amrubicin - Methylprednisolone Sodium Succinate: - text: Methylprednisolone Sodium Succinate - Scopoletin: - text: Scopoletin - Paclitaxel Liposome: - text: Paclitaxel Liposome - Varlitinib Tosylate: - text: Varlitinib Tosylate - HDAC Inhibitor AR-42: - text: HDAC Inhibitor AR-42 - Neratinib: - text: Neratinib - BH3 Mimetic ABT-737: - text: BH3 Mimetic ABT-737 - Remetinostat: - text: Remetinostat - Atrasentan Hydrochloride: - text: Atrasentan Hydrochloride - Cisplatin: - text: Cisplatin - Phenethyl Isothiocyanate: - text: Phenethyl Isothiocyanate - Autologous Anti-CD19 TAC-T cells TAC01-CD19: - text: Autologous Anti-CD19 TAC-T cells TAC01-CD19 - Anti-C-met Monoclonal Antibody SAIT301: - text: Anti-C-met Monoclonal Antibody SAIT301 - Acai Berry Juice: - text: Acai Berry Juice - CpG Oligodeoxynucleotide GNKG168: - text: CpG Oligodeoxynucleotide GNKG168 - Tyrosinase Peptide: - text: Tyrosinase Peptide - Trastuzumab-TLR 7/8 Agonist BDC-1001: - text: Trastuzumab-TLR 7/8 Agonist BDC-1001 - Liposomal NDDP: - text: Liposomal NDDP - Recombinant Interferon Beta: - text: Recombinant Interferon Beta - CDK7 Inhibitor CT7001: - text: CDK7 Inhibitor CT7001 - RAF Kinase Inhibitor L-779450: - text: RAF Kinase Inhibitor L-779450 - Microbiome GEN-001: - text: Microbiome GEN-001 - Triptorelin Pamoate: - text: Triptorelin Pamoate - L-Gossypol: - text: L-Gossypol - Sodium Dichloroacetate: - text: Sodium Dichloroacetate - Adenosine A2A Receptor Antagonist AZD4635: - text: Adenosine A2A Receptor Antagonist AZD4635 - Gossypol: - text: Gossypol - Syk Inhibitor HMPL-523: - text: Syk Inhibitor HMPL-523 - Verpasep Caltespen: - text: Verpasep Caltespen - Autologous TCR-engineered T-cells IMA203: - text: Autologous TCR-engineered T-cells IMA203 - Curcumin: - text: Curcumin - Resiquimod Topical Gel: - text: Resiquimod Topical Gel - Membrane-Disrupting Peptide EP-100: - text: Membrane-Disrupting Peptide EP-100 - Rituximab: - text: Rituximab - Ciltacabtagene Autoleucel: - text: Ciltacabtagene Autoleucel - Tyrosine Kinase Inhibitor XL228: - text: Tyrosine Kinase Inhibitor XL228 - Anti-BCMA/CD3 BiTE Antibody AMG 420: - text: Anti-BCMA/CD3 BiTE Antibody AMG 420 - Yttrium Y-90 Ibritumomab Tiuxetan: - text: Yttrium Y-90 Ibritumomab Tiuxetan - Hsp90 Inhibitor TQB3474: - text: Hsp90 Inhibitor TQB3474 - Domatinostat: - text: Domatinostat - Hsp90 Inhibitor MPC-3100: - text: Hsp90 Inhibitor MPC-3100 - Albumin-binding Cisplatin Prodrug BTP-114: - text: Albumin-binding Cisplatin Prodrug BTP-114 - EBNA-1 inhibitor VK-2019: - text: EBNA-1 inhibitor VK-2019 - Pictilisib Bismesylate: - text: Pictilisib Bismesylate - Porfimer Sodium: - text: Porfimer Sodium - Motesanib: - text: Motesanib - Anti-CD137 Agonistic Monoclonal Antibody CTX-471: - text: Anti-CD137 Agonistic Monoclonal Antibody CTX-471 - STING-activating Cyclic Dinucleotide Agonist MIW815: - text: STING-activating Cyclic Dinucleotide Agonist MIW815 - Androgen Receptor Inhibitor EPI-7386: - text: Androgen Receptor Inhibitor EPI-7386 - Bisthianostat: - text: Bisthianostat - Perillyl Alcohol: - text: Perillyl Alcohol - Neratinib Maleate: - text: Neratinib Maleate - Prolgolimab: - text: Prolgolimab - mTOR1/2 Kinase Inhibitor ME-344: - text: mTOR1/2 Kinase Inhibitor ME-344 - CD20-CD19 Compound CAR T Cells: - text: CD20-CD19 Compound CAR T Cells - PARP 1/2 Inhibitor IMP4297: - text: PARP 1/2 Inhibitor IMP4297 - Halichondrin B: - text: Halichondrin B - Amino Acid Injection: - text: Amino Acid Injection - Iodine I 131 Monoclonal Antibody 81C6: - text: Iodine I 131 Monoclonal Antibody 81C6 - Gamboge Resin Extract TSB-9-W1: - text: Gamboge Resin Extract TSB-9-W1 - Topical Trichloroacetic Acid: - text: Topical Trichloroacetic Acid - CDK7 Inhibitor SY-5609: - text: CDK7 Inhibitor SY-5609 - Litronesib: - text: Litronesib - SIRPa-Fc Fusion Protein TTI-621: - text: SIRPa-Fc Fusion Protein TTI-621 - Hemiasterlin Analog E7974: - text: Hemiasterlin Analog E7974 - Liothyronine Sodium: - text: Liothyronine Sodium - Ralaniten Acetate: - text: Ralaniten Acetate - Anti-IGF-1R Recombinant Monoclonal Antibody BIIB022: - text: Anti-IGF-1R Recombinant Monoclonal Antibody BIIB022 - Anti-HER2 Bi-specific Monoclonal Antibody ZW25: - text: Anti-HER2 Bi-specific Monoclonal Antibody ZW25 - Antibody-drug Conjugate ABBV-838: - text: Antibody-drug Conjugate ABBV-838 - Limonene, (+/-)-: - text: Limonene, (+/-)- - Bcl-Xs Adenovirus Vaccine: - text: Bcl-Xs Adenovirus Vaccine - Hsp90 Inhibitor HSP990: - text: Hsp90 Inhibitor HSP990 - Pharmacological Ascorbate: - text: Pharmacological Ascorbate - Zinostatin Stimalamer: - text: Zinostatin Stimalamer - Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes bb21217: - text: Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes - bb21217 - Paxalisib: - text: Paxalisib - GM-CSF-encoding Oncolytic Adenovirus CGTG-102: - text: GM-CSF-encoding Oncolytic Adenovirus CGTG-102 - Doxorubicin Hydrochloride: - text: Doxorubicin Hydrochloride - p53-HDM2 Interaction Inhibitor MI-773: - text: p53-HDM2 Interaction Inhibitor MI-773 - Anti-PRAME T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-F106C: - text: Anti-PRAME T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-F106C - Levetiracetam: - text: Levetiracetam - ARC Fusion Protein SL-279252: - text: ARC Fusion Protein SL-279252 - Larotinib Mesylate: - text: Larotinib Mesylate - Anti-CD40 Agonist Monoclonal Antibody CDX-1140: - text: Anti-CD40 Agonist Monoclonal Antibody CDX-1140 - MEK Inhibitor RO4987655: - text: MEK Inhibitor RO4987655 - Cenisertib: - text: Cenisertib - Anti-5T4 Antibody-Drug Conjugate PF-06263507: - text: Anti-5T4 Antibody-Drug Conjugate PF-06263507 - Nucleotide Analog Prodrug NUC-3373: - text: Nucleotide Analog Prodrug NUC-3373 - NY-ESO-1-specific TCR Gene-transduced T Lymphocytes TBI-1301: - text: NY-ESO-1-specific TCR Gene-transduced T Lymphocytes TBI-1301 - Phellodendron amurense Bark Extract: - text: Phellodendron amurense Bark Extract - Anti-GPR20/DXd Antibody-drug Conjugate DS-6157a: - text: Anti-GPR20/DXd Antibody-drug Conjugate DS-6157a - Monoclonal Antibody ASP1948: - text: Monoclonal Antibody ASP1948 - Ieramilimab: - text: Ieramilimab - Anti-EGFR Monoclonal Antibody SYN004: - text: Anti-EGFR Monoclonal Antibody SYN004 - Tezacitabine: - text: Tezacitabine - Carmustine in Ethanol: - text: Carmustine in Ethanol - Androgen Receptor Antisense Oligonucleotide EZN-4176: - text: Androgen Receptor Antisense Oligonucleotide EZN-4176 - Nitric Oxide-Releasing Acetylsalicylic Acid Derivative: - text: Nitric Oxide-Releasing Acetylsalicylic Acid Derivative - Actinomycin C2: - text: Actinomycin C2 - PSMA-targeted Docetaxel Nanoparticles BIND-014: - text: PSMA-targeted Docetaxel Nanoparticles BIND-014 - Warfarin Sodium: - text: Warfarin Sodium - XIAP Antisense Oligonucleotide AEG35156: - text: XIAP Antisense Oligonucleotide AEG35156 - Numidargistat: - text: Numidargistat - Medroxyprogesterone Acetate: - text: Medroxyprogesterone Acetate - BXQ-350 Nanovesicle Formulation: - text: BXQ-350 Nanovesicle Formulation - Limonene, (+)-: - text: Limonene, (+)- - Telatinib Mesylate: - text: Telatinib Mesylate - Lerociclib: - text: Lerociclib - Lanreotide Acetate: - text: Lanreotide Acetate - Bispecific Antibody AMG 509: - text: Bispecific Antibody AMG 509 - Wnt-5a Mimic Hexapeptide Foxy-5: - text: Wnt-5a Mimic Hexapeptide Foxy-5 - Autologous Anti-CD19/CD20 Bispecific Nanobody-based CAR-T cells: - text: Autologous Anti-CD19/CD20 Bispecific Nanobody-based CAR-T cells - Individualized MVA-based Vaccine TG4050: - text: Individualized MVA-based Vaccine TG4050 - Anti-PD-1/Anti-CTLA4 DART Protein MGD019: - text: Anti-PD-1/Anti-CTLA4 DART Protein MGD019 - Deuteporfin: - text: Deuteporfin - Etoricoxib: - text: Etoricoxib - Cevipabulin Fumarate: - text: Cevipabulin Fumarate - Sodium Stibogluconate: - text: Sodium Stibogluconate - Sorafenib Tosylate: - text: Sorafenib Tosylate - Bruceanol H: - text: Bruceanol H - Uroacitides: - text: Uroacitides - Human Monoclonal Antibody B11-hCG Beta Fusion Protein CDX-1307: - text: Human Monoclonal Antibody B11-hCG Beta Fusion Protein CDX-1307 - Cemadotin Hydrochloride: - text: Cemadotin Hydrochloride - Anti-VISTA Monoclonal Antibody JNJ 61610588: - text: Anti-VISTA Monoclonal Antibody JNJ 61610588 - N-Methylformamide: - text: N-Methylformamide - Danusertib: - text: Danusertib - Clioquinol: - text: Clioquinol - Arcitumomab: - text: Arcitumomab - Trimethylcolchicinic Acid: - text: Trimethylcolchicinic Acid - Abagovomab: - text: Abagovomab - Monoclonal Antibody AbGn-7: - text: Monoclonal Antibody AbGn-7 - HDAC6 Inhibitor KA2507: - text: HDAC6 Inhibitor KA2507 - PARP Inhibitor CEP-9722: - text: PARP Inhibitor CEP-9722 - Hodgkin's Antigens-GM-CSF-Expressing Cell Vaccine: - text: Hodgkin's Antigens-GM-CSF-Expressing Cell Vaccine - Tocotrienol-rich Fraction: - text: Tocotrienol-rich Fraction - Lyophilized Black Raspberry Lozenge: - text: Lyophilized Black Raspberry Lozenge - Pilaralisib: - text: Pilaralisib - Anetumab Ravtansine: - text: Anetumab Ravtansine - Alpelisib: - text: Alpelisib - Demecolcine: - text: Demecolcine - Piposulfan: - text: Piposulfan - Oncolytic Newcastle Disease Virus MTH-68H: - text: Oncolytic Newcastle Disease Virus MTH-68H - Anti-PD-1 Monoclonal Antibody HX008: - text: Anti-PD-1 Monoclonal Antibody HX008 - Larotrectinib: - text: Larotrectinib - Porcupine Inhibitor XNW7201: - text: Porcupine Inhibitor XNW7201 - PI3K/mTOR Kinase Inhibitor DS-7423: - text: PI3K/mTOR Kinase Inhibitor DS-7423 - Allogeneic Natural Killer Cell Line MG4101: - text: Allogeneic Natural Killer Cell Line MG4101 - huBC1-huIL12 Fusion Protein AS1409: - text: huBC1-huIL12 Fusion Protein AS1409 - Anti-CD3/Anti-CD20 Trifunctional Bispecific Monoclonal Antibody FBTA05: - text: Anti-CD3/Anti-CD20 Trifunctional Bispecific Monoclonal Antibody FBTA05 - Anti-latent TGF-beta 1 Monoclonal Antibody SRK-181: - text: Anti-latent TGF-beta 1 Monoclonal Antibody SRK-181 - Retinol: - text: Retinol - Cedazuridine/Azacitidine Combination Agent ASTX030: - text: Cedazuridine/Azacitidine Combination Agent ASTX030 - Lipid Nanoparticle Encapsulating Glutathione S-transferase P siRNA NBF-006: - text: Lipid Nanoparticle Encapsulating Glutathione S-transferase P siRNA NBF-006 - Pladienolide Derivative E7107: - text: Pladienolide Derivative E7107 - Antineoplaston AS2-1: - text: Antineoplaston AS2-1 - Nidanilimab: - text: Nidanilimab - Monoclonal Antibody m170: - text: Monoclonal Antibody m170 - HSP90alpha/beta Inhibitor TAS-116: - text: HSP90alpha/beta Inhibitor TAS-116 - SHP-1 Agonist SC-43: - text: SHP-1 Agonist SC-43 - BTK Inhibitor ARQ 531: - text: BTK Inhibitor ARQ 531 - Asparaginase: - text: Asparaginase - Ethinyl Estradiol: - text: Ethinyl Estradiol - Extended Release Flucytosine: - text: Extended Release Flucytosine - Nifurtimox: - text: Nifurtimox - Tocotrienol: - text: Tocotrienol - Anti-OX40 Antibody BMS 986178: - text: Anti-OX40 Antibody BMS 986178 - Flutamide: - text: Flutamide - Etanercept: - text: Etanercept - Autologous Monocyte-derived Lysate-pulsed Dendritic Cell Vaccine PV-001-DC: - text: Autologous Monocyte-derived Lysate-pulsed Dendritic Cell Vaccine PV-001-DC - Imetelstat: - text: Imetelstat - MET Tyrosine Kinase Inhibitor EMD 1204831: - text: MET Tyrosine Kinase Inhibitor EMD 1204831 - Anti-PD-1 Checkpoint Inhibitor PF-06801591: - text: Anti-PD-1 Checkpoint Inhibitor PF-06801591 - Aphidicoline Glycinate: - text: Aphidicoline Glycinate - Ascrinvacumab: - text: Ascrinvacumab - IL-2 Recombinant Fusion Protein ALT-801: - text: IL-2 Recombinant Fusion Protein ALT-801 - Vinblastine: - text: Vinblastine - Obinutuzumab: - text: Obinutuzumab - Autologous Anti-HLA-A*02/AFP TCRm-expressing T-cells ET140202: - text: Autologous Anti-HLA-A*02/AFP TCRm-expressing T-cells ET140202 - Interleukin-15 Fusion Protein BJ-001: - text: Interleukin-15 Fusion Protein BJ-001 - Quinine: - text: Quinine - Retifanlimab: - text: Retifanlimab - Ritrosulfan: - text: Ritrosulfan - Avelumab: - text: Avelumab - Trimelamol: - text: Trimelamol - FLT3/ABL/Aurora Kinase Inhibitor KW-2449: - text: FLT3/ABL/Aurora Kinase Inhibitor KW-2449 - MAGE-A3 Multipeptide Vaccine GL-0817: - text: MAGE-A3 Multipeptide Vaccine GL-0817 - PD-1 Directed Probody CX-188: - text: PD-1 Directed Probody CX-188 - Fludarabine: - text: Fludarabine - Apalutamide: - text: Apalutamide - Gemcitabine-Phosphoramidate Hydrochloride NUC-1031: - text: Gemcitabine-Phosphoramidate Hydrochloride NUC-1031 - Etoposide: - text: Etoposide - Epratuzumab: - text: Epratuzumab - PI3K/mTOR Kinase Inhibitor VS-5584: - text: PI3K/mTOR Kinase Inhibitor VS-5584 - Canfosfamide Hydrochloride: - text: Canfosfamide Hydrochloride - Imalumab: - text: Imalumab - Fms/Trk Tyrosine Kinase Inhibitor PLX7486 Tosylate: - text: Fms/Trk Tyrosine Kinase Inhibitor PLX7486 Tosylate - Dexrazoxane: - text: Dexrazoxane - CYP17/CYP11B2 Inhibitor LAE001: - text: CYP17/CYP11B2 Inhibitor LAE001 - Cositecan: - text: Cositecan - Blinatumomab: - text: Blinatumomab - Idarubicin-Eluting Beads: - text: Idarubicin-Eluting Beads - Picibanil: - text: Picibanil - Anti-TGF-beta Monoclonal Antibody NIS793: - text: Anti-TGF-beta Monoclonal Antibody NIS793 - Ubidecarenone Nanodispersion BPM31510n: - text: Ubidecarenone Nanodispersion BPM31510n - Melphalan Hydrochloride/Sulfobutyl Ether Beta-Cyclodextrin Complex: - text: Melphalan Hydrochloride/Sulfobutyl Ether Beta-Cyclodextrin Complex - Smac Mimetic LCL161: - text: Smac Mimetic LCL161 - Tarextumab: - text: Tarextumab - Allogeneic GM-CSF-secreting Lethally Irradiated Whole Melanoma Cell Vaccine: - text: Allogeneic GM-CSF-secreting Lethally Irradiated Whole Melanoma Cell - Vaccine - CD123-specific Targeting Module TM123: - text: CD123-specific Targeting Module TM123 - Macitentan: - text: Macitentan - Tazarotene: - text: Tazarotene - Ortataxel: - text: Ortataxel - BP-Cx1-Platinum Complex BP-C1: - text: BP-Cx1-Platinum Complex BP-C1 - Autologous TCR-engineered T-cells IMA201: - text: Autologous TCR-engineered T-cells IMA201 - Anti-HER2 Monoclonal Antibody CT-P6: - text: Anti-HER2 Monoclonal Antibody CT-P6 - Tomato-Soy Juice: - text: Tomato-Soy Juice - Samarium Sm 153-DOTMP: - text: Samarium Sm 153-DOTMP - Natural IFN-alpha OPC-18: - text: Natural IFN-alpha OPC-18 - Interleukin-15 Agonist Fusion Protein SHR1501: - text: Interleukin-15 Agonist Fusion Protein SHR1501 - Smoothened Antagonist BMS-833923: - text: Smoothened Antagonist BMS-833923 - Durvalumab: - text: Durvalumab - Intoplicine: - text: Intoplicine - Autologous Anti-CD19 Chimeric Antigen Receptor T-cells AUTO1: - text: Autologous Anti-CD19 Chimeric Antigen Receptor T-cells AUTO1 - CD44 Targeted Agent SPL-108: - text: CD44 Targeted Agent SPL-108 - Cyclopentenyl Cytosine: - text: Cyclopentenyl Cytosine - Rigosertib Sodium: - text: Rigosertib Sodium - 7-Ethyl-10-Hydroxycamptothecin: - text: 7-Ethyl-10-Hydroxycamptothecin - Bacillus Calmette-Guerin Substrain Connaught Live Antigen: - text: Bacillus Calmette-Guerin Substrain Connaught Live Antigen - Taxane Analogue TPI 287: - text: Taxane Analogue TPI 287 - Pegylated Deoxycytidine Analogue DFP-14927: - text: Pegylated Deoxycytidine Analogue DFP-14927 - Elesclomol: - text: Elesclomol - Lilotomab: - text: Lilotomab - Huaier Extract Granule: - text: Huaier Extract Granule - Aurora A Kinase/Tyrosine Kinase Inhibitor ENMD-2076: - text: Aurora A Kinase/Tyrosine Kinase Inhibitor ENMD-2076 - Taurultam: - text: Taurultam - Fedratinib Hydrochloride: - text: Fedratinib Hydrochloride - Tocilizumab: - text: Tocilizumab - Pegvorhyaluronidase Alfa: - text: Pegvorhyaluronidase Alfa - Anti-OX40 Hexavalent Agonist Antibody INBRX-106: - text: Anti-OX40 Hexavalent Agonist Antibody INBRX-106 - Birabresib: - text: Birabresib - Tributyrin: - text: Tributyrin - Dihydroorotate Dehydrogenase Inhibitor BAY2402234: - text: Dihydroorotate Dehydrogenase Inhibitor BAY2402234 - Ondansetron Hydrochloride: - text: Ondansetron Hydrochloride - Fursultiamine: - text: Fursultiamine - Anti-BTLA Monoclonal Antibody TAB004: - text: Anti-BTLA Monoclonal Antibody TAB004 - BMS-184476: - text: BMS-184476 - Ruthenium Ru-106: - text: Ruthenium Ru-106 - Polidocanol: - text: Polidocanol - Deuterated Enzalutamide: - text: Deuterated Enzalutamide - Anti-PRAME Immunotherapeutic GSK2302032A: - text: Anti-PRAME Immunotherapeutic GSK2302032A - Recombinant Macrophage Colony-Stimulating Factor: - text: Recombinant Macrophage Colony-Stimulating Factor - HER-2-positive B-cell Peptide Antigen P467-DT-CRM197/Montanide Vaccine IMU-131: - text: HER-2-positive B-cell Peptide Antigen P467-DT-CRM197/Montanide Vaccine - IMU-131 - Metoprine: - text: Metoprine - Iodine I 125-Anti-EGFR-425 Monoclonal Antibody: - text: Iodine I 125-Anti-EGFR-425 Monoclonal Antibody - Carmustine Sustained-Release Implant Wafer: - text: Carmustine Sustained-Release Implant Wafer - Anti-EGFR TAP Antibody-drug Conjugate IMGN289: - text: Anti-EGFR TAP Antibody-drug Conjugate IMGN289 - Brimonidine Tartrate Nanoemulsion OCU-300: - text: Brimonidine Tartrate Nanoemulsion OCU-300 - Ontuxizumab: - text: Ontuxizumab - Trabectedin: - text: Trabectedin - Auranofin: - text: Auranofin - Saracatinib Difumarate: - text: Saracatinib Difumarate - INO-1001: - text: INO-1001 - Src/tubulin Inhibitor KX02: - text: Src/tubulin Inhibitor KX02 - Moxetumomab Pasudotox: - text: Moxetumomab Pasudotox - Autologous Anti-CD20 CAR Transduced CD4/CD8 Enriched T-cells MB-CART20.1: - text: Autologous Anti-CD20 CAR Transduced CD4/CD8 Enriched T-cells MB-CART20.1 - Bermekimab: - text: Bermekimab - Broad-Spectrum Human Papillomavirus Vaccine V505: - text: Broad-Spectrum Human Papillomavirus Vaccine V505 - Bushen-Jianpi Decoction: - text: Bushen-Jianpi Decoction - Eftilagimod Alpha: - text: Eftilagimod Alpha - PSMA/CD3 Tri-specific T-cell Activating Construct HPN424: - text: PSMA/CD3 Tri-specific T-cell Activating Construct HPN424 - Omacetaxine Mepesuccinate: - text: Omacetaxine Mepesuccinate - Enoticumab: - text: Enoticumab - Anti-PD-L1 Monoclonal Antibody HLX20: - text: Anti-PD-L1 Monoclonal Antibody HLX20 - BET inhibitor BI 894999: - text: BET inhibitor BI 894999 - Synthetic Long E6/E7 Peptides Vaccine HPV-01: - text: Synthetic Long E6/E7 Peptides Vaccine HPV-01 - Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718: - text: Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718 - Bempegaldesleukin: - text: Bempegaldesleukin - Zalifrelimab: - text: Zalifrelimab - Autologous Pancreatic Adenocarcinoma Lysate and mRNA-loaded Dendritic Cell Vaccine: - text: Autologous Pancreatic Adenocarcinoma Lysate and mRNA-loaded Dendritic - Cell Vaccine - CHP-NY-ESO-1 Peptide Vaccine IMF-001: - text: CHP-NY-ESO-1 Peptide Vaccine IMF-001 - Vonlerolizumab: - text: Vonlerolizumab - Anti-CD3/CD7-Ricin Toxin A Immunotoxin: - text: Anti-CD3/CD7-Ricin Toxin A Immunotoxin - PI3K Inhibitor GDC0077: - text: PI3K Inhibitor GDC0077 - Avdoralimab: - text: Avdoralimab - Anti-NaPi2b Monoclonal Antibody XMT-1535: - text: Anti-NaPi2b Monoclonal Antibody XMT-1535 - Resistant Starch: - text: Resistant Starch - Polyvalent Melanoma Vaccine: - text: Polyvalent Melanoma Vaccine - Efatutazone: - text: Efatutazone - Anti-CD37 Monoclonal Antibody BI 836826: - text: Anti-CD37 Monoclonal Antibody BI 836826 - Platinum: - text: Platinum - Babaodan Capsule: - text: Babaodan Capsule - Anti-CD46 Antibody-drug Conjugate FOR46: - text: Anti-CD46 Antibody-drug Conjugate FOR46 - Anastrozole: - text: Anastrozole - Trilaciclib: - text: Trilaciclib - FGFR4 Antagonist INCB062079: - text: FGFR4 Antagonist INCB062079 - CDK4/6 Inhibitor TQB3616: - text: CDK4/6 Inhibitor TQB3616 - Roblitinib: - text: Roblitinib - Anti-MUC16/CD3 Bispecific Antibody REGN4018: - text: Anti-MUC16/CD3 Bispecific Antibody REGN4018 - Berubicin Hydrochloride: - text: Berubicin Hydrochloride - Prednisolone Acetate: - text: Prednisolone Acetate - Aurora Kinase Inhibitor SNS-314: - text: Aurora Kinase Inhibitor SNS-314 - Alsevalimab: - text: Alsevalimab - Fresolimumab: - text: Fresolimumab - At 211 Monoclonal Antibody 81C6: - text: At 211 Monoclonal Antibody 81C6 - Sargramostim: - text: Sargramostim - AE37 Peptide/GM-CSF Vaccine: - text: AE37 Peptide/GM-CSF Vaccine - Anti-CD19 Monoclonal Antibody MDX-1342: - text: Anti-CD19 Monoclonal Antibody MDX-1342 - Monoclonal Microbial EDP1503: - text: Monoclonal Microbial EDP1503 - Vorolanib: - text: Vorolanib - Iodine I 131 IPA: - text: Iodine I 131 IPA - Bavituximab: - text: Bavituximab - Anti-BTN3A Agonistic Monoclonal Antibody ICT01: - text: Anti-BTN3A Agonistic Monoclonal Antibody ICT01 - Antibody-drug Conjugate SC-002: - text: Antibody-drug Conjugate SC-002 - CDK2/5/9 Inhibitor CYC065: - text: CDK2/5/9 Inhibitor CYC065 - Nirogacestat: - text: Nirogacestat - SarCNU: - text: SarCNU - Multi-epitope Anti-folate Receptor Peptide Vaccine TPIV 200: - text: Multi-epitope Anti-folate Receptor Peptide Vaccine TPIV 200 - Glutaminase Inhibitor IPN60090: - text: Glutaminase Inhibitor IPN60090 - HER2 Inhibitor CP-724,714: - text: HER2 Inhibitor CP-724,714 - Indole-3-Carbinol: - text: Indole-3-Carbinol - Cordycepin: - text: Cordycepin - Diethylnorspermine: - text: Diethylnorspermine - Survivin Antigen: - text: Survivin Antigen - BET Bromodomain Inhibitor ZEN-3694: - text: BET Bromodomain Inhibitor ZEN-3694 - Navy Bean Powder: - text: Navy Bean Powder - Ceramide Nanoliposome: - text: Ceramide Nanoliposome - Sacubitril/Valsartan: - text: Sacubitril/Valsartan - ERa36 Modulator Icaritin: - text: ERa36 Modulator Icaritin - Belagenpumatucel-L: - text: Belagenpumatucel-L - Cyclin-dependent Kinase 8/19 Inhibitor BCD 115: - text: Cyclin-dependent Kinase 8/19 Inhibitor BCD 115 - Cinobufotalin: - text: Cinobufotalin - Anti-HER-2 Bispecific Antibody KN026: - text: Anti-HER-2 Bispecific Antibody KN026 - mRNA-based TriMix Melanoma Vaccine ECI-006: - text: mRNA-based TriMix Melanoma Vaccine ECI-006 - Linperlisib: - text: Linperlisib - Anti-CD40/Anti-TAA Bispecific Monoclonal Antibody ABBV-428: - text: Anti-CD40/Anti-TAA Bispecific Monoclonal Antibody ABBV-428 - Elpamotide: - text: Elpamotide - SIRPa-IgG4-Fc Fusion Protein TTI-622: - text: SIRPa-IgG4-Fc Fusion Protein TTI-622 - ERK1/2 Inhibitor HH2710: - text: ERK1/2 Inhibitor HH2710 - Exatecan Mesylate: - text: Exatecan Mesylate - MUC-1/WT1 Peptide-primed Autologous Dendritic Cells: - text: MUC-1/WT1 Peptide-primed Autologous Dendritic Cells - FLT3 Inhibitor FF-10101 Succinate: - text: FLT3 Inhibitor FF-10101 Succinate - ATR Kinase Inhibitor VX-803: - text: ATR Kinase Inhibitor VX-803 - DNA-PK inhibitor AZD7648: - text: DNA-PK inhibitor AZD7648 - Pegdinetanib: - text: Pegdinetanib - AKR1C3-activated Prodrug OBI-3424: - text: AKR1C3-activated Prodrug OBI-3424 - Tetanus Toxoid Vaccine: - text: Tetanus Toxoid Vaccine - Sonidegib: - text: Sonidegib - Anti-EGFR/HER2/HER3 Monoclonal Antibody Mixture Sym013: - text: Anti-EGFR/HER2/HER3 Monoclonal Antibody Mixture Sym013 - PARP7 Inhibitor RBN-2397: - text: PARP7 Inhibitor RBN-2397 - Rhenium Re-188 Etidronate: - text: Rhenium Re-188 Etidronate - Anti-ErbB3 Antibody ISU104: - text: Anti-ErbB3 Antibody ISU104 - Inecalcitol: - text: Inecalcitol - Methylprednisolone: - text: Methylprednisolone - Oleandrin: - text: Oleandrin - PEG-interleukin-2: - text: PEG-interleukin-2 - Simeprevir: - text: Simeprevir - Tepoditamab: - text: Tepoditamab - Oligonucleotide SPC2996: - text: Oligonucleotide SPC2996 - Gossypol Acetic Acid: - text: Gossypol Acetic Acid - Emibetuzumab: - text: Emibetuzumab - pNGVL4a-Sig/E7(detox)/HSP70 DNA and HPV16 L2/E6/E7 Fusion Protein TA-CIN Vaccine PVX-2: - text: pNGVL4a-Sig/E7(detox)/HSP70 DNA and HPV16 L2/E6/E7 Fusion Protein TA-CIN - Vaccine PVX-2 - HPV Types 16/18 E6/E7-Adenoviral Transduced Autologous Lymphocytes/alpha-Galactosylceramide Vaccine BVAC-C: - text: HPV Types 16/18 E6/E7-Adenoviral Transduced Autologous Lymphocytes/alpha-Galactosylceramide - Vaccine BVAC-C - HDAC Inhibitor OBP-801: - text: HDAC Inhibitor OBP-801 - Dibrospidium Chloride: - text: Dibrospidium Chloride - Atamestane: - text: Atamestane - Calcium Release-activated Channels Inhibitor RP4010: - text: Calcium Release-activated Channels Inhibitor RP4010 - Monoclonal Antibody MX35 F(ab')2: - text: Monoclonal Antibody MX35 F(ab')2 - Nab-paclitaxel/Rituximab-coated Nanoparticle AR160: - text: Nab-paclitaxel/Rituximab-coated Nanoparticle AR160 - Estradiol Valerate: - text: Estradiol Valerate - Ashwagandha Root Powder Extract: - text: Ashwagandha Root Powder Extract - Cerdulatinib: - text: Cerdulatinib - Digoxin: - text: Digoxin - p97 Inhibitor CB-5339 Tosylate: - text: p97 Inhibitor CB-5339 Tosylate - Mucoadhesive Paclitaxel Formulation: - text: Mucoadhesive Paclitaxel Formulation - Anti-PD-L1 Monoclonal Antibody CK-301: - text: Anti-PD-L1 Monoclonal Antibody CK-301 - Tubulin Inhibitor ALB-109564: - text: Tubulin Inhibitor ALB-109564 - PI3K Alpha/mTOR Inhibitor PWT33597 Mesylate: - text: PI3K Alpha/mTOR Inhibitor PWT33597 Mesylate - Anti-NY-ESO-1 Immunotherapeutic GSK-2241658A: - text: Anti-NY-ESO-1 Immunotherapeutic GSK-2241658A - Anti-CD123 Monoclonal Antibody KHK2823: - text: Anti-CD123 Monoclonal Antibody KHK2823 - Smac Mimetic GDC-0917: - text: Smac Mimetic GDC-0917 - Mivobulin: - text: Mivobulin - Lovastatin: - text: Lovastatin - Repotrectinib: - text: Repotrectinib - Recombinant Human Papillomavirus Bivalent Vaccine: - text: Recombinant Human Papillomavirus Bivalent Vaccine - Volasertib: - text: Volasertib - VEGFR-2 DNA Vaccine VXM01: - text: VEGFR-2 DNA Vaccine VXM01 - Immediate-release Onapristone: - text: Immediate-release Onapristone - Anti-MAGE-A4 T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-C103C: - text: Anti-MAGE-A4 T-cell Receptor/Anti-CD3 scFv Fusion Protein IMC-C103C - Lumretuzumab: - text: Lumretuzumab - Anti-CD47 Monoclonal Antibody SHR-1603: - text: Anti-CD47 Monoclonal Antibody SHR-1603 - Adenoviral Brachyury Vaccine ETBX-051: - text: Adenoviral Brachyury Vaccine ETBX-051 - Antibody-drug Conjugate MEDI7247: - text: Antibody-drug Conjugate MEDI7247 - Daclizumab: - text: Daclizumab - Palifosfamide Tromethamine: - text: Palifosfamide Tromethamine - Sodium Iodide I-131: - text: Sodium Iodide I-131 - FGFR4 Inhibitor BLU 9931: - text: FGFR4 Inhibitor BLU 9931 - Rucaparib Camsylate: - text: Rucaparib Camsylate - Anti-CD45 Monoclonal Antibody AHN-12: - text: Anti-CD45 Monoclonal Antibody AHN-12 - Imidazole-Pyrazole: - text: Imidazole-Pyrazole - Radium Ra 224-labeled Calcium Carbonate Microparticles: - text: Radium Ra 224-labeled Calcium Carbonate Microparticles - BL22 Immunotoxin: - text: BL22 Immunotoxin - MEK Inhibitor PD0325901: - text: MEK Inhibitor PD0325901 - Alpha V Beta 1 Inhibitor ATN-161: - text: Alpha V Beta 1 Inhibitor ATN-161 - Anti-c-Met Antibody-drug Conjugate HTI-1066: - text: Anti-c-Met Antibody-drug Conjugate HTI-1066 - Tabelecleucel: - text: Tabelecleucel - 2,6-Diaminopurine: - text: 2,6-Diaminopurine - Azaserine: - text: Azaserine - Futibatinib: - text: Futibatinib - Atezolizumab: - text: Atezolizumab - VGEFR/c-kit/PDGFR Tyrosine Kinase Inhibitor XL820: - text: VGEFR/c-kit/PDGFR Tyrosine Kinase Inhibitor XL820 - Anti-nectin-4 Monoclonal Antibody-Drug Conjugate AGS-22M6E: - text: Anti-nectin-4 Monoclonal Antibody-Drug Conjugate AGS-22M6E - Unknown: - text: Unknown - EGFR Mutant-selective Inhibitor TQB3804: - text: EGFR Mutant-selective Inhibitor TQB3804 - Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01: - text: Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01 - Shared Anti-Idiotype-AB-S006: - text: Shared Anti-Idiotype-AB-S006 - Autologous Anti-FLT3 CAR T Cells AMG 553: - text: Autologous Anti-FLT3 CAR T Cells AMG 553 - Anti-Denatured Collagen Monoclonal Antibody TRC093: - text: Anti-Denatured Collagen Monoclonal Antibody TRC093 - Recombinant Human Adenovirus Type 5 H101: - text: Recombinant Human Adenovirus Type 5 H101 - Allogeneic Anti-BCMA-CAR T-cells PBCAR269A: - text: Allogeneic Anti-BCMA-CAR T-cells PBCAR269A - Andecaliximab: - text: Andecaliximab - Aurora A Kinase Inhibitor TAS-119: - text: Aurora A Kinase Inhibitor TAS-119 - Teloxantrone: - text: Teloxantrone - Girodazole: - text: Girodazole - Milatuzumab: - text: Milatuzumab - Recombinant MIP1-alpha Variant ECI301: - text: Recombinant MIP1-alpha Variant ECI301 - Personalized Cancer Vaccine RO7198457: - text: Personalized Cancer Vaccine RO7198457 - Vatalanib Succinate: - text: Vatalanib Succinate - Anti-CD20 Monoclonal Antibody BAT4306F: - text: Anti-CD20 Monoclonal Antibody BAT4306F - Anti-BCMA/Anti-CD3 Bispecific Antibody REGN5459: - text: Anti-BCMA/Anti-CD3 Bispecific Antibody REGN5459 - Botanical Agent BEL-X-HG: - text: Botanical Agent BEL-X-HG - Tegavivint: - text: Tegavivint - Bispecific Antibody MDX447: - text: Bispecific Antibody MDX447 - Anti-OX40 Agonist Monoclonal Antibody PF-04518600: - text: Anti-OX40 Agonist Monoclonal Antibody PF-04518600 - Zinostatin: - text: Zinostatin - Anti-CD98 Monoclonal Antibody IGN523: - text: Anti-CD98 Monoclonal Antibody IGN523 - Romidepsin: - text: Romidepsin - Pan-TRK Inhibitor NOV1601: - text: Pan-TRK Inhibitor NOV1601 - Anti-mesothelin/MMAE Antibody-Drug Conjugate DMOT4039A: - text: Anti-mesothelin/MMAE Antibody-Drug Conjugate DMOT4039A - Microtubule Inhibitor SCB01A: - text: Microtubule Inhibitor SCB01A - Ropocamptide: - text: Ropocamptide - 2-Fluoroadenine: - text: 2-Fluoroadenine - c-Met Inhibitor AMG 337: - text: c-Met Inhibitor AMG 337 - Anti-VEGF Monoclonal Antibody hPV19: - text: Anti-VEGF Monoclonal Antibody hPV19 - Galarubicin: - text: Galarubicin - Thioredoxin-1 Inhibitor PX-12: - text: Thioredoxin-1 Inhibitor PX-12 - Rucaparib Phosphate: - text: Rucaparib Phosphate - Dabrafenib Mesylate: - text: Dabrafenib Mesylate - Adenosine A2A Receptor Antagonist NIR178: - text: Adenosine A2A Receptor Antagonist NIR178 - Anti-CLEC12A/CD3 Bispecific Antibody MCLA117: - text: Anti-CLEC12A/CD3 Bispecific Antibody MCLA117 - c-Met Inhibitor JNJ-38877605: - text: c-Met Inhibitor JNJ-38877605 - Glioblastoma Multiforme Multipeptide Vaccine IMA950: - text: Glioblastoma Multiforme Multipeptide Vaccine IMA950 - Clanfenur: - text: Clanfenur - Allogeneic CD56-positive CD3-negative Natural Killer Cells CYNK-001: - text: Allogeneic CD56-positive CD3-negative Natural Killer Cells CYNK-001 - Ranibizumab: - text: Ranibizumab - Custirsen Sodium: - text: Custirsen Sodium - Oraxol: - text: Oraxol - Amonafide L-Malate: - text: Amonafide L-Malate - Tasidotin: - text: Tasidotin - Anti-PD-L1 Monoclonal Antibody ZKAB001: - text: Anti-PD-L1 Monoclonal Antibody ZKAB001 - Capivasertib: - text: Capivasertib - Autologous CD38-4SCAR-expressing T-cells 4SCAR38: - text: Autologous CD38-4SCAR-expressing T-cells 4SCAR38 - Eflornithine: - text: Eflornithine - Aurora A Kinase Inhibitor LY3295668 Erbumine: - text: Aurora A Kinase Inhibitor LY3295668 Erbumine - Figitumumab: - text: Figitumumab - Anti-CD37 Antibody-Drug Conjugate IMGN529: - text: Anti-CD37 Antibody-Drug Conjugate IMGN529 - Agonistic Anti-OX40 Monoclonal Antibody INCAGN01949: - text: Agonistic Anti-OX40 Monoclonal Antibody INCAGN01949 - Zoledronic Acid: - text: Zoledronic Acid - Dual-affinity B7-H3/CD3-targeted Protein MGD009: - text: Dual-affinity B7-H3/CD3-targeted Protein MGD009 - DKK1-Neutralizing Monoclonal Antibody DKN-01: - text: DKK1-Neutralizing Monoclonal Antibody DKN-01 - CXCR4 Antagonist BL-8040: - text: CXCR4 Antagonist BL-8040 - Conditionally Active Biologic Anti-AXL Antibody-drug Conjugate BA3011: - text: Conditionally Active Biologic Anti-AXL Antibody-drug Conjugate BA3011 - STING Agonist SB 11285: - text: STING Agonist SB 11285 - Immunotoxin CMD-193: - text: Immunotoxin CMD-193 - Vapreotide: - text: Vapreotide - Irinotecan/P-glycoprotein Inhibitor HM30181AK Combination Tablet: - text: Irinotecan/P-glycoprotein Inhibitor HM30181AK Combination Tablet - Vilaprisan: - text: Vilaprisan - Camptothecin Glycoconjugate BAY 38-3441: - text: Camptothecin Glycoconjugate BAY 38-3441 - CDK4/6 Inhibitor CS3002: - text: CDK4/6 Inhibitor CS3002 - Peginterferon Alfa-2a: - text: Peginterferon Alfa-2a - Polysaccharide-K: - text: Polysaccharide-K - Idelalisib: - text: Idelalisib - Interleukin-2 Liposome: - text: Interleukin-2 Liposome - Tamoxifen Citrate: - text: Tamoxifen Citrate - Anti-EGFR Monoclonal Antibody CPGJ 602: - text: Anti-EGFR Monoclonal Antibody CPGJ 602 - Anti-IL-8 Monoclonal Antibody BMS-986253: - text: Anti-IL-8 Monoclonal Antibody BMS-986253 - Dubermatinib: - text: Dubermatinib - PI3K Inhibitor ACP-319: - text: PI3K Inhibitor ACP-319 - Carmustine: - text: Carmustine - HER2 ECD+TM Virus-like Replicon Particles Vaccine AVX901: - text: HER2 ECD+TM Virus-like Replicon Particles Vaccine AVX901 - Anti-EGFR/DM1 Antibody-drug Conjugate AVID100: - text: Anti-EGFR/DM1 Antibody-drug Conjugate AVID100 - Mercaptopurine: - text: Mercaptopurine - Lometrexol: - text: Lometrexol - Rilimogene Galvacirepvec/Rilimogene Glafolivec: - text: Rilimogene Galvacirepvec/Rilimogene Glafolivec - Thyroid Extract: - text: Thyroid Extract - Fruquintinib: - text: Fruquintinib - Sasanlimab: - text: Sasanlimab - Anti-TAG-72 Monoclonal Antibody scFV CC-49/218: - text: Anti-TAG-72 Monoclonal Antibody scFV CC-49/218 - Abemaciclib: - text: Abemaciclib - Anti-CEACAM6 Antibody BAY1834942: - text: Anti-CEACAM6 Antibody BAY1834942 - Antibody-drug Conjugate ABBV-011: - text: Antibody-drug Conjugate ABBV-011 - EGFR T790M Antagonist BPI-15086: - text: EGFR T790M Antagonist BPI-15086 - Recombinant Human Hsp110-gp100 Chaperone Complex Vaccine: - text: Recombinant Human Hsp110-gp100 Chaperone Complex Vaccine - Lavendustin A: - text: Lavendustin A - GSK-3 Inhibitor LY2090314: - text: GSK-3 Inhibitor LY2090314 - mTORC1/2 Kinase Inhibitor BI 860585: - text: mTORC1/2 Kinase Inhibitor BI 860585 - Tirbanibulin: - text: Tirbanibulin - Triazene Derivative CB10-277: - text: Triazene Derivative CB10-277 - Telaglenastat Hydrochloride: - text: Telaglenastat Hydrochloride - Triamcinolone Hexacetonide: - text: Triamcinolone Hexacetonide - Lobaplatin: - text: Lobaplatin - Shark Cartilage: - text: Shark Cartilage - Tauromustine: - text: Tauromustine - Vascular Disrupting Agent ZD6126: - text: Vascular Disrupting Agent ZD6126 - Tesetaxel: - text: Tesetaxel - CSF1R Inhibitor DCC-3014: - text: CSF1R Inhibitor DCC-3014 - Mureletecan: - text: Mureletecan - Penclomedine: - text: Penclomedine - Cinrebafusp Alfa: - text: Cinrebafusp Alfa - Palifosfamide: - text: Palifosfamide - STAT3 Inhibitor OPB-51602: - text: STAT3 Inhibitor OPB-51602 - Ralimetinib Mesylate: - text: Ralimetinib Mesylate - MKC-1: - text: MKC-1 - Paclitaxel Polymeric Micelle Formulation NANT-008: - text: Paclitaxel Polymeric Micelle Formulation NANT-008 - Immunocytokine NHS-IL2-LT: - text: Immunocytokine NHS-IL2-LT - Coxsackievirus V937: - text: Coxsackievirus V937 - Brequinar: - text: Brequinar - SHP2 Inhibitor TNO155: - text: SHP2 Inhibitor TNO155 - Margetuximab: - text: Margetuximab - I 131 Monoclonal Antibody F19: - text: I 131 Monoclonal Antibody F19 - Anti-VEGFC Monoclonal Antibody VGX-100: - text: Anti-VEGFC Monoclonal Antibody VGX-100 - Anti-HER3 Antibody-drug Conjugate U3 1402: - text: Anti-HER3 Antibody-drug Conjugate U3 1402 - Methoxyamine Hydrochloride: - text: Methoxyamine Hydrochloride - Pentostatin: - text: Pentostatin - Quadrivalent Human Papillomavirus (types 6, 11, 16, 18) Recombinant Vaccine: - text: Quadrivalent Human Papillomavirus (types 6, 11, 16, 18) Recombinant - Vaccine - EGFR Antagonist Hemay022: - text: EGFR Antagonist Hemay022 - Modified Vaccinia Ankara-vectored HPV16/18 Vaccine JNJ-65195208: - text: Modified Vaccinia Ankara-vectored HPV16/18 Vaccine JNJ-65195208 - Baricitinib: - text: Baricitinib - Xevinapant: - text: Xevinapant - Autologous Anti-EGFR CAR-transduced CXCR 5-modified T-lymphocytes: - text: Autologous Anti-EGFR CAR-transduced CXCR 5-modified T-lymphocytes - BET Inhibitor GSK2820151: - text: BET Inhibitor GSK2820151 - Autologous Anti-PSMA CAR-T Cells P-PSMA-101: - text: Autologous Anti-PSMA CAR-T Cells P-PSMA-101 - Autologous CD22-4SCAR-expressing T-cells 4SCAR22: - text: Autologous CD22-4SCAR-expressing T-cells 4SCAR22 - Phosphaplatin PT-112: - text: Phosphaplatin PT-112 - Autologous LMP1/LMP2/EBNA1-specific HLA-A02:01/24:02/11:01-restricted TCR-expressing T-lymphocytes YT-E001: - text: Autologous LMP1/LMP2/EBNA1-specific HLA-A02:01/24:02/11:01-restricted - TCR-expressing T-lymphocytes YT-E001 - DNMT1 Inhibitor NTX-301: - text: DNMT1 Inhibitor NTX-301 - Angiogenesis Inhibitor JI-101: - text: Angiogenesis Inhibitor JI-101 - L-methylfolate: - text: L-methylfolate - Mutant IDH1 Inhibitor DS-1001: - text: Mutant IDH1 Inhibitor DS-1001 - Multikinase Inhibitor 4SC-203: - text: Multikinase Inhibitor 4SC-203 - Enadenotucirev: - text: Enadenotucirev - LMP-2:419-427 Peptide Vaccine: - text: LMP-2:419-427 Peptide Vaccine - FGFR1/2/3 Inhibitor HMPL-453: - text: FGFR1/2/3 Inhibitor HMPL-453 - Gataparsen Sodium: - text: Gataparsen Sodium - Recombinant Erwinia asparaginase JZP-458: - text: Recombinant Erwinia asparaginase JZP-458 - Alefacept: - text: Alefacept - MetAP2 Inhibitor APL-1202: - text: MetAP2 Inhibitor APL-1202 - Tinostamustine: - text: Tinostamustine - Irradiated Allogeneic Human Lung Cancer Cells Expressing OX40L-Ig Vaccine HS-130: - text: Irradiated Allogeneic Human Lung Cancer Cells Expressing OX40L-Ig Vaccine - HS-130 - Elgemtumab: - text: Elgemtumab - Pipobroman: - text: Pipobroman - Laromustine: - text: Laromustine - Savolitinib: - text: Savolitinib - Antibody-drug Conjugate SC-007: - text: Antibody-drug Conjugate SC-007 - Bozitinib: - text: Bozitinib - Ansamitomicin P-3: - text: Ansamitomicin P-3 - MET Tyrosine Kinase Inhibitor BMS-777607: - text: MET Tyrosine Kinase Inhibitor BMS-777607 - Axl/Mer Inhibitor PF-07265807: - text: Axl/Mer Inhibitor PF-07265807 - Huang Lian: - text: Huang Lian - ATR Inhibitor RP-3500: - text: ATR Inhibitor RP-3500 - Pyroxamide: - text: Pyroxamide - Peptide 946-Tetanus Peptide Conjugate Melanoma Vaccine: - text: Peptide 946-Tetanus Peptide Conjugate Melanoma Vaccine - Tamoxifen: - text: Tamoxifen - Tezacitabine Anhydrous: - text: Tezacitabine Anhydrous - Daratumumab and Hyaluronidase-fihj: - text: Daratumumab and Hyaluronidase-fihj - Cediranib: - text: Cediranib - cis-Urocanic Acid: - text: cis-Urocanic Acid - Sabatolimab: - text: Sabatolimab - Porfiromycin: - text: Porfiromycin - Lodapolimab: - text: Lodapolimab - Tubulin Inhibitor ALB 109564 Dihydrochloride: - text: Tubulin Inhibitor ALB 109564 Dihydrochloride - TIGIT-targeting Agent MK-7684: - text: TIGIT-targeting Agent MK-7684 - Cintirorgon: - text: Cintirorgon - Anti-CD40 Monoclonal Antibody Chi Lob 7/4: - text: Anti-CD40 Monoclonal Antibody Chi Lob 7/4 - Lyso-Thermosensitive Liposome Doxorubicin: - text: Lyso-Thermosensitive Liposome Doxorubicin - Asunercept: - text: Asunercept - OxPhos Inhibitor VLX600: - text: OxPhos Inhibitor VLX600 - Chaparrin: - text: Chaparrin - Anti-CD20 Monoclonal Antibody TL011: - text: Anti-CD20 Monoclonal Antibody TL011 - Daniquidone: - text: Daniquidone - DNA-dependent Protein Kinase Inhibitor VX-984: - text: DNA-dependent Protein Kinase Inhibitor VX-984 - Troriluzole: - text: Troriluzole - MK0731: - text: MK0731 - Dostarlimab: - text: Dostarlimab - Liposomal Vinorelbine: - text: Liposomal Vinorelbine - Toripalimab: - text: Toripalimab - Tretazicar: - text: Tretazicar - Vector-peptide Conjugated Paclitaxel: - text: Vector-peptide Conjugated Paclitaxel - Penberol: - text: Penberol - PVA Microporous Hydrospheres/Doxorubicin Hydrochloride: - text: PVA Microporous Hydrospheres/Doxorubicin Hydrochloride - Pyrotinib: - text: Pyrotinib - 8-Azaguanine: - text: 8-Azaguanine - MAT2A Inhibitor AG-270: - text: MAT2A Inhibitor AG-270 - Cofetuzumab Pelidotin: - text: Cofetuzumab Pelidotin - HCV DNA Vaccine INO-8000: - text: HCV DNA Vaccine INO-8000 - PI3K-delta Inhibitor YY-20394: - text: PI3K-delta Inhibitor YY-20394 - Amustaline: - text: Amustaline - Vinzolidine: - text: Vinzolidine - Valrubicin: - text: Valrubicin - A2A Receptor Antagonist EOS100850: - text: A2A Receptor Antagonist EOS100850 - Aprutumab: - text: Aprutumab - Renal Cell Carcinoma Peptides Vaccine IMA901: - text: Renal Cell Carcinoma Peptides Vaccine IMA901 - Autologous Genetically-modified MAGE-A4 C1032 CD8alpha T Cells: - text: Autologous Genetically-modified MAGE-A4 C1032 CD8alpha T Cells - Protein Kinase C Inhibitor IDE196: - text: Protein Kinase C Inhibitor IDE196 - Androgen Receptor Antagonist SHR3680: - text: Androgen Receptor Antagonist SHR3680 - Cabozantinib S-malate: - text: Cabozantinib S-malate - Bruceanol F: - text: Bruceanol F - Anti-CTLA-4 Monoclonal Antibody REGN4659: - text: Anti-CTLA-4 Monoclonal Antibody REGN4659 - Recombinant Super-compound Interferon: - text: Recombinant Super-compound Interferon - Esorubicin: - text: Esorubicin - Topoisomerase I Inhibitor LMP776: - text: Topoisomerase I Inhibitor LMP776 - Brigatinib: - text: Brigatinib - Fenretinide: - text: Fenretinide - Denibulin: - text: Denibulin - Tigapotide: - text: Tigapotide - Adavosertib: - text: Adavosertib - Oncolytic Measles Virus Encoding Helicobacter pylori Neutrophil-activating Protein: - text: Oncolytic Measles Virus Encoding Helicobacter pylori Neutrophil-activating - Protein - Galocitabine: - text: Galocitabine - Hu14.18-IL2 Fusion Protein EMD 273063: - text: Hu14.18-IL2 Fusion Protein EMD 273063 - Anti-HER2/MMAE Antibody-drug Conjugate MRG002: - text: Anti-HER2/MMAE Antibody-drug Conjugate MRG002 - Pamidronic Acid: - text: Pamidronic Acid - Antibody-drug Conjugate SC-005: - text: Antibody-drug Conjugate SC-005 - Anti-TF Monoclonal Antibody ALT-836: - text: Anti-TF Monoclonal Antibody ALT-836 - Mitoguazone: - text: Mitoguazone - Nanoscale Coordination Polymer Nanoparticles CPI-100: - text: Nanoscale Coordination Polymer Nanoparticles CPI-100 - Epitinib Succinate: - text: Epitinib Succinate - Folate Receptor-Targeted Vinca Alkaloid EC0489: - text: Folate Receptor-Targeted Vinca Alkaloid EC0489 - Febuxostat: - text: Febuxostat - CHK1 Inhibitor PF-477736: - text: CHK1 Inhibitor PF-477736 - TGFbeta Inhibitor LY3200882: - text: TGFbeta Inhibitor LY3200882 - Imidazole Mustard: - text: Imidazole Mustard - Hsp90 Inhibitor SNX-5422 Mesylate: - text: Hsp90 Inhibitor SNX-5422 Mesylate - Bosutinib: - text: Bosutinib - Allogeneic Melanoma Vaccine AGI-101H: - text: Allogeneic Melanoma Vaccine AGI-101H - Phosphorus P-32: - text: Phosphorus P-32 - Magnesium Valproate: - text: Magnesium Valproate - Vaccinium myrtillus/Macleaya cordata/Echinacea angustifolia Extract Granules: - text: Vaccinium myrtillus/Macleaya cordata/Echinacea angustifolia Extract - Granules - Oncolytic HSV-1 Expressing IL-12 and Anti-PD-1 Antibody T3011: - text: Oncolytic HSV-1 Expressing IL-12 and Anti-PD-1 Antibody T3011 - Inotuzumab Ozogamicin: - text: Inotuzumab Ozogamicin - Azintuxizumab Vedotin: - text: Azintuxizumab Vedotin - Lutetium Lu 177 Dotatate: - text: Lutetium Lu 177 Dotatate - Autologous Anti-CD19 T-cell Receptor T cells ET190L1: - text: Autologous Anti-CD19 T-cell Receptor T cells ET190L1 - Anti-CD73 Monoclonal Antibody CPI-006: - text: Anti-CD73 Monoclonal Antibody CPI-006 - Anti-PD-1/Anti-PD-L1 Bispecific Antibody LY3434172: - text: Anti-PD-1/Anti-PD-L1 Bispecific Antibody LY3434172 - EGFR/HER2 Inhibitor AP32788: - text: EGFR/HER2 Inhibitor AP32788 - SR-BP1/HSI Inhibitor SR31747A: - text: SR-BP1/HSI Inhibitor SR31747A - Anti-LGR5 Monoclonal Antibody BNC101: - text: Anti-LGR5 Monoclonal Antibody BNC101 - Mixed Bacteria Vaccine: - text: Mixed Bacteria Vaccine - Methotrexate: - text: Methotrexate - Cyproterone: - text: Cyproterone - Ancitabine Hydrochloride: - text: Ancitabine Hydrochloride - siG12D LODER: - text: siG12D LODER - Attenuated Live Listeria Encoding HPV 16 E7 Vaccine ADXS11-001: - text: Attenuated Live Listeria Encoding HPV 16 E7 Vaccine ADXS11-001 - Elmustine: - text: Elmustine - Fludarabine Phosphate: - text: Fludarabine Phosphate - Prostate Cancer Vaccine ONY-P1: - text: Prostate Cancer Vaccine ONY-P1 - Opolimogene Capmilisbac: - text: Opolimogene Capmilisbac - MALT1 Inhibitor JNJ-67856633: - text: MALT1 Inhibitor JNJ-67856633 - S1P Receptor Agonist KRP203: - text: S1P Receptor Agonist KRP203 - Nicotinamide Riboside: - text: Nicotinamide Riboside - Peptide 946 Melanoma Vaccine: - text: Peptide 946 Melanoma Vaccine - DNA Plasmid-encoding Interleukin-12 INO-9012/PSA/PSMA DNA Plasmids INO-5150 Formulation INO-5151: - text: DNA Plasmid-encoding Interleukin-12 INO-9012/PSA/PSMA DNA Plasmids INO-5150 - Formulation INO-5151 - Chimeric Monoclonal Antibody 81C6: - text: Chimeric Monoclonal Antibody 81C6 - Pan-Mutant-IDH1 Inhibitor Bay-1436032: - text: Pan-Mutant-IDH1 Inhibitor Bay-1436032 - Entinostat: - text: Entinostat - Methotrexate-E Therapeutic Implant: - text: Methotrexate-E Therapeutic Implant - Danvatirsen: - text: Danvatirsen - Cetuximab-loaded Ethylcellulose Polymeric Nanoparticles Decorated with Octreotide (SY): - text: Cetuximab-loaded Ethylcellulose Polymeric Nanoparticles Decorated with - Octreotide (SY) - FAP/4-1BB-targeting Fusion Protein RO7122290: - text: FAP/4-1BB-targeting Fusion Protein RO7122290 - CDK Inhibitor SNS-032: - text: CDK Inhibitor SNS-032 - Anti-LAG3 Monoclonal Antibody MK-4280: - text: Anti-LAG3 Monoclonal Antibody MK-4280 - EGFR Mutant-specific Inhibitor CK-101: - text: EGFR Mutant-specific Inhibitor CK-101 - EZH1/2 Inhibitor HH2853: - text: EZH1/2 Inhibitor HH2853 - Ripretinib: - text: Ripretinib - CYP17/Androgen Receptor Inhibitor ODM 204: - text: CYP17/Androgen Receptor Inhibitor ODM 204 - FGFR4 Inhibitor H3B-6527: - text: FGFR4 Inhibitor H3B-6527 - ERK Inhibitor LTT462: - text: ERK Inhibitor LTT462 - PI3K-gamma Inhibitor IPI-549: - text: PI3K-gamma Inhibitor IPI-549 - Monoclonal Antibody CAL: - text: Monoclonal Antibody CAL - Anti-MUC17/CD3 BiTE Antibody AMG 199: - text: Anti-MUC17/CD3 BiTE Antibody AMG 199 - PI3K Inhibitor GSK1059615: - text: PI3K Inhibitor GSK1059615 - Ethylnitrosourea: - text: Ethylnitrosourea - Acridine Carboxamide: - text: Acridine Carboxamide - Pemigatinib: - text: Pemigatinib - Ulixertinib: - text: Ulixertinib - Glesatinib: - text: Glesatinib - Autologous Anti-CD19 CAR T-cells 19(T2)28z1xx: - text: Autologous Anti-CD19 CAR T-cells 19(T2)28z1xx - Dilpacimab: - text: Dilpacimab - Epcoritamab: - text: Epcoritamab - Aryl Hydrocarbon Receptor Inhibitor IK-175: - text: Aryl Hydrocarbon Receptor Inhibitor IK-175 - Anti-PD-L1 Monoclonal Antibody SHR-1316: - text: Anti-PD-L1 Monoclonal Antibody SHR-1316 - Carubicin Hydrochloride: - text: Carubicin Hydrochloride - Antrodia cinnamomea Supplement: - text: Antrodia cinnamomea Supplement - TRK Inhibitor TQB3558: - text: TRK Inhibitor TQB3558 - Recombinant Oncolytic Poliovirus PVS-RIPO: - text: Recombinant Oncolytic Poliovirus PVS-RIPO - Dopamine-Somatostatin Chimeric Molecule BIM-23A760: - text: Dopamine-Somatostatin Chimeric Molecule BIM-23A760 - Sparfosate Sodium: - text: Sparfosate Sodium - BR96-Doxorubicin Immunoconjugate: - text: BR96-Doxorubicin Immunoconjugate - Raloxifene: - text: Raloxifene - Prostaglandin E2 EP4 Receptor Inhibitor AN0025: - text: Prostaglandin E2 EP4 Receptor Inhibitor AN0025 - Anti-FCRH5/CD3 BiTE Antibody BFCR4350A: - text: Anti-FCRH5/CD3 BiTE Antibody BFCR4350A - Edotecarin: - text: Edotecarin - HDAC inhibitor CG200745: - text: HDAC inhibitor CG200745 - Vocimagene Amiretrorepvec: - text: Vocimagene Amiretrorepvec - SNS01-T Nanoparticles: - text: SNS01-T Nanoparticles - Immunoconjugate RO5479599: - text: Immunoconjugate RO5479599 - Anti-CTLA-4/LAG-3 Bispecific Antibody XmAb22841: - text: Anti-CTLA-4/LAG-3 Bispecific Antibody XmAb22841 - Zorifertinib: - text: Zorifertinib - TLR Agonist BSG-001: - text: TLR Agonist BSG-001 - Enfortumab Vedotin: - text: Enfortumab Vedotin - Acalisib: - text: Acalisib - PI3K Inhibitor WX-037: - text: PI3K Inhibitor WX-037 - Ziv-Aflibercept: - text: Ziv-Aflibercept - Anti-EGFR/c-Met Bispecific Antibody JNJ-61186372: - text: Anti-EGFR/c-Met Bispecific Antibody JNJ-61186372 - Porcupine Inhibitor WNT974: - text: Porcupine Inhibitor WNT974 - Antigen-presenting Cells-expressing HPV16 E6/E7 SQZ-PBMC-HPV: - text: Antigen-presenting Cells-expressing HPV16 E6/E7 SQZ-PBMC-HPV - Phospholipid Ether-drug Conjugate CLR 131: - text: Phospholipid Ether-drug Conjugate CLR 131 - Beta-elemene: - text: Beta-elemene - Glutathione Pegylated Liposomal Doxorubicin Hydrochloride Formulation 2B3-101: - text: Glutathione Pegylated Liposomal Doxorubicin Hydrochloride Formulation - 2B3-101 - Anti-CD38 Antibody-drug Conjugate STI-6129: - text: Anti-CD38 Antibody-drug Conjugate STI-6129 - Tesidolumab: - text: Tesidolumab - Amuvatinib: - text: Amuvatinib - Echinomycin: - text: Echinomycin - Liposome-encapsulated OSI-7904: - text: Liposome-encapsulated OSI-7904 - Cold Contaminant-free Iobenguane I-131: - text: Cold Contaminant-free Iobenguane I-131 - I 131 Monoclonal Antibody A33: - text: I 131 Monoclonal Antibody A33 - Beta-Glucan: - text: Beta-Glucan - STING Agonist BMS-986301: - text: STING Agonist BMS-986301 - Relacorilant: - text: Relacorilant - NA17.A2 Peptide Vaccine: - text: NA17.A2 Peptide Vaccine - Allogeneic CD22-specific Universal CAR-expressing T-lymphocytes UCART22: - text: Allogeneic CD22-specific Universal CAR-expressing T-lymphocytes UCART22 - Alpha-tocopheryloxyacetic Acid: - text: Alpha-tocopheryloxyacetic Acid - Autologous TCRm-expressing T-cells ET140203: - text: Autologous TCRm-expressing T-cells ET140203 - Enadenotucirev-expressing Anti-CD40 Agonistic Monoclonal Antibody NG-350A: - text: Enadenotucirev-expressing Anti-CD40 Agonistic Monoclonal Antibody NG-350A - Multikinase Inhibitor AT9283: - text: Multikinase Inhibitor AT9283 - Anti-Glypican 3/CD3 Bispecific Antibody ERY974: - text: Anti-Glypican 3/CD3 Bispecific Antibody ERY974 - Anti-PD-1/Anti-LAG-3 DART Protein MGD013: - text: Anti-PD-1/Anti-LAG-3 DART Protein MGD013 - Antisense Oligonucleotide GTI-2040: - text: Antisense Oligonucleotide GTI-2040 - PH20 Hyaluronidase-expressing Adenovirus VCN-01: - text: PH20 Hyaluronidase-expressing Adenovirus VCN-01 - Anti-CD3 Immunotoxin A-dmDT390-bisFv(UCHT1): - text: Anti-CD3 Immunotoxin A-dmDT390-bisFv(UCHT1) - Anti-PD-1 Monoclonal Antibody TSR-042: - text: Anti-PD-1 Monoclonal Antibody TSR-042 - Anti-APRIL Monoclonal Antibody BION-1301: - text: Anti-APRIL Monoclonal Antibody BION-1301 - Gusperimus Trihydrochloride: - text: Gusperimus Trihydrochloride - Blueberry Powder Supplement: - text: Blueberry Powder Supplement - Monoclonal Antibody 4B5 Anti-Idiotype Vaccine: - text: Monoclonal Antibody 4B5 Anti-Idiotype Vaccine - Epipodophyllotoxin Analog GL331: - text: Epipodophyllotoxin Analog GL331 - Anti-Ganglioside GM2 Monoclonal Antibody BIW-8962: - text: Anti-Ganglioside GM2 Monoclonal Antibody BIW-8962 - Simalikalactone D: - text: Simalikalactone D - Cobomarsen: - text: Cobomarsen - Mitotane: - text: Mitotane - Quarfloxin: - text: Quarfloxin - Glasdegib: - text: Glasdegib - Pegylated Liposomal Mitomycin C Lipid-based Prodrug: - text: Pegylated Liposomal Mitomycin C Lipid-based Prodrug - VEGFR Inhibitor KRN951: - text: VEGFR Inhibitor KRN951 - SERD ZN-c5: - text: SERD ZN-c5 - Submicron Particle Paclitaxel Sterile Suspension: - text: Submicron Particle Paclitaxel Sterile Suspension - Taurultam Analogue GP-2250: - text: Taurultam Analogue GP-2250 - IDH1 Mutant Inhibitor LY3410738: - text: IDH1 Mutant Inhibitor LY3410738 - Clarithromycin: - text: Clarithromycin - Anti-CD44 Monoclonal Antibody RO5429083: - text: Anti-CD44 Monoclonal Antibody RO5429083 - Metformin: - text: Metformin - Topical Fluorouracil: - text: Topical Fluorouracil - N-(5-tert-butyl-3-isoxazolyl)-N-(4-(4-pyridinyl)oxyphenyl) Urea: - text: N-(5-tert-butyl-3-isoxazolyl)-N-(4-(4-pyridinyl)oxyphenyl) Urea - Pegylated Liposomal Irinotecan: - text: Pegylated Liposomal Irinotecan - Anti-CCR7 Antibody-drug Conjugate JBH492: - text: Anti-CCR7 Antibody-drug Conjugate JBH492 - Nemorubicin: - text: Nemorubicin - Anti-HGF Monoclonal Antibody TAK-701: - text: Anti-HGF Monoclonal Antibody TAK-701 - Anhydrous Enol-oxaloacetate: - text: Anhydrous Enol-oxaloacetate - Yttrium Y 90 Resin Microspheres: - text: Yttrium Y 90 Resin Microspheres - Telaglenastat: - text: Telaglenastat - Racotumomab: - text: Racotumomab - Tallimustine: - text: Tallimustine - Tetrathiomolybdate: - text: Tetrathiomolybdate - Lurtotecan Liposome: - text: Lurtotecan Liposome - Anti-CEA/Anti-HSG Bispecific Monoclonal Antibody TF2: - text: Anti-CEA/Anti-HSG Bispecific Monoclonal Antibody TF2 - Y 90 Monoclonal Antibody Lym-1: - text: Y 90 Monoclonal Antibody Lym-1 - Xiliertinib: - text: Xiliertinib - Anti-HER2-DM1 ADC B003: - text: Anti-HER2-DM1 ADC B003 - JAK2 Inhibitor XL019: - text: JAK2 Inhibitor XL019 - Trastuzumab/Tesirine Antibody-drug Conjugate ADCT-502: - text: Trastuzumab/Tesirine Antibody-drug Conjugate ADCT-502 - Anthramycin: - text: Anthramycin - Peplomycin Sulfate: - text: Peplomycin Sulfate - Fluorine F 18 Ara-G: - text: Fluorine F 18 Ara-G - Nivolumab: - text: Nivolumab - Fotretamine: - text: Fotretamine - Anti-CD38-targeted IgG4-attenuated IFNa TAK-573: - text: Anti-CD38-targeted IgG4-attenuated IFNa TAK-573 - Topoisomerase-II-beta Inhibitor Racemic XK469: - text: Topoisomerase-II-beta Inhibitor Racemic XK469 - Hedgehog Inhibitor IPI-609: - text: Hedgehog Inhibitor IPI-609 - Doxorubicin Prodrug/Prodrug-activating Biomaterial SQ3370: - text: Doxorubicin Prodrug/Prodrug-activating Biomaterial SQ3370 - Brachyury-expressing Yeast Vaccine GI-6301: - text: Brachyury-expressing Yeast Vaccine GI-6301 - Pan-IDH Mutant Inhibitor AG-881: - text: Pan-IDH Mutant Inhibitor AG-881 - Mechlorethamine Hydrochloride: - text: Mechlorethamine Hydrochloride - Belapectin: - text: Belapectin - Olaratumab: - text: Olaratumab - MDM2/MDMX Inhibitor ALRN-6924: - text: MDM2/MDMX Inhibitor ALRN-6924 - Terameprocol: - text: Terameprocol - Anti-5T4 Antibody-drug Conjugate SYD1875: - text: Anti-5T4 Antibody-drug Conjugate SYD1875 - Talabostat: - text: Talabostat - DACH Polymer Platinate AP5346: - text: DACH Polymer Platinate AP5346 - Bersanlimab: - text: Bersanlimab - STING-expressing E. coli SYNB1891: - text: STING-expressing E. coli SYNB1891 - Depatuxizumab: - text: Depatuxizumab - Autologous HPV16 E7-specific HLA-A*02:01-restricted TCR Gene Engineered Lymphocytes KITE-439: - text: Autologous HPV16 E7-specific HLA-A*02:01-restricted TCR Gene Engineered - Lymphocytes KITE-439 - Coltuximab Ravtansine: - text: Coltuximab Ravtansine - RET/SRC Inhibitor TPX-0046: - text: RET/SRC Inhibitor TPX-0046 - Triciribine Phosphate: - text: Triciribine Phosphate - Berzosertib: - text: Berzosertib - Microparticle-encapsulated CYP1B1-encoding DNA Vaccine ZYC300: - text: Microparticle-encapsulated CYP1B1-encoding DNA Vaccine ZYC300 - Ipatasertib: - text: Ipatasertib - Selitrectinib: - text: Selitrectinib - Flumatinib: - text: Flumatinib - Etalocib: - text: Etalocib - Autologous Bispecific CD19/CD22-targeted CAR-T Cells GC022: - text: Autologous Bispecific CD19/CD22-targeted CAR-T Cells GC022 - Mitoxantrone Hydrochloride: - text: Mitoxantrone Hydrochloride - Altretamine: - text: Altretamine - Tucidinostat: - text: Tucidinostat - Cetrelimab: - text: Cetrelimab - Monoclonal Antibody A27.15: - text: Monoclonal Antibody A27.15 - I 131 Monoclonal Antibody Lym-1: - text: I 131 Monoclonal Antibody Lym-1 - Ursolic Acid: - text: Ursolic Acid - Dianhydrogalactitol: - text: Dianhydrogalactitol - Oncolytic HSV-1 rQNestin34.5v.2: - text: Oncolytic HSV-1 rQNestin34.5v.2 - Palladium Pd-103: - text: Palladium Pd-103 - Anti-PD-L1/CD137 Bispecific Antibody MCLA-145: - text: Anti-PD-L1/CD137 Bispecific Antibody MCLA-145 - Anti-Lewis B/Lewis Y Monoclonal Antibody GNX102: - text: Anti-Lewis B/Lewis Y Monoclonal Antibody GNX102 - Iodine I 131 Monoclonal Antibody BC8: - text: Iodine I 131 Monoclonal Antibody BC8 - Palbociclib: - text: Palbociclib - Radix Angelicae Sinensis/Radix Astragali Herbal Supplement: - text: Radix Angelicae Sinensis/Radix Astragali Herbal Supplement - LMP-2:340-349 Peptide Vaccine: - text: LMP-2:340-349 Peptide Vaccine - Varlitinib: - text: Varlitinib - Anti-A33 Monoclonal Antibody KRN330: - text: Anti-A33 Monoclonal Antibody KRN330 - PEG-PEI-cholesterol Lipopolymer-encased IL-12 DNA Plasmid Vector GEN-1: - text: PEG-PEI-cholesterol Lipopolymer-encased IL-12 DNA Plasmid Vector GEN-1 - Sitimagene Ceradenovec: - text: Sitimagene Ceradenovec - Anti-PD-1 Monoclonal Antibody LZM009: - text: Anti-PD-1 Monoclonal Antibody LZM009 - Nanatinostat: - text: Nanatinostat - Carmustine Implant: - text: Carmustine Implant - Allovectin-7: - text: Allovectin-7 - Telomerase Inhibitor FJ5002: - text: Telomerase Inhibitor FJ5002 - Recombinant Human 6Ckine: - text: Recombinant Human 6Ckine - Temoporfin: - text: Temoporfin - Camsirubicin: - text: Camsirubicin - Topotecan Hydrochloride Liposomes: - text: Topotecan Hydrochloride Liposomes - Cryptophycin 52: - text: Cryptophycin 52 - Phenytoin Sodium: - text: Phenytoin Sodium - Anti-ROR1/PNU-159682 Derivative Antibody-drug Conjugate NBE-002: - text: Anti-ROR1/PNU-159682 Derivative Antibody-drug Conjugate NBE-002 - Enterococcus gallinarum Strain MRx0518: - text: Enterococcus gallinarum Strain MRx0518 - Farletuzumab: - text: Farletuzumab - Lapatinib: - text: Lapatinib - Recombinant Bacterial Minicells VAX014: - text: Recombinant Bacterial Minicells VAX014 - Umbralisib: - text: Umbralisib - VEGFR/PDGFR Tyrosine Kinase Inhibitor TAK-593: - text: VEGFR/PDGFR Tyrosine Kinase Inhibitor TAK-593 - Dovitinib Lactate: - text: Dovitinib Lactate - I 131 Antiferritin Immunoglobulin: - text: I 131 Antiferritin Immunoglobulin - Bromocriptine Mesylate: - text: Bromocriptine Mesylate - Ezabenlimab: - text: Ezabenlimab - Vaccine-Sensitized Draining Lymph Node Cells: - text: Vaccine-Sensitized Draining Lymph Node Cells - CDK4/6 Inhibitor SHR6390: - text: CDK4/6 Inhibitor SHR6390 - EGFR Mutant-specific Inhibitor D-0316: - text: EGFR Mutant-specific Inhibitor D-0316 - Monoclonal Antibody TRK-950: - text: Monoclonal Antibody TRK-950 - Notch Signaling Pathway Inhibitor MK0752: - text: Notch Signaling Pathway Inhibitor MK0752 - Anti-CD40 Agonist Monoclonal Antibody ABBV-927: - text: Anti-CD40 Agonist Monoclonal Antibody ABBV-927 - Momelotinib: - text: Momelotinib - Vinorelbine Tartrate: - text: Vinorelbine Tartrate - p53-HDM2 Protein-protein Interaction Inhibitor APG-115: - text: p53-HDM2 Protein-protein Interaction Inhibitor APG-115 - Lutetium Lu 177 Anti-CA19-9 Monoclonal Antibody 5B1: - text: Lutetium Lu 177 Anti-CA19-9 Monoclonal Antibody 5B1 - EGFR/HER2 Inhibitor DZD9008: - text: EGFR/HER2 Inhibitor DZD9008 - Bivalent BRD4 Inhibitor AZD5153: - text: Bivalent BRD4 Inhibitor AZD5153 - Ficlatuzumab: - text: Ficlatuzumab - BRAF/EGFR Inhibitor BGB-283: - text: BRAF/EGFR Inhibitor BGB-283 - Methylcantharidimide: - text: Methylcantharidimide - Fostriecin: - text: Fostriecin - PRMT1 Inhibitor GSK3368715: - text: PRMT1 Inhibitor GSK3368715 - Sotrastaurin Acetate: - text: Sotrastaurin Acetate - Vincristine: - text: Vincristine - Celecoxib: - text: Celecoxib - Kunecatechins Ointment: - text: Kunecatechins Ointment - Anti-CD33 Monoclonal Antibody-DM4 Conjugate AVE9633: - text: Anti-CD33 Monoclonal Antibody-DM4 Conjugate AVE9633 - Black Raspberry Nectar: - text: Black Raspberry Nectar - Plamotamab: - text: Plamotamab - Oncolytic HSV-1 G207: - text: Oncolytic HSV-1 G207 - IDO1 Inhibitor MK-7162: - text: IDO1 Inhibitor MK-7162 - Short Chain Fatty Acid HQK-1004: - text: Short Chain Fatty Acid HQK-1004 - Imipramine Blue: - text: Imipramine Blue - Tislelizumab: - text: Tislelizumab - Astatine At 211 Anti-CD45 Monoclonal Antibody BC8-B10: - text: Astatine At 211 Anti-CD45 Monoclonal Antibody BC8-B10 - Rucaparib: - text: Rucaparib - cEt KRAS Antisense Oligonucleotide AZD4785: - text: cEt KRAS Antisense Oligonucleotide AZD4785 - Cereblon E3 Ubiquitin Ligase Modulating Agent CC-99282: - text: Cereblon E3 Ubiquitin Ligase Modulating Agent CC-99282 - Anti-HER2 Monoclonal Antibody/Anti-CD137Anticalin Bispecific Fusion Protein PRS-343: - text: Anti-HER2 Monoclonal Antibody/Anti-CD137Anticalin Bispecific Fusion - Protein PRS-343 - Pevonedistat: - text: Pevonedistat - Glioblastoma Cancer Vaccine ERC1671: - text: Glioblastoma Cancer Vaccine ERC1671 - Pacmilimab: - text: Pacmilimab - DPX-E7 HPV Vaccine: - text: DPX-E7 HPV Vaccine - Losoxantrone: - text: Losoxantrone - Liarozole Hydrochloride: - text: Liarozole Hydrochloride - Pembrolizumab: - text: Pembrolizumab - Ancitabine: - text: Ancitabine - Anti-CLEVER-1 Monoclonal Antibody FP-1305: - text: Anti-CLEVER-1 Monoclonal Antibody FP-1305 - Pemetrexed Disodium: - text: Pemetrexed Disodium - Bardoxolone: - text: Bardoxolone - Alpha Galactosylceramide: - text: Alpha Galactosylceramide - Esperamicin A1: - text: Esperamicin A1 - Axitinib: - text: Axitinib - 3'-dA Phosphoramidate NUC-7738: - text: 3'-dA Phosphoramidate NUC-7738 - Gemtuzumab Ozogamicin: - text: Gemtuzumab Ozogamicin - Sodium Butyrate: - text: Sodium Butyrate - P-cadherin Inhibitor PCA062: - text: P-cadherin Inhibitor PCA062 - Pol I Inhibitor CX5461: - text: Pol I Inhibitor CX5461 - Pirarubicin Hydrochloride: - text: Pirarubicin Hydrochloride - Mps1 Inhibitor BAY 1217389: - text: Mps1 Inhibitor BAY 1217389 - Glioma-associated Peptide-loaded Dendritic Cell Vaccine SL-701: - text: Glioma-associated Peptide-loaded Dendritic Cell Vaccine SL-701 - Methionine Aminopeptidase 2 Inhibitor M8891: - text: Methionine Aminopeptidase 2 Inhibitor M8891 - PSA/IL-2/GM-CSF Vaccine: - text: PSA/IL-2/GM-CSF Vaccine - Anti-HB-EGF Monoclonal Antibody KHK2866: - text: Anti-HB-EGF Monoclonal Antibody KHK2866 - Anti-c-MET Monoclonal Antibody LY2875358: - text: Anti-c-MET Monoclonal Antibody LY2875358 - Nimustine Hydrochloride: - text: Nimustine Hydrochloride - Interferon Alfa-N3: - text: Interferon Alfa-N3 - Batabulin: - text: Batabulin - HDAC Inhibitor CHR-2845: - text: HDAC Inhibitor CHR-2845 - Anti-ILT4 Monoclonal Antibody MK-4830: - text: Anti-ILT4 Monoclonal Antibody MK-4830 - Vitamin E Compound: - text: Vitamin E Compound - VLP-encapsulated TLR9 Agonist CMP-001: - text: VLP-encapsulated TLR9 Agonist CMP-001 - Milk Thistle: - text: Milk Thistle - Imexon: - text: Imexon - Glycooptimized Trastuzumab-GEX: - text: Glycooptimized Trastuzumab-GEX - Veltuzumab: - text: Veltuzumab - Denileukin Diftitox: - text: Denileukin Diftitox - Onalespib: - text: Onalespib - Ribosome-Inactivating Protein CY503: - text: Ribosome-Inactivating Protein CY503 - BC-819 Plasmid/Polyethylenimine Complex: - text: BC-819 Plasmid/Polyethylenimine Complex - Anti-CD74 Antibody-drug Conjugate STRO-001: - text: Anti-CD74 Antibody-drug Conjugate STRO-001 - HIF-2alpha Inhibitor PT2977: - text: HIF-2alpha Inhibitor PT2977 - Monoclonal Antibody Lym-1: - text: Monoclonal Antibody Lym-1 - Docetaxel Lipid Microspheres: - text: Docetaxel Lipid Microspheres - Listeria monocytogenes-LLO-PSA Vaccine ADXS31-142: - text: Listeria monocytogenes-LLO-PSA Vaccine ADXS31-142 - Liposome: - text: Liposome - Panobinostat: - text: Panobinostat - Macrocycle-bridged STING Agonist E7766: - text: Macrocycle-bridged STING Agonist E7766 - Belimumab: - text: Belimumab - Smac Mimetic GDC-0152: - text: Smac Mimetic GDC-0152 - Mitomycin C Analog KW-2149: - text: Mitomycin C Analog KW-2149 - Topical Celecoxib: - text: Topical Celecoxib - Cedazuridine/Decitabine Combination Agent ASTX727: - text: Cedazuridine/Decitabine Combination Agent ASTX727 - Nilotinib Hydrochloride Monohydrate: - text: Nilotinib Hydrochloride Monohydrate - Anti-ICOS Monoclonal Antibody KY1044: - text: Anti-ICOS Monoclonal Antibody KY1044 - Ivuxolimab: - text: Ivuxolimab - Benaxibine: - text: Benaxibine - Yangzheng Xiaoji Extract: - text: Yangzheng Xiaoji Extract - TLR7 agonist BNT411: - text: TLR7 agonist BNT411 - Zoptarelin Doxorubicin: - text: Zoptarelin Doxorubicin - Bazedoxifene: - text: Bazedoxifene - Selatinib Ditosilate: - text: Selatinib Ditosilate - Colorectal Tumor-Associated Peptides Vaccine IMA910: - text: Colorectal Tumor-Associated Peptides Vaccine IMA910 - KRAS G12C Inhibitor LY3499446: - text: KRAS G12C Inhibitor LY3499446 - Bcl-2 Inhibitor LP-108: - text: Bcl-2 Inhibitor LP-108 - Anti-PSMA Monoclonal Antibody-MMAE Conjugate: - text: Anti-PSMA Monoclonal Antibody-MMAE Conjugate - Tirapazamine: - text: Tirapazamine - HPV 16 E6/E7-encoding Arenavirus Vaccine HB-202: - text: HPV 16 E6/E7-encoding Arenavirus Vaccine HB-202 - Ulinastatin: - text: Ulinastatin - Formestane: - text: Formestane - Fosbretabulin Tromethamine: - text: Fosbretabulin Tromethamine - Hypoxia-activated Prodrug TH-4000: - text: Hypoxia-activated Prodrug TH-4000 - Anti-CD47 Monoclonal Antibody Hu5F9-G4: - text: Anti-CD47 Monoclonal Antibody Hu5F9-G4 - Oncolytic Virus RP1: - text: Oncolytic Virus RP1 - Anti-DKK-1 Monoclonal Antibody LY2812176: - text: Anti-DKK-1 Monoclonal Antibody LY2812176 - Ruxolitinib: - text: Ruxolitinib - Amsacrine Lactate: - text: Amsacrine Lactate - Epratuzumab-cys-tesirine: - text: Epratuzumab-cys-tesirine - Gold Sodium Thiomalate: - text: Gold Sodium Thiomalate - Hsp90 Antagonist KW-2478: - text: Hsp90 Antagonist KW-2478 - Flt3/MerTK Inhibitor MRX-2843: - text: Flt3/MerTK Inhibitor MRX-2843 - Mannosylerythritol Lipid: - text: Mannosylerythritol Lipid - Lacutamab: - text: Lacutamab - Pralsetinib: - text: Pralsetinib - Anti-PD-L1 Monoclonal Antibody MSB2311: - text: Anti-PD-L1 Monoclonal Antibody MSB2311 - Oncolytic HSV-1 rRp450: - text: Oncolytic HSV-1 rRp450 - Thorium Th 227 Anti-PSMA Monoclonal Antibody BAY 2315497: - text: Thorium Th 227 Anti-PSMA Monoclonal Antibody BAY 2315497 - Simotaxel: - text: Simotaxel - Satraplatin: - text: Satraplatin - Ubenimex: - text: Ubenimex - BCMA/CD3e Tri-specific T-cell Activating Construct HPN217: - text: BCMA/CD3e Tri-specific T-cell Activating Construct HPN217 - Pegylated Liposomal Mitoxantrone Hydrochloride: - text: Pegylated Liposomal Mitoxantrone Hydrochloride - Thioguanine: - text: Thioguanine - Tafasitamab: - text: Tafasitamab - Olvimulogene Nanivacirepvec: - text: Olvimulogene Nanivacirepvec - pan-RAF Kinase Inhibitor CCT3833: - text: pan-RAF Kinase Inhibitor CCT3833 - Mapatumumab: - text: Mapatumumab - Sintilimab: - text: Sintilimab - Virulizin: - text: Virulizin - CEA-MUC-1-TRICOM Vaccine CV301: - text: CEA-MUC-1-TRICOM Vaccine CV301 - Clomesone: - text: Clomesone - ATR Kinase Inhibitor M6620: - text: ATR Kinase Inhibitor M6620 - Anti-mesothelin Antibody-drug Conjugate BMS-986148: - text: Anti-mesothelin Antibody-drug Conjugate BMS-986148 - Anti-CD3/Anti-5T4 Bispecific Antibody GEN1044: - text: Anti-CD3/Anti-5T4 Bispecific Antibody GEN1044 - Ranimustine: - text: Ranimustine - Aspacytarabine: - text: Aspacytarabine - BCG Vaccine: - text: BCG Vaccine - Upamostat: - text: Upamostat - Yttrium Y 90 Monoclonal Antibody B3: - text: Yttrium Y 90 Monoclonal Antibody B3 - Anti-TIGIT Monoclonal Antibody AB154: - text: Anti-TIGIT Monoclonal Antibody AB154 - Anti-IRF4 Antisense Oligonucleotide ION251: - text: Anti-IRF4 Antisense Oligonucleotide ION251 - JAK Inhibitor INCB047986: - text: JAK Inhibitor INCB047986 - Dioscorea nipponica Makino Extract DNE3: - text: Dioscorea nipponica Makino Extract DNE3 - HER2-targeted Liposomal Doxorubicin Hydrochloride MM-302: - text: HER2-targeted Liposomal Doxorubicin Hydrochloride MM-302 - Hsp90 Inhibitor SNX-5542 Mesylate: - text: Hsp90 Inhibitor SNX-5542 Mesylate - Dinaciclib: - text: Dinaciclib - Liposomal Cytarabine: - text: Liposomal Cytarabine - Ruxotemitide: - text: Ruxotemitide - Lutetium Lu 177-DOTA-EB-TATE: - text: Lutetium Lu 177-DOTA-EB-TATE - Anti-LAG-3 Monoclonal Antibody INCAGN02385: - text: Anti-LAG-3 Monoclonal Antibody INCAGN02385 - Anti-CD123-Pyrrolobenzodiazepine Dimer Antibody Drug Conjugate SGN-CD123A: - text: Anti-CD123-Pyrrolobenzodiazepine Dimer Antibody Drug Conjugate SGN-CD123A - Anti-HER2-vc0101 ADC PF-06804103: - text: Anti-HER2-vc0101 ADC PF-06804103 - Ganglioside GM2: - text: Ganglioside GM2 - Lorvotuzumab Mertansine: - text: Lorvotuzumab Mertansine - Filgrastim: - text: Filgrastim - Phenethyl Isothiocyanate-containing Watercress Juice: - text: Phenethyl Isothiocyanate-containing Watercress Juice - EZH2 Inhibitor SHR2554: - text: EZH2 Inhibitor SHR2554 - Methyl-5-Aminolevulinate Hydrochloride Cream: - text: Methyl-5-Aminolevulinate Hydrochloride Cream - Immunotherapeutic Combination Product CMB305: - text: Immunotherapeutic Combination Product CMB305 - Anti-PD-1/CD47 Infusion Protein HX009: - text: Anti-PD-1/CD47 Infusion Protein HX009 - Anti-Met/EGFR Monoclonal Antibody LY3164530: - text: Anti-Met/EGFR Monoclonal Antibody LY3164530 - Menin-MLL Interaction Inhibitor SNDX-5613: - text: Menin-MLL Interaction Inhibitor SNDX-5613 - Crizotinib: - text: Crizotinib - Benzaldehyde Dimethane Sulfonate: - text: Benzaldehyde Dimethane Sulfonate - MAGE-A3-specific Immunotherapeutic GSK 2132231A: - text: MAGE-A3-specific Immunotherapeutic GSK 2132231A - Thiarabine: - text: Thiarabine - Anti-DLL4 Monoclonal Antibody MEDI0639: - text: Anti-DLL4 Monoclonal Antibody MEDI0639 - Anti-HER2/Anti-HER3 Bispecific Monoclonal Antibody MCLA-128: - text: Anti-HER2/Anti-HER3 Bispecific Monoclonal Antibody MCLA-128 - Nutraceutical TBL-12: - text: Nutraceutical TBL-12 - Tipiracil: - text: Tipiracil - Oral Myoma Vaccine V3-myoma: - text: Oral Myoma Vaccine V3-myoma - Tepotinib: - text: Tepotinib - Tiomolibdate Diammonium: - text: Tiomolibdate Diammonium - Retaspimycin Hydrochloride: - text: Retaspimycin Hydrochloride - Anti-SIRPa Monoclonal Antibody CC-95251: - text: Anti-SIRPa Monoclonal Antibody CC-95251 - PI3K/BET Inhibitor LY294002: - text: PI3K/BET Inhibitor LY294002 - Agatolimod Sodium: - text: Agatolimod Sodium - Combretastatin: - text: Combretastatin - Anti-PD-1 Fusion Protein AMP-224: - text: Anti-PD-1 Fusion Protein AMP-224 - NY-ESO-1/GLA-SE Vaccine ID-G305: - text: NY-ESO-1/GLA-SE Vaccine ID-G305 - IL-12-expressing HSV-1 NSC 733972: - text: IL-12-expressing HSV-1 NSC 733972 - Angiogenesis/Heparanase Inhibitor PG545: - text: Angiogenesis/Heparanase Inhibitor PG545 - Intiquinatine: - text: Intiquinatine - Puquitinib Mesylate: - text: Puquitinib Mesylate - BET Inhibitor CC-90010: - text: BET Inhibitor CC-90010 - Threonine Tyrosine Kinase Inhibitor CFI-402257: - text: Threonine Tyrosine Kinase Inhibitor CFI-402257 - Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19: - text: Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19 - Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707: - text: Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707 - Vemurafenib: - text: Vemurafenib - Pasotuxizumab: - text: Pasotuxizumab - Rhenium Re 188 BMEDA-labeled Liposomes: - text: Rhenium Re 188 BMEDA-labeled Liposomes - Nanocell-encapsulated miR-16-based microRNA Mimic: - text: Nanocell-encapsulated miR-16-based microRNA Mimic - Interferon Beta-1A: - text: Interferon Beta-1A - Fas Receptor Agonist APO010: - text: Fas Receptor Agonist APO010 - Superagonist Interleukin-15:Interleukin-15 Receptor alphaSu/Fc Fusion Complex ALT-803: - text: Superagonist Interleukin-15:Interleukin-15 Receptor alphaSu/Fc Fusion - Complex ALT-803 - Lactoferrin-derived Lytic Peptide LTX-315: - text: Lactoferrin-derived Lytic Peptide LTX-315 - CD4-specific Telomerase Peptide Vaccine UCPVax: - text: CD4-specific Telomerase Peptide Vaccine UCPVax - Anti-FLT3 Antibody-drug Conjugate AGS62P1: - text: Anti-FLT3 Antibody-drug Conjugate AGS62P1 - Etaracizumab: - text: Etaracizumab - Lorlatinib: - text: Lorlatinib - Denosumab: - text: Denosumab - Panulisib: - text: Panulisib - Lomustine: - text: Lomustine - Riviciclib: - text: Riviciclib - HLA-A*2402-Restricted Multipeptide Vaccine S-488410: - text: HLA-A*2402-Restricted Multipeptide Vaccine S-488410 - Chk1 Inhibitor CCT245737: - text: Chk1 Inhibitor CCT245737 - Hydroxyurea: - text: Hydroxyurea - Halichondrin Analogue E7130: - text: Halichondrin Analogue E7130 - Human MHC Non-Restricted Cytotoxic T-Cell Line TALL-104: - text: Human MHC Non-Restricted Cytotoxic T-Cell Line TALL-104 - Smoothened Antagonist LEQ506: - text: Smoothened Antagonist LEQ506 - Clomiphene Citrate: - text: Clomiphene Citrate - 5-Aza-4'-thio-2'-deoxycytidine: - text: 5-Aza-4'-thio-2'-deoxycytidine - Cevipabulin: - text: Cevipabulin - Recombinant Thyrotropin Alfa: - text: Recombinant Thyrotropin Alfa - Anti-FGFR3 Antibody-drug Conjugate LY3076226: - text: Anti-FGFR3 Antibody-drug Conjugate LY3076226 - Pegylated Recombinant Human Hyaluronidase PH20: - text: Pegylated Recombinant Human Hyaluronidase PH20 - Oncolytic Herpes Simplex Virus-1 ONCR-177: - text: Oncolytic Herpes Simplex Virus-1 ONCR-177 - Pomegranate Juice: - text: Pomegranate Juice - Indisulam: - text: Indisulam - Aceglatone: - text: Aceglatone - Anti-HBEGF Monoclonal Antibody U3-1565: - text: Anti-HBEGF Monoclonal Antibody U3-1565 - Anti-CD47 Monoclonal Antibody AO-176: - text: Anti-CD47 Monoclonal Antibody AO-176 - Tolebrutinib: - text: Tolebrutinib - CXCR1/2 Inhibitor SX-682: - text: CXCR1/2 Inhibitor SX-682 - Autologous CD19-targeted CAR-T Cells GC007F: - text: Autologous CD19-targeted CAR-T Cells GC007F - Dezaguanine: - text: Dezaguanine - Ropeginterferon Alfa-2B: - text: Ropeginterferon Alfa-2B - Mibefradil: - text: Mibefradil - Larotrectinib Sulfate: - text: Larotrectinib Sulfate - CHK1 Inhibitor MK-8776: - text: CHK1 Inhibitor MK-8776 - DNA Interference Oligonucleotide PNT2258: - text: DNA Interference Oligonucleotide PNT2258 - Aryl Hydrocarbon Receptor Antagonist BAY2416964: - text: Aryl Hydrocarbon Receptor Antagonist BAY2416964 - Alvocidib: - text: Alvocidib - Carmofur: - text: Carmofur - Beta Alethine: - text: Beta Alethine - STAT3 Inhibitor TTI-101: - text: STAT3 Inhibitor TTI-101 - Yttrium Y 90 Anti-CD45 Monoclonal Antibody AHN-12: - text: Yttrium Y 90 Anti-CD45 Monoclonal Antibody AHN-12 - Anti-mesothelin/MMAE Antibody-drug Conjugate RC88: - text: Anti-mesothelin/MMAE Antibody-drug Conjugate RC88 - Atorvastatin Sodium: - text: Atorvastatin Sodium - Talotrexin: - text: Talotrexin - Polyamine Analogue SBP-101: - text: Polyamine Analogue SBP-101 - TLR7 Agonist LHC165: - text: TLR7 Agonist LHC165 - Oprozomib: - text: Oprozomib - Dactolisib Tosylate: - text: Dactolisib Tosylate - Avadomide: - text: Avadomide - Decitabine: - text: Decitabine - Yiqi-yangyin-jiedu Herbal Decoction: - text: Yiqi-yangyin-jiedu Herbal Decoction - MELK Inhibitor OTS167: - text: MELK Inhibitor OTS167 - Hormone Therapy: - text: Hormone Therapy - Edrecolomab: - text: Edrecolomab - Anti-PD-1/CTLA-4 Bispecific Antibody MEDI5752: - text: Anti-PD-1/CTLA-4 Bispecific Antibody MEDI5752 - BRAFV600/PI3K Inhibitor ASN003: - text: BRAFV600/PI3K Inhibitor ASN003 - Mifepristone: - text: Mifepristone - Conatumumab: - text: Conatumumab - Fibromun: - text: Fibromun - Ciclopirox Prodrug CPX-POM: - text: Ciclopirox Prodrug CPX-POM - Peginterferon Alfa-2b: - text: Peginterferon Alfa-2b - Ladirubicin: - text: Ladirubicin - Anti-CD47 Monoclonal Antibody CC-90002: - text: Anti-CD47 Monoclonal Antibody CC-90002 - Mesna: - text: Mesna - Ipomeanol: - text: Ipomeanol - EED Inhibitor MAK683: - text: EED Inhibitor MAK683 - EZH2 Inhibitor PF-06821497: - text: EZH2 Inhibitor PF-06821497 - mTORC 1/2 Inhibitor LXI-15029: - text: mTORC 1/2 Inhibitor LXI-15029 - Gastrin/cholecystokinin Type B Receptor Inhibitor Z-360: - text: Gastrin/cholecystokinin Type B Receptor Inhibitor Z-360 - Recombinant Leukocyte Interleukin: - text: Recombinant Leukocyte Interleukin - Taletrectinib: - text: Taletrectinib - Wnt Signaling Inhibitor SM04755: - text: Wnt Signaling Inhibitor SM04755 - Anti-FAP/Interleukin-2 Fusion Protein RO6874281: - text: Anti-FAP/Interleukin-2 Fusion Protein RO6874281 - Clinical Trial: - text: Clinical Trial - Amustaline Dihydrochloride: - text: Amustaline Dihydrochloride - Burosumab: - text: Burosumab - Anti-PD-L1 Monoclonal Antibody FAZ053: - text: Anti-PD-L1 Monoclonal Antibody FAZ053 - Sagopilone: - text: Sagopilone - Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101: - text: Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101 - Encelimab: - text: Encelimab - MEK Inhibitor TAK-733: - text: MEK Inhibitor TAK-733 - Macimorelin: - text: Macimorelin - Imgatuzumab: - text: Imgatuzumab - Multi-epitope HER2 Peptide Vaccine H2NVAC: - text: Multi-epitope HER2 Peptide Vaccine H2NVAC - IAP Inhibitor HGS1029: - text: IAP Inhibitor HGS1029 - Testolactone: - text: Testolactone - Cediranib Maleate: - text: Cediranib Maleate - Folitixorin: - text: Folitixorin - Sapitinib: - text: Sapitinib - Alpha-lactalbumin-derived Synthetic Peptide-lipid Complex Alpha1H: - text: Alpha-lactalbumin-derived Synthetic Peptide-lipid Complex Alpha1H - Androgen Receptor Antagonist TRC253: - text: Androgen Receptor Antagonist TRC253 - Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody PF-06863135: - text: Anti-CD3/Anti-BCMA Bispecific Monoclonal Antibody PF-06863135 - Gamma-Secretase Inhibitor LY3039478: - text: Gamma-Secretase Inhibitor LY3039478 - Tropomyosin Receptor Kinase Inhibitor AZD7451: - text: Tropomyosin Receptor Kinase Inhibitor AZD7451 - Lutetium Lu 177 PP-F11N: - text: Lutetium Lu 177 PP-F11N - Personalized and Adjusted Neoantigen Peptide Vaccine PANDA-VAC: - text: Personalized and Adjusted Neoantigen Peptide Vaccine PANDA-VAC - Anti-CD228/MMAE Antibody-drug Conjugate SGN-CD228A: - text: Anti-CD228/MMAE Antibody-drug Conjugate SGN-CD228A - Phosphorodiamidate Morpholino Oligomer AVI-4126: - text: Phosphorodiamidate Morpholino Oligomer AVI-4126 - EP4 Antagonist ONO-4578: - text: EP4 Antagonist ONO-4578 - HER2 Inhibitor DZD1516: - text: HER2 Inhibitor DZD1516 - Yttrium Y 90 Anti-CDH3 Monoclonal Antibody FF-21101: - text: Yttrium Y 90 Anti-CDH3 Monoclonal Antibody FF-21101 - Captopril: - text: Captopril - Tacedinaline: - text: Tacedinaline - Eg5 Kinesin-Related Motor Protein Inhibitor 4SC-205: - text: Eg5 Kinesin-Related Motor Protein Inhibitor 4SC-205 - BRAF Inhibitor: - text: BRAF Inhibitor - Anti-Tissue Factor Monoclonal Antibody MORAb-066: - text: Anti-Tissue Factor Monoclonal Antibody MORAb-066 - Orvacabtagene Autoleucel: - text: Orvacabtagene Autoleucel - Aldesleukin: - text: Aldesleukin - Givinostat: - text: Givinostat - Selumetinib: - text: Selumetinib - O-Chloroacetylcarbamoylfumagillol: - text: O-Chloroacetylcarbamoylfumagillol - CD73 Inhibitor AB680: - text: CD73 Inhibitor AB680 - Lutetium Lu 177 DOTA-Tetulomab: - text: Lutetium Lu 177 DOTA-Tetulomab - Liposome-encapsulated TAAs mRNA Vaccine W_ova1: - text: Liposome-encapsulated TAAs mRNA Vaccine W_ova1 - LSD1 Inhibitor GSK2879552: - text: LSD1 Inhibitor GSK2879552 - Anti-CD38 Monoclonal Antibody TAK-079: - text: Anti-CD38 Monoclonal Antibody TAK-079 - Afuresertib: - text: Afuresertib - Modakafusp Alfa: - text: Modakafusp Alfa - Melphalan Hydrochloride: - text: Melphalan Hydrochloride - Entospletinib: - text: Entospletinib - Vandetanib: - text: Vandetanib - Pegylated Interferon Alfa: - text: Pegylated Interferon Alfa - Anti-DR5 Agonistic Monoclonal Antibody INBRX-109: - text: Anti-DR5 Agonistic Monoclonal Antibody INBRX-109 - Selective Androgen Receptor Modulator RAD140: - text: Selective Androgen Receptor Modulator RAD140 - Hsp90 Inhibitor DS-2248: - text: Hsp90 Inhibitor DS-2248 - LAIR-2 Fusion Protein NC410: - text: LAIR-2 Fusion Protein NC410 - Interleukin Therapy: - text: Interleukin Therapy - Anti-PSCA Monoclonal Antibody AGS-1C4D4: - text: Anti-PSCA Monoclonal Antibody AGS-1C4D4 - Anti-CD73 Monoclonal Antibody TJ4309: - text: Anti-CD73 Monoclonal Antibody TJ4309 - Autologous Anti-CD19 CAR T-cells IM19: - text: Autologous Anti-CD19 CAR T-cells IM19 - 2-Methoxyestrone: - text: 2-Methoxyestrone - Lentinan: - text: Lentinan - Enasidenib Mesylate: - text: Enasidenib Mesylate - Yang Yin Fu Zheng: - text: Yang Yin Fu Zheng - Tetraphenyl Chlorin Disulfonate: - text: Tetraphenyl Chlorin Disulfonate - Tilarginine: - text: Tilarginine - 11D10 AluGel Anti-Idiotype Monoclonal Antibody: - text: 11D10 AluGel Anti-Idiotype Monoclonal Antibody - Duligotuzumab: - text: Duligotuzumab - Docetaxel Nanoparticle CPC634: - text: Docetaxel Nanoparticle CPC634 - Burixafor: - text: Burixafor - CXCR4 Inhibitor Q-122: - text: CXCR4 Inhibitor Q-122 - Checkpoint Kinase Inhibitor AZD7762: - text: Checkpoint Kinase Inhibitor AZD7762 - Boanmycin Hydrochloride: - text: Boanmycin Hydrochloride - Anti-CD48/MMAE Antibody-drug Conjugate SGN-CD48A: - text: Anti-CD48/MMAE Antibody-drug Conjugate SGN-CD48A - Tabalumab: - text: Tabalumab - c-Met Inhibitor MSC2156119J: - text: c-Met Inhibitor MSC2156119J - TGFa-PE38 Immunotoxin: - text: TGFa-PE38 Immunotoxin - Lenalidomide: - text: Lenalidomide - Globo H-DT Vaccine OBI-833: - text: Globo H-DT Vaccine OBI-833 - Ecromeximab: - text: Ecromeximab - Indocyanine Green-labeled Polymeric Micelles ONM-100: - text: Indocyanine Green-labeled Polymeric Micelles ONM-100 - Elinafide: - text: Elinafide - Y 90 Monoclonal Antibody CC49: - text: Y 90 Monoclonal Antibody CC49 - Recombinant Human Papillomavirus 11-valent Vaccine: - text: Recombinant Human Papillomavirus 11-valent Vaccine - Anti-ROR1 ADC VLS-101: - text: Anti-ROR1 ADC VLS-101 - Asulacrine: - text: Asulacrine - Bryostatin 1: - text: Bryostatin 1 - Anti-PD-L1 Monoclonal Antibody GR1405: - text: Anti-PD-L1 Monoclonal Antibody GR1405 - ? Chrysanthemum morifolium/Ganoderma lucidum/Glycyrrhiza glabra/Isatis indigotica/Panax - pseudoginseng/Rabdosia rubescens/Scutellaria baicalensis/Serona repens Supplement - : text: Chrysanthemum morifolium/Ganoderma lucidum/Glycyrrhiza glabra/Isatis - indigotica/Panax pseudoginseng/Rabdosia rubescens/Scutellaria baicalensis/Serona - repens Supplement - SR-T100 Gel: - text: SR-T100 Gel - Taminadenant: - text: Taminadenant - Tankyrase Inhibitor STP1002: - text: Tankyrase Inhibitor STP1002 - BET Inhibitor GS-5829: - text: BET Inhibitor GS-5829 - Cisplatin Liposomal: - text: Cisplatin Liposomal - KRAS-MAPK Signaling Pathway Inhibitor JAB-3312: - text: KRAS-MAPK Signaling Pathway Inhibitor JAB-3312 - Roquinimex: - text: Roquinimex - Girentuximab: - text: Girentuximab - TrkA Inhibitor VMD-928: - text: TrkA Inhibitor VMD-928 - ERK1/2 Inhibitor LY3214996: - text: ERK1/2 Inhibitor LY3214996 - Vinflunine: - text: Vinflunine - Alectinib: - text: Alectinib - Xiaoai Jiedu Decoction: - text: Xiaoai Jiedu Decoction - Erlotinib: - text: Erlotinib - Menatetrenone: - text: Menatetrenone - Phosphoramide Mustard: - text: Phosphoramide Mustard - Napabucasin: - text: Napabucasin - Recombinant CD40-Ligand: - text: Recombinant CD40-Ligand - Rituximab Conjugate CON-4619: - text: Rituximab Conjugate CON-4619 - Mipsagargin: - text: Mipsagargin - CCR2/CCR5 Antagonist BMS-813160: - text: CCR2/CCR5 Antagonist BMS-813160 - Bardoxolone Methyl: - text: Bardoxolone Methyl - Troxacitabine: - text: Troxacitabine - Amivantamab: - text: Amivantamab - MEK 1/2 Inhibitor AS703988/MSC2015103B: - text: MEK 1/2 Inhibitor AS703988/MSC2015103B - Concentrated Lingzhi Mushroom Extract: - text: Concentrated Lingzhi Mushroom Extract - Anti-VEGFR2 Monoclonal Antibody MSB0254: - text: Anti-VEGFR2 Monoclonal Antibody MSB0254 - Androgen Receptor Downregulator AZD3514: - text: Androgen Receptor Downregulator AZD3514 - PEG-Proline-Interferon Alfa-2b: - text: PEG-Proline-Interferon Alfa-2b - Veliparib: - text: Veliparib - Idecabtagene Vicleucel: - text: Idecabtagene Vicleucel - Anti-CD20 Monoclonal Antibody SCT400: - text: Anti-CD20 Monoclonal Antibody SCT400 - Pyruvate Kinase Inhibitor TLN-232: - text: Pyruvate Kinase Inhibitor TLN-232 - LSD1 Inhibitor SYHA1807: - text: LSD1 Inhibitor SYHA1807 - Partially Engineered T-regulatory Cell Donor Graft TRGFT-201: - text: Partially Engineered T-regulatory Cell Donor Graft TRGFT-201 - P-p68 Inhibitor RX-5902: - text: P-p68 Inhibitor RX-5902 - ERK1/2 Inhibitor ASN007: - text: ERK1/2 Inhibitor ASN007 - CYP11A1 inhibitor ODM-208: - text: CYP11A1 inhibitor ODM-208 - Fosbretabulin: - text: Fosbretabulin - Anti-OX40 Agonist Monoclonal Antibody BGB-A445: - text: Anti-OX40 Agonist Monoclonal Antibody BGB-A445 - Heparin Derivative SST0001: - text: Heparin Derivative SST0001 - Autologous NKG2D CAR T-cells CYAD-02: - text: Autologous NKG2D CAR T-cells CYAD-02 - Terfluranol: - text: Terfluranol - Iodine I 131 Monoclonal Antibody F16SIP: - text: Iodine I 131 Monoclonal Antibody F16SIP - Inalimarev: - text: Inalimarev - Prostatic Acid Phosphatase-Sargramostim Fusion Protein PA2024: - text: Prostatic Acid Phosphatase-Sargramostim Fusion Protein PA2024 - Maackia amurensis Seed Lectin: - text: Maackia amurensis Seed Lectin - Cobolimab: - text: Cobolimab - IDO1 Inhibitor KHK2455: - text: IDO1 Inhibitor KHK2455 - Autologous Anti-BCMA CAR T-cells PHE885: - text: Autologous Anti-BCMA CAR T-cells PHE885 - BTK Inhibitor M7583: - text: BTK Inhibitor M7583 - Trastuzumab/Hyaluronidase-oysk: - text: Trastuzumab/Hyaluronidase-oysk - Nilutamide: - text: Nilutamide - Mitoxantrone: - text: Mitoxantrone - Peposertib: - text: Peposertib - CYL-02 Plasmid DNA: - text: CYL-02 Plasmid DNA - Pixatimod: - text: Pixatimod - HPV6/11-targeted DNA Plasmid Vaccine INO-3107: - text: HPV6/11-targeted DNA Plasmid Vaccine INO-3107 - Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3006: - text: Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3006 - Trastuzumab Monomethyl Auristatin F: - text: Trastuzumab Monomethyl Auristatin F - Telapristone Acetate: - text: Telapristone Acetate - Urelumab: - text: Urelumab - Anti-PD1/CTLA4 Bispecific Antibody XmAb20717: - text: Anti-PD1/CTLA4 Bispecific Antibody XmAb20717 - Melapuldencel-T: - text: Melapuldencel-T - Akt Inhibitor LY2780301: - text: Akt Inhibitor LY2780301 - Vismodegib: - text: Vismodegib - ERK1/2 Inhibitor JSI-1187: - text: ERK1/2 Inhibitor JSI-1187 - Anti-claudin18.2 Monoclonal Antibody AB011: - text: Anti-claudin18.2 Monoclonal Antibody AB011 - Peldesine: - text: Peldesine - Hydroxyprogesterone Caproate: - text: Hydroxyprogesterone Caproate - PRMT5 Inhibitor JNJ-64619178: - text: PRMT5 Inhibitor JNJ-64619178 - Etarotene: - text: Etarotene - Afimoxifene: - text: Afimoxifene - Y 90 Monoclonal Antibody HMFG1: - text: Y 90 Monoclonal Antibody HMFG1 - Vosilasarm: - text: Vosilasarm - Anti-ILDR2 Monoclonal Antibody BAY 1905254: - text: Anti-ILDR2 Monoclonal Antibody BAY 1905254 - ITK Inhibitor CPI-818: - text: ITK Inhibitor CPI-818 - Anti-BCMA/CD3 BiTE Antibody REGN5458: - text: Anti-BCMA/CD3 BiTE Antibody REGN5458 - Anti-TIM3 Monoclonal Antibody LY3321367: - text: Anti-TIM3 Monoclonal Antibody LY3321367 - Axatilimab: - text: Axatilimab - CD80-Fc Fusion Protein FPT155: - text: CD80-Fc Fusion Protein FPT155 - Thymidylate Synthase Inhibitor DFP-11207: - text: Thymidylate Synthase Inhibitor DFP-11207 - Anti-DLL3/CD3 BiTE Antibody AMG 757: - text: Anti-DLL3/CD3 BiTE Antibody AMG 757 - p53 Peptide Vaccine MPS-128: - text: p53 Peptide Vaccine MPS-128 - Rilotumumab: - text: Rilotumumab - APE1/Ref-1 Redox Inhibitor APX3330: - text: APE1/Ref-1 Redox Inhibitor APX3330 - Anti-CTLA-4 Monoclonal Antibody AGEN1181: - text: Anti-CTLA-4 Monoclonal Antibody AGEN1181 - IL-12sc, IL-15sushi, IFNa and GM-CSF mRNA-based Immunotherapeutic Agent SAR441000: - text: IL-12sc, IL-15sushi, IFNa and GM-CSF mRNA-based Immunotherapeutic Agent - SAR441000 - Cetuximab: - text: Cetuximab - Nedisertib: - text: Nedisertib - Uzansertib: - text: Uzansertib - Ganoderma lucidum Spores Powder Capsule: - text: Ganoderma lucidum Spores Powder Capsule - Anti-B7-H4 Monoclonal Antibody FPA150: - text: Anti-B7-H4 Monoclonal Antibody FPA150 - FLT3/KIT Kinase Inhibitor AKN-028: - text: FLT3/KIT Kinase Inhibitor AKN-028 - Ruthenium-based Transferrin Targeting Agent NKP-1339: - text: Ruthenium-based Transferrin Targeting Agent NKP-1339 - Multitargeted Tyrosine Kinase Inhibitor JNJ-26483327: - text: Multitargeted Tyrosine Kinase Inhibitor JNJ-26483327 - Camidanlumab Tesirine: - text: Camidanlumab Tesirine - Fenretinide Lipid Matrix: - text: Fenretinide Lipid Matrix - Anti-EGFR/CD16A Bispecific Antibody AFM24: - text: Anti-EGFR/CD16A Bispecific Antibody AFM24 - Emactuzumab: - text: Emactuzumab - Anti-hepcidin Monoclonal Antibody LY2787106: - text: Anti-hepcidin Monoclonal Antibody LY2787106 - Anti-mesothelin-Pseudomonas Exotoxin 24 Cytolytic Fusion Protein LMB-100: - text: Anti-mesothelin-Pseudomonas Exotoxin 24 Cytolytic Fusion Protein LMB-100 - Buserelin: - text: Buserelin - Hafnium Oxide-containing Nanoparticles NBTXR3: - text: Hafnium Oxide-containing Nanoparticles NBTXR3 - B-Raf/VEGFR-2 Inhibitor RAF265: - text: B-Raf/VEGFR-2 Inhibitor RAF265 - FGFR Inhibitor CPL304110: - text: FGFR Inhibitor CPL304110 - Monoclonal Antibody 7C11: - text: Monoclonal Antibody 7C11 - Anti-LAG3 Monoclonal Antibody BI 754111: - text: Anti-LAG3 Monoclonal Antibody BI 754111 - Recombinant Interferon Alfa: - text: Recombinant Interferon Alfa - Enloplatin: - text: Enloplatin - Cord Blood Derived CAR T-Cells: - text: Cord Blood Derived CAR T-Cells - JAK1 Inhibitor INCB052793: - text: JAK1 Inhibitor INCB052793 - Orelabrutinib: - text: Orelabrutinib - Pyrazinamide: - text: Pyrazinamide - Sulfatinib: - text: Sulfatinib - Therapeutic Liver Cancer Peptide Vaccine IMA970A: - text: Therapeutic Liver Cancer Peptide Vaccine IMA970A - Ioflubenzamide I-131: - text: Ioflubenzamide I-131 - Pan HER/VEGFR2 Receptor Tyrosine Kinase Inhibitor BMS-690514: - text: Pan HER/VEGFR2 Receptor Tyrosine Kinase Inhibitor BMS-690514 - OX40L-expressing Oncolytic Adenovirus DNX-2440: - text: OX40L-expressing Oncolytic Adenovirus DNX-2440 - Ponatinib: - text: Ponatinib - Patidegib: - text: Patidegib - Berberine Chloride: - text: Berberine Chloride - Recombinant Interleukin-6: - text: Recombinant Interleukin-6 - Lucitanib: - text: Lucitanib - Briciclib Sodium: - text: Briciclib Sodium - Deslorelin Acetate: - text: Deslorelin Acetate - Personalized ALL-specific Multi-HLA-binding Peptide Vaccine: - text: Personalized ALL-specific Multi-HLA-binding Peptide Vaccine - Geldanamycin: - text: Geldanamycin - Cyclin-dependent Kinase Inhibitor PF-06873600: - text: Cyclin-dependent Kinase Inhibitor PF-06873600 - Diphencyprone: - text: Diphencyprone - Orteronel: - text: Orteronel - Docetaxel Formulation CKD-810: - text: Docetaxel Formulation CKD-810 - Sustained-release Mitomycin C Hydrogel Formulation UGN-102: - text: Sustained-release Mitomycin C Hydrogel Formulation UGN-102 - ASP4132: - text: ASP4132 - Defactinib: - text: Defactinib - BiTE Antibody AMG 910: - text: BiTE Antibody AMG 910 - AKT Inhibitor ARQ 092: - text: AKT Inhibitor ARQ 092 - Antisense Oligonucleotide QR-313: - text: Antisense Oligonucleotide QR-313 - LmddA-LLO-chHER2 Fusion Protein-secreting Live-attenuated Listeria Cancer Vaccine ADXS31-164: - text: LmddA-LLO-chHER2 Fusion Protein-secreting Live-attenuated Listeria Cancer - Vaccine ADXS31-164 - Evofosfamide: - text: Evofosfamide - Enzastaurin Hydrochloride: - text: Enzastaurin Hydrochloride - Filgotinib: - text: Filgotinib - BTK inhibitor TG-1701: - text: BTK inhibitor TG-1701 - Yttrium Y 90 Monoclonal Antibody MN-14: - text: Yttrium Y 90 Monoclonal Antibody MN-14 - Pertuzumab: - text: Pertuzumab - Glufosfamide: - text: Glufosfamide - c-Met Inhibitor AL2846: - text: c-Met Inhibitor AL2846 - mRNA-based Personalized Cancer Vaccine NCI-4650: - text: mRNA-based Personalized Cancer Vaccine NCI-4650 - Protein Arginine Methyltransferase 5 Inhibitor PF-06939999: - text: Protein Arginine Methyltransferase 5 Inhibitor PF-06939999 - Alobresib: - text: Alobresib - Anti-HER2 Antibody Conjugated Natural Killer Cells ACE1702: - text: Anti-HER2 Antibody Conjugated Natural Killer Cells ACE1702 - Docetaxel: - text: Docetaxel - CCR2 Antagonist CCX872-B: - text: CCR2 Antagonist CCX872-B - MNK1/2 Inhibitor ETC-1907206: - text: MNK1/2 Inhibitor ETC-1907206 - Liver X Receptor beta Agonist RGX-104: - text: Liver X Receptor beta Agonist RGX-104 - Istiratumab: - text: Istiratumab - Leflunomide: - text: Leflunomide - Procarbazine Hydrochloride: - text: Procarbazine Hydrochloride - Adecatumumab: - text: Adecatumumab - EP4 Antagonist INV-1120: - text: EP4 Antagonist INV-1120 - Carboxyamidotriazole: - text: Carboxyamidotriazole - Anti-C5aR Monoclonal Antibody IPH5401: - text: Anti-C5aR Monoclonal Antibody IPH5401 - SHP2 Inhibitor RLY-1971: - text: SHP2 Inhibitor RLY-1971 - Carboxyamidotriazole Orotate: - text: Carboxyamidotriazole Orotate - Elacestrant: - text: Elacestrant - D-methionine Formulation MRX-1024: - text: D-methionine Formulation MRX-1024 - Anti-CD33/CD3 Bispecific Antibody JNJ-67571244: - text: Anti-CD33/CD3 Bispecific Antibody JNJ-67571244 - Enteric-Coated TRPM8 Agonist D-3263 Hydrochloride: - text: Enteric-Coated TRPM8 Agonist D-3263 Hydrochloride - ISS 1018 CpG Oligodeoxynucleotide: - text: ISS 1018 CpG Oligodeoxynucleotide - Imatinib: - text: Imatinib - Melanoma Monoclonal Antibody hIgG2A: - text: Melanoma Monoclonal Antibody hIgG2A - STAT3 Inhibitor DSP-0337: - text: STAT3 Inhibitor DSP-0337 - Anti-TIGIT Monoclonal Antibody SGN-TGT: - text: Anti-TIGIT Monoclonal Antibody SGN-TGT - Anti-HER2 ADC DS-8201a: - text: Anti-HER2 ADC DS-8201a - Mocetinostat: - text: Mocetinostat - Epirubicin Hydrochloride: - text: Epirubicin Hydrochloride - Synthetic Glioblastoma Tumor-associated Peptides Vaccine Therapy APVAC1: - text: Synthetic Glioblastoma Tumor-associated Peptides Vaccine Therapy APVAC1 - Rosuvastatin: - text: Rosuvastatin - Avapritinib: - text: Avapritinib - Envafolimab: - text: Envafolimab - Edatrexate: - text: Edatrexate - ALK Inhibitor PLB 1003: - text: ALK Inhibitor PLB 1003 - Anti-DLL4/VEGF Bispecific Monoclonal Antibody OMP-305B83: - text: Anti-DLL4/VEGF Bispecific Monoclonal Antibody OMP-305B83 - NY-ESO-1 Plasmid DNA Cancer Vaccine pPJV7611: - text: NY-ESO-1 Plasmid DNA Cancer Vaccine pPJV7611 - Rabusertib: - text: Rabusertib - Pegylated Recombinant Human Arginase I BCT-100: - text: Pegylated Recombinant Human Arginase I BCT-100 - Thiodiglycol: - text: Thiodiglycol - Burixafor Hydrobromide: - text: Burixafor Hydrobromide - EGFR/VEGFR/RET Inhibitor HA121-28: - text: EGFR/VEGFR/RET Inhibitor HA121-28 - pan-PIM Kinase Inhibitor AZD1208: - text: pan-PIM Kinase Inhibitor AZD1208 - BMI1 Inhibitor PTC596: - text: BMI1 Inhibitor PTC596 - MEK/Aurora Kinase Inhibitor BI 847325: - text: MEK/Aurora Kinase Inhibitor BI 847325 - Pirotinib: - text: Pirotinib - Yttrium Y 90-labeled Anti-FZD10 Monoclonal Antibody OTSA101: - text: Yttrium Y 90-labeled Anti-FZD10 Monoclonal Antibody OTSA101 - Anti-TWEAK Monoclonal Antibody RG7212: - text: Anti-TWEAK Monoclonal Antibody RG7212 - Cetuximab-IR700 Conjugate RM-1929: - text: Cetuximab-IR700 Conjugate RM-1929 - Imatinib Mesylate: - text: Imatinib Mesylate - Carzinophilin: - text: Carzinophilin - Endothelin Receptor Type A Antagonist YM598: - text: Endothelin Receptor Type A Antagonist YM598 - LMB-7 Immunotoxin: - text: LMB-7 Immunotoxin - Thalicarpine: - text: Thalicarpine - CAIX Inhibitor SLC-0111: - text: CAIX Inhibitor SLC-0111 - Topotecan: - text: Topotecan - Quisinostat: - text: Quisinostat - GITR Agonist MEDI1873: - text: GITR Agonist MEDI1873 - Fc-engineered Anti-CD40 Agonist Antibody 2141-V11: - text: Fc-engineered Anti-CD40 Agonist Antibody 2141-V11 - Dynemicin A: - text: Dynemicin A - Olinvacimab: - text: Olinvacimab - Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19: - text: Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19 - Aldoxorubicin: - text: Aldoxorubicin - Polyamine Analog SL11093: - text: Polyamine Analog SL11093 - Denibulin Hydrochloride: - text: Denibulin Hydrochloride - Abituzumab: - text: Abituzumab - Cyclodisone: - text: Cyclodisone - Cedefingol: - text: Cedefingol - ALK Inhibitor: - text: ALK Inhibitor - Cryptophycin: - text: Cryptophycin - Tandutinib: - text: Tandutinib - Simmitinib: - text: Simmitinib - Topoisomerase I Inhibitor Genz-644282: - text: Topoisomerase I Inhibitor Genz-644282 - Dulanermin: - text: Dulanermin - MMP Inhibitor S-3304: - text: MMP Inhibitor S-3304 - PAK4 Inhibitor PF-03758309: - text: PAK4 Inhibitor PF-03758309 - Anti-GITR Agonistic Monoclonal Antibody ASP1951: - text: Anti-GITR Agonistic Monoclonal Antibody ASP1951 - Dezapelisib: - text: Dezapelisib - Choline Kinase Alpha Inhibitor TCD-717: - text: Choline Kinase Alpha Inhibitor TCD-717 - Pancratistatin: - text: Pancratistatin - Arsenic Trioxide Capsule Formulation ORH 2014: - text: Arsenic Trioxide Capsule Formulation ORH 2014 - Anti-EGFR Monoclonal Antibody RO5083945: - text: Anti-EGFR Monoclonal Antibody RO5083945 - c-Met Inhibitor MK2461: - text: c-Met Inhibitor MK2461 - Anti-PD-1 Monoclonal Antibody GLS-010: - text: Anti-PD-1 Monoclonal Antibody GLS-010 - KRAS G12C Inhibitor MRTX849: - text: KRAS G12C Inhibitor MRTX849 - Dendritic Cell Vaccine: - text: Dendritic Cell Vaccine - Linsitinib: - text: Linsitinib - CAIX Inhibitor DTP348: - text: CAIX Inhibitor DTP348 - FGFR/CSF-1R Inhibitor 3D185: - text: FGFR/CSF-1R Inhibitor 3D185 - mTOR Kinase Inhibitor CC-223: - text: mTOR Kinase Inhibitor CC-223 - Pegzilarginase: - text: Pegzilarginase - Lead Pb 212 TCMC-trastuzumab: - text: Lead Pb 212 TCMC-trastuzumab - Axalimogene Filolisbac: - text: Axalimogene Filolisbac - Anti-CD33/CD3 BiTE Antibody AMG 330: - text: Anti-CD33/CD3 BiTE Antibody AMG 330 - Oncolytic Adenovirus Ad5-DNX-2401: - text: Oncolytic Adenovirus Ad5-DNX-2401 - Smoothened Antagonist LDE225 Topical: - text: Smoothened Antagonist LDE225 Topical - MYC-targeting siRNA DCR-MYC: - text: MYC-targeting siRNA DCR-MYC - c-Kit Inhibitor PLX9486: - text: c-Kit Inhibitor PLX9486 - MEK Inhibitor WX-554: - text: MEK Inhibitor WX-554 - Camrelizumab: - text: Camrelizumab - Mofarotene: - text: Mofarotene - Trofosfamide: - text: Trofosfamide - Muparfostat: - text: Muparfostat - Imifoplatin: - text: Imifoplatin - Spiroplatin: - text: Spiroplatin - Megestrol Acetate: - text: Megestrol Acetate - Qilisheng Immunoregulatory Oral Solution: - text: Qilisheng Immunoregulatory Oral Solution - Ovine Submaxillary Mucin: - text: Ovine Submaxillary Mucin - Lestaurtinib: - text: Lestaurtinib - MetAP2 Inhibitor SDX-7320: - text: MetAP2 Inhibitor SDX-7320 - Anti-FLT3/CD3 BiTE Antibody AMG 427: - text: Anti-FLT3/CD3 BiTE Antibody AMG 427 - Lapachone: - text: Lapachone - CDK4/6 Inhibitor FCN-437: - text: CDK4/6 Inhibitor FCN-437 - Anti-PD-1/Anti-LAG-3 Bispecific Antibody RO7247669: - text: Anti-PD-1/Anti-LAG-3 Bispecific Antibody RO7247669 - Iroplact: - text: Iroplact - Anti-HER2/Auristatin Payload Antibody-drug Conjugate XMT-1522: - text: Anti-HER2/Auristatin Payload Antibody-drug Conjugate XMT-1522 - Commensal Bacterial Strain Formulation VE800: - text: Commensal Bacterial Strain Formulation VE800 - Rosmantuzumab: - text: Rosmantuzumab - Synthetic Plumbagin PCUR-101: - text: Synthetic Plumbagin PCUR-101 - Personalized Neoantigen Peptide Vaccine iNeo-Vac-P01: - text: Personalized Neoantigen Peptide Vaccine iNeo-Vac-P01 - Tefinostat: - text: Tefinostat - Anti-CD73 Monoclonal Antibody BMS-986179: - text: Anti-CD73 Monoclonal Antibody BMS-986179 - Thioinosine: - text: Thioinosine - Anti-PD-L1 Monoclonal Antibody CS1001: - text: Anti-PD-L1 Monoclonal Antibody CS1001 - Staphylococcal Enterotoxin A: - text: Staphylococcal Enterotoxin A - Anti-PSMA Monoclonal Antibody MDX1201-A488: - text: Anti-PSMA Monoclonal Antibody MDX1201-A488 - Sorghum bicolor Supplement: - text: Sorghum bicolor Supplement - mRNA-derived Lung Cancer Vaccine BI 1361849: - text: mRNA-derived Lung Cancer Vaccine BI 1361849 - BET Inhibitor BAY1238097: - text: BET Inhibitor BAY1238097 - CT2584 HMS: - text: CT2584 HMS - Apaziquone: - text: Apaziquone - Wnt Signaling Pathway Inhibitor SM08502: - text: Wnt Signaling Pathway Inhibitor SM08502 - CDK2 Inhibitor PF-07104091: - text: CDK2 Inhibitor PF-07104091 - Dendritic Cell-Autologous Lung Tumor Vaccine: - text: Dendritic Cell-Autologous Lung Tumor Vaccine - Trametinib: - text: Trametinib - Futuximab: - text: Futuximab - Laniquidar: - text: Laniquidar - Anti-AG7 Antibody Drug Conjugate AbGn-107: - text: Anti-AG7 Antibody Drug Conjugate AbGn-107 - Antibody-drug Conjugate SC-004: - text: Antibody-drug Conjugate SC-004 - Pimurutamab: - text: Pimurutamab - Sotorasib: - text: Sotorasib - Adenoviral MUC1 Vaccine ETBX-061: - text: Adenoviral MUC1 Vaccine ETBX-061 - Vinzolidine Sulfate: - text: Vinzolidine Sulfate - Suramin Sodium: - text: Suramin Sodium - Anti-PD-1 Monoclonal Antibody MGA012: - text: Anti-PD-1 Monoclonal Antibody MGA012 - Placebo: - text: Placebo - TLR-Directed Cationic Lipid-DNA Complex JVRS-100: - text: TLR-Directed Cationic Lipid-DNA Complex JVRS-100 - p300/CBP Bromodomain Inhibitor CCS1477: - text: p300/CBP Bromodomain Inhibitor CCS1477 - MCL-1 Inhibitor ABBV-467: - text: MCL-1 Inhibitor ABBV-467 - Serclutamab Talirine: - text: Serclutamab Talirine - BET Inhibitor BMS-986158: - text: BET Inhibitor BMS-986158 - Anti-PSMA/CD3 Bispecific Antibody JNJ-63898081: - text: Anti-PSMA/CD3 Bispecific Antibody JNJ-63898081 - Anti-IL-15 Monoclonal Antibody AMG 714: - text: Anti-IL-15 Monoclonal Antibody AMG 714 - Pacritinib: - text: Pacritinib - Recombinant Modified Vaccinia Ankara-5T4 Vaccine: - text: Recombinant Modified Vaccinia Ankara-5T4 Vaccine - Annonaceous Acetogenins: - text: Annonaceous Acetogenins - Bi-functional Alkylating Agent VAL-083: - text: Bi-functional Alkylating Agent VAL-083 - Oral Milataxel: - text: Oral Milataxel - Aclarubicin: - text: Aclarubicin - Diaziquone: - text: Diaziquone - Bromebric Acid: - text: Bromebric Acid - Necitumumab: - text: Necitumumab - Estrogens, Conjugated: - text: Estrogens, Conjugated - Wobe-Mugos E: - text: Wobe-Mugos E - Radium Ra 223 Dichloride: - text: Radium Ra 223 Dichloride - DHA-Paclitaxel: - text: DHA-Paclitaxel - Sitravatinib: - text: Sitravatinib - Glucocorticoid Receptor Antagonist ORIC-101: - text: Glucocorticoid Receptor Antagonist ORIC-101 - Vitamin D3 Analogue ILX23-7553: - text: Vitamin D3 Analogue ILX23-7553 - Uprosertib: - text: Uprosertib - Bromacrylide: - text: Bromacrylide - CCR2 Antagonist PF-04136309: - text: CCR2 Antagonist PF-04136309 - Bcl-2 Inhibitor APG 2575: - text: Bcl-2 Inhibitor APG 2575 - Anti-ICAM-1 Monoclonal Antibody BI-505: - text: Anti-ICAM-1 Monoclonal Antibody BI-505 - Dexanabinol: - text: Dexanabinol - Alacizumab Pegol: - text: Alacizumab Pegol - Anti-c-Met Antibody-drug Conjugate TR1801: - text: Anti-c-Met Antibody-drug Conjugate TR1801 - Rolinsatamab Talirine: - text: Rolinsatamab Talirine - Multi-kinase Inhibitor XL092: - text: Multi-kinase Inhibitor XL092 - Ibritumomab Tiuxetan: - text: Ibritumomab Tiuxetan - Autologous Anti-ICAM-1-CAR-CD28-4-1BB-CD3zeta-expressing T-cells AIC100: - text: Autologous Anti-ICAM-1-CAR-CD28-4-1BB-CD3zeta-expressing T-cells AIC100 - Pelitinib: - text: Pelitinib - Anti-Melanin Monoclonal Antibody PTI-6D2: - text: Anti-Melanin Monoclonal Antibody PTI-6D2 - Estrogen Receptor Agonist GTx-758: - text: Estrogen Receptor Agonist GTx-758 - Catumaxomab: - text: Catumaxomab - Liposomal Rhenium Re 186: - text: Liposomal Rhenium Re 186 - MOF Compound RiMO-301: - text: MOF Compound RiMO-301 - Raltitrexed: - text: Raltitrexed - Ambamustine: - text: Ambamustine - Pomalidomide: - text: Pomalidomide - Enobosarm: - text: Enobosarm - Anti-IGF-1R Monoclonal Antibody AVE1642: - text: Anti-IGF-1R Monoclonal Antibody AVE1642 - Isobrucein B: - text: Isobrucein B - Audencel: - text: Audencel - Allogeneic Anti-CD20 CAR T-cells LUCAR-20S: - text: Allogeneic Anti-CD20 CAR T-cells LUCAR-20S - EGFR Inhibitor BIBX 1382: - text: EGFR Inhibitor BIBX 1382 - Dovitinib: - text: Dovitinib - Tyrosinase:146-156 Peptide: - text: Tyrosinase:146-156 Peptide - STING Agonist MK-1454: - text: STING Agonist MK-1454 - Sunitinib: - text: Sunitinib - Lupartumab Amadotin: - text: Lupartumab Amadotin - Tiazofurin: - text: Tiazofurin - Autologous Anti-BCMA CAR-transduced T-cells KITE-585: - text: Autologous Anti-BCMA CAR-transduced T-cells KITE-585 - Rilimogene Glafolivec: - text: Rilimogene Glafolivec - Tucatinib: - text: Tucatinib - BMS-188797: - text: BMS-188797 - Ethaselen: - text: Ethaselen - Fluorouracil Implant: - text: Fluorouracil Implant - Futuximab/Modotuximab Mixture: - text: Futuximab/Modotuximab Mixture - Rexinoid NRX 194204: - text: Rexinoid NRX 194204 - 2,6-Dimethoxyquinone: - text: 2,6-Dimethoxyquinone - Clinical Trial Agent: - text: Clinical Trial Agent - HAAH Lambda phage Vaccine SNS-301: - text: HAAH Lambda phage Vaccine SNS-301 - Milatuzumab-Doxorubicin Antibody-Drug Conjugate IMMU-110: - text: Milatuzumab-Doxorubicin Antibody-Drug Conjugate IMMU-110 - Apitolisib: - text: Apitolisib - Anti-FLT3 Monoclonal Antibody 4G8-SDIEM: - text: Anti-FLT3 Monoclonal Antibody 4G8-SDIEM - Devimistat: - text: Devimistat - ATR Kinase Inhibitor BAY1895344: - text: ATR Kinase Inhibitor BAY1895344 - Actinomycin F1: - text: Actinomycin F1 - PD-L1 Inhibitor INCB086550: - text: PD-L1 Inhibitor INCB086550 - Anti-CD19 Antibody-T-cell Receptor-expressing T-cells ET019003: - text: Anti-CD19 Antibody-T-cell Receptor-expressing T-cells ET019003 - Nimodipine: - text: Nimodipine - Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous PSMA-specific Prostate Cancer Vaccine BPX-201: - text: Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous - PSMA-specific Prostate Cancer Vaccine BPX-201 - Garlic: - text: Garlic - Allogeneic Renal Cell Carcinoma Vaccine MGN1601: - text: Allogeneic Renal Cell Carcinoma Vaccine MGN1601 - Teroxirone: - text: Teroxirone - Etanidazole: - text: Etanidazole - Docetaxel/Ritonavir: - text: Docetaxel/Ritonavir - FLT3 Tyrosine Kinase Inhibitor TTT-3002: - text: FLT3 Tyrosine Kinase Inhibitor TTT-3002 - Anti-PD-L1/Anti-4-1BB Bispecific Monoclonal Antibody GEN1046: - text: Anti-PD-L1/Anti-4-1BB Bispecific Monoclonal Antibody GEN1046 - Recombinant PRAME Protein Plus AS15 Adjuvant GSK2302025A: - text: Recombinant PRAME Protein Plus AS15 Adjuvant GSK2302025A - Polymeric Camptothecin Prodrug XMT-1001: - text: Polymeric Camptothecin Prodrug XMT-1001 - Diazepinomicin: - text: Diazepinomicin - Aurora kinase A/B inhibitor TT-00420: - text: Aurora kinase A/B inhibitor TT-00420 - CXCR4/E-selectin Antagonist GMI-1359: - text: CXCR4/E-selectin Antagonist GMI-1359 - ssRNA-based Immunomodulator CV8102: - text: ssRNA-based Immunomodulator CV8102 - iNKT Cell Agonist ABX196: - text: iNKT Cell Agonist ABX196 - Anti-TRAILR2/CDH17 Tetravalent Bispecific Antibody BI 905711: - text: Anti-TRAILR2/CDH17 Tetravalent Bispecific Antibody BI 905711 - Oncolytic Adenovirus ORCA-010: - text: Oncolytic Adenovirus ORCA-010 - Encapsulated Rapamycin: - text: Encapsulated Rapamycin - ERK Inhibitor GDC-0994: - text: ERK Inhibitor GDC-0994 - DAB389 Epidermal Growth Factor: - text: DAB389 Epidermal Growth Factor - Bleomycin: - text: Bleomycin - Bisnafide: - text: Bisnafide - Activin Type 2B Receptor Fc Fusion Protein STM 434: - text: Activin Type 2B Receptor Fc Fusion Protein STM 434 - CDK9 Inhibitor AZD4573: - text: CDK9 Inhibitor AZD4573 - Masoprocol: - text: Masoprocol - Yttrium-90 Polycarbonate Brachytherapy Plaque: - text: Yttrium-90 Polycarbonate Brachytherapy Plaque - Foritinib Succinate: - text: Foritinib Succinate - C-myb Antisense Oligonucleotide G4460: - text: C-myb Antisense Oligonucleotide G4460 - Chloroquinoxaline Sulfonamide: - text: Chloroquinoxaline Sulfonamide - Avitinib Maleate: - text: Avitinib Maleate - FGFR4 Inhibitor ICP-105: - text: FGFR4 Inhibitor ICP-105 - Mogamulizumab: - text: Mogamulizumab - DTRMWXHS-12/Everolimus/Pomalidomide Combination Agent DTRM-555: - text: DTRMWXHS-12/Everolimus/Pomalidomide Combination Agent DTRM-555 - Anti-B7H3 Antibody-drug Conjugate MGC018: - text: Anti-B7H3 Antibody-drug Conjugate MGC018 - Bleomycin A2: - text: Bleomycin A2 - Autologous Anti-CD19 CAR-CD28 T-cells ET019002: - text: Autologous Anti-CD19 CAR-CD28 T-cells ET019002 - Autologous Anti-kappa Light Chain CAR-CD28-expressing T-lymphocytes: - text: Autologous Anti-kappa Light Chain CAR-CD28-expressing T-lymphocytes - Anti-ETBR/MMAE Antibody-Drug Conjugate DEDN6526A: - text: Anti-ETBR/MMAE Antibody-Drug Conjugate DEDN6526A - Valemetostat: - text: Valemetostat - Ethyleneimine: - text: Ethyleneimine - Apilimod Dimesylate Capsule: - text: Apilimod Dimesylate Capsule - Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo: - text: Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo - Monoclonal Antibody HeFi-1: - text: Monoclonal Antibody HeFi-1 - Ifosfamide: - text: Ifosfamide - Ilorasertib: - text: Ilorasertib - TGF-beta Receptor 1 Inhibitor PF-06952229: - text: TGF-beta Receptor 1 Inhibitor PF-06952229 - Arfolitixorin: - text: Arfolitixorin - 17beta-Hydroxysteroid Dehydrogenase Type 5 Inhibitor ASP9521: - text: 17beta-Hydroxysteroid Dehydrogenase Type 5 Inhibitor ASP9521 - Carbogen: - text: Carbogen - Erythrocyte-encapsulated L-asparaginase Suspension: - text: Erythrocyte-encapsulated L-asparaginase Suspension - Telisotuzumab Vedotin: - text: Telisotuzumab Vedotin - Suramin: - text: Suramin - Arginase Inhibitor INCB001158: - text: Arginase Inhibitor INCB001158 - Superoxide Dismutase Mimetic GC4711: - text: Superoxide Dismutase Mimetic GC4711 - Anti-LILRB4 Monoclonal Antibody IO-202: - text: Anti-LILRB4 Monoclonal Antibody IO-202 - APC8015F: - text: APC8015F - Cereblon E3 Ubiquitin Ligase Modulating Agent CC-92480: - text: Cereblon E3 Ubiquitin Ligase Modulating Agent CC-92480 - Z-Endoxifen Hydrochloride: - text: Z-Endoxifen Hydrochloride - Anti-TROP2 Antibody-drug Conjugate SKB264: - text: Anti-TROP2 Antibody-drug Conjugate SKB264 - Oleclumab: - text: Oleclumab - Notch Signaling Inhibitor PF-06650808: - text: Notch Signaling Inhibitor PF-06650808 - Merestinib: - text: Merestinib - HPV DNA Plasmids Therapeutic Vaccine VGX-3100: - text: HPV DNA Plasmids Therapeutic Vaccine VGX-3100 - Donafenib: - text: Donafenib - G-Quadruplex Stabilizer BMVC: - text: G-Quadruplex Stabilizer BMVC - Anti-CD123/CD3 BiTE Antibody SAR440234: - text: Anti-CD123/CD3 BiTE Antibody SAR440234 - Lonafarnib: - text: Lonafarnib - Anti-PD-1/Anti-PD-L1 Bispecific Antibody IBI318: - text: Anti-PD-1/Anti-PD-L1 Bispecific Antibody IBI318 - Penicillamine: - text: Penicillamine - Tinzaparin Sodium: - text: Tinzaparin Sodium - Multifunctional/Multitargeted Anticancer Agent OMN54: - text: Multifunctional/Multitargeted Anticancer Agent OMN54 - WT1/PSMA/hTERT-encoding Plasmid DNA INO-5401: - text: WT1/PSMA/hTERT-encoding Plasmid DNA INO-5401 - Vitespen: - text: Vitespen - Polyamine Transport Inhibitor AMXT-1501 Dicaprate: - text: Polyamine Transport Inhibitor AMXT-1501 Dicaprate - RAD51 Inhibitor CYT-0851: - text: RAD51 Inhibitor CYT-0851 - Neoantigen-based Renal Cell Carcinoma-Poly-ICLC Vaccine: - text: Neoantigen-based Renal Cell Carcinoma-Poly-ICLC Vaccine - Indoximod: - text: Indoximod - Motolimod: - text: Motolimod - H-ras Antisense Oligodeoxynucleotide ISIS 2503: - text: H-ras Antisense Oligodeoxynucleotide ISIS 2503 - Bisantrene: - text: Bisantrene - Anti-OX40 Agonist Monoclonal Antibody ABBV-368: - text: Anti-OX40 Agonist Monoclonal Antibody ABBV-368 - Iodine I 131 Monoclonal Antibody CC49-deltaCH2: - text: Iodine I 131 Monoclonal Antibody CC49-deltaCH2 - DI-Leu16-IL2 Immunocytokine: - text: DI-Leu16-IL2 Immunocytokine - Anti-CD25-PBD Antibody-drug Conjugate ADCT-301: - text: Anti-CD25-PBD Antibody-drug Conjugate ADCT-301 - Betaglucin Gel: - text: Betaglucin Gel - Bexarotene: - text: Bexarotene - XPO1 Inhibitor SL-801: - text: XPO1 Inhibitor SL-801 - Recombinant Interferon Alfa-2a: - text: Recombinant Interferon Alfa-2a - EGFR Inhibitor AZD3759: - text: EGFR Inhibitor AZD3759 - Monoclonal Antibody 3622W94: - text: Monoclonal Antibody 3622W94 - Selective Estrogen Receptor Modulator CC-8490: - text: Selective Estrogen Receptor Modulator CC-8490 - Neoantigen-based Therapeutic Cancer Vaccine GRT-C903: - text: Neoantigen-based Therapeutic Cancer Vaccine GRT-C903 - Amsacrine: - text: Amsacrine - Mutant p53 Activator COTI-2: - text: Mutant p53 Activator COTI-2 - Merbarone: - text: Merbarone - Tetradecanoylphorbol Acetate: - text: Tetradecanoylphorbol Acetate - Deoxycytidine Analogue TAS-109 Hydrochloride: - text: Deoxycytidine Analogue TAS-109 Hydrochloride - Ridaforolimus: - text: Ridaforolimus - Tanomastat: - text: Tanomastat - Actinium Ac-225 Anti-PSMA Monoclonal Antibody J591: - text: Actinium Ac-225 Anti-PSMA Monoclonal Antibody J591 - Adagloxad Simolenin: - text: Adagloxad Simolenin - EGb761: - text: EGb761 - WT1 Peptide Vaccine OCV-501: - text: WT1 Peptide Vaccine OCV-501 - Lapatinib Ditosylate: - text: Lapatinib Ditosylate - HDAC/EGFR/HER2 Inhibitor CUDC-101: - text: HDAC/EGFR/HER2 Inhibitor CUDC-101 - Liposomal Bcl-2 Antisense Oligonucleotide BP1002: - text: Liposomal Bcl-2 Antisense Oligonucleotide BP1002 - Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1: - text: Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1 - Anti-HER2/PBD-MA Antibody-drug Conjugate DHES0815A: - text: Anti-HER2/PBD-MA Antibody-drug Conjugate DHES0815A - Niclosamide: - text: Niclosamide - Allogeneic CRISPR-Cas9 Engineered Anti-CD70 CAR-T Cells CTX130: - text: Allogeneic CRISPR-Cas9 Engineered Anti-CD70 CAR-T Cells CTX130 - Agonistic Anti-OX40 Monoclonal Antibody MEDI6469: - text: Agonistic Anti-OX40 Monoclonal Antibody MEDI6469 - IDO-1 Inhibitor LY3381916: - text: IDO-1 Inhibitor LY3381916 - TGFbeta Receptor Ectodomain-IgG Fc Fusion Protein AVID200: - text: TGFbeta Receptor Ectodomain-IgG Fc Fusion Protein AVID200 - Teglarinad: - text: Teglarinad - LRP5/6 Antagonist BI 905677: - text: LRP5/6 Antagonist BI 905677 - Sorafenib: - text: Sorafenib - Doxorubicin-loaded EGFR-targeting Nanocells: - text: Doxorubicin-loaded EGFR-targeting Nanocells - HER2-targeted DARPin MP0274: - text: HER2-targeted DARPin MP0274 - Paclitaxel Poliglumex: - text: Paclitaxel Poliglumex - Enzastaurin: - text: Enzastaurin - Recombinant Bispecific Single-Chain Antibody rM28: - text: Recombinant Bispecific Single-Chain Antibody rM28 - Yttrium Y 90 Glass Microspheres: - text: Yttrium Y 90 Glass Microspheres - HPV E6/E7 DNA Vaccine GX-188E: - text: HPV E6/E7 DNA Vaccine GX-188E - Cilengitide: - text: Cilengitide - Uproleselan: - text: Uproleselan - Enclomiphene Citrate: - text: Enclomiphene Citrate - Trifluridine: - text: Trifluridine - Dexamethasone Sodium Phosphate: - text: Dexamethasone Sodium Phosphate - Nogalamycin: - text: Nogalamycin - Aurora Kinase/VEGFR2 Inhibitor CYC116: - text: Aurora Kinase/VEGFR2 Inhibitor CYC116 - Itacitinib: - text: Itacitinib - Bactobolin: - text: Bactobolin - BET Inhibitor FT-1101: - text: BET Inhibitor FT-1101 - Prexasertib: - text: Prexasertib - Fimepinostat: - text: Fimepinostat - Glumetinib: - text: Glumetinib - Lucanthone: - text: Lucanthone - Bcr-Abl Kinase Inhibitor PF-114: - text: Bcr-Abl Kinase Inhibitor PF-114 - CD47 Antagonist ALX148: - text: CD47 Antagonist ALX148 - Nelarabine: - text: Nelarabine - Abexinostat Tosylate: - text: Abexinostat Tosylate - Staphylococcal Enterotoxin B: - text: Staphylococcal Enterotoxin B - BET Inhibitor ABBV-744: - text: BET Inhibitor ABBV-744 - DACH-Platin Micelle NC-4016: - text: DACH-Platin Micelle NC-4016 - Proapoptotic Sulindac Analog CP-461: - text: Proapoptotic Sulindac Analog CP-461 - Roneparstat: - text: Roneparstat - Mivavotinib: - text: Mivavotinib - Anti-CD70 Antibody-Drug Conjugate MDX-1203: - text: Anti-CD70 Antibody-Drug Conjugate MDX-1203 - Degarelix Acetate: - text: Degarelix Acetate - Anti-DR5 Agonistic Antibody DS-8273a: - text: Anti-DR5 Agonistic Antibody DS-8273a - Ingenol Mebutate: - text: Ingenol Mebutate - Anti-CD33 Monoclonal Antibody BI 836858: - text: Anti-CD33 Monoclonal Antibody BI 836858 - Recombinant Vesicular Stomatitis Virus-expressing Human Interferon Beta and Sodium-Iodide Symporter: - text: Recombinant Vesicular Stomatitis Virus-expressing Human Interferon Beta - and Sodium-Iodide Symporter - Beauvericin: - text: Beauvericin - Allosteric ErbB Inhibitor BDTX-189: - text: Allosteric ErbB Inhibitor BDTX-189 - Vofatamab: - text: Vofatamab - Nintedanib: - text: Nintedanib - Neoantigen-based Glioblastoma Vaccine: - text: Neoantigen-based Glioblastoma Vaccine - CEBPA-targeting saRNA MTL-CEBPA Liposome: - text: CEBPA-targeting saRNA MTL-CEBPA Liposome - Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901: - text: Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901 - TLR7 Agonist 852A: - text: TLR7 Agonist 852A - Verapamil: - text: Verapamil - Antibody-drug Conjugate SC-006: - text: Antibody-drug Conjugate SC-006 - CL 246738: - text: CL 246738 - Xisomab 3G3: - text: Xisomab 3G3 - Gentuximab: - text: Gentuximab - Broxuridine: - text: Broxuridine - HDM2 Inhibitor MK-8242: - text: HDM2 Inhibitor MK-8242 - Trapoxin: - text: Trapoxin - Anti-PD-1/Anti-HER2 Bispecific Antibody IBI315: - text: Anti-PD-1/Anti-HER2 Bispecific Antibody IBI315 - Anti-PKN3 siRNA Atu027: - text: Anti-PKN3 siRNA Atu027 - LSD1 Inhibitor CC-90011: - text: LSD1 Inhibitor CC-90011 - Irinotecan: - text: Irinotecan - Deferoxamine Mesylate: - text: Deferoxamine Mesylate - Monoclonal Antibody D6.12: - text: Monoclonal Antibody D6.12 - PARP 1/2 Inhibitor NOV1401: - text: PARP 1/2 Inhibitor NOV1401 - Gilteritinib: - text: Gilteritinib - Liposome-encapsulated Daunorubicin-Cytarabine: - text: Liposome-encapsulated Daunorubicin-Cytarabine - Pirarubicin: - text: Pirarubicin - Ertumaxomab: - text: Ertumaxomab - Bovine Cartilage: - text: Bovine Cartilage - LMP2-specific T Cell Receptor-transduced Autologous T-lymphocytes: - text: LMP2-specific T Cell Receptor-transduced Autologous T-lymphocytes - PPAR Alpha Antagonist TPST-1120: - text: PPAR Alpha Antagonist TPST-1120 - Miltefosine: - text: Miltefosine - Nanoparticle-encapsulated Doxorubicin Hydrochloride: - text: Nanoparticle-encapsulated Doxorubicin Hydrochloride - Doxercalciferol: - text: Doxercalciferol - Anti-CD38/CD3 Bispecific Monoclonal Antibody GBR 1342: - text: Anti-CD38/CD3 Bispecific Monoclonal Antibody GBR 1342 - Immunocytokine NHS-IL12: - text: Immunocytokine NHS-IL12 - Valproic Acid: - text: Valproic Acid - Letrozole: - text: Letrozole - AXL Receptor Tyrosine Kinase/cMET Inhibitor BPI-9016M: - text: AXL Receptor Tyrosine Kinase/cMET Inhibitor BPI-9016M - Olmutinib: - text: Olmutinib - Retinoic Acid Agent Ro 16-9100: - text: Retinoic Acid Agent Ro 16-9100 - Polyamine Analogue PG11047: - text: Polyamine Analogue PG11047 - Aminocamptothecin: - text: Aminocamptothecin - Pegargiminase: - text: Pegargiminase - Ribociclib: - text: Ribociclib - Galunisertib: - text: Galunisertib - Anti-CD3/CD38 Bispecific Monoclonal Antibody AMG 424: - text: Anti-CD3/CD38 Bispecific Monoclonal Antibody AMG 424 - Pan-RAF Inhibitor LY3009120: - text: Pan-RAF Inhibitor LY3009120 - Pemlimogene Merolisbac: - text: Pemlimogene Merolisbac - Niraparib: - text: Niraparib - MAGE-10.A2: - text: MAGE-10.A2 - c-Met Inhibitor ABN401: - text: c-Met Inhibitor ABN401 - Anti-AGS-16 Monoclonal Antibody AGS-16M18: - text: Anti-AGS-16 Monoclonal Antibody AGS-16M18 - Anti-TIM-3 Monoclonal Antibody BGB-A425: - text: Anti-TIM-3 Monoclonal Antibody BGB-A425 - Demcizumab: - text: Demcizumab - KSP Inhibitor SB-743921: - text: KSP Inhibitor SB-743921 - Pterostilbene: - text: Pterostilbene - Silmitasertib Sodium: - text: Silmitasertib Sodium - Enpromate: - text: Enpromate - Autologous B-cell/Monocyte-presenting HER2/neu Antigen Vaccine BVAC-B: - text: Autologous B-cell/Monocyte-presenting HER2/neu Antigen Vaccine BVAC-B - Porcupine Inhibitor CGX1321: - text: Porcupine Inhibitor CGX1321 - Grapiprant: - text: Grapiprant - Autologous CD19-targeted CAR T Cells JWCAR029: - text: Autologous CD19-targeted CAR T Cells JWCAR029 - Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo: - text: Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo - Allogeneic GM-CSF-secreting Lethally Irradiated Prostate Cancer Vaccine: - text: Allogeneic GM-CSF-secreting Lethally Irradiated Prostate Cancer Vaccine - Yttrium Y 90 Basiliximab: - text: Yttrium Y 90 Basiliximab - Irinotecan-Eluting Beads: - text: Irinotecan-Eluting Beads - Norgestrel: - text: Norgestrel - Semuloparin: - text: Semuloparin - Oral Topotecan Hydrochloride: - text: Oral Topotecan Hydrochloride - STING Agonist IMSA101: - text: STING Agonist IMSA101 - mRNA-Derived Prostate Cancer Vaccine CV9103: - text: mRNA-Derived Prostate Cancer Vaccine CV9103 - WT1 Protein-derived Peptide Vaccine DSP-7888: - text: WT1 Protein-derived Peptide Vaccine DSP-7888 - SERD D-0502: - text: SERD D-0502 - Abexinostat: - text: Abexinostat - 2-O, 3-O Desulfated Heparin: - text: 2-O, 3-O Desulfated Heparin - Telapristone: - text: Telapristone - Robatumumab: - text: Robatumumab - Doxorubicin-Eluting Beads: - text: Doxorubicin-Eluting Beads - Lipid Nanoparticle Encapsulating mRNAs Encoding Human OX40L/IL-23/IL-36gamma mRNA-2752: - text: Lipid Nanoparticle Encapsulating mRNAs Encoding Human OX40L/IL-23/IL-36gamma - mRNA-2752 - hTERT Multipeptide/Montanide ISA-51 VG/Imiquimod Vaccine GX 301: - text: hTERT Multipeptide/Montanide ISA-51 VG/Imiquimod Vaccine GX 301 - Trodusquemine: - text: Trodusquemine - HPV16 E7-specific HLA-A*02:01-restricted IgG1-Fc Fusion Protein CUE-101: - text: HPV16 E7-specific HLA-A*02:01-restricted IgG1-Fc Fusion Protein CUE-101 - TLR Agonist BDB001: - text: TLR Agonist BDB001 - MET Tyrosine Kinase Inhibitor SGX523: - text: MET Tyrosine Kinase Inhibitor SGX523 - PTEF-b/CDK9 Inhibitor BAY1251152: - text: PTEF-b/CDK9 Inhibitor BAY1251152 - Poziotinib: - text: Poziotinib - Ribociclib/Letrozole: - text: Ribociclib/Letrozole - Rebastinib Tosylate: - text: Rebastinib Tosylate - Hydralazine Hydrochloride: - text: Hydralazine Hydrochloride - Erbulozole: - text: Erbulozole - Henatinib Maleate: - text: Henatinib Maleate - Tritylcysteine: - text: Tritylcysteine - Falimarev: - text: Falimarev - Cinacalcet Hydrochloride: - text: Cinacalcet Hydrochloride - Doxorubicin: - text: Doxorubicin - Vandetanib-eluting Radiopaque Bead BTG-002814: - text: Vandetanib-eluting Radiopaque Bead BTG-002814 - Lifirafenib: - text: Lifirafenib - Anti-CTLA4 Antibody Fc Fusion Protein KN044: - text: Anti-CTLA4 Antibody Fc Fusion Protein KN044 - Oregovomab: - text: Oregovomab - Polymer-encapsulated Luteolin Nanoparticle: - text: Polymer-encapsulated Luteolin Nanoparticle - Xeloda: - text: Xeloda - PD-L1/PD-L2/VISTA Antagonist CA-170: - text: PD-L1/PD-L2/VISTA Antagonist CA-170 - Anti-c-fms Monoclonal Antibody AMG 820: - text: Anti-c-fms Monoclonal Antibody AMG 820 - Thioureidobutyronitrile: - text: Thioureidobutyronitrile - Cabazitaxel: - text: Cabazitaxel - Anti-CSF1R Monoclonal Antibody SNDX-6352: - text: Anti-CSF1R Monoclonal Antibody SNDX-6352 - Ozarelix: - text: Ozarelix - Benzoylphenylurea: - text: Benzoylphenylurea - Anti-EGFR/PBD Antibody-drug Conjugate ABBV-321: - text: Anti-EGFR/PBD Antibody-drug Conjugate ABBV-321 - Anti-CD3/CD20 Bispecific Antibody GEN3013: - text: Anti-CD3/CD20 Bispecific Antibody GEN3013 - Anti-PD-1/TIM-3 Bispecific Antibody RO7121661: - text: Anti-PD-1/TIM-3 Bispecific Antibody RO7121661 - Misonidazole: - text: Misonidazole - Oncolytic Newcastle Disease Virus Strain PV701: - text: Oncolytic Newcastle Disease Virus Strain PV701 - Anti-GCC Antibody-Drug Conjugate TAK-164: - text: Anti-GCC Antibody-Drug Conjugate TAK-164 - Anti-CD19 Monoclonal Antibody XmAb5574: - text: Anti-CD19 Monoclonal Antibody XmAb5574 - Synthetic Long HPV16 E6/E7 Peptides Vaccine ISA101b: - text: Synthetic Long HPV16 E6/E7 Peptides Vaccine ISA101b - Intermediate-affinity Interleukin-2 Receptor Agonist ALKS 4230: - text: Intermediate-affinity Interleukin-2 Receptor Agonist ALKS 4230 - Exisulind: - text: Exisulind - Bleomycin B2: - text: Bleomycin B2 - Anti-HER2 Antibody-drug Conjugate BAT8001: - text: Anti-HER2 Antibody-drug Conjugate BAT8001 - Glaucarubolone: - text: Glaucarubolone - CYP11A1 Inhibitor ODM-209: - text: CYP11A1 Inhibitor ODM-209 - Edelfosine: - text: Edelfosine - Cinobufagin: - text: Cinobufagin - Topical Potassium Dobesilate: - text: Topical Potassium Dobesilate - PIM Kinase Inhibitor LGH447: - text: PIM Kinase Inhibitor LGH447 - Monoclonal Antibody CEP-37250/KHK2804: - text: Monoclonal Antibody CEP-37250/KHK2804 - Axl/Mer Inhibitor INCB081776: - text: Axl/Mer Inhibitor INCB081776 - Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells C-CAR088: - text: Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells C-CAR088 - Lutetium Lu 177 Satoreotide Tetraxetan: - text: Lutetium Lu 177 Satoreotide Tetraxetan - Autologous Bispecific BCMA/CD19-targeted CAR-T Cells GC012F: - text: Autologous Bispecific BCMA/CD19-targeted CAR-T Cells GC012F - Bispecific Antibody GS-1423: - text: Bispecific Antibody GS-1423 - Edodekin alfa: - text: Edodekin alfa - Lung-targeted Immunomodulator QBKPN: - text: Lung-targeted Immunomodulator QBKPN - Anti-EphA2 Monoclonal Antibody-MMAF Immunoconjugate MEDI-547: - text: Anti-EphA2 Monoclonal Antibody-MMAF Immunoconjugate MEDI-547 - Autologous Tumor Infiltrating Lymphocytes LN-145: - text: Autologous Tumor Infiltrating Lymphocytes LN-145 - Flumatinib Mesylate: - text: Flumatinib Mesylate - Triapine: - text: Triapine - Monoclonal Antibody 1F5: - text: Monoclonal Antibody 1F5 - Adenosine A2B Receptor Antagonist PBF-1129: - text: Adenosine A2B Receptor Antagonist PBF-1129 - Vadimezan: - text: Vadimezan - Lutetium Lu 177 Monoclonal Antibody CC49: - text: Lutetium Lu 177 Monoclonal Antibody CC49 - Androgen Receptor Degrader CC-94676: - text: Androgen Receptor Degrader CC-94676 - Razoxane: - text: Razoxane - North American Ginseng Extract AFX-2: - text: North American Ginseng Extract AFX-2 - Anti-CD123 x Anti-CD3 Bispecific Antibody XmAb1404: - text: Anti-CD123 x Anti-CD3 Bispecific Antibody XmAb1404 - Fenretinide Phospholipid Suspension ST-001: - text: Fenretinide Phospholipid Suspension ST-001 - Pixantrone: - text: Pixantrone - Aurora Kinase Inhibitor TTP607: - text: Aurora Kinase Inhibitor TTP607 - Hypericin: - text: Hypericin - Anti-AXL/PBD Antibody-drug Conjugate ADCT-601: - text: Anti-AXL/PBD Antibody-drug Conjugate ADCT-601 - Adenovirus Serotype 26-expressing HPV18 Vaccine JNJ-63682931: - text: Adenovirus Serotype 26-expressing HPV18 Vaccine JNJ-63682931 - Essiac: - text: Essiac - Anti-CD40/Anti-4-1BB Bispecific Agonist Monoclonal Antibody GEN1042: - text: Anti-CD40/Anti-4-1BB Bispecific Agonist Monoclonal Antibody GEN1042 - Mycophenolic Acid: - text: Mycophenolic Acid - Pyruvate Kinase M2 Isoform Activator TP-1454: - text: Pyruvate Kinase M2 Isoform Activator TP-1454 - Acivicin: - text: Acivicin - Lutetium Lu-177 PSMA-R2: - text: Lutetium Lu-177 PSMA-R2 - Adenovirus-mediated Human Interleukin-12 INXN-2001 Plus Activator Ligand INXN-1001: - text: Adenovirus-mediated Human Interleukin-12 INXN-2001 Plus Activator Ligand - INXN-1001 - Bcr-Abl Kinase Inhibitor K0706: - text: Bcr-Abl Kinase Inhibitor K0706 - Chk1 Inhibitor GDC-0425: - text: Chk1 Inhibitor GDC-0425 - Vorsetzumab Mafodotin: - text: Vorsetzumab Mafodotin - Recombinant KSA Glycoprotein CO17-1A: - text: Recombinant KSA Glycoprotein CO17-1A - Anti-HER2 Bispecific Antibody-drug Conjugate ZW49: - text: Anti-HER2 Bispecific Antibody-drug Conjugate ZW49 - Estramustine Phosphate Sodium: - text: Estramustine Phosphate Sodium - Menogaril: - text: Menogaril - Amolimogene Bepiplasmid: - text: Amolimogene Bepiplasmid - Utomilumab: - text: Utomilumab - Yttrium Y 90 Anti-CD45 Monoclonal Antibody BC8: - text: Yttrium Y 90 Anti-CD45 Monoclonal Antibody BC8 - Floxuridine: - text: Floxuridine - Autologous Dendritic Cell Vaccine ACT2001: - text: Autologous Dendritic Cell Vaccine ACT2001 - Lenalidomide Analog KPG-121: - text: Lenalidomide Analog KPG-121 - Therapeutic Hydrocortisone: - text: Therapeutic Hydrocortisone - TLR9 Agonist AST-008: - text: TLR9 Agonist AST-008 - Liposomal Vinorelbine Tartrate: - text: Liposomal Vinorelbine Tartrate - Magrolimab: - text: Magrolimab - Mitomycin: - text: Mitomycin - Autologous Clonal Neoantigen T Cells ATL001: - text: Autologous Clonal Neoantigen T Cells ATL001 - JAK1 Inhibitor AZD4205: - text: JAK1 Inhibitor AZD4205 - Rociletinib: - text: Rociletinib - Bimiralisib: - text: Bimiralisib - ALK Inhibitor ASP3026: - text: ALK Inhibitor ASP3026 - Allogeneic Anti-CD19 CAR T-cells ALLO-501A: - text: Allogeneic Anti-CD19 CAR T-cells ALLO-501A - pan-PI3K Inhibitor CLR457: - text: pan-PI3K Inhibitor CLR457 - Tamibarotene: - text: Tamibarotene - Nimustine: - text: Nimustine - Bruceanol G: - text: Bruceanol G - Trientine Hydrochloride: - text: Trientine Hydrochloride - Etoposide Phosphate: - text: Etoposide Phosphate - Aviscumine: - text: Aviscumine - Mechlorethamine Hydrochloride Gel: - text: Mechlorethamine Hydrochloride Gel - Recombinant Interleukin-13: - text: Recombinant Interleukin-13 - Pazopanib Hydrochloride: - text: Pazopanib Hydrochloride - Giredestrant: - text: Giredestrant - Cidan Herbal Capsule: - text: Cidan Herbal Capsule - Zinc Finger Nuclease ZFN-603: - text: Zinc Finger Nuclease ZFN-603 - Zanidatamab: - text: Zanidatamab - Bushen Culuan Decoction: - text: Bushen Culuan Decoction - Pimitespib: - text: Pimitespib - 7-Hydroxystaurosporine: - text: 7-Hydroxystaurosporine - P-TEFb Inhibitor BAY1143572: - text: P-TEFb Inhibitor BAY1143572 - Cemadotin: - text: Cemadotin - Progestational IUD: - text: Progestational IUD - Sofituzumab Vedotin: - text: Sofituzumab Vedotin - Plevitrexed: - text: Plevitrexed - Ceritinib: - text: Ceritinib - Recombinant Human Apolipoprotein(a) Kringle V MG1102: - text: Recombinant Human Apolipoprotein(a) Kringle V MG1102 - Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central Memory T-lymphocytes JCAR014: - text: Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central - Memory T-lymphocytes JCAR014 - Antineoplaston A10: - text: Antineoplaston A10 - Anti-A5B1 Integrin Monoclonal Antibody PF-04605412: - text: Anti-A5B1 Integrin Monoclonal Antibody PF-04605412 - TORC1/2 Kinase Inhibitor DS-3078a: - text: TORC1/2 Kinase Inhibitor DS-3078a - Liposomal c-raf Antisense Oligonucleotide: - text: Liposomal c-raf Antisense Oligonucleotide - HIF-1alpha Inhibitor PX-478: - text: HIF-1alpha Inhibitor PX-478 - Docetaxel-loaded Nanopharmaceutical CRLX301: - text: Docetaxel-loaded Nanopharmaceutical CRLX301 - Refametinib: - text: Refametinib - Kanitinib: - text: Kanitinib - Siremadlin: - text: Siremadlin - MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201: - text: MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201 - Interferon Gamma-1b: - text: Interferon Gamma-1b - Tyrosine Kinase Inhibitor TL-895: - text: Tyrosine Kinase Inhibitor TL-895 - Gefitinib: - text: Gefitinib - Anti-TIGIT Monoclonal Antibody COM902: - text: Anti-TIGIT Monoclonal Antibody COM902 - Navicixizumab: - text: Navicixizumab - Anti-EGFR/c-Met Bispecific Antibody EMB-01: - text: Anti-EGFR/c-Met Bispecific Antibody EMB-01 - Padoporfin: - text: Padoporfin - Serine/Threonine Kinase Inhibitor XL418: - text: Serine/Threonine Kinase Inhibitor XL418 - Akt Inhibitor SR13668: - text: Akt Inhibitor SR13668 - Miptenalimab: - text: Miptenalimab - BCG Tokyo-172 Strain Solution: - text: BCG Tokyo-172 Strain Solution - c-Met Inhibitor HS-10241: - text: c-Met Inhibitor HS-10241 - Ladiratuzumab Vedotin: - text: Ladiratuzumab Vedotin - Brivanib Alaninate: - text: Brivanib Alaninate - EGFR Mutant-specific Inhibitor ZN-e4: - text: EGFR Mutant-specific Inhibitor ZN-e4 - MVX-1-loaded Macrocapsule/autologous Tumor Cell Vaccine MVX-ONCO-1: - text: MVX-1-loaded Macrocapsule/autologous Tumor Cell Vaccine MVX-ONCO-1 - 2-Hydroxyoleic Acid: - text: 2-Hydroxyoleic Acid - Inactivated Oncolytic Virus Particle GEN0101: - text: Inactivated Oncolytic Virus Particle GEN0101 - Autologous TCR-engineered T-cells IMA202: - text: Autologous TCR-engineered T-cells IMA202 - Alanosine: - text: Alanosine - Polyandrol: - text: Polyandrol - Sapanisertib: - text: Sapanisertib - Thorium Th 227 Anti-HER2 Monoclonal Antibody BAY2701439: - text: Thorium Th 227 Anti-HER2 Monoclonal Antibody BAY2701439 - Vatalanib: - text: Vatalanib - BRD4 Inhibitor PLX2853: - text: BRD4 Inhibitor PLX2853 - Anti-GITR Agonistic Monoclonal Antibody INCAGN01876: - text: Anti-GITR Agonistic Monoclonal Antibody INCAGN01876 - RORgamma Agonist LYC-55716: - text: RORgamma Agonist LYC-55716 - Anti-B7-H3/DXd Antibody-drug Conjugate DS-7300a: - text: Anti-B7-H3/DXd Antibody-drug Conjugate DS-7300a - Monoclonal Antibody AK002: - text: Monoclonal Antibody AK002 - Iodine I 131 Monoclonal Antibody muJ591: - text: Iodine I 131 Monoclonal Antibody muJ591 - Human Combinatorial Antibody Library-based Monoclonal Antibody VAY736: - text: Human Combinatorial Antibody Library-based Monoclonal Antibody VAY736 - CXCR4 Antagonist USL311: - text: CXCR4 Antagonist USL311 - Opioid Growth Factor: - text: Opioid Growth Factor - PI3K-delta Inhibitor AMG 319: - text: PI3K-delta Inhibitor AMG 319 - PAK4/NAMPT Inhibitor KPT-9274: - text: PAK4/NAMPT Inhibitor KPT-9274 - FLT3 Inhibitor SKI-G-801: - text: FLT3 Inhibitor SKI-G-801 - Anti-LAG-3/PD-L1 Bispecific Antibody FS118: - text: Anti-LAG-3/PD-L1 Bispecific Antibody FS118 - Anti-nf-P2X7 Antibody Ointment BIL-010t: - text: Anti-nf-P2X7 Antibody Ointment BIL-010t - E2F1 Pathway Activator ARQ 171: - text: E2F1 Pathway Activator ARQ 171 - Inosine Monophosphate Dehydrogenase Inhibitor AVN944: - text: Inosine Monophosphate Dehydrogenase Inhibitor AVN944 - Elliptinium Acetate: - text: Elliptinium Acetate - Autologous Multi-lineage Potential Cells: - text: Autologous Multi-lineage Potential Cells - Motesanib Diphosphate: - text: Motesanib Diphosphate - Cintredekin Besudotox: - text: Cintredekin Besudotox - Tecogalan Sodium: - text: Tecogalan Sodium - Sevacizumab: - text: Sevacizumab - Anti-CD70 Monoclonal Antibody MDX-1411: - text: Anti-CD70 Monoclonal Antibody MDX-1411 - Trimetrexate: - text: Trimetrexate - Anti-MUC1 Monoclonal Antibody BTH1704: - text: Anti-MUC1 Monoclonal Antibody BTH1704 - Bizalimogene Ralaplasmid: - text: Bizalimogene Ralaplasmid - RET Mutation/Fusion Inhibitor BLU-667: - text: RET Mutation/Fusion Inhibitor BLU-667 - Dabrafenib: - text: Dabrafenib - Anti-ANG2 Monoclonal Antibody MEDI-3617: - text: Anti-ANG2 Monoclonal Antibody MEDI-3617 - Mevociclib: - text: Mevociclib - Monoclonal Antibody 14G2A: - text: Monoclonal Antibody 14G2A - Metamelfalan: - text: Metamelfalan - Melphalan Flufenamide: - text: Melphalan Flufenamide - Piperazinedione: - text: Piperazinedione - Antineoplastic Vaccine: - text: Antineoplastic Vaccine - CXC Chemokine Receptor 2 Antagonist AZD5069: - text: CXC Chemokine Receptor 2 Antagonist AZD5069 - Tris-acryl Gelatin Microspheres: - text: Tris-acryl Gelatin Microspheres - EGFR/HER2 Inhibitor AV-412: - text: EGFR/HER2 Inhibitor AV-412 - Becatecarin: - text: Becatecarin - Marimastat: - text: Marimastat - Microbiome-derived Peptide Vaccine EO2401: - text: Microbiome-derived Peptide Vaccine EO2401 - Anti-AGS-8 Monoclonal Antibody AGS-8M4: - text: Anti-AGS-8 Monoclonal Antibody AGS-8M4 - Resveratrol: - text: Resveratrol - Carfilzomib: - text: Carfilzomib - Immunomodulatory Agent CC-11006: - text: Immunomodulatory Agent CC-11006 - FLT3/KIT/CSF1R Inhibitor NMS-03592088: - text: FLT3/KIT/CSF1R Inhibitor NMS-03592088 - Rilimogene Galvacirepvec: - text: Rilimogene Galvacirepvec - Plinabulin: - text: Plinabulin - Metarrestin: - text: Metarrestin - Anti-CD47/CD19 Bispecific Monoclonal Antibody TG-1801: - text: Anti-CD47/CD19 Bispecific Monoclonal Antibody TG-1801 - Recombinant Human TRAIL-Trimer Fusion Protein SCB-313: - text: Recombinant Human TRAIL-Trimer Fusion Protein SCB-313 - Ranolazine: - text: Ranolazine - Calcium Saccharate: - text: Calcium Saccharate - Anti-CTLA-4/Anti-PD-1 Monoclonal Antibody Combination BCD-217: - text: Anti-CTLA-4/Anti-PD-1 Monoclonal Antibody Combination BCD-217 - SHP2 Inhibitor JAB-3068: - text: SHP2 Inhibitor JAB-3068 - THL-P: - text: THL-P - Rogaratinib: - text: Rogaratinib - PBN Derivative OKN-007: - text: PBN Derivative OKN-007 - Multi-kinase Inhibitor TPX-0022: - text: Multi-kinase Inhibitor TPX-0022 - Gamma-delta Tocotrienol: - text: Gamma-delta Tocotrienol - Valspodar: - text: Valspodar - 2'-F-ara-deoxyuridine: - text: 2'-F-ara-deoxyuridine - Pamiparib: - text: Pamiparib - Bazlitoran: - text: Bazlitoran - Vandortuzumab Vedotin: - text: Vandortuzumab Vedotin - Allodepleted T Cell Immunotherapeutic ATIR101: - text: Allodepleted T Cell Immunotherapeutic ATIR101 - Tegafur-gimeracil-oteracil Potassium: - text: Tegafur-gimeracil-oteracil Potassium - Anti-PD-1 Monoclonal Antibody 609A: - text: Anti-PD-1 Monoclonal Antibody 609A - Goserelin Acetate Extended-release Microspheres LY01005: - text: Goserelin Acetate Extended-release Microspheres LY01005 - IDO1/TDO2 Inhibitor M4112: - text: IDO1/TDO2 Inhibitor M4112 - Anti-CTLA-4 Monoclonal Antibody ADU-1604: - text: Anti-CTLA-4 Monoclonal Antibody ADU-1604 - FASN Inhibitor TVB-2640: - text: FASN Inhibitor TVB-2640 - Urokinase-Derived Peptide A6: - text: Urokinase-Derived Peptide A6 - Amrubicin Hydrochloride: - text: Amrubicin Hydrochloride - Opaganib: - text: Opaganib - Fumagillin-Derived Polymer Conjugate XMT-1107: - text: Fumagillin-Derived Polymer Conjugate XMT-1107 - 2-Deoxy-D-glucose: - text: 2-Deoxy-D-glucose - Recombinant Humanized Anti-HER-2 Bispecific Monoclonal Antibody MBS301: - text: Recombinant Humanized Anti-HER-2 Bispecific Monoclonal Antibody MBS301 - Simurosertib: - text: Simurosertib - Anti-GITR Monoclonal Antibody MK-4166: - text: Anti-GITR Monoclonal Antibody MK-4166 - Pixantrone Dimaleate: - text: Pixantrone Dimaleate - ERK 1/2 Inhibitor ASTX029: - text: ERK 1/2 Inhibitor ASTX029 - pan-HER Kinase Inhibitor AC480: - text: pan-HER Kinase Inhibitor AC480 - AR Antagonist BMS-641988: - text: AR Antagonist BMS-641988 - EP2/EP4 Antagonist TPST-1495: - text: EP2/EP4 Antagonist TPST-1495 - Inositol: - text: Inositol - Neoantigen-based Therapeutic Cancer Vaccine GRT-R904: - text: Neoantigen-based Therapeutic Cancer Vaccine GRT-R904 - Archexin: - text: Archexin - Anti-CD26 Monoclonal Antibody YS110: - text: Anti-CD26 Monoclonal Antibody YS110 - Anti-IL-13 Humanized Monoclonal Antibody TNX-650: - text: Anti-IL-13 Humanized Monoclonal Antibody TNX-650 - Anti-TIGIT Monoclonal Antibody BGB-A1217: - text: Anti-TIGIT Monoclonal Antibody BGB-A1217 - Ocaratuzumab: - text: Ocaratuzumab - Shu Yu Wan Formula: - text: Shu Yu Wan Formula - Hematoporphyrin Derivative: - text: Hematoporphyrin Derivative - Strontium Chloride Sr-89: - text: Strontium Chloride Sr-89 - Fluorodopan: - text: Fluorodopan - Cannabidiol: - text: Cannabidiol - Ublituximab: - text: Ublituximab - Ras Peptide VAL: - text: Ras Peptide VAL - CBP/beta-catenin Modulator E7386: - text: CBP/beta-catenin Modulator E7386 - 12-Allyldeoxoartemisinin: - text: 12-Allyldeoxoartemisinin - Anti-PD-1 Monoclonal Antibody AMG 404: - text: Anti-PD-1 Monoclonal Antibody AMG 404 - Anti-PSMA/CD28 Bispecific Antibody REGN5678: - text: Anti-PSMA/CD28 Bispecific Antibody REGN5678 - Angiopoietin-2-specific Fusion Protein PF-04856884: - text: Angiopoietin-2-specific Fusion Protein PF-04856884 - Anti-CD3/Anti-GUCY2C Bispecific Antibody PF-07062119: - text: Anti-CD3/Anti-GUCY2C Bispecific Antibody PF-07062119 - Triazinate: - text: Triazinate - Anti-DKK1 Monoclonal Antibody BHQ880: - text: Anti-DKK1 Monoclonal Antibody BHQ880 - Seliciclib: - text: Seliciclib - PI3K-delta Inhibitor INCB050465: - text: PI3K-delta Inhibitor INCB050465 - Piritrexim: - text: Piritrexim - Brostacillin Hydrochloride: - text: Brostacillin Hydrochloride - Trametinib Dimethyl Sulfoxide: - text: Trametinib Dimethyl Sulfoxide - Immunotherapy Regimen MKC-1106-MT: - text: Immunotherapy Regimen MKC-1106-MT - Autologous Anti-CD19/CD22 CAR T-cells AUTO3: - text: Autologous Anti-CD19/CD22 CAR T-cells AUTO3 - Fimaporfin A: - text: Fimaporfin A - Ambazone: - text: Ambazone - Recombinant Saccharomyces Cerevisia-CEA(610D)-Expressing Vaccine GI-6207: - text: Recombinant Saccharomyces Cerevisia-CEA(610D)-Expressing Vaccine GI-6207 - Parvovirus H-1: - text: Parvovirus H-1 - Procarbazine: - text: Procarbazine - Vinflunine Ditartrate: - text: Vinflunine Ditartrate - Oral Docetaxel: - text: Oral Docetaxel - IRAK4 Inhibitor CA-4948: - text: IRAK4 Inhibitor CA-4948 - Ifetroban: - text: Ifetroban - Anti-CD166 Probody-drug Conjugate CX-2009: - text: Anti-CD166 Probody-drug Conjugate CX-2009 - Oncolytic Virus ASP9801: - text: Oncolytic Virus ASP9801 - Cantuzumab Ravtansine: - text: Cantuzumab Ravtansine - siRNA-transfected Peripheral Blood Mononuclear Cells APN401: - text: siRNA-transfected Peripheral Blood Mononuclear Cells APN401 - Retrovector Encoding Mutant Anti-Cyclin G1: - text: Retrovector Encoding Mutant Anti-Cyclin G1 - Cytidine Analog RX-3117: - text: Cytidine Analog RX-3117 - Anti-CD20 Monoclonal Antibody PRO131921: - text: Anti-CD20 Monoclonal Antibody PRO131921 - LMB-9 Immunotoxin: - text: LMB-9 Immunotoxin - Carzelesin: - text: Carzelesin - Anti-CTLA-4 Monoclonal Antibody MK-1308: - text: Anti-CTLA-4 Monoclonal Antibody MK-1308 - Pumitepa: - text: Pumitepa - Paclitaxel Vitamin E-Based Emulsion: - text: Paclitaxel Vitamin E-Based Emulsion - Lenzilumab: - text: Lenzilumab - Amsilarotene: - text: Amsilarotene - Encorafenib: - text: Encorafenib - Anti-CD137 Agonistic Monoclonal Antibody ADG106: - text: Anti-CD137 Agonistic Monoclonal Antibody ADG106 - Talmapimod: - text: Talmapimod - Indomethacin: - text: Indomethacin - Monoclonal Antibody 11D10 Anti-Idiotype Vaccine: - text: Monoclonal Antibody 11D10 Anti-Idiotype Vaccine - MCL-1 inhibitor AMG 397: - text: MCL-1 inhibitor AMG 397 - Carboquone: - text: Carboquone - Allogeneic Anti-BCMA/CS1 Bispecific CAR-T Cells: - text: Allogeneic Anti-BCMA/CS1 Bispecific CAR-T Cells - Monoclonal Antibody IMMU-14: - text: Monoclonal Antibody IMMU-14 - Namirotene: - text: Namirotene - Artemether Sublingual Spray: - text: Artemether Sublingual Spray - MAGE-A3 Peptide Vaccine: - text: MAGE-A3 Peptide Vaccine - Baltaleucel-T: - text: Baltaleucel-T - Ripertamab: - text: Ripertamab - Carboplatin: - text: Carboplatin - Selective Estrogen Receptor Degrader AZD9833: - text: Selective Estrogen Receptor Degrader AZD9833 - Opucolimab: - text: Opucolimab - Mitomycin A: - text: Mitomycin A - IL-2/9/15 Gamma Chain Receptor Inhibitor BNZ-1: - text: IL-2/9/15 Gamma Chain Receptor Inhibitor BNZ-1 - Vistusertib: - text: Vistusertib - Integrin Receptor Antagonist GLPG0187: - text: Integrin Receptor Antagonist GLPG0187 - Ponatinib Hydrochloride: - text: Ponatinib Hydrochloride - Chaparrinone: - text: Chaparrinone - Mivobulin Isethionate: - text: Mivobulin Isethionate - Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells: - text: Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells - R-(-)-Gossypol Acetic Acid: - text: R-(-)-Gossypol Acetic Acid - Apoptosis Inducer GCS-100: - text: Apoptosis Inducer GCS-100 - PI3K-beta Inhibitor SAR260301: - text: PI3K-beta Inhibitor SAR260301 - Glioma Lysate Vaccine GBM6-AD: - text: Glioma Lysate Vaccine GBM6-AD - Modified Vitamin D Binding Protein Macrophage Activator EF-022: - text: Modified Vitamin D Binding Protein Macrophage Activator EF-022 - Hydrocortisone Sodium Succinate: - text: Hydrocortisone Sodium Succinate - Anti-TIM-3 Monoclonal Antibody Sym023: - text: Anti-TIM-3 Monoclonal Antibody Sym023 - iNOS Dimerization Inhibitor ASP9853: - text: iNOS Dimerization Inhibitor ASP9853 - Adenoviral Cancer Vaccine PF-06936308: - text: Adenoviral Cancer Vaccine PF-06936308 - Antibody-drug Conjugate ABBV-155: - text: Antibody-drug Conjugate ABBV-155 - Brostallicin: - text: Brostallicin - Aerosolized Aldesleukin: - text: Aerosolized Aldesleukin - Brivudine: - text: Brivudine - Staurosporine: - text: Staurosporine - Anti-TIM-3 Monoclonal Antibody TSR-022: - text: Anti-TIM-3 Monoclonal Antibody TSR-022 - CK1alpha/CDK7/CDK9 Inhibitor BTX-A51: - text: CK1alpha/CDK7/CDK9 Inhibitor BTX-A51 - Abiraterone Acetate: - text: Abiraterone Acetate - Anti-ENPP3/MMAF Antibody-Drug Conjugate AGS-16M8F: - text: Anti-ENPP3/MMAF Antibody-Drug Conjugate AGS-16M8F - G Protein-coupled Estrogen Receptor Agonist LNS8801: - text: G Protein-coupled Estrogen Receptor Agonist LNS8801 - Androgen Receptor Antagonist BAY 1161116: - text: Androgen Receptor Antagonist BAY 1161116 - Octreotide: - text: Octreotide - Pegylated Recombinant Interleukin-2 THOR-707: - text: Pegylated Recombinant Interleukin-2 THOR-707 - Linoleyl Carbonate-Paclitaxel: - text: Linoleyl Carbonate-Paclitaxel - Tocladesine: - text: Tocladesine - Astuprotimut-R: - text: Astuprotimut-R - Ceralasertib: - text: Ceralasertib - Pyridyl Cyanoguanidine CHS 828: - text: Pyridyl Cyanoguanidine CHS 828 - Anti-CTLA-4 Monoclonal Antibody ADG116: - text: Anti-CTLA-4 Monoclonal Antibody ADG116 - PIM Kinase Inhibitor TP-3654: - text: PIM Kinase Inhibitor TP-3654 - Lipid Nanoparticle Encapsulated OX40L mRNA-2416: - text: Lipid Nanoparticle Encapsulated OX40L mRNA-2416 - Asciminib: - text: Asciminib - CXCR2 Antagonist QBM076: - text: CXCR2 Antagonist QBM076 - pDNA-encoding Emm55 Autologous Cancer Cell Vaccine IFx-Hu2.0: - text: pDNA-encoding Emm55 Autologous Cancer Cell Vaccine IFx-Hu2.0 - Galectin-1 Inhibitor OTX008: - text: Galectin-1 Inhibitor OTX008 - Androgen Receptor Antisense Oligonucleotide AZD5312: - text: Androgen Receptor Antisense Oligonucleotide AZD5312 - Arnebia Indigo Jade Pearl Topical Cream: - text: Arnebia Indigo Jade Pearl Topical Cream - Guanabenz Acetate: - text: Guanabenz Acetate - Anti-CD33/CD3 BiTE Antibody AMG 673: - text: Anti-CD33/CD3 BiTE Antibody AMG 673 - Anti-TGF-beta RII Monoclonal Antibody IMC-TR1: - text: Anti-TGF-beta RII Monoclonal Antibody IMC-TR1 - 9H-Purine-6Thio-98D: - text: 9H-Purine-6Thio-98D - Retinyl Acetate: - text: Retinyl Acetate - Regorafenib: - text: Regorafenib - Recombinant Human Papillomavirus Nonavalent Vaccine: - text: Recombinant Human Papillomavirus Nonavalent Vaccine - Glucarpidase: - text: Glucarpidase - Galectin Inhibitor GR-MD-02: - text: Galectin Inhibitor GR-MD-02 - Troxacitabine Nucleotide Prodrug MIV-818: - text: Troxacitabine Nucleotide Prodrug MIV-818 - Tretinoin Liposome: - text: Tretinoin Liposome - mRNA-derived KRAS-targeted Vaccine V941: - text: mRNA-derived KRAS-targeted Vaccine V941 - KSP Inhibitor AZD4877: - text: KSP Inhibitor AZD4877 - EGFR/EGFRvIII Inhibitor WSD0922-FU: - text: EGFR/EGFRvIII Inhibitor WSD0922-FU - Immune Checkpoint Inhibitor ASP8374: - text: Immune Checkpoint Inhibitor ASP8374 - SMAC Mimetic BI 891065: - text: SMAC Mimetic BI 891065 - Exicorilant: - text: Exicorilant - Prexigebersen: - text: Prexigebersen - Anti-CTGF Monoclonal Antibody FG-3019: - text: Anti-CTGF Monoclonal Antibody FG-3019 - Talotrexin Ammonium: - text: Talotrexin Ammonium - Sodium Metaarsenite: - text: Sodium Metaarsenite - Itacitinib Adipate: - text: Itacitinib Adipate - Pegylated Liposomal Doxorubicin Hydrochloride: - text: Pegylated Liposomal Doxorubicin Hydrochloride - Oral Microencapsulated Diindolylmethane: - text: Oral Microencapsulated Diindolylmethane - Eltanexor: - text: Eltanexor - FGFR Inhibitor ASP5878: - text: FGFR Inhibitor ASP5878 - Rezivertinib: - text: Rezivertinib - Azapicyl: - text: Azapicyl - Synchrovax SEM Plasmid DNA Vaccine: - text: Synchrovax SEM Plasmid DNA Vaccine - Lifileucel: - text: Lifileucel - Racemetyrosine/Methoxsalen/Phenytoin/Sirolimus SM-88: - text: Racemetyrosine/Methoxsalen/Phenytoin/Sirolimus SM-88 - Alvocidib Prodrug TP-1287: - text: Alvocidib Prodrug TP-1287 - IDO1 Inhibitor PF-06840003: - text: IDO1 Inhibitor PF-06840003 - Sapacitabine: - text: Sapacitabine - Anti-CD20/CD3 Monoclonal Antibody XmAb13676: - text: Anti-CD20/CD3 Monoclonal Antibody XmAb13676 - Methazolamide: - text: Methazolamide - Buparlisib: - text: Buparlisib - Ixabepilone: - text: Ixabepilone - Crenolanib Besylate: - text: Crenolanib Besylate - Src Kinase Inhibitor KX2-391 Ointment: - text: Src Kinase Inhibitor KX2-391 Ointment - Poliglusam: - text: Poliglusam - MDM2 Antagonist RO5045337: - text: MDM2 Antagonist RO5045337 - Gonadotropin-releasing Hormone Analog: - text: Gonadotropin-releasing Hormone Analog - Lisocabtagene Maraleucel: - text: Lisocabtagene Maraleucel - CDK4/6 Inhibitor BPI-16350: - text: CDK4/6 Inhibitor BPI-16350 - Peplomycin: - text: Peplomycin - Multi-neo-epitope Vaccine OSE 2101: - text: Multi-neo-epitope Vaccine OSE 2101 - Inulin: - text: Inulin - Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody GBR 1302: - text: Anti-HER2/Anti-CD3 Bispecific Monoclonal Antibody GBR 1302 - Cenersen: - text: Cenersen - Autologous Bi-epitope BCMA-targeted CAR T-cells JNJ-68284528: - text: Autologous Bi-epitope BCMA-targeted CAR T-cells JNJ-68284528 - STING Agonist GSK3745417: - text: STING Agonist GSK3745417 - Anti-LAMP1 Antibody-drug Conjugate SAR428926: - text: Anti-LAMP1 Antibody-drug Conjugate SAR428926 - Monoclonal Antibody F19: - text: Monoclonal Antibody F19 - Carboxyphenyl Retinamide: - text: Carboxyphenyl Retinamide - Anti-CD117 Monoclonal Antibody JSP191: - text: Anti-CD117 Monoclonal Antibody JSP191 - LOXL2 Inhibitor PAT-1251: - text: LOXL2 Inhibitor PAT-1251 - Bosutinib Monohydrate: - text: Bosutinib Monohydrate - Tanespimycin: - text: Tanespimycin - Olivomycin: - text: Olivomycin - Personalized Peptide Cancer Vaccine NEO-PV-01: - text: Personalized Peptide Cancer Vaccine NEO-PV-01 - Monoclonal Antibody 3F8: - text: Monoclonal Antibody 3F8 - Anti-CD352 Antibody-drug Conjugate SGN-CD352A: - text: Anti-CD352 Antibody-drug Conjugate SGN-CD352A - Naxitamab: - text: Naxitamab - Monoclonal Antibody E2.3: - text: Monoclonal Antibody E2.3 - Nanoparticle Albumin-bound Thiocolchicine Dimer nab-5404: - text: Nanoparticle Albumin-bound Thiocolchicine Dimer nab-5404 - Aranose: - text: Aranose - CSF1R Inhibitor PLX73086: - text: CSF1R Inhibitor PLX73086 - Pyrazoloacridine: - text: Pyrazoloacridine - GI-4000 Vaccine: - text: GI-4000 Vaccine - Anti-CD19/CD3 Tetravalent Antibody AFM11: - text: Anti-CD19/CD3 Tetravalent Antibody AFM11 - Tozasertib Lactate: - text: Tozasertib Lactate - Codrituzumab: - text: Codrituzumab - STING Agonist TAK-676: - text: STING Agonist TAK-676 - Labetuzumab Govitecan: - text: Labetuzumab Govitecan - Caracemide: - text: Caracemide - Mitobronitol: - text: Mitobronitol - Synthetic Glioblastoma Mutated Tumor-specific Peptides Vaccine Therapy APVAC2: - text: Synthetic Glioblastoma Mutated Tumor-specific Peptides Vaccine Therapy - APVAC2 - Monoclonal Antibody 11D10: - text: Monoclonal Antibody 11D10 - Tosedostat: - text: Tosedostat - Allogeneic Third-party Suicide Gene-transduced Anti-HLA-DPB1*0401 CD4+ T-cells CTL 19: - text: Allogeneic Third-party Suicide Gene-transduced Anti-HLA-DPB1*0401 CD4+ - T-cells CTL 19 - Flotetuzumab: - text: Flotetuzumab - BMS-275183: - text: BMS-275183 - Mosunetuzumab: - text: Mosunetuzumab - PD-L1 Inhibitor GS-4224: - text: PD-L1 Inhibitor GS-4224 - VEGF/HGF-targeting DARPin MP0250: - text: VEGF/HGF-targeting DARPin MP0250 - HIF-2alpha Inhibitor PT2385: - text: HIF-2alpha Inhibitor PT2385 - Mitolactol: - text: Mitolactol - Aerosolized Liposomal Rubitecan: - text: Aerosolized Liposomal Rubitecan - Recombinant Transforming Growth Factor-Beta-2: - text: Recombinant Transforming Growth Factor-Beta-2 - Folic Acid: - text: Folic Acid - Sonolisib: - text: Sonolisib - Rivoceranib Mesylate: - text: Rivoceranib Mesylate - Arugula Seed Powder: - text: Arugula Seed Powder - Interferon Alfa-N1: - text: Interferon Alfa-N1 - Oral Fludarabine Phosphate: - text: Oral Fludarabine Phosphate - Anti-EGP-2 Immunotoxin MOC31-PE: - text: Anti-EGP-2 Immunotoxin MOC31-PE - Oncolytic HSV-1 NV1020: - text: Oncolytic HSV-1 NV1020 - Herbimycin: - text: Herbimycin - ER alpha Proteolysis-targeting Chimera Protein Degrader ARV-471: - text: ER alpha Proteolysis-targeting Chimera Protein Degrader ARV-471 - Inebilizumab: - text: Inebilizumab - Dexamethasone: - text: Dexamethasone - Cytarabine: - text: Cytarabine - Fluvastatin: - text: Fluvastatin - Pan-FGFR Inhibitor LY2874455: - text: Pan-FGFR Inhibitor LY2874455 - Brontictuzumab: - text: Brontictuzumab - ALK/c-Met Inhibitor TQ-B3139: - text: ALK/c-Met Inhibitor TQ-B3139 - Alpha-Gal AGI-134: - text: Alpha-Gal AGI-134 - Trastuzumab Conjugate BI-CON-02: - text: Trastuzumab Conjugate BI-CON-02 - PI3K/mTORC1/mTORC2 Inhibitor DCBCI0901: - text: PI3K/mTORC1/mTORC2 Inhibitor DCBCI0901 - Akt Inhibitor MK2206: - text: Akt Inhibitor MK2206 - Selpercatinib: - text: Selpercatinib - Pegylated Liposomal Belotecan: - text: Pegylated Liposomal Belotecan - Capmatinib: - text: Capmatinib - Monoclonal Antibody muJ591: - text: Monoclonal Antibody muJ591 - Theramide: - text: Theramide - S-equol: - text: S-equol - Duborimycin: - text: Duborimycin - Pioglitazone Hydrochloride: - text: Pioglitazone Hydrochloride - IGF-1R Inhibitor PL225B: - text: IGF-1R Inhibitor PL225B - PI3K p110beta/delta Inhibitor KA2237: - text: PI3K p110beta/delta Inhibitor KA2237 - Paclitaxel Ceribate: - text: Paclitaxel Ceribate - Tolnidamine: - text: Tolnidamine - Rogletimide: - text: Rogletimide - Algenpantucel-L: - text: Algenpantucel-L - Idronoxil: - text: Idronoxil - Cyclosporine: - text: Cyclosporine - ALK-FAK Inhibitor CEP-37440: - text: ALK-FAK Inhibitor CEP-37440 - Vintafolide: - text: Vintafolide - Anti-EGFR Monoclonal Antibody GT-MAB 5.2-GEX: - text: Anti-EGFR Monoclonal Antibody GT-MAB 5.2-GEX - Dendritic Cell-targeting Lentiviral Vector ID-LV305: - text: Dendritic Cell-targeting Lentiviral Vector ID-LV305 - RFT5-dgA Immunotoxin IMTOX25: - text: RFT5-dgA Immunotoxin IMTOX25 - Tretinoin: - text: Tretinoin - Gandotinib: - text: Gandotinib - Mitotenamine: - text: Mitotenamine - Brivudine Phosphoramidate: - text: Brivudine Phosphoramidate - Carlumab: - text: Carlumab - Anti-BCMA Antibody-drug Conjugate CC-99712: - text: Anti-BCMA Antibody-drug Conjugate CC-99712 - Cibisatamab: - text: Cibisatamab - Allogeneic Natural Killer Cell Line NK-92: - text: Allogeneic Natural Killer Cell Line NK-92 - Adenosine A2A Receptor Antagonist/Phosphodiesterase 10A PBF-999: - text: Adenosine A2A Receptor Antagonist/Phosphodiesterase 10A PBF-999 - Daunorubicin: - text: Daunorubicin - PARP/Tankyrase Inhibitor 2X-121: - text: PARP/Tankyrase Inhibitor 2X-121 - Capecitabine Rapidly Disintegrating Tablet: - text: Capecitabine Rapidly Disintegrating Tablet - Combretastatin A-1: - text: Combretastatin A-1 - Receptor Tyrosine Kinase Inhibitor R1530: - text: Receptor Tyrosine Kinase Inhibitor R1530 - Nimotuzumab: - text: Nimotuzumab - Deslorelin: - text: Deslorelin - Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143: - text: Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143 - Amblyomin-X: - text: Amblyomin-X - Trastuzumab Emtansine: - text: Trastuzumab Emtansine - Guselkumab: - text: Guselkumab - Copanlisib Hydrochloride: - text: Copanlisib Hydrochloride - Anthrapyrazole: - text: Anthrapyrazole - Lenvatinib: - text: Lenvatinib - Recombinant Interleukin-18: - text: Recombinant Interleukin-18 - ALK Inhibitor TAE684: - text: ALK Inhibitor TAE684 - Ilixadencel: - text: Ilixadencel - PARP Inhibitor AZD2461: - text: PARP Inhibitor AZD2461 - Adenoviral PSA Vaccine ETBX-071: - text: Adenoviral PSA Vaccine ETBX-071 - 3'-C-ethynylcytidine: - text: 3'-C-ethynylcytidine - Daporinad: - text: Daporinad - Parsaclisib Hydrochloride: - text: Parsaclisib Hydrochloride - Ruxolitinib Phosphate: - text: Ruxolitinib Phosphate - CDK Inhibitor AT7519: - text: CDK Inhibitor AT7519 - Anti-EGFR Monoclonal Antibody HLX-07: - text: Anti-EGFR Monoclonal Antibody HLX-07 - Elliptinium: - text: Elliptinium - DNMT1 Mixed-Backbone Antisense Oligonucleotide MG 98: - text: DNMT1 Mixed-Backbone Antisense Oligonucleotide MG 98 - Ruthenium-based Small Molecule Therapeutic BOLD-100: - text: Ruthenium-based Small Molecule Therapeutic BOLD-100 - Mibefradil Dihydrochloride: - text: Mibefradil Dihydrochloride - USP14/UCHL5 Inhibitor VLX1570: - text: USP14/UCHL5 Inhibitor VLX1570 - Landogrozumab: - text: Landogrozumab - Talactoferrin Alfa: - text: Talactoferrin Alfa - Dynemicin: - text: Dynemicin - Pelitrexol: - text: Pelitrexol - Anti-gpA33/CD3 Monoclonal Antibody MGD007: - text: Anti-gpA33/CD3 Monoclonal Antibody MGD007 - Porcupine Inhibitor RXC004: - text: Porcupine Inhibitor RXC004 - c-Met Inhibitor AMG 208: - text: c-Met Inhibitor AMG 208 - Plicamycin: - text: Plicamycin - BCMA x CD3 T-cell Engaging Antibody CC-93269: - text: BCMA x CD3 T-cell Engaging Antibody CC-93269 - MEK Inhibitor HL-085: - text: MEK Inhibitor HL-085 - Rhenium Re-188 Ethiodized Oil: - text: Rhenium Re-188 Ethiodized Oil - Ofatumumab: - text: Ofatumumab - Trastuzumab Deruxtecan: - text: Trastuzumab Deruxtecan - Eftozanermin Alfa: - text: Eftozanermin Alfa - Crolibulin: - text: Crolibulin - Indusatumab Vedotin: - text: Indusatumab Vedotin - CDC7 Inhibitor TAK-931: - text: CDC7 Inhibitor TAK-931 - Laetrile: - text: Laetrile - Ropidoxuridine: - text: Ropidoxuridine - Liposome-encapsulated RB94 Plasmid DNA Gene Therapy Agent SGT-94: - text: Liposome-encapsulated RB94 Plasmid DNA Gene Therapy Agent SGT-94 - Mitozolomide: - text: Mitozolomide - Autologous CRISPR-edited Anti-CD19 CAR T Cells XYF19: - text: Autologous CRISPR-edited Anti-CD19 CAR T Cells XYF19 - Balstilimab: - text: Balstilimab - Siplizumab: - text: Siplizumab - Retaspimycin: - text: Retaspimycin - Spanlecortemlocel: - text: Spanlecortemlocel - Uncaria tomentosa Extract: - text: Uncaria tomentosa Extract - Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and CD8+ T-cells FH-MCVA2TCR: - text: Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and - CD8+ T-cells FH-MCVA2TCR - CDK2/4/6/FLT3 Inhibitor FN-1501: - text: CDK2/4/6/FLT3 Inhibitor FN-1501 - Foslinanib Disodium: - text: Foslinanib Disodium - MDM2 Antagonist ASTX295: - text: MDM2 Antagonist ASTX295 - Anti-alpha BCMA/Anti-alpha CD3 T-cell Engaging Bispecific Antibody TNB-383B: - text: Anti-alpha BCMA/Anti-alpha CD3 T-cell Engaging Bispecific Antibody TNB-383B - EZH2 inhibitor CPI-0209: - text: EZH2 inhibitor CPI-0209 - Liposomal Eribulin Mesylate: - text: Liposomal Eribulin Mesylate - Dactolisib: - text: Dactolisib - Anti-PD-1 Monoclonal Antibody SCT-I10A: - text: Anti-PD-1 Monoclonal Antibody SCT-I10A - Copper Gluconate: - text: Copper Gluconate - Golotimod: - text: Golotimod - ncmtRNA Oligonucleotide Andes-1537: - text: ncmtRNA Oligonucleotide Andes-1537 - SIRPa-4-1BBL Fusion Protein DSP107: - text: SIRPa-4-1BBL Fusion Protein DSP107 - Fosquidone: - text: Fosquidone - Dienogest: - text: Dienogest - HPV16 L2/E6/E7 Fusion Protein Vaccine TA-CIN: - text: HPV16 L2/E6/E7 Fusion Protein Vaccine TA-CIN - Therapeutic Cancer Vaccine ATP128: - text: Therapeutic Cancer Vaccine ATP128 - Adenoviral Tumor-specific Neoantigen Priming Vaccine GAd-209-FSP: - text: Adenoviral Tumor-specific Neoantigen Priming Vaccine GAd-209-FSP - Etoprine: - text: Etoprine - Azotomycin: - text: Azotomycin - Lexatumumab: - text: Lexatumumab - Aminocamptothecin Colloidal Dispersion: - text: Aminocamptothecin Colloidal Dispersion - FGFR4 Inhibitor FGF401: - text: FGFR4 Inhibitor FGF401 - Parsatuzumab: - text: Parsatuzumab - ALK-2 Inhibitor TP-0184: - text: ALK-2 Inhibitor TP-0184 - Molibresib Besylate: - text: Molibresib Besylate - Liposomal SN-38: - text: Liposomal SN-38 - Nedaplatin: - text: Nedaplatin - Atiprimod Dimaleate: - text: Atiprimod Dimaleate - Iodine I 131 Omburtamab: - text: Iodine I 131 Omburtamab - Src Kinase Inhibitor KX2-391: - text: Src Kinase Inhibitor KX2-391 - Alkotinib: - text: Alkotinib - Lutetium Lu-177 Rituximab: - text: Lutetium Lu-177 Rituximab - Anti-TIGIT Monoclonal Antibody OMP-313M32: - text: Anti-TIGIT Monoclonal Antibody OMP-313M32 - Prednisone: - text: Prednisone - Aurora Kinase Inhibitor AMG 900: - text: Aurora Kinase Inhibitor AMG 900 - Liposomal Daunorubicin Citrate: - text: Liposomal Daunorubicin Citrate - Pamrevlumab: - text: Pamrevlumab - Recombinant Tumor Necrosis Factor-Alpha: - text: Recombinant Tumor Necrosis Factor-Alpha - Transferrin Receptor-Targeted Liposomal p53 cDNA: - text: Transferrin Receptor-Targeted Liposomal p53 cDNA - Glembatumumab Vedotin: - text: Glembatumumab Vedotin - CD73 Inhibitor LY3475070: - text: CD73 Inhibitor LY3475070 - Plozalizumab: - text: Plozalizumab - Oncolytic HSV-1 C134: - text: Oncolytic HSV-1 C134 - WT1 Peptide Vaccine WT2725: - text: WT1 Peptide Vaccine WT2725 - Solitomab: - text: Solitomab - Nagrestipen: - text: Nagrestipen - Zelavespib: - text: Zelavespib - Thymopentin: - text: Thymopentin - Doxorubicin-Magnetic Targeted Carrier Complex: - text: Doxorubicin-Magnetic Targeted Carrier Complex - Autologous Deep IL-15 Primed T-cells TRQ15-01: - text: Autologous Deep IL-15 Primed T-cells TRQ15-01 - Lisavanbulin: - text: Lisavanbulin - CDK/JAK2/FLT3 Inhibitor TG02 Citrate: - text: CDK/JAK2/FLT3 Inhibitor TG02 Citrate - Engineered Toxin Body Targeting HER2 MT-5111: - text: Engineered Toxin Body Targeting HER2 MT-5111 - Marcellomycin: - text: Marcellomycin - TLC ELL-12: - text: TLC ELL-12 - Nanoparticle Albumin-Bound Rapamycin: - text: Nanoparticle Albumin-Bound Rapamycin - Etidronate-Cytarabine Conjugate MBC-11: - text: Etidronate-Cytarabine Conjugate MBC-11 - CD28/ICOS Antagonist ALPN-101: - text: CD28/ICOS Antagonist ALPN-101 - Isatuximab: - text: Isatuximab - Micro Needle Array-Doxorubicin: - text: Micro Needle Array-Doxorubicin - Testosterone Enanthate: - text: Testosterone Enanthate - Abiraterone: - text: Abiraterone - DM4-Conjugated Anti-Cripto Monoclonal Antibody BIIB015: - text: DM4-Conjugated Anti-Cripto Monoclonal Antibody BIIB015 - Broccoli Sprout/Broccoli Seed Extract Supplement: - text: Broccoli Sprout/Broccoli Seed Extract Supplement - HPPH: - text: HPPH - Tigatuzumab: - text: Tigatuzumab - Sotrastaurin: - text: Sotrastaurin - Cisplatin/Vinblastine/Cell Penetration Enhancer Formulation INT230-6: - text: Cisplatin/Vinblastine/Cell Penetration Enhancer Formulation INT230-6 - Bendamustine Hydrochloride: - text: Bendamustine Hydrochloride - MVA-FCU1 TG4023: - text: MVA-FCU1 TG4023 - Cetuximab Sarotalocan: - text: Cetuximab Sarotalocan - Anti-EGFR Monoclonal Antibody GC1118: - text: Anti-EGFR Monoclonal Antibody GC1118 - Methoxsalen: - text: Methoxsalen - Interferon-gamma-expressing Adenovirus Vaccine ASN-002: - text: Interferon-gamma-expressing Adenovirus Vaccine ASN-002 - Anti-Ep-CAM Monoclonal Antibody ING-1: - text: Anti-Ep-CAM Monoclonal Antibody ING-1 - Gamma-Secretase Inhibitor RO4929097: - text: Gamma-Secretase Inhibitor RO4929097 - Platinum Compound: - text: Platinum Compound - Pexastimogene Devacirepvec: - text: Pexastimogene Devacirepvec - mTORC1/mTORC2/DHFR Inhibitor ABTL0812: - text: mTORC1/mTORC2/DHFR Inhibitor ABTL0812 - Cantrixil: - text: Cantrixil - Aurora B Serine/Threonine Kinase Inhibitor TAK-901: - text: Aurora B Serine/Threonine Kinase Inhibitor TAK-901 - Plk1 Inhibitor BI 2536: - text: Plk1 Inhibitor BI 2536 - Protease-activated Anti-PD-L1 Antibody Prodrug CX-072: - text: Protease-activated Anti-PD-L1 Antibody Prodrug CX-072 - Enzalutamide: - text: Enzalutamide - Canertinib Dihydrochloride: - text: Canertinib Dihydrochloride - Monoclonal T-cell Receptor Anti-CD3 scFv Fusion Protein IMCgp100: - text: Monoclonal T-cell Receptor Anti-CD3 scFv Fusion Protein IMCgp100 - Chromomycin A3: - text: Chromomycin A3 - Mycobacterium w: - text: Mycobacterium w - Anti-Myeloma Monoclonal Antibody-DM4 Immunoconjugate BT-062: - text: Anti-Myeloma Monoclonal Antibody-DM4 Immunoconjugate BT-062 - Transdermal 17beta-Estradiol Gel BHR-200: - text: Transdermal 17beta-Estradiol Gel BHR-200 - BET Inhibitor RO6870810: - text: BET Inhibitor RO6870810 - Reparixin: - text: Reparixin - Class 1/4 Histone Deacetylase Inhibitor OKI-179: - text: Class 1/4 Histone Deacetylase Inhibitor OKI-179 - BRAF(V600E) Kinase Inhibitor RO5212054: - text: BRAF(V600E) Kinase Inhibitor RO5212054 - Lyophilized Black Raspberry Saliva Substitute: - text: Lyophilized Black Raspberry Saliva Substitute - MEK 1/2 Inhibitor FCN-159: - text: MEK 1/2 Inhibitor FCN-159 - PGLA/PEG Copolymer-Based Paclitaxel: - text: PGLA/PEG Copolymer-Based Paclitaxel - Sepantronium Bromide: - text: Sepantronium Bromide - Anti-CD205 Antibody-drug Conjugate OBT076: - text: Anti-CD205 Antibody-drug Conjugate OBT076 - Cabozantinib: - text: Cabozantinib - Anti-HER3 Monoclonal Antibody GSK2849330: - text: Anti-HER3 Monoclonal Antibody GSK2849330 - Dexrazoxane Hydrochloride: - text: Dexrazoxane Hydrochloride - Recombinant Interferon Alpha 2b-like Protein: - text: Recombinant Interferon Alpha 2b-like Protein - Dual Variable Domain Immunoglobulin ABT-165: - text: Dual Variable Domain Immunoglobulin ABT-165 - Anti-PD-L1/IL-15 Fusion Protein KD033: - text: Anti-PD-L1/IL-15 Fusion Protein KD033 - FAP/4-1BB-targeting DARPin MP0310: - text: FAP/4-1BB-targeting DARPin MP0310 - Dalotuzumab: - text: Dalotuzumab - Flt3 Ligand/Anti-CTLA-4 Antibody/IL-12 Engineered Oncolytic Vaccinia Virus RIVAL-01: - text: Flt3 Ligand/Anti-CTLA-4 Antibody/IL-12 Engineered Oncolytic Vaccinia - Virus RIVAL-01 - Anti-CD19/CD22 CAR NK Cells: - text: Anti-CD19/CD22 CAR NK Cells - mRNA-derived Prostate Cancer Vaccine CV9104: - text: mRNA-derived Prostate Cancer Vaccine CV9104 - Pazopanib: - text: Pazopanib - Apoptosis Inducer MPC-2130: - text: Apoptosis Inducer MPC-2130 - Anti-SLITRK6 Monoclonal Antibody-MMAE Conjugate AGS15E: - text: Anti-SLITRK6 Monoclonal Antibody-MMAE Conjugate AGS15E - Anakinra: - text: Anakinra - Octreotide Pamoate: - text: Octreotide Pamoate - Anti-human GITR Monoclonal Antibody TRX518: - text: Anti-human GITR Monoclonal Antibody TRX518 - DNA-PK/TOR Kinase Inhibitor CC-115: - text: DNA-PK/TOR Kinase Inhibitor CC-115 - Anti-PD-1/VEGF Bispecific Antibody AK112: - text: Anti-PD-1/VEGF Bispecific Antibody AK112 - Vinorelbine: - text: Vinorelbine - Histrelin Acetate: - text: Histrelin Acetate - IGF-1R/IR Inhibitor KW-2450: - text: IGF-1R/IR Inhibitor KW-2450 - Double-armed TMZ-CD40L/4-1BBL Oncolytic Ad5/35 Adenovirus LOAd703: - text: Double-armed TMZ-CD40L/4-1BBL Oncolytic Ad5/35 Adenovirus LOAd703 - AEE788: - text: AEE788 - Naquotinib: - text: Naquotinib - Ketotrexate: - text: Ketotrexate - Nelipepimut-S Plus GM-CSF Vaccine: - text: Nelipepimut-S Plus GM-CSF Vaccine - CDK7 Inhibitor SY-1365: - text: CDK7 Inhibitor SY-1365 - FMS Inhibitor JNJ-40346527: - text: FMS Inhibitor JNJ-40346527 - Almurtide: - text: Almurtide - Brivanib: - text: Brivanib - Anti-RANKL Monoclonal Antibody JMT103: - text: Anti-RANKL Monoclonal Antibody JMT103 - CDK1 Inhibitor BEY1107: - text: CDK1 Inhibitor BEY1107 - Binetrakin: - text: Binetrakin - Gatipotuzumab: - text: Gatipotuzumab - Anti-CD30/DM1 Antibody-drug Conjugate F0002: - text: Anti-CD30/DM1 Antibody-drug Conjugate F0002 - 4-Nitroestrone 3-Methyl Ether: - text: 4-Nitroestrone 3-Methyl Ether - Medorubicin: - text: Medorubicin - LMB-1 Immunotoxin: - text: LMB-1 Immunotoxin - Samrotamab Vedotin: - text: Samrotamab Vedotin - Topotecan Hydrochloride: - text: Topotecan Hydrochloride - 2-Ethylhydrazide: - text: 2-Ethylhydrazide - Azurin:50-77 Cell Penetrating Peptide p28: - text: Azurin:50-77 Cell Penetrating Peptide p28 - Anti-CD122 Humanized Monoclonal Antibody Mik-Beta-1: - text: Anti-CD122 Humanized Monoclonal Antibody Mik-Beta-1 - Ciforadenant: - text: Ciforadenant - NA17-A Antigen: - text: NA17-A Antigen - Phenesterin: - text: Phenesterin - Empesertib: - text: Empesertib - Azacitidine: - text: Azacitidine - Eicosapentaenoic Acid: - text: Eicosapentaenoic Acid - Imiquimod: - text: Imiquimod - Linifanib: - text: Linifanib - Tergenpumatucel-L: - text: Tergenpumatucel-L - Tremelimumab: - text: Tremelimumab - Wee1 Inhibitor ZN-c3: - text: Wee1 Inhibitor ZN-c3 - PIM/FLT3 Kinase Inhibitor SEL24: - text: PIM/FLT3 Kinase Inhibitor SEL24 - Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic T Lymphocytes GRm13Z40-2: - text: Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic - T Lymphocytes GRm13Z40-2 - FLT3/CDK4/6 Inhibitor FLX925: - text: FLT3/CDK4/6 Inhibitor FLX925 - Anti-HER2 Antibody-drug Conjugate RC48: - text: Anti-HER2 Antibody-drug Conjugate RC48 - Autologous Anti-CD19 CAR-4-1BB-CD3zeta-expressing T-cells CNCT19: - text: Autologous Anti-CD19 CAR-4-1BB-CD3zeta-expressing T-cells CNCT19 - Taltobulin: - text: Taltobulin - Felzartamab: - text: Felzartamab - Triazene Derivative TriN2755: - text: Triazene Derivative TriN2755 - Glutaminase Inhibitor CB-839: - text: Glutaminase Inhibitor CB-839 - Lorukafusp alfa: - text: Lorukafusp alfa - Anti-HER2 Monoclonal Antibody HLX22: - text: Anti-HER2 Monoclonal Antibody HLX22 - Dicycloplatin: - text: Dicycloplatin - Gimeracil: - text: Gimeracil - Ovapuldencel-T: - text: Ovapuldencel-T - CYP17 Inhibitor CFG920: - text: CYP17 Inhibitor CFG920 - Idarubicin Hydrochloride: - text: Idarubicin Hydrochloride - Glyco-engineered Anti-CD20 Monoclonal Antibody CHO H01: - text: Glyco-engineered Anti-CD20 Monoclonal Antibody CHO H01 - Alestramustine: - text: Alestramustine - Lazertinib: - text: Lazertinib - Wee1 Kinase Inhibitor Debio 0123: - text: Wee1 Kinase Inhibitor Debio 0123 - Anti-CEACAM6 AFAIKL2 Antibody Fragment/Jack Bean Urease Immunoconjugate L-DOS47: - text: Anti-CEACAM6 AFAIKL2 Antibody Fragment/Jack Bean Urease Immunoconjugate - L-DOS47 - Prostaglandin E2 EP4 Receptor Inhibitor E7046: - text: Prostaglandin E2 EP4 Receptor Inhibitor E7046 - Anti-myostatin Monoclonal Antibody LY2495655: - text: Anti-myostatin Monoclonal Antibody LY2495655 - 4-Thio-2-deoxycytidine: - text: 4-Thio-2-deoxycytidine - Oligo-fucoidan: - text: Oligo-fucoidan - Dolastatin 15: - text: Dolastatin 15 - Tisagenlecleucel: - text: Tisagenlecleucel - Liothyronine I-131: - text: Liothyronine I-131 - Noscapine: - text: Noscapine - Anti-CD20/Anti-CD3 Bispecific IgM Antibody IGM2323: - text: Anti-CD20/Anti-CD3 Bispecific IgM Antibody IGM2323 - Tertomotide: - text: Tertomotide - Alpha V Beta 8 Antagonist PF-06940434: - text: Alpha V Beta 8 Antagonist PF-06940434 - Ricolinostat: - text: Ricolinostat - Anti-CD137 Agonistic Monoclonal Antibody AGEN2373: - text: Anti-CD137 Agonistic Monoclonal Antibody AGEN2373 - Zanubrutinib: - text: Zanubrutinib - Topsalysin: - text: Topsalysin - STAT Inhibitor OPB-111077: - text: STAT Inhibitor OPB-111077 - Interleukin-12-Fc Fusion Protein DF6002: - text: Interleukin-12-Fc Fusion Protein DF6002 - S-Adenosylmethionine: - text: S-Adenosylmethionine - Yttrium Y 90 Monoclonal Antibody BrE-3: - text: Yttrium Y 90 Monoclonal Antibody BrE-3 - Esorubicin Hydrochloride: - text: Esorubicin Hydrochloride - Nadofaragene Firadenovec: - text: Nadofaragene Firadenovec - Fosaprepitant: - text: Fosaprepitant - Anti-ErbB3 Monoclonal Antibody AV-203: - text: Anti-ErbB3 Monoclonal Antibody AV-203 - Interleukin-15/Interleukin-15 Receptor Alpha Sushi+ Domain Fusion Protein SO-C101: - text: Interleukin-15/Interleukin-15 Receptor Alpha Sushi+ Domain Fusion Protein - SO-C101 - FGFR Inhibitor AZD4547: - text: FGFR Inhibitor AZD4547 - Transferrin-CRM107: - text: Transferrin-CRM107 - Midostaurin: - text: Midostaurin - Dacomitinib: - text: Dacomitinib - PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701: - text: PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701 - Doxorubicin Prodrug L-377,202: - text: Doxorubicin Prodrug L-377,202 - Manelimab: - text: Manelimab - Live-Attenuated Listeria Encoding Human Mesothelin Vaccine CRS-207: - text: Live-Attenuated Listeria Encoding Human Mesothelin Vaccine CRS-207 - Recombinant Interleukin-2: - text: Recombinant Interleukin-2 - Multi-epitope HER2 Peptide Vaccine TPIV100: - text: Multi-epitope HER2 Peptide Vaccine TPIV100 - Boronophenylalanine-Fructose Complex: - text: Boronophenylalanine-Fructose Complex - Sugemalimab: - text: Sugemalimab - Seocalcitol: - text: Seocalcitol - Synthetic Long E6 Peptide-Toll-like Receptor Ligand Conjugate Vaccine ISA201: - text: Synthetic Long E6 Peptide-Toll-like Receptor Ligand Conjugate Vaccine - ISA201 - Goserelin: - text: Goserelin - IGF-1R Inhibitor: - text: IGF-1R Inhibitor - Depatuxizumab Mafodotin: - text: Depatuxizumab Mafodotin - Tebentafusp: - text: Tebentafusp - Autologous Tetravalent Dendritic Cell Vaccine MIDRIX4-LUNG: - text: Autologous Tetravalent Dendritic Cell Vaccine MIDRIX4-LUNG - Sotigalimab: - text: Sotigalimab - PKA Regulatory Subunit RIalpha Mixed-Backbone Antisense Oligonucleotide GEM 231: - text: PKA Regulatory Subunit RIalpha Mixed-Backbone Antisense Oligonucleotide - GEM 231 - Birinapant: - text: Birinapant - pan FGFR Inhibitor PRN1371: - text: pan FGFR Inhibitor PRN1371 - Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1: - text: Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1 - HER2 Tri-specific Natural Killer Cell Engager DF1001: - text: HER2 Tri-specific Natural Killer Cell Engager DF1001 - Tiomolibdate Choline: - text: Tiomolibdate Choline - Nucleolin Antagonist IPP-204106N: - text: Nucleolin Antagonist IPP-204106N - Vindesine: - text: Vindesine - Ras Inhibitor: - text: Ras Inhibitor - Motexafin Gadolinium: - text: Motexafin Gadolinium - Nab-paclitaxel: - text: Nab-paclitaxel - Trastuzumab Duocarmazine: - text: Trastuzumab Duocarmazine - Fotemustine: - text: Fotemustine - Anti-CD39 Monoclonal Antibody TTX-030: - text: Anti-CD39 Monoclonal Antibody TTX-030 - Paclitaxel-Loaded Polymeric Micelle: - text: Paclitaxel-Loaded Polymeric Micelle - Anti-sCLU Monoclonal Antibody AB-16B5: - text: Anti-sCLU Monoclonal Antibody AB-16B5 - ALK/ROS1/Met Inhibitor TQ-B3101: - text: ALK/ROS1/Met Inhibitor TQ-B3101 - Picoplatin: - text: Picoplatin - EGFR/HER1/HER2 Inhibitor PKI166: - text: EGFR/HER1/HER2 Inhibitor PKI166 - CDK4/6 Inhibitor HS-10342: - text: CDK4/6 Inhibitor HS-10342 - BMS-214662: - text: BMS-214662 - Yttrium Y 90-DOTA-di-HSG Peptide IMP-288: - text: Yttrium Y 90-DOTA-di-HSG Peptide IMP-288 - V930 Vaccine: - text: V930 Vaccine - Ad-RTS-hIL-12: - text: Ad-RTS-hIL-12 - Autologous AXL-targeted CAR T-cells CCT301-38: - text: Autologous AXL-targeted CAR T-cells CCT301-38 - Mitosis Inhibitor T 1101 Tosylate: - text: Mitosis Inhibitor T 1101 Tosylate - Anaxirone: - text: Anaxirone - Carubicin: - text: Carubicin - Anti-ICOS Agonist Monoclonal Antibody BMS-986226: - text: Anti-ICOS Agonist Monoclonal Antibody BMS-986226 - HPV-16 E6 Peptides Vaccine/Candida albicans Extract: - text: HPV-16 E6 Peptides Vaccine/Candida albicans Extract - Eg5 Kinesin-Related Motor Protein Inhibitor ARQ 621: - text: Eg5 Kinesin-Related Motor Protein Inhibitor ARQ 621 - Glecaprevir/Pibrentasvir: - text: Glecaprevir/Pibrentasvir - Extended-release Onapristone: - text: Extended-release Onapristone - PEOX-based Polymer Encapsulated Paclitaxel FID-007: - text: PEOX-based Polymer Encapsulated Paclitaxel FID-007 - PI3Kalpha Inhibitor AZD8835: - text: PI3Kalpha Inhibitor AZD8835 - Tipiracil Hydrochloride: - text: Tipiracil Hydrochloride - Rosiglitazone Maleate: - text: Rosiglitazone Maleate - Osimertinib: - text: Osimertinib - EZH2 Inhibitor CPI-1205: - text: EZH2 Inhibitor CPI-1205 - GS/pan-Notch Inhibitor BMS-986115: - text: GS/pan-Notch Inhibitor BMS-986115 - Tyrosine Kinase Inhibitor OSI-930: - text: Tyrosine Kinase Inhibitor OSI-930 - Anti-CD38 Monoclonal Antibody MOR03087: - text: Anti-CD38 Monoclonal Antibody MOR03087 - HDAC Inhibitor CKD-581: - text: HDAC Inhibitor CKD-581 - PI3K Inhibitor GDC-0084: - text: PI3K Inhibitor GDC-0084 - Otlertuzumab: - text: Otlertuzumab - PI3Kbeta Inhibitor AZD8186: - text: PI3Kbeta Inhibitor AZD8186 - C-VISA BikDD:Liposome: - text: C-VISA BikDD:Liposome - Recombinant Adenovirus-p53 SCH-58500: - text: Recombinant Adenovirus-p53 SCH-58500 - Clodronate Disodium: - text: Clodronate Disodium - Mitindomide: - text: Mitindomide - Isocoumarin NM-3: - text: Isocoumarin NM-3 - EGFR/HER2 Kinase Inhibitor TAK-285: - text: EGFR/HER2 Kinase Inhibitor TAK-285 - Sulindac: - text: Sulindac - Balixafortide: - text: Balixafortide - Apoptosis Inducer BZL101: - text: Apoptosis Inducer BZL101 - Ibrutinib: - text: Ibrutinib - IAP Inhibitor APG-1387: - text: IAP Inhibitor APG-1387 - Pegfilgrastim: - text: Pegfilgrastim - Foretinib: - text: Foretinib - Prostate Health Cocktail Dietary Supplement: - text: Prostate Health Cocktail Dietary Supplement - PEP-3-KLH Conjugate Vaccine: - text: PEP-3-KLH Conjugate Vaccine - NAMPT Inhibitor OT-82: - text: NAMPT Inhibitor OT-82 - Viagenpumatucel-L: - text: Viagenpumatucel-L - BRD4 Inhibitor PLX51107: - text: BRD4 Inhibitor PLX51107 - Yttrium Y 90 Monoclonal Antibody Hu3S193: - text: Yttrium Y 90 Monoclonal Antibody Hu3S193 - Multikinase Inhibitor AEE788: - text: Multikinase Inhibitor AEE788 - Risperidone Formulation in Rumenic Acid: - text: Risperidone Formulation in Rumenic Acid - Topixantrone: - text: Topixantrone - Nanafrocin: - text: Nanafrocin - Volociximab: - text: Volociximab - LRP5 Antagonist BI 905681: - text: LRP5 Antagonist BI 905681 - LSD1 Inhibitor IMG-7289: - text: LSD1 Inhibitor IMG-7289 - Antibody-drug Conjugate PF-06664178: - text: Antibody-drug Conjugate PF-06664178 - Allogeneic Irradiated Melanoma Cell Vaccine CSF470: - text: Allogeneic Irradiated Melanoma Cell Vaccine CSF470 - Cusatuzumab: - text: Cusatuzumab - Palbociclib Isethionate: - text: Palbociclib Isethionate - Endothelin B Receptor Blocker ENB 003: - text: Endothelin B Receptor Blocker ENB 003 - Aerosol Gemcitabine: - text: Aerosol Gemcitabine - Prednimustine: - text: Prednimustine - Trastuzumab: - text: Trastuzumab - Live-attenuated Double-deleted Listeria monocytogenes Bacteria JNJ-64041809: - text: Live-attenuated Double-deleted Listeria monocytogenes Bacteria JNJ-64041809 - Corticorelin Acetate: - text: Corticorelin Acetate - Ex Vivo-expanded Autologous T Cells IMA101: - text: Ex Vivo-expanded Autologous T Cells IMA101 - Protein Arginine Methyltransferase 5 Inhibitor PRT543: - text: Protein Arginine Methyltransferase 5 Inhibitor PRT543 - Tazemetostat: - text: Tazemetostat - Ketoconazole: - text: Ketoconazole - Inosine 5'-monophosphate Dehydrogenase Inhibitor FF-10501-01: - text: Inosine 5'-monophosphate Dehydrogenase Inhibitor FF-10501-01 - Tovetumab: - text: Tovetumab - Xentuzumab: - text: Xentuzumab - Oncolytic Newcastle Disease Virus MEDI5395: - text: Oncolytic Newcastle Disease Virus MEDI5395 - Maekmoondong-tang: - text: Maekmoondong-tang - Anti-CA6-DM4 Immunoconjugate SAR566658: - text: Anti-CA6-DM4 Immunoconjugate SAR566658 - Phaleria macrocarpa Extract DLBS-1425: - text: Phaleria macrocarpa Extract DLBS-1425 - Miransertib: - text: Miransertib - Redaporfin: - text: Redaporfin - EGFR Inhibitor PD-168393: - text: EGFR Inhibitor PD-168393 - Nanoparticle Paclitaxel Ointment SOR007: - text: Nanoparticle Paclitaxel Ointment SOR007 - Anti-CD38/CD28xCD3 Tri-specific Monoclonal Antibody SAR442257: - text: Anti-CD38/CD28xCD3 Tri-specific Monoclonal Antibody SAR442257 - Vactosertib: - text: Vactosertib - Anti-5T4 Antibody-drug Conjugate ASN004: - text: Anti-5T4 Antibody-drug Conjugate ASN004 - Not Reported: - text: Not Reported - Anti-Nucleolin Aptamer AS1411: - text: Anti-Nucleolin Aptamer AS1411 - Polymer-conjugated IL-15 Receptor Agonist NKTR-255: - text: Polymer-conjugated IL-15 Receptor Agonist NKTR-255 - ERK1/2 Inhibitor KO-947: - text: ERK1/2 Inhibitor KO-947 - Nurulimab: - text: Nurulimab - Temarotene: - text: Temarotene - Eribulin: - text: Eribulin - Anti-PD-1 Monoclonal Antibody F520: - text: Anti-PD-1 Monoclonal Antibody F520 - Anti-PD-L1 Monoclonal Antibody BCD-135: - text: Anti-PD-L1 Monoclonal Antibody BCD-135 - Anti-CD123 ADC IMGN632: - text: Anti-CD123 ADC IMGN632 - Aurora A Kinase Inhibitor MK5108: - text: Aurora A Kinase Inhibitor MK5108 - Anti-PGF Monoclonal Antibody RO5323441: - text: Anti-PGF Monoclonal Antibody RO5323441 - Alflutinib Mesylate: - text: Alflutinib Mesylate - Temozolomide: - text: Temozolomide - Azaribine: - text: Azaribine - Motixafortide: - text: Motixafortide - CDK4/6 Inhibitor: - text: CDK4/6 Inhibitor - Vecabrutinib: - text: Vecabrutinib - Tivozanib: - text: Tivozanib - Daunorubicin Citrate: - text: Daunorubicin Citrate - Dihydroorotate Dehydrogenase Inhibitor AG-636: - text: Dihydroorotate Dehydrogenase Inhibitor AG-636 - Mitoguazone Dihydrochloride: - text: Mitoguazone Dihydrochloride - Nucleoside Analog DFP-10917: - text: Nucleoside Analog DFP-10917 - EGFR Mutant-specific Inhibitor BPI-7711: - text: EGFR Mutant-specific Inhibitor BPI-7711 - ALK Inhibitor WX-0593: - text: ALK Inhibitor WX-0593 - Pentamustine: - text: Pentamustine - Iloprost: - text: Iloprost - Anti-GCC Antibody-Drug Conjugate MLN0264: - text: Anti-GCC Antibody-Drug Conjugate MLN0264 - Tubulin Polymerization Inhibitor VERU-111: - text: Tubulin Polymerization Inhibitor VERU-111 - Anti-VEGF/TGF-beta 1 Fusion Protein HB-002T: - text: Anti-VEGF/TGF-beta 1 Fusion Protein HB-002T - Iodine I 131 Anti-Fibronectin Antibody Fragment L19-SIP: - text: Iodine I 131 Anti-Fibronectin Antibody Fragment L19-SIP - ATM Kinase Inhibitor AZD1390: - text: ATM Kinase Inhibitor AZD1390 - Rosabulin: - text: Rosabulin - Carbendazim: - text: Carbendazim - Elisidepsin: - text: Elisidepsin - Lefitolimod: - text: Lefitolimod - Anti-HER2 Antibody-drug Conjugate DP303c: - text: Anti-HER2 Antibody-drug Conjugate DP303c - Daunorubicin Hydrochloride: - text: Daunorubicin Hydrochloride - Anti-CTLA4 Monoclonal Antibody BMS-986218: - text: Anti-CTLA4 Monoclonal Antibody BMS-986218 - Onatasertib: - text: Onatasertib - Anti-CD37 MMAE Antibody-drug Conjugate AGS67E: - text: Anti-CD37 MMAE Antibody-drug Conjugate AGS67E - Dihydrolenperone: - text: Dihydrolenperone - Sardomozide: - text: Sardomozide - Dacetuzumab: - text: Dacetuzumab - CD40 Agonistic Monoclonal Antibody APX005M: - text: CD40 Agonistic Monoclonal Antibody APX005M - Human MOAB LICO 28a32: - text: Human MOAB LICO 28a32 - Anti-Integrin Monoclonal Antibody-DM4 Immunoconjugate IMGN388: - text: Anti-Integrin Monoclonal Antibody-DM4 Immunoconjugate IMGN388 - Bruceanol B: - text: Bruceanol B - Factor VII-targeting Immunoconjugate Protein ICON-1: - text: Factor VII-targeting Immunoconjugate Protein ICON-1 - Zolbetuximab: - text: Zolbetuximab - JAK Inhibitor: - text: JAK Inhibitor - Vinorelbine Tartrate Emulsion: - text: Vinorelbine Tartrate Emulsion - Seclidemstat: - text: Seclidemstat - Anti-CD19 Monoclonal Antibody DI-B4: - text: Anti-CD19 Monoclonal Antibody DI-B4 - Letetresgene Autoleucel: - text: Letetresgene Autoleucel - Leuprolide: - text: Leuprolide - SERD GDC-9545: - text: SERD GDC-9545 - Octreotide Acetate: - text: Octreotide Acetate - Yttrium Y-90 Epratuzumab Tetraxetan: - text: Yttrium Y-90 Epratuzumab Tetraxetan - Dichloroallyl Lawsone: - text: Dichloroallyl Lawsone - Triamcinolone Acetonide: - text: Triamcinolone Acetonide - Radiolabeled CC49: - text: Radiolabeled CC49 - Calcitriol: - text: Calcitriol - Exemestane: - text: Exemestane - PI3K/mTOR Kinase Inhibitor WXFL10030390: - text: PI3K/mTOR Kinase Inhibitor WXFL10030390 - Anti-CD22 ADC TRPH-222: - text: Anti-CD22 ADC TRPH-222 - ATR Kinase Inhibitor M1774: - text: ATR Kinase Inhibitor M1774 - Vesencumab: - text: Vesencumab - Diindolylmethane: - text: Diindolylmethane - Anti-PD-1 Antibody-interleukin-21 Mutein Fusion Protein AMG 256: - text: Anti-PD-1 Antibody-interleukin-21 Mutein Fusion Protein AMG 256 - Enclomiphene: - text: Enclomiphene - Anti-PD-1 Monoclonal Antibody CS1003: - text: Anti-PD-1 Monoclonal Antibody CS1003 - Defactinib Hydrochloride: - text: Defactinib Hydrochloride - Cyclophosphamide Anhydrous: - text: Cyclophosphamide Anhydrous - Indatuximab Ravtansine: - text: Indatuximab Ravtansine - Aurora Kinase Inhibitor PF-03814735: - text: Aurora Kinase Inhibitor PF-03814735 - Monoclonal Antibody HuPAM4: - text: Monoclonal Antibody HuPAM4 - Mirdametinib: - text: Mirdametinib - Asulacrine Isethionate: - text: Asulacrine Isethionate - eIF4E Antisense Oligonucleotide ISIS 183750: - text: eIF4E Antisense Oligonucleotide ISIS 183750 - Ginsenoside Rg3 Capsule: - text: Ginsenoside Rg3 Capsule - Bomedemstat: - text: Bomedemstat - Autologous Universal CAR-expressing T-lymphocytes UniCAR02-T: - text: Autologous Universal CAR-expressing T-lymphocytes UniCAR02-T - Molibresib: - text: Molibresib - Proxalutamide: - text: Proxalutamide - Ocrelizumab: - text: Ocrelizumab - Anti-CDH6 Antibody-drug Conjugate HKT288: - text: Anti-CDH6 Antibody-drug Conjugate HKT288 - Tyroserleutide: - text: Tyroserleutide - cFMS Tyrosine Kinase Inhibitor ARRY-382: - text: cFMS Tyrosine Kinase Inhibitor ARRY-382 - Anti-LAG3 Monoclonal Antibody TSR-033: - text: Anti-LAG3 Monoclonal Antibody TSR-033 - Guadecitabine: - text: Guadecitabine - Everolimus Tablets for Oral Suspension: - text: Everolimus Tablets for Oral Suspension - Folate Receptor Targeted Epothilone BMS753493: - text: Folate Receptor Targeted Epothilone BMS753493 - Liarozole Fumarate: - text: Liarozole Fumarate - Cosibelimab: - text: Cosibelimab - EGFR/FLT3/Abl Inhibitor SKLB1028: - text: EGFR/FLT3/Abl Inhibitor SKLB1028 - Aderbasib: - text: Aderbasib - Ranpirnase: - text: Ranpirnase - Oral Aminolevulinic Acid Hydrochloride: - text: Oral Aminolevulinic Acid Hydrochloride - Antibody-Drug Conjugate DFRF4539A: - text: Antibody-Drug Conjugate DFRF4539A - Spebrutinib: - text: Spebrutinib - Calculus bovis/Moschus/Olibanum/Myrrha Capsule: - text: Calculus bovis/Moschus/Olibanum/Myrrha Capsule - Edicotinib: - text: Edicotinib - Anti-CD20 Monoclonal Antibody-Interferon-alpha Fusion Protein IGN002: - text: Anti-CD20 Monoclonal Antibody-Interferon-alpha Fusion Protein IGN002 - Recombinant Human Angiotensin Converting Enzyme 2 APN01: - text: Recombinant Human Angiotensin Converting Enzyme 2 APN01 - Innate Immunostimulator rBBX-01: - text: Innate Immunostimulator rBBX-01 - Anti-ErbB3 Monoclonal Antibody REGN1400: - text: Anti-ErbB3 Monoclonal Antibody REGN1400 - Ixazomib: - text: Ixazomib - Oportuzumab Monatox: - text: Oportuzumab Monatox - Chloroquine: - text: Chloroquine - Cisplatin-E Therapeutic Implant: - text: Cisplatin-E Therapeutic Implant - Other: - text: Other - FGF/FGFR Pathway Inhibitor E7090: - text: FGF/FGFR Pathway Inhibitor E7090 - FPV-Brachyury-TRICOM Vaccine: - text: FPV-Brachyury-TRICOM Vaccine - Epothilone KOS-1584: - text: Epothilone KOS-1584 - CENP-E Inhibitor GSK-923295: - text: CENP-E Inhibitor GSK-923295 - Nitroglycerin Transdermal Patch: - text: Nitroglycerin Transdermal Patch - Autologous Prostate Stem Cell Antigen-specific CAR T Cells BPX-601: - text: Autologous Prostate Stem Cell Antigen-specific CAR T Cells BPX-601 - Herba Scutellaria Barbata: - text: Herba Scutellaria Barbata - Adenovirus 5/F35-Human Guanylyl Cyclase C-PADRE: - text: Adenovirus 5/F35-Human Guanylyl Cyclase C-PADRE - Rituximab and Hyaluronidase Human: - text: Rituximab and Hyaluronidase Human - TSP-1 Mimetic ABT-510: - text: TSP-1 Mimetic ABT-510 - Anti-PSMA Monoclonal Antibody MLN591-DM1 Immunoconjugate MLN2704: - text: Anti-PSMA Monoclonal Antibody MLN591-DM1 Immunoconjugate MLN2704 - Anti-PD-L1 Monoclonal Antibody CBT-502: - text: Anti-PD-L1 Monoclonal Antibody CBT-502 - Tasadenoturev: - text: Tasadenoturev - Timonacic: - text: Timonacic - Dusigitumab: - text: Dusigitumab - Prime Cancer Vaccine MVA-BN-CV301: - text: Prime Cancer Vaccine MVA-BN-CV301 - Hexylresorcinol: - text: Hexylresorcinol - Sustained-release Lipid Inhaled Cisplatin: - text: Sustained-release Lipid Inhaled Cisplatin - Camptothecin Sodium: - text: Camptothecin Sodium - Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells CT053: - text: Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells CT053 - Anti-CD71/vcMMAE Probody-drug Conjugate CX-2029: - text: Anti-CD71/vcMMAE Probody-drug Conjugate CX-2029 - Xanthohumol: - text: Xanthohumol - Batimastat: - text: Batimastat - WT1-A10/AS01B Immunotherapeutic GSK2130579A: - text: WT1-A10/AS01B Immunotherapeutic GSK2130579A - Allogeneic CS1-specific Universal CAR-expressing T-lymphocytes UCARTCS1A: - text: Allogeneic CS1-specific Universal CAR-expressing T-lymphocytes UCARTCS1A - VEGFR2/PDGFR/c-Kit/Flt-3 Inhibitor SU014813: - text: VEGFR2/PDGFR/c-Kit/Flt-3 Inhibitor SU014813 - MET Tyrosine Kinase Inhibitor PF-04217903: - text: MET Tyrosine Kinase Inhibitor PF-04217903 - Lutetium Lu 177-Edotreotide: - text: Lutetium Lu 177-Edotreotide - Rice Bran: - text: Rice Bran - Coriolus Versicolor Extract: - text: Coriolus Versicolor Extract - Aurora Kinase Inhibitor MLN8054: - text: Aurora Kinase Inhibitor MLN8054 - ATM Inhibitor M 3541: - text: ATM Inhibitor M 3541 - Soy Isoflavones: - text: Soy Isoflavones - Sibrotuzumab: - text: Sibrotuzumab - Folate-FITC: - text: Folate-FITC - Cobimetinib: - text: Cobimetinib - Telisotuzumab: - text: Telisotuzumab - pan-RAF Kinase Inhibitor TAK-580: - text: pan-RAF Kinase Inhibitor TAK-580 - Iodine I 131 Monoclonal Antibody G-250: - text: Iodine I 131 Monoclonal Antibody G-250 - Vanucizumab: - text: Vanucizumab - Actinium Ac 225 Lintuzumab: - text: Actinium Ac 225 Lintuzumab - Cycloleucine: - text: Cycloleucine - Ombrabulin: - text: Ombrabulin - Artesunate: - text: Artesunate - ERK Inhibitor CC-90003: - text: ERK Inhibitor CC-90003 - Anti-PD-1 Monoclonal Antibody BI 754091: - text: Anti-PD-1 Monoclonal Antibody BI 754091 - Onvansertib: - text: Onvansertib - PI3K-delta Inhibitor SHC014748M: - text: PI3K-delta Inhibitor SHC014748M - Copper Cu 64-ATSM: - text: Copper Cu 64-ATSM - Theliatinib: - text: Theliatinib - Lm-tLLO-neoantigens Vaccine ADXS-NEO: - text: Lm-tLLO-neoantigens Vaccine ADXS-NEO - Anti-c-Met Monoclonal Antibody ABT-700: - text: Anti-c-Met Monoclonal Antibody ABT-700 - Anti-CD37 Bispecific Monoclonal Antibody GEN3009: - text: Anti-CD37 Bispecific Monoclonal Antibody GEN3009 - Aclacinomycin B: - text: Aclacinomycin B - Mavelertinib: - text: Mavelertinib - Conbercept: - text: Conbercept - Personalized Neoantigen DNA Vaccine GNOS-PV01: - text: Personalized Neoantigen DNA Vaccine GNOS-PV01 - Cesalin: - text: Cesalin - Poly-gamma Glutamic Acid: - text: Poly-gamma Glutamic Acid - Eflornithine Hydrochloride: - text: Eflornithine Hydrochloride - Anti-PD-L1 Monoclonal Antibody LY3300054: - text: Anti-PD-L1 Monoclonal Antibody LY3300054 - Fascin Inhibitor NP-G2-044: - text: Fascin Inhibitor NP-G2-044 - MVA Tumor-specific Neoantigen Boosting Vaccine MVA-209-FSP: - text: MVA Tumor-specific Neoantigen Boosting Vaccine MVA-209-FSP - Hsp90 Inhibitor XL888: - text: Hsp90 Inhibitor XL888 - RET Inhibitor DS-5010: - text: RET Inhibitor DS-5010 - Topoisomerase I Inhibitor LMP400: - text: Topoisomerase I Inhibitor LMP400 - IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051: - text: IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051 - MEK Inhibitor SHR 7390: - text: MEK Inhibitor SHR 7390 - KRAS G12C Inhibitor GDC-6036: - text: KRAS G12C Inhibitor GDC-6036 - Docetaxel Anhydrous: - text: Docetaxel Anhydrous - Onalespib Lactate: - text: Onalespib Lactate - Feladilimab: - text: Feladilimab - FLT3 Inhibitor HM43239: - text: FLT3 Inhibitor HM43239 - Sonepcizumab: - text: Sonepcizumab - Denenicokin: - text: Denenicokin - Monoclonal Antibody SGN-14: - text: Monoclonal Antibody SGN-14 - Anti-CD19/Anti-CD22 Bispecific Immunotoxin DT2219ARL: - text: Anti-CD19/Anti-CD22 Bispecific Immunotoxin DT2219ARL - Quinacrine Hydrochloride: - text: Quinacrine Hydrochloride - Nesvacumab: - text: Nesvacumab - Masitinib Mesylate: - text: Masitinib Mesylate - PI3K-delta Inhibitor PWT143: - text: PI3K-delta Inhibitor PWT143 - PI3K-beta Inhibitor GSK2636771: - text: PI3K-beta Inhibitor GSK2636771 - Anti-EGFR Monoclonal Antibody SCT200: - text: Anti-EGFR Monoclonal Antibody SCT200 - Src/Abl Kinase Inhibitor AZD0424: - text: Src/Abl Kinase Inhibitor AZD0424 - XIAP/cIAP1 Antagonist ASTX660: - text: XIAP/cIAP1 Antagonist ASTX660 - Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100: - text: Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100 - Praluzatamab Ravtansine: - text: Praluzatamab Ravtansine - Icotinib Hydrochloride: - text: Icotinib Hydrochloride - O6-Benzylguanine: - text: O6-Benzylguanine - Stallimycin: - text: Stallimycin - CDK4 Inhibitor P1446A-05: - text: CDK4 Inhibitor P1446A-05 - Ormaplatin: - text: Ormaplatin - Liposome-encapsulated miR-34 Mimic MRX34: - text: Liposome-encapsulated miR-34 Mimic MRX34 - Actinium Ac 225-FPI-1434: - text: Actinium Ac 225-FPI-1434 - Autologous Mesenchymal Stem Cells Apceth_101: - text: Autologous Mesenchymal Stem Cells Apceth_101 - Antibody-drug Conjugate ABBV-176: - text: Antibody-drug Conjugate ABBV-176 - Bispecific Antibody MDX-H210: - text: Bispecific Antibody MDX-H210 - Trabedersen: - text: Trabedersen - Pexidartinib: - text: Pexidartinib - Topoisomerase I/II Inhibitor NEV-801: - text: Topoisomerase I/II Inhibitor NEV-801 - TM4SF1-CAR/EpCAM-CAR-expressing Autologous T Cells: - text: TM4SF1-CAR/EpCAM-CAR-expressing Autologous T Cells - Src Kinase Inhibitor AP 23846: - text: Src Kinase Inhibitor AP 23846 - Pictilisib: - text: Pictilisib - Cirmtuzumab: - text: Cirmtuzumab - Sialyl Tn Antigen: - text: Sialyl Tn Antigen - Recombinant Thyroglobulin: - text: Recombinant Thyroglobulin - Telomerase-specific Type 5 Adenovirus OBP-301: - text: Telomerase-specific Type 5 Adenovirus OBP-301 - Inproquone: - text: Inproquone - MDM2 Inhibitor AMG-232: - text: MDM2 Inhibitor AMG-232 - Rofecoxib: - text: Rofecoxib - Samotolisib: - text: Samotolisib - RARalpha Agonist IRX5183: - text: RARalpha Agonist IRX5183 - T900607: - text: T900607 - Piperine Extract (Standardized): - text: Piperine Extract (Standardized) - BCR-ABL/KIT/AKT/ERK Inhibitor HQP1351: - text: BCR-ABL/KIT/AKT/ERK Inhibitor HQP1351 - Phenyl Acetate: - text: Phenyl Acetate - Radioactive Iodine: - text: Radioactive Iodine - CDC7 Kinase Inhibitor NMS-1116354: - text: CDC7 Kinase Inhibitor NMS-1116354 - Polysialic Acid: - text: Polysialic Acid - Patidegib Topical Gel: - text: Patidegib Topical Gel - Serine/Threonine Kinase Inhibitor CBP501: - text: Serine/Threonine Kinase Inhibitor CBP501 - Anti-PLGF Monoclonal Antibody TB-403: - text: Anti-PLGF Monoclonal Antibody TB-403 - Lutetium Lu 177-PSMA-617: - text: Lutetium Lu 177-PSMA-617 - Neoantigen-HSP70 Peptide Cancer Vaccine AGEN2017: - text: Neoantigen-HSP70 Peptide Cancer Vaccine AGEN2017 - PI3K-alpha Inhibitor MEN1611: - text: PI3K-alpha Inhibitor MEN1611 - Anti-Ly6E Antibody-Drug Conjugate RG 7841: - text: Anti-Ly6E Antibody-Drug Conjugate RG 7841 - Anti-PD-1 Monoclonal Antibody HLX10: - text: Anti-PD-1 Monoclonal Antibody HLX10 - Voxtalisib: - text: Voxtalisib - Yttrium Y 90 Daclizumab: - text: Yttrium Y 90 Daclizumab - Sergiolide: - text: Sergiolide - Lutetium Lu-177 Capromab: - text: Lutetium Lu-177 Capromab - Canerpaturev: - text: Canerpaturev - Halofuginone Hydrobromide: - text: Halofuginone Hydrobromide - p38 MAPK Inhibitor LY3007113: - text: p38 MAPK Inhibitor LY3007113 - Monomethyl Auristatin E: - text: Monomethyl Auristatin E - Androgen Receptor Degrader ARV-110: - text: Androgen Receptor Degrader ARV-110 - Etigilimab: - text: Etigilimab - Ganetespib: - text: Ganetespib - c-Met Inhibitor GST-HG161: - text: c-Met Inhibitor GST-HG161 - Pentamethylmelamine: - text: Pentamethylmelamine - Atiprimod Dihydrochloride: - text: Atiprimod Dihydrochloride - Aurora Kinase Inhibitor BI 811283: - text: Aurora Kinase Inhibitor BI 811283 - Anti-human GITR Monoclonal Antibody AMG 228: - text: Anti-human GITR Monoclonal Antibody AMG 228 - Puromycin Hydrochloride: - text: Puromycin Hydrochloride - Anti-CD47 Monoclonal Antibody TJC4: - text: Anti-CD47 Monoclonal Antibody TJC4 - Anti-Folate Receptor-alpha Antibody Drug Conjugate STRO-002: - text: Anti-Folate Receptor-alpha Antibody Drug Conjugate STRO-002 - Personalized Neoepitope Yeast Vaccine YE-NEO-001: - text: Personalized Neoepitope Yeast Vaccine YE-NEO-001 - Noscapine Hydrochloride: - text: Noscapine Hydrochloride - Monoclonal Antibody Me1-14 F(ab')2: - text: Monoclonal Antibody Me1-14 F(ab')2 - Calicheamicin Gamma 1I: - text: Calicheamicin Gamma 1I - Iridium Ir 192: - text: Iridium Ir 192 - Trioxifene: - text: Trioxifene - mTOR Kinase Inhibitor AZD8055: - text: mTOR Kinase Inhibitor AZD8055 - Autologous Tumor Infiltrating Lymphocytes LN-145-S1: - text: Autologous Tumor Infiltrating Lymphocytes LN-145-S1 - Amcasertib: - text: Amcasertib - Liposome-Encapsulated Doxorubicin Citrate: - text: Liposome-Encapsulated Doxorubicin Citrate - Bruceanol C: - text: Bruceanol C - PR1 Leukemia Peptide Vaccine: - text: PR1 Leukemia Peptide Vaccine - Pamidronate Disodium: - text: Pamidronate Disodium - KRASG12C Inhibitor JNJ-74699157: - text: KRASG12C Inhibitor JNJ-74699157 - Apomab: - text: Apomab - Anti-CD19 Antibody-drug Conjugate SGN-CD19B: - text: Anti-CD19 Antibody-drug Conjugate SGN-CD19B - Anti-AXL Fusion Protein AVB-S6-500: - text: Anti-AXL Fusion Protein AVB-S6-500 - Sulforaphane: - text: Sulforaphane - STAT3 Inhibitor WP1066: - text: STAT3 Inhibitor WP1066 - Pan-mutation-selective EGFR Inhibitor CLN-081: - text: Pan-mutation-selective EGFR Inhibitor CLN-081 - Fadraciclib: - text: Fadraciclib - Anti-EGFR Monoclonal Antibody Mixture MM-151: - text: Anti-EGFR Monoclonal Antibody Mixture MM-151 - MDR Modulator CBT-1: - text: MDR Modulator CBT-1 - C/EBP Beta Antagonist ST101: - text: C/EBP Beta Antagonist ST101 - Recombinant Erythropoietin: - text: Recombinant Erythropoietin - Rebeccamycin: - text: Rebeccamycin - Autologous BCMA-targeted CAR T Cells LCAR-B4822M: - text: Autologous BCMA-targeted CAR T Cells LCAR-B4822M - Roducitabine: - text: Roducitabine - Mitoclomine: - text: Mitoclomine - JNK Inhibitor CC-401: - text: JNK Inhibitor CC-401 - Caffeic Acid Phenethyl Ester: - text: Caffeic Acid Phenethyl Ester - Anti-CD30/CD16A Monoclonal Antibody AFM13: - text: Anti-CD30/CD16A Monoclonal Antibody AFM13 - CSF-1R Inhibitor BLZ945: - text: CSF-1R Inhibitor BLZ945 - PI3K/mTOR Kinase Inhibitor PF-04691502: - text: PI3K/mTOR Kinase Inhibitor PF-04691502 - Mannosulfan: - text: Mannosulfan - Heterodimeric Interleukin-15: - text: Heterodimeric Interleukin-15 - Immunotherapeutic GSK1572932A: - text: Immunotherapeutic GSK1572932A - Sumoylation Inhibitor TAK-981: - text: Sumoylation Inhibitor TAK-981 - CDK1/2/4 Inhibitor AG-024322: - text: CDK1/2/4 Inhibitor AG-024322 - Allogeneic Large Multivalent Immunogen Melanoma Vaccine LP2307: - text: Allogeneic Large Multivalent Immunogen Melanoma Vaccine LP2307 - Pibrozelesin Hydrobromide: - text: Pibrozelesin Hydrobromide - Anti-CD19 Monoclonal Antibody MEDI-551: - text: Anti-CD19 Monoclonal Antibody MEDI-551 - Recombinant Human Plasminogen Kringle 5 Domain ABT 828: - text: Recombinant Human Plasminogen Kringle 5 Domain ABT 828 - Zirconium Zr 89 Panitumumab: - text: Zirconium Zr 89 Panitumumab - Barasertib: - text: Barasertib - Antineoplastic Vaccine GV-1301: - text: Antineoplastic Vaccine GV-1301 - Vincristine Liposomal: - text: Vincristine Liposomal - Protein Tyrosine Kinase 2 Inhibitor IN10018: - text: Protein Tyrosine Kinase 2 Inhibitor IN10018 - MET x MET Bispecific Antibody REGN5093: - text: MET x MET Bispecific Antibody REGN5093 - Autologous Tumor Infiltrating Lymphocytes LN-144: - text: Autologous Tumor Infiltrating Lymphocytes LN-144 - Anti-KIR Monoclonal Antibody IPH 2101: - text: Anti-KIR Monoclonal Antibody IPH 2101 - Methoxyamine: - text: Methoxyamine - Epitiostanol: - text: Epitiostanol - 2-Methoxyestradiol: - text: 2-Methoxyestradiol - BRAF Inhibitor PLX8394: - text: BRAF Inhibitor PLX8394 - Vopratelimab: - text: Vopratelimab - Nocodazole: - text: Nocodazole - Anti-PSMA/CD3 Bispecific Antibody CCW702: - text: Anti-PSMA/CD3 Bispecific Antibody CCW702 - Colorectal Cancer Peptide Vaccine PolyPEPI1018: - text: Colorectal Cancer Peptide Vaccine PolyPEPI1018 - Anti-HER2 Antibody-drug Conjugate MEDI4276: - text: Anti-HER2 Antibody-drug Conjugate MEDI4276 - Anti-AGS-5 Antibody-Drug Conjugate ASG-5ME: - text: Anti-AGS-5 Antibody-Drug Conjugate ASG-5ME - Iodine I 131 Tenatumomab: - text: Iodine I 131 Tenatumomab - Pinatuzumab Vedotin: - text: Pinatuzumab Vedotin - Anti-HER2 Immune Stimulator-antibody Conjugate NJH395: - text: Anti-HER2 Immune Stimulator-antibody Conjugate NJH395 - Relugolix: - text: Relugolix - SBIL-2: - text: SBIL-2 - Etoposide Toniribate: - text: Etoposide Toniribate - Enadenotucirev-expressing FAP/CD3 Bispecific FAP-TAc NG-641: - text: Enadenotucirev-expressing FAP/CD3 Bispecific FAP-TAc NG-641 - Mps1 Inhibitor BOS172722: - text: Mps1 Inhibitor BOS172722 - Y 90 Monoclonal Antibody m170: - text: Y 90 Monoclonal Antibody m170 - Silibinin: - text: Silibinin - PIM Kinase Inhibitor SGI-1776: - text: PIM Kinase Inhibitor SGI-1776 - Yttrium Y-90 Clivatuzumab Tetraxetan: - text: Yttrium Y-90 Clivatuzumab Tetraxetan - Adenosine A2A Receptor Antagonist CS3005: - text: Adenosine A2A Receptor Antagonist CS3005 - Afatinib Dimaleate: - text: Afatinib Dimaleate - Losoxantrone Hydrochloride: - text: Losoxantrone Hydrochloride - Oral Picoplatin: - text: Oral Picoplatin - Elacytarabine: - text: Elacytarabine - Alvespimycin Hydrochloride: - text: Alvespimycin Hydrochloride - Yttrium Y 90 Anti-CD19 Monoclonal Antibody BU12: - text: Yttrium Y 90 Anti-CD19 Monoclonal Antibody BU12 - Methylmercaptopurine Riboside: - text: Methylmercaptopurine Riboside - PI3Kdelta Inhibitor GS-9901: - text: PI3Kdelta Inhibitor GS-9901 - Rose Bengal Solution PV-10: - text: Rose Bengal Solution PV-10 - Anti c-KIT Antibody-drug Conjugate LOP628: - text: Anti c-KIT Antibody-drug Conjugate LOP628 - Clofarabine: - text: Clofarabine - Polatuzumab Vedotin: - text: Polatuzumab Vedotin - SIRPa-Fc-CD40L Fusion Protein SL-172154: - text: SIRPa-Fc-CD40L Fusion Protein SL-172154 - Nelipepimut-S: - text: Nelipepimut-S - TSP-1 Mimetic Fusion Protein CVX-045: - text: TSP-1 Mimetic Fusion Protein CVX-045 - Polo-like Kinase 4 Inhibitor CFI-400945 Fumarate: - text: Polo-like Kinase 4 Inhibitor CFI-400945 Fumarate - BET Inhibitor INCB054329: - text: BET Inhibitor INCB054329 - Sedoxantrone Trihydrochloride: - text: Sedoxantrone Trihydrochloride - Lapuleucel-T: - text: Lapuleucel-T - 11C Topotecan: - text: 11C Topotecan - c-Met Inhibitor MK8033: - text: c-Met Inhibitor MK8033 - Anti-PD-L1 Monoclonal Antibody BGB-A333: - text: Anti-PD-L1 Monoclonal Antibody BGB-A333 - HER2 Inhibitor TAS0728: - text: HER2 Inhibitor TAS0728 - Anti-CD52 Monoclonal Antibody ALLO-647: - text: Anti-CD52 Monoclonal Antibody ALLO-647 - MAGE-A1-specific T Cell Receptor-transduced Autologous T-cells: - text: MAGE-A1-specific T Cell Receptor-transduced Autologous T-cells - CTLA-4-directed Probody BMS-986249: - text: CTLA-4-directed Probody BMS-986249 - MEK-1/MEKK-1 Inhibitor E6201: - text: MEK-1/MEKK-1 Inhibitor E6201 - Neoantigen Vaccine GEN-009: - text: Neoantigen Vaccine GEN-009 - Anti-LAG-3 Monoclonal Antibody REGN3767: - text: Anti-LAG-3 Monoclonal Antibody REGN3767 - JAK2 Inhibitor BMS-911543: - text: JAK2 Inhibitor BMS-911543 - Demplatin Pegraglumer: - text: Demplatin Pegraglumer - Multikinase Inhibitor SAR103168: - text: Multikinase Inhibitor SAR103168 - Autologous CD19-targeted CAR T Cells CC-97540: - text: Autologous CD19-targeted CAR T Cells CC-97540 - Anti-CA19-9 Monoclonal Antibody 5B1: - text: Anti-CA19-9 Monoclonal Antibody 5B1 - Giloralimab: - text: Giloralimab - Naratuximab Emtansine: - text: Naratuximab Emtansine - IDO/TDO Inhibitor HTI-1090: - text: IDO/TDO Inhibitor HTI-1090 - Paclitaxel Trevatide: - text: Paclitaxel Trevatide - c-raf Antisense Oligonucleotide ISIS 5132: - text: c-raf Antisense Oligonucleotide ISIS 5132 - VEGFR/FGFR Inhibitor ODM-203: - text: VEGFR/FGFR Inhibitor ODM-203 - Antroquinonol Capsule: - text: Antroquinonol Capsule - HIF2a RNAi ARO-HIF2: - text: HIF2a RNAi ARO-HIF2 - Golvatinib: - text: Golvatinib - Monoclonal Antibody A1G4 Anti-Idiotype Vaccine: - text: Monoclonal Antibody A1G4 Anti-Idiotype Vaccine - Patritumab: - text: Patritumab - IL4-Pseudomonas Exotoxin Fusion Protein MDNA55: - text: IL4-Pseudomonas Exotoxin Fusion Protein MDNA55 - Recombinant Leukoregulin: - text: Recombinant Leukoregulin - Antitumor B Key Active Component-alpha: - text: Antitumor B Key Active Component-alpha - Mitochondrial Oxidative Phosphorylation Inhibitor ATR-101: - text: Mitochondrial Oxidative Phosphorylation Inhibitor ATR-101 - HDAC Class I/IIb Inhibitor HG146: - text: HDAC Class I/IIb Inhibitor HG146 - Pravastatin Sodium: - text: Pravastatin Sodium - Anti-CD73 Monoclonal Antibody NZV930: - text: Anti-CD73 Monoclonal Antibody NZV930 - Tyrosine Kinase Inhibitor SU5402: - text: Tyrosine Kinase Inhibitor SU5402 - Recombinant Interferon Alfa-1b: - text: Recombinant Interferon Alfa-1b - Oncolytic HSV1716: - text: Oncolytic HSV1716 - Anti-BCMA Antibody-drug Conjugate GSK2857916: - text: Anti-BCMA Antibody-drug Conjugate GSK2857916 - Fluzoparib: - text: Fluzoparib - Milciclib Maleate: - text: Milciclib Maleate - Engineered Red Blood Cells Co-expressing 4-1BBL and IL-15TP RTX-240: - text: Engineered Red Blood Cells Co-expressing 4-1BBL and IL-15TP RTX-240 - JAK2/Src Inhibitor NS-018: - text: JAK2/Src Inhibitor NS-018 - Glutaminase Inhibitor CB-839 Hydrochloride: - text: Glutaminase Inhibitor CB-839 Hydrochloride - Abemaciclib Mesylate: - text: Abemaciclib Mesylate - Iodine I 131 TM-601: - text: Iodine I 131 TM-601 - Licorice: - text: Licorice - Favezelimab: - text: Favezelimab - DNA Plasmid-encoding Interleukin-12/HPV DNA Plasmids Therapeutic Vaccine MEDI0457: - text: DNA Plasmid-encoding Interleukin-12/HPV DNA Plasmids Therapeutic Vaccine - MEDI0457 - Clomiphene: - text: Clomiphene - Methyltestosterone: - text: Methyltestosterone - Crystalline Genistein Formulation AXP107-11: - text: Crystalline Genistein Formulation AXP107-11 - Hsp90 Inhibitor Debio 0932: - text: Hsp90 Inhibitor Debio 0932 - pan-RAF Inhibitor LXH254: - text: pan-RAF Inhibitor LXH254 - Sodium Borocaptate: - text: Sodium Borocaptate - Anti-CD20 Monoclonal Antibody B001: - text: Anti-CD20 Monoclonal Antibody B001 - P-cadherin Antagonist PF-03732010: - text: P-cadherin Antagonist PF-03732010 - SRPK1/ABCG2 Inhibitor SCO-101: - text: SRPK1/ABCG2 Inhibitor SCO-101 - Elbasvir/Grazoprevir: - text: Elbasvir/Grazoprevir - Breflate: - text: Breflate - Selumetinib Sulfate: - text: Selumetinib Sulfate - Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3005: - text: Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3005 - Thioguanine Anhydrous: - text: Thioguanine Anhydrous - Anti-EGFR Monoclonal Antibody EMD 55900: - text: Anti-EGFR Monoclonal Antibody EMD 55900 - Histone-Lysine N-Methyltransferase EZH2 Inhibitor GSK2816126: - text: Histone-Lysine N-Methyltransferase EZH2 Inhibitor GSK2816126 - Anti-ErbB3/Anti-IGF-1R Bispecific Monoclonal Antibody MM-141: - text: Anti-ErbB3/Anti-IGF-1R Bispecific Monoclonal Antibody MM-141 - HDAC Inhibitor MPT0E028: - text: HDAC Inhibitor MPT0E028 - Ganglioside GD2: - text: Ganglioside GD2 - Dupilumab: - text: Dupilumab - p53/HDM2 Interaction Inhibitor CGM097: - text: p53/HDM2 Interaction Inhibitor CGM097 - Ras Peptide ASP: - text: Ras Peptide ASP - FAK Inhibitor PF-00562271: - text: FAK Inhibitor PF-00562271 - Murizatoclax: - text: Murizatoclax - DM-CHOC-PEN: - text: DM-CHOC-PEN - Anti-HLA-DR Monoclonal Antibody IMMU-114: - text: Anti-HLA-DR Monoclonal Antibody IMMU-114 - Anti-PD-1 Monoclonal Antibody MEDI0680: - text: Anti-PD-1 Monoclonal Antibody MEDI0680 - Farnesyltransferase/Geranylgeranyltransferase Inhibitor L-778,123: - text: Farnesyltransferase/Geranylgeranyltransferase Inhibitor L-778,123 - Antibody-drug Conjugate PF-06647263: - text: Antibody-drug Conjugate PF-06647263 - Autologous Rapamycin-resistant Th1/Tc1 Cells RAPA-201: - text: Autologous Rapamycin-resistant Th1/Tc1 Cells RAPA-201 - Hexamethylene Bisacetamide: - text: Hexamethylene Bisacetamide - SLCT Inhibitor GNS561: - text: SLCT Inhibitor GNS561 - Diazooxonorleucine: - text: Diazooxonorleucine - Anti-IL-1 alpha Monoclonal Antibody MABp1: - text: Anti-IL-1 alpha Monoclonal Antibody MABp1 - Relatlimab: - text: Relatlimab - Alvespimycin: - text: Alvespimycin - Delolimogene Mupadenorepvec: - text: Delolimogene Mupadenorepvec - Acitretin: - text: Acitretin - Alvocidib Hydrochloride: - text: Alvocidib Hydrochloride - Cytochlor: - text: Cytochlor - Morinda Citrifolia Fruit Extract: - text: Morinda Citrifolia Fruit Extract - Galamustine: - text: Galamustine - Topoisomerase-1 Inhibitor LMP744: - text: Topoisomerase-1 Inhibitor LMP744 - Erlotinib Hydrochloride: - text: Erlotinib Hydrochloride - Uracil Ointment: - text: Uracil Ointment - Resiquimod: - text: Resiquimod - Bruceanol E: - text: Bruceanol E - Mycobacterium tuberculosis Arabinomannan Z-100: - text: Mycobacterium tuberculosis Arabinomannan Z-100 - MVA-BN Smallpox Vaccine: - text: MVA-BN Smallpox Vaccine - 6-Phosphofructo-2-kinase/fructose-2,6-bisphosphatases Isoform 3 Inhibitor ACT-PFK-158: - text: 6-Phosphofructo-2-kinase/fructose-2,6-bisphosphatases Isoform 3 Inhibitor - ACT-PFK-158 - Anti-CD19-DM4 Immunoconjugate SAR3419: - text: Anti-CD19-DM4 Immunoconjugate SAR3419 - Lexibulin: - text: Lexibulin - Natalizumab: - text: Natalizumab - Derazantinib: - text: Derazantinib - Doxazosin: - text: Doxazosin - TAM/c-Met Inhibitor RXDX-106: - text: TAM/c-Met Inhibitor RXDX-106 - Lifastuzumab Vedotin: - text: Lifastuzumab Vedotin - Bisnafide Dimesylate: - text: Bisnafide Dimesylate - Gemcitabine: - text: Gemcitabine - Allogeneic Anti-CD19 Universal CAR-T Cells CTA101: - text: Allogeneic Anti-CD19 Universal CAR-T Cells CTA101 - Resveratrol Formulation SRT501: - text: Resveratrol Formulation SRT501 - Trimeric GITRL-Fc OMP-336B11: - text: Trimeric GITRL-Fc OMP-336B11 - Belantamab Mafodotin: - text: Belantamab Mafodotin - Fluorouracil-E Therapeutic Implant: - text: Fluorouracil-E Therapeutic Implant - Polyethyleneglycol-7-ethyl-10-hydroxycamptothecin DFP-13318: - text: Polyethyleneglycol-7-ethyl-10-hydroxycamptothecin DFP-13318 - Iboctadekin: - text: Iboctadekin - Apolizumab: - text: Apolizumab - Inodiftagene Vixteplasmid: - text: Inodiftagene Vixteplasmid - Caricotamide/Tretazicar: - text: Caricotamide/Tretazicar - Therapeutic Angiotensin-(1-7): - text: Therapeutic Angiotensin-(1-7) - Raloxifene Hydrochloride: - text: Raloxifene Hydrochloride - Tubulin Polymerization Inhibitor AEZS 112: - text: Tubulin Polymerization Inhibitor AEZS 112 - Acalabrutinib: - text: Acalabrutinib - Aurora A Kinase Inhibitor LY3295668: - text: Aurora A Kinase Inhibitor LY3295668 - Anti-S15 Monoclonal Antibody NC318: - text: Anti-S15 Monoclonal Antibody NC318 - Peretinoin: - text: Peretinoin - Piroxantrone: - text: Piroxantrone - IDO/TDO Inhibitor LY-01013: - text: IDO/TDO Inhibitor LY-01013 - Nilotinib Hydrochloride Anhydrous: - text: Nilotinib Hydrochloride Anhydrous - Selicrelumab: - text: Selicrelumab - Androgen Receptor/Glucocorticoid Receptor Antagonist CB-03-10: - text: Androgen Receptor/Glucocorticoid Receptor Antagonist CB-03-10 - Salirasib: - text: Salirasib - SDF-1 Receptor Antagonist PTX-9908: - text: SDF-1 Receptor Antagonist PTX-9908 - Allogeneic Plasmacytoid Dendritic Cells Expressing Lung Tumor Antigens PDC*lung01: - text: Allogeneic Plasmacytoid Dendritic Cells Expressing Lung Tumor Antigens - PDC*lung01 - Anhydrovinblastine: - text: Anhydrovinblastine - Liposomal Irinotecan: - text: Liposomal Irinotecan - FAK/ALK/ROS1 Inhibitor APG-2449: - text: FAK/ALK/ROS1 Inhibitor APG-2449 - Dacplatinum: - text: Dacplatinum - Isotretinoin: - text: Isotretinoin - Iodine I 131 Apamistamab: - text: Iodine I 131 Apamistamab - Drozitumab: - text: Drozitumab - 5-Fluoro-2-Deoxycytidine: - text: 5-Fluoro-2-Deoxycytidine - Recombinant Platelet Factor 4: - text: Recombinant Platelet Factor 4 - Didox: - text: Didox - Autologous Anti-PD-1 Antibody-activated Tumor-infiltrating Lymphocytes: - text: Autologous Anti-PD-1 Antibody-activated Tumor-infiltrating Lymphocytes - Hsp90 Inhibitor PU-H71: - text: Hsp90 Inhibitor PU-H71 - Anti-TIGIT Monoclonal Antibody BMS-986207: - text: Anti-TIGIT Monoclonal Antibody BMS-986207 - Zorubicin Hydrochloride: - text: Zorubicin Hydrochloride - DNA Plasmid Encoding Interleukin-12 INO-9012: - text: DNA Plasmid Encoding Interleukin-12 INO-9012 - BCG Solution: - text: BCG Solution - Sodium Selenite: - text: Sodium Selenite - Rosopatamab: - text: Rosopatamab - Pemetrexed: - text: Pemetrexed - Astatine At 211 Anti-CD38 Monoclonal Antibody OKT10-B10: - text: Astatine At 211 Anti-CD38 Monoclonal Antibody OKT10-B10 - Pingyangmycin: - text: Pingyangmycin - Motexafin Lutetium: - text: Motexafin Lutetium - Amatuximab: - text: Amatuximab - Anti-CD137 Agonistic Monoclonal Antibody LVGN6051: - text: Anti-CD137 Agonistic Monoclonal Antibody LVGN6051 - Selective Estrogen Receptor Degrader LY3484356: - text: Selective Estrogen Receptor Degrader LY3484356 - Polo-like Kinase 1 Inhibitor GSK461364: - text: Polo-like Kinase 1 Inhibitor GSK461364 - FAK Inhibitor GSK2256098: - text: FAK Inhibitor GSK2256098 - Anti-TIM-3 Antibody BMS-986258: - text: Anti-TIM-3 Antibody BMS-986258 - Tyrosine Kinase Inhibitor: - text: Tyrosine Kinase Inhibitor - IL-10 Immunomodulator MK-1966: - text: IL-10 Immunomodulator MK-1966 - Tavolimab: - text: Tavolimab - Vinepidine: - text: Vinepidine - Liposomal Topotecan FF-10850: - text: Liposomal Topotecan FF-10850 - Olutasidenib: - text: Olutasidenib - mRNA-based Tumor-specific Neoantigen Boosting Vaccine GRT-R902: - text: mRNA-based Tumor-specific Neoantigen Boosting Vaccine GRT-R902 - RAF Kinase Inhibitor XL281: - text: RAF Kinase Inhibitor XL281 - Bemarituzumab: - text: Bemarituzumab - Anti-PD1 Monoclonal Antibody AGEN2034: - text: Anti-PD1 Monoclonal Antibody AGEN2034 - Pelabresib: - text: Pelabresib - Emofolin Sodium: - text: Emofolin Sodium - Autologous Tumor Infiltrating Lymphocytes MDA-TIL: - text: Autologous Tumor Infiltrating Lymphocytes MDA-TIL - HDM2 Inhibitor HDM201: - text: HDM2 Inhibitor HDM201 - Light-Emitting Oncolytic Vaccinia Virus GL-ONC1: - text: Light-Emitting Oncolytic Vaccinia Virus GL-ONC1 - DPT/BCG/Measles/Serratia/Pneumococcus Vaccine: - text: DPT/BCG/Measles/Serratia/Pneumococcus Vaccine - HLA-A*0201 Restricted TERT(572Y)/TERT(572) Peptides Vaccine Vx-001: - text: HLA-A*0201 Restricted TERT(572Y)/TERT(572) Peptides Vaccine Vx-001 - Talabostat Mesylate: - text: Talabostat Mesylate - Sparfosic Acid: - text: Sparfosic Acid - Navitoclax: - text: Navitoclax - Anti-GITR Agonistic Monoclonal Antibody BMS-986156: - text: Anti-GITR Agonistic Monoclonal Antibody BMS-986156 - Pegilodecakin: - text: Pegilodecakin - Multi-AGC Kinase Inhibitor AT13148: - text: Multi-AGC Kinase Inhibitor AT13148 - Binimetinib: - text: Binimetinib - Mercaptopurine Oral Suspension: - text: Mercaptopurine Oral Suspension - Polo-like Kinase 1 Inhibitor MK1496: - text: Polo-like Kinase 1 Inhibitor MK1496 - Anti-HA Epitope Monoclonal Antibody MEDI8852: - text: Anti-HA Epitope Monoclonal Antibody MEDI8852 - Incyclinide: - text: Incyclinide - Idronoxil Suppository NOX66: - text: Idronoxil Suppository NOX66 - Anti-CD70 Antibody-drug Conjugate SGN-CD70A: - text: Anti-CD70 Antibody-drug Conjugate SGN-CD70A - Tirabrutinib: - text: Tirabrutinib - Quizartinib: - text: Quizartinib - Anti-TROP2/DXd Antibody-drug Conjugate DS-1062a: - text: Anti-TROP2/DXd Antibody-drug Conjugate DS-1062a - CDC7 Kinase Inhibitor LY3143921 Hydrate: - text: CDC7 Kinase Inhibitor LY3143921 Hydrate - Pegvisomant: - text: Pegvisomant - Ditiocarb: - text: Ditiocarb - Agonistic Anti-CD40 Monoclonal Antibody ADC-1013: - text: Agonistic Anti-CD40 Monoclonal Antibody ADC-1013 - Anti-CD137 Agonistic Monoclonal Antibody ATOR-1017: - text: Anti-CD137 Agonistic Monoclonal Antibody ATOR-1017 - Anti-angiopoietin Monoclonal Antibody AMG 780: - text: Anti-angiopoietin Monoclonal Antibody AMG 780 - Eribulin Mesylate: - text: Eribulin Mesylate - Monoclonal Antibody 81C6: - text: Monoclonal Antibody 81C6 - Rebimastat: - text: Rebimastat - Anti-RANKL Monoclonal Antibody GB-223: - text: Anti-RANKL Monoclonal Antibody GB-223 - Anti-EphA2 Monoclonal Antibody DS-8895a: - text: Anti-EphA2 Monoclonal Antibody DS-8895a - Allogeneic CRISPR-Cas9 Engineered Anti-BCMA T Cells CTX120: - text: Allogeneic CRISPR-Cas9 Engineered Anti-BCMA T Cells CTX120 - Monocarboxylate Transporter 1 Inhibitor AZD3965: - text: Monocarboxylate Transporter 1 Inhibitor AZD3965 - Tubulin Polymerization Inhibitor CKD-516: - text: Tubulin Polymerization Inhibitor CKD-516 - Adenovirus-expressing TLR5/TLR5 Agonist Nanoformulation M-VM3: - text: Adenovirus-expressing TLR5/TLR5 Agonist Nanoformulation M-VM3 - FACT Complex-targeting Curaxin CBL0137: - text: FACT Complex-targeting Curaxin CBL0137 - Aminopterin: - text: Aminopterin - Panitumumab: - text: Panitumumab - KRN5500: - text: KRN5500 - Acodazole Hydrochloride: - text: Acodazole Hydrochloride - Anti-CD30 Monoclonal Antibody XmAb2513: - text: Anti-CD30 Monoclonal Antibody XmAb2513 - Gutolactone: - text: Gutolactone - Perifosine: - text: Perifosine - Monoclonal Antibody A33: - text: Monoclonal Antibody A33 - CBP/beta-catenin Antagonist PRI-724: - text: CBP/beta-catenin Antagonist PRI-724 - CSF1R Inhibitor ABSK021: - text: CSF1R Inhibitor ABSK021 - Anti-GD2 Monoclonal Antibody hu14.18K322A: - text: Anti-GD2 Monoclonal Antibody hu14.18K322A - Chlorotoxin (EQ)-CD28-CD3zeta-CD19t-expressing CAR T-lymphocytes: - text: Chlorotoxin (EQ)-CD28-CD3zeta-CD19t-expressing CAR T-lymphocytes - Survivin-expressing CVD908ssb-TXSVN Vaccine: - text: Survivin-expressing CVD908ssb-TXSVN Vaccine - Irosustat: - text: Irosustat - Anti-CD123/CD3 Bispecific Antibody JNJ-63709178: - text: Anti-CD123/CD3 Bispecific Antibody JNJ-63709178 - Vinorelbine Tartrate Oral: - text: Vinorelbine Tartrate Oral - CYP17 Lyase Inhibitor ASN001: - text: CYP17 Lyase Inhibitor ASN001 - Recombinant MAGE-3.1 Antigen: - text: Recombinant MAGE-3.1 Antigen - TGF-beta Receptor 1 Kinase Inhibitor YL-13027: - text: TGF-beta Receptor 1 Kinase Inhibitor YL-13027 - Brilanestrant: - text: Brilanestrant - Lirilumab: - text: Lirilumab - Autologous Anti-CD123 CAR-T Cells: - text: Autologous Anti-CD123 CAR-T Cells - Temsirolimus: - text: Temsirolimus - H1299 Tumor Cell Lysate Vaccine: - text: H1299 Tumor Cell Lysate Vaccine - Photodynamic Compound TLD-1433: - text: Photodynamic Compound TLD-1433 - EGFR T790M Inhibitor HS-10296: - text: EGFR T790M Inhibitor HS-10296 - Gelonin: - text: Gelonin - Piritrexim Isethionate: - text: Piritrexim Isethionate - Micellar Nanoparticle-encapsulated Epirubicin: - text: Micellar Nanoparticle-encapsulated Epirubicin - Laprituximab Emtansine: - text: Laprituximab Emtansine - Aurora B/C Kinase Inhibitor GSK1070916A: - text: Aurora B/C Kinase Inhibitor GSK1070916A - Antibody-drug Conjugate SC-003: - text: Antibody-drug Conjugate SC-003 - Patupilone: - text: Patupilone - F16-IL2 Fusion Protein: - text: F16-IL2 Fusion Protein - Dengue Virus Adjuvant PV-001-DV: - text: Dengue Virus Adjuvant PV-001-DV - Antibody-like CD95 Receptor/Fc-fusion Protein CAN-008: - text: Antibody-like CD95 Receptor/Fc-fusion Protein CAN-008 - Bruceantin: - text: Bruceantin - Dezaguanine Mesylate: - text: Dezaguanine Mesylate - IDO Peptide Vaccine IO102: - text: IDO Peptide Vaccine IO102 - Anti-integrin Beta-6/MMAE Antibody-drug Conjugate SGN-B6A: - text: Anti-integrin Beta-6/MMAE Antibody-drug Conjugate SGN-B6A - Liposomal MUC1/PET-lipid A Vaccine ONT-10: - text: Liposomal MUC1/PET-lipid A Vaccine ONT-10 - Arabinoxylan Compound MGN3: - text: Arabinoxylan Compound MGN3 - BTK Inhibitor ICP-022: - text: BTK Inhibitor ICP-022 - Extended Release Metformin Hydrochloride: - text: Extended Release Metformin Hydrochloride - Odronextamab: - text: Odronextamab - Infigratinib: - text: Infigratinib - Anti-HER2 Antibody-drug Conjugate A166: - text: Anti-HER2 Antibody-drug Conjugate A166 - Thorium Th 227 Anetumab: - text: Thorium Th 227 Anetumab - Ribozyme RPI.4610: - text: Ribozyme RPI.4610 - Mitazalimab: - text: Mitazalimab - Oxidative Phosphorylation Inhibitor IM156: - text: Oxidative Phosphorylation Inhibitor IM156 - Linrodostat: - text: Linrodostat - Anlotinib Hydrochloride: - text: Anlotinib Hydrochloride - Daromun: - text: Daromun - Tanibirumab: - text: Tanibirumab - Plocabulin: - text: Plocabulin - Narnatumab: - text: Narnatumab - Anti-CD27L Antibody-Drug Conjugate AMG 172: - text: Anti-CD27L Antibody-Drug Conjugate AMG 172 - Chemotherapy: - text: Chemotherapy - Busulfan: - text: Busulfan - Poly-alendronate Dextran-Guanidine Conjugate: - text: Poly-alendronate Dextran-Guanidine Conjugate - Splicing Inhibitor H3B-8800: - text: Splicing Inhibitor H3B-8800 - Liposomal HPV-16 E6/E7 Multipeptide Vaccine PDS0101: - text: Liposomal HPV-16 E6/E7 Multipeptide Vaccine PDS0101 - Not Otherwise Specified: - text: Not Otherwise Specified - Simtuzumab: - text: Simtuzumab - Gemcitabine Prodrug LY2334737: - text: Gemcitabine Prodrug LY2334737 - Oxeclosporin: - text: Oxeclosporin - Thymidylate Synthase Inhibitor CX1106: - text: Thymidylate Synthase Inhibitor CX1106 - Procaspase Activating Compound-1 VO-100: - text: Procaspase Activating Compound-1 VO-100 - Dolastatin 10: - text: Dolastatin 10 - Anti-VEGFR2 Monoclonal Antibody HLX06: - text: Anti-VEGFR2 Monoclonal Antibody HLX06 - Larotaxel: - text: Larotaxel - Long-acting Release Pasireotide: - text: Long-acting Release Pasireotide - Autologous CD20-4SCAR-expressing T-cells 4SCAR20: - text: Autologous CD20-4SCAR-expressing T-cells 4SCAR20 - Anti-CD19/CD3 BiTE Antibody AMG 562: - text: Anti-CD19/CD3 BiTE Antibody AMG 562 - Emepepimut-S: - text: Emepepimut-S - Goserelin Acetate: - text: Goserelin Acetate - IAP Inhibitor AT-406: - text: IAP Inhibitor AT-406 - Anti-FRA/Eribulin Antibody-drug Conjugate MORAb-202: - text: Anti-FRA/Eribulin Antibody-drug Conjugate MORAb-202 - Anti-EGFRvIII Immunotoxin MR1-1: - text: Anti-EGFRvIII Immunotoxin MR1-1 - Lutetium Lu 177-NeoB: - text: Lutetium Lu 177-NeoB - SMO Protein Inhibitor ZSP1602: - text: SMO Protein Inhibitor ZSP1602 - CXCR4 Peptide Antagonist LY2510924: - text: CXCR4 Peptide Antagonist LY2510924 - Niacinamide: - text: Niacinamide - Leuprolide Mesylate Injectable Suspension: - text: Leuprolide Mesylate Injectable Suspension - Ilginatinib: - text: Ilginatinib - Itraconazole Dispersion In Polymer Matrix: - text: Itraconazole Dispersion In Polymer Matrix - Tin Ethyl Etiopurpurin: - text: Tin Ethyl Etiopurpurin - Anti-Globo H/MMAE Antibody-drug Conjugate OBI 999: - text: Anti-Globo H/MMAE Antibody-drug Conjugate OBI 999 - Taladegib: - text: Taladegib - Rivoceranib: - text: Rivoceranib - Anti-CTLA-4 Probody BMS-986288: - text: Anti-CTLA-4 Probody BMS-986288 - Iratumumab: - text: Iratumumab - Vincristine Sulfate Liposome: - text: Vincristine Sulfate Liposome - Iobenguane I-131: - text: Iobenguane I-131 - Monoclonal Antibody L6: - text: Monoclonal Antibody L6 - Anti-CTLA-4/OX40 Bispecific Antibody ATOR-1015: - text: Anti-CTLA-4/OX40 Bispecific Antibody ATOR-1015 - Gilteritinib Fumarate: - text: Gilteritinib Fumarate - Everolimus: - text: Everolimus - Nazartinib: - text: Nazartinib - Ramucirumab: - text: Ramucirumab - Anti-Neuropilin-1 Monoclonal Antibody MNRP1685A: - text: Anti-Neuropilin-1 Monoclonal Antibody MNRP1685A - Tariquidar: - text: Tariquidar - Lutetium Lu 177 DOTA-N3-CTT1403: - text: Lutetium Lu 177 DOTA-N3-CTT1403 - Lysine-specific Demethylase 1 Inhibitor INCB059872: - text: Lysine-specific Demethylase 1 Inhibitor INCB059872 - Anti-MUC16/MMAE Antibody-Drug Conjugate DMUC4064A: - text: Anti-MUC16/MMAE Antibody-Drug Conjugate DMUC4064A - Cevipabulin Succinate: - text: Cevipabulin Succinate - Elotuzumab: - text: Elotuzumab - Monoclonal Antibody Hu3S193: - text: Monoclonal Antibody Hu3S193 - Galeterone: - text: Galeterone - Anti-KSP/Anti-VEGF siRNAs ALN-VSP02: - text: Anti-KSP/Anti-VEGF siRNAs ALN-VSP02 - Nanoparticle Albumin-Bound Docetaxel: - text: Nanoparticle Albumin-Bound Docetaxel - Lucatumumab: - text: Lucatumumab - Anti-GnRH Vaccine PEP223: - text: Anti-GnRH Vaccine PEP223 - JAK2 Inhibitor AZD1480: - text: JAK2 Inhibitor AZD1480 - AXL Inhibitor SLC-391: - text: AXL Inhibitor SLC-391 - Anti-ENPP3 Antibody-Drug Conjugate AGS-16C3F: - text: Anti-ENPP3 Antibody-Drug Conjugate AGS-16C3F - Sam68 Modulator CWP232291: - text: Sam68 Modulator CWP232291 - Anti-c-KIT Monoclonal Antibody CDX 0158: - text: Anti-c-KIT Monoclonal Antibody CDX 0158 - Hsp90 Inhibitor BIIB021: - text: Hsp90 Inhibitor BIIB021 - Pipendoxifene: - text: Pipendoxifene - IDH1R132H-Specific Peptide Vaccine PEPIDH1M: - text: IDH1R132H-Specific Peptide Vaccine PEPIDH1M - 2-Fluorofucose-containing SGN-2FF: - text: 2-Fluorofucose-containing SGN-2FF - Decitabine and Cedazuridine: - text: Decitabine and Cedazuridine - Transdermal 4-Hydroxytestosterone: - text: Transdermal 4-Hydroxytestosterone - Apricoxib: - text: Apricoxib - Dalantercept: - text: Dalantercept - Agerafenib: - text: Agerafenib - Anti-BCMA SparX Protein Plus BCMA-directed Anti-TAAG ARC T-cells CART-ddBCMA: - text: Anti-BCMA SparX Protein Plus BCMA-directed Anti-TAAG ARC T-cells CART-ddBCMA - TLR Agonist CADI-05: - text: TLR Agonist CADI-05 - Oral Sodium Phenylbutyrate: - text: Oral Sodium Phenylbutyrate - Iadademstat: - text: Iadademstat - Mercaptopurine Anhydrous: - text: Mercaptopurine Anhydrous - Anti-GD2 hu3F8/Anti-CD3 huOKT3 Bispecific Antibody: - text: Anti-GD2 hu3F8/Anti-CD3 huOKT3 Bispecific Antibody - Anti-HER2 Antibody-drug Conjugate ARX788: - text: Anti-HER2 Antibody-drug Conjugate ARX788 - Ixazomib Citrate: - text: Ixazomib Citrate - MEK Inhibitor AZD8330: - text: MEK Inhibitor AZD8330 - Anti-OFA Immunotherapeutic BB-MPI-03: - text: Anti-OFA Immunotherapeutic BB-MPI-03 - MTF-1 Inhibitor APTO-253 HCl: - text: MTF-1 Inhibitor APTO-253 HCl - BRAF Inhibitor BGB-3245: - text: BRAF Inhibitor BGB-3245 - p70S6K Inhibitor LY2584702: - text: p70S6K Inhibitor LY2584702 - KRAS Mutant-targeting AMG 510: - text: KRAS Mutant-targeting AMG 510 - CDK4/6 Inhibitor G1T38: - text: CDK4/6 Inhibitor G1T38 - PKC-alpha Antisense Oligodeoxynucleotide ISIS 3521: - text: PKC-alpha Antisense Oligodeoxynucleotide ISIS 3521 - Pomegranate Liquid Extract: - text: Pomegranate Liquid Extract - Taselisib: - text: Taselisib - Retinoid 9cUAB30: - text: Retinoid 9cUAB30 - Tranylcypromine Sulfate: - text: Tranylcypromine Sulfate - Talazoparib: - text: Talazoparib - Bizelesin: - text: Bizelesin - Belzutifan: - text: Belzutifan - DNA-PK/PI3K-delta Inhibitor BR101801: - text: DNA-PK/PI3K-delta Inhibitor BR101801 - Nanosomal Docetaxel Lipid Suspension: - text: Nanosomal Docetaxel Lipid Suspension - Melanoma TRP2 CTL Epitope Vaccine SCIB1: - text: Melanoma TRP2 CTL Epitope Vaccine SCIB1 - Selective Estrogen Receptor Degrader LSZ102: - text: Selective Estrogen Receptor Degrader LSZ102 - Clostridium Novyi-NT Spores: - text: Clostridium Novyi-NT Spores - Mechlorethamine: - text: Mechlorethamine - Idasanutlin: - text: Idasanutlin - FLT3/FGFR Dual Kinase Inhibitor MAX-40279: - text: FLT3/FGFR Dual Kinase Inhibitor MAX-40279 - Fulvestrant: - text: Fulvestrant - Anti-ErbB2/Anti-ErbB3 Bispecific Monoclonal Antibody MM-111: - text: Anti-ErbB2/Anti-ErbB3 Bispecific Monoclonal Antibody MM-111 - Estramustine: - text: Estramustine - Glutamine Antagonist DRP-104: - text: Glutamine Antagonist DRP-104 - Iodine I 131 Ethiodized Oil: - text: Iodine I 131 Ethiodized Oil - Recombinant Interferon Alfa-2b: - text: Recombinant Interferon Alfa-2b - Gemcitabine Elaidate: - text: Gemcitabine Elaidate - MDM2 Antagonist RO6839921: - text: MDM2 Antagonist RO6839921 - PD-L1/4-1BB/HSA Trispecific Fusion Protein NM21-1480: - text: PD-L1/4-1BB/HSA Trispecific Fusion Protein NM21-1480 - Synchrotope TA2M Plasmid DNA Vaccine: - text: Synchrotope TA2M Plasmid DNA Vaccine - EphA2-targeting Bicycle Toxin Conjugate BT5528: - text: EphA2-targeting Bicycle Toxin Conjugate BT5528 - Human Monoclonal Antibody 216: - text: Human Monoclonal Antibody 216 - I 131 Monoclonal Antibody CC49: - text: I 131 Monoclonal Antibody CC49 - Hydroxytyrosol: - text: Hydroxytyrosol - Alisertib: - text: Alisertib - Acetylcysteine: - text: Acetylcysteine - Oxcarbazepine: - text: Oxcarbazepine - Orantinib: - text: Orantinib - MEK Inhibitor CI-1040: - text: MEK Inhibitor CI-1040 - Varlilumab: - text: Varlilumab - Super Enhancer Inhibitor GZ17-6.02: - text: Super Enhancer Inhibitor GZ17-6.02 - Monoclonal Antibody NEO-201: - text: Monoclonal Antibody NEO-201 - Pracinostat: - text: Pracinostat - Idetrexed: - text: Idetrexed - Anti-NRP1 Antibody ASP1948: - text: Anti-NRP1 Antibody ASP1948 - Tegafur-Gimeracil-Oteracil Potassium-Leucovorin Calcium Oral Formulation: - text: Tegafur-Gimeracil-Oteracil Potassium-Leucovorin Calcium Oral Formulation - Sivifene: - text: Sivifene - PSMA-targeted Tubulysin B-containing Conjugate EC1169: - text: PSMA-targeted Tubulysin B-containing Conjugate EC1169 - PI3Ka/mTOR Inhibitor PKI-179: - text: PI3Ka/mTOR Inhibitor PKI-179 - Anti-ErbB3 Monoclonal Antibody CDX-3379: - text: Anti-ErbB3 Monoclonal Antibody CDX-3379 - Engineered Toxin Body Targeting CD38 TAK-169: - text: Engineered Toxin Body Targeting CD38 TAK-169 - Topoisomerase-II Inhibitor Racemic XK469: - text: Topoisomerase-II Inhibitor Racemic XK469 - Ovarian Cancer Stem Cell/hTERT/Survivin mRNAs-loaded Autologous Dendritic Cell Vaccine DC-006: - text: Ovarian Cancer Stem Cell/hTERT/Survivin mRNAs-loaded Autologous Dendritic - Cell Vaccine DC-006 - Tapotoclax: - text: Tapotoclax - Iproplatin: - text: Iproplatin - HuaChanSu: - text: HuaChanSu - Factor VIIa Inhibitor PCI-27483: - text: Factor VIIa Inhibitor PCI-27483 - Sho-Saiko-To: - text: Sho-Saiko-To - Mirabegron: - text: Mirabegron - Nitrogen Mustard Prodrug PR-104: - text: Nitrogen Mustard Prodrug PR-104 - Dexamethasone Phosphate: - text: Dexamethasone Phosphate - Ensartinib: - text: Ensartinib - Anti-EGFRvIII/CD3 BiTE Antibody AMG 596: - text: Anti-EGFRvIII/CD3 BiTE Antibody AMG 596 - Pan-RAR Agonist/AP-1 Inhibitor LGD 1550: - text: Pan-RAR Agonist/AP-1 Inhibitor LGD 1550 - CCR4 Inhibitor FLX475: - text: CCR4 Inhibitor FLX475 - SERD SHR9549: - text: SERD SHR9549 - Pidilizumab: - text: Pidilizumab - Autologous Mesothelin-specific Human mRNA CAR-transfected PBMCs MCY-M11: - text: Autologous Mesothelin-specific Human mRNA CAR-transfected PBMCs MCY-M11 - Rocakinogene Sifuplasmid: - text: Rocakinogene Sifuplasmid - Deoxycytidine Analogue TAS-109: - text: Deoxycytidine Analogue TAS-109 - Recombinant Human Endostatin: - text: Recombinant Human Endostatin - Protein Stabilized Liposomal Docetaxel Nanoparticles: - text: Protein Stabilized Liposomal Docetaxel Nanoparticles - Anti-CTLA-4 Monoclonal Antibody ONC-392: - text: Anti-CTLA-4 Monoclonal Antibody ONC-392 - DR5 HexaBody Agonist GEN1029: - text: DR5 HexaBody Agonist GEN1029 - Anti-Claudin18.2 Monoclonal Antibody TST001: - text: Anti-Claudin18.2 Monoclonal Antibody TST001 - Anti-GD3 Antibody-drug Conjugate PF-06688992: - text: Anti-GD3 Antibody-drug Conjugate PF-06688992 - Seribantumab: - text: Seribantumab - Nutlin-3a: - text: Nutlin-3a - Darinaparsin: - text: Darinaparsin - Patritumab Deruxtecan: - text: Patritumab Deruxtecan - Photosensitizer LUZ 11: - text: Photosensitizer LUZ 11 - HPV-6-targeting Immunotherapeutic Vaccine INO-3106: - text: HPV-6-targeting Immunotherapeutic Vaccine INO-3106 - alpha-Folate Receptor-targeting Thymidylate Synthase Inhibitor ONX-0801: - text: alpha-Folate Receptor-targeting Thymidylate Synthase Inhibitor ONX-0801 - Bintrafusp Alfa: - text: Bintrafusp Alfa - Vantictumab: - text: Vantictumab - Dasatinib: - text: Dasatinib - PI3K/mTOR/ALK-1/DNA-PK Inhibitor P7170: - text: PI3K/mTOR/ALK-1/DNA-PK Inhibitor P7170 - Teniposide: - text: Teniposide - Avadomide Hydrochloride: - text: Avadomide Hydrochloride - Multi-mode Kinase Inhibitor EOC317: - text: Multi-mode Kinase Inhibitor EOC317 - Hexaminolevulinate: - text: Hexaminolevulinate - Cergutuzumab Amunaleukin: - text: Cergutuzumab Amunaleukin - CDK8/19 Inhibitor SEL 120: - text: CDK8/19 Inhibitor SEL 120 - Selective Glucocorticoid Receptor Antagonist CORT125281: - text: Selective Glucocorticoid Receptor Antagonist CORT125281 - Aglatimagene Besadenovec: - text: Aglatimagene Besadenovec - Epacadostat: - text: Epacadostat - Cancer Peptide Vaccine S-588410: - text: Cancer Peptide Vaccine S-588410 - Platinum Acetylacetonate-Titanium Dioxide Nanoparticles: - text: Platinum Acetylacetonate-Titanium Dioxide Nanoparticles - Cyproterone Acetate: - text: Cyproterone Acetate - Semaxanib: - text: Semaxanib - Dendrimer-conjugated Bcl-2/Bcl-XL Inhibitor AZD0466: - text: Dendrimer-conjugated Bcl-2/Bcl-XL Inhibitor AZD0466 - Shark Cartilage Extract AE-941: - text: Shark Cartilage Extract AE-941 - Fosifloxuridine Nafalbenamide: - text: Fosifloxuridine Nafalbenamide - Calcium Release-activated Channel Inhibitor CM4620: - text: Calcium Release-activated Channel Inhibitor CM4620 - Lenvatinib Mesylate: - text: Lenvatinib Mesylate - Docetaxel Emulsion ANX-514: - text: Docetaxel Emulsion ANX-514 - Vinblastine Sulfate: - text: Vinblastine Sulfate - Toremifene Citrate: - text: Toremifene Citrate - Simlukafusp Alfa: - text: Simlukafusp Alfa - Tidutamab: - text: Tidutamab - Mavorixafor: - text: Mavorixafor - Pegylated Paclitaxel: - text: Pegylated Paclitaxel - Vascular Disrupting Agent BNC105: - text: Vascular Disrupting Agent BNC105 - AKT 1/2 Inhibitor BAY1125976: - text: AKT 1/2 Inhibitor BAY1125976 - Selective Estrogen Receptor Degrader AZD9496: - text: Selective Estrogen Receptor Degrader AZD9496 - BET-bromodomain Inhibitor ODM-207: - text: BET-bromodomain Inhibitor ODM-207 - Anti-NaPi2b Antibody-drug Conjugate XMT-1592: - text: Anti-NaPi2b Antibody-drug Conjugate XMT-1592 - Semustine: - text: Semustine - Vorasidenib: - text: Vorasidenib - Immunomodulator LAM-003: - text: Immunomodulator LAM-003 - Letolizumab: - text: Letolizumab - Antibody-drug Conjugate ADC XMT-1536: - text: Antibody-drug Conjugate ADC XMT-1536 - Anti-CD22 Monoclonal Antibody-MMAE Conjugate DCDT2980S: - text: Anti-CD22 Monoclonal Antibody-MMAE Conjugate DCDT2980S - BRAF Inhibitor ARQ 736: - text: BRAF Inhibitor ARQ 736 - Gimatecan: - text: Gimatecan - Arsenic Trioxide: - text: Arsenic Trioxide - Vosaroxin: - text: Vosaroxin - Androgen Antagonist APC-100: - text: Androgen Antagonist APC-100 - 14C BMS-275183: - text: 14C BMS-275183 - Recombinant Interferon Gamma: - text: Recombinant Interferon Gamma - Deferoxamine: - text: Deferoxamine - Enoblituzumab: - text: Enoblituzumab - Verubulin Hydrochloride: - text: Verubulin Hydrochloride - PD-1 Inhibitor: - text: PD-1 Inhibitor - Allogeneic Anti-BCMA CAR-transduced T-cells ALLO-715: - text: Allogeneic Anti-BCMA CAR-transduced T-cells ALLO-715 - P-cadherin-targeting Agent PF-06671008: - text: P-cadherin-targeting Agent PF-06671008 - Idarubicin: - text: Idarubicin - Shared Anti-Idiotype-AB-S024A: - text: Shared Anti-Idiotype-AB-S024A - Bendamustine-containing Nanoparticle-based Formulation RXDX-107: - text: Bendamustine-containing Nanoparticle-based Formulation RXDX-107 - Carotuximab: - text: Carotuximab - Vesigenurtucel-L: - text: Vesigenurtucel-L - Thiotepa: - text: Thiotepa - Mirvetuximab Soravtansine: - text: Mirvetuximab Soravtansine - Anti-CEA/Anti-DTPA-In (F6-734) Bispecific Antibody: - text: Anti-CEA/Anti-DTPA-In (F6-734) Bispecific Antibody - Losatuxizumab Vedotin: - text: Losatuxizumab Vedotin - Indoximod Prodrug NLG802: - text: Indoximod Prodrug NLG802 - Angiogenesis Inhibitor GT-111: - text: Angiogenesis Inhibitor GT-111 - Anti-CD39 Monoclonal Antibody SRF617: - text: Anti-CD39 Monoclonal Antibody SRF617 - Golnerminogene Pradenovec: - text: Golnerminogene Pradenovec - RNR Inhibitor COH29: - text: RNR Inhibitor COH29 - Silatecan AR-67: - text: Silatecan AR-67 - MDM2 Inhibitor BI 907828: - text: MDM2 Inhibitor BI 907828 - RIPK1 Inhibitor GSK3145095: - text: RIPK1 Inhibitor GSK3145095 - Diphtheria Toxin Fragment-Interleukin-2 Fusion Protein E7777: - text: Diphtheria Toxin Fragment-Interleukin-2 Fusion Protein E7777 - Autologous Dendritic Cell-based Immunotherapeutic AV0113: - text: Autologous Dendritic Cell-based Immunotherapeutic AV0113 - Resminostat: - text: Resminostat - Iodine I 124 Monoclonal Antibody M5A: - text: Iodine I 124 Monoclonal Antibody M5A - Antibody-drug Conjugate Anti-TIM-1-vcMMAE CDX-014: - text: Antibody-drug Conjugate Anti-TIM-1-vcMMAE CDX-014 - Triplatin Tetranitrate: - text: Triplatin Tetranitrate - Tipapkinogene Sovacivec: - text: Tipapkinogene Sovacivec - iPSC-derived CD16/IL-15RF-expressing Anti-CD19 CAR-NK Cells FT596: - text: iPSC-derived CD16/IL-15RF-expressing Anti-CD19 CAR-NK Cells FT596 - Beta-Carotene: - text: Beta-Carotene - Valecobulin: - text: Valecobulin - VGEF Mixed-Backbone Antisense Oligonucleotide GEM 220: - text: VGEF Mixed-Backbone Antisense Oligonucleotide GEM 220 - Anti-GITR Monoclonal Antibody GWN 323: - text: Anti-GITR Monoclonal Antibody GWN 323 - Autologous Anti-BCMA CD8+ CAR T-cells Descartes-11: - text: Autologous Anti-BCMA CD8+ CAR T-cells Descartes-11 - Efizonerimod: - text: Efizonerimod - Natural Killer Cells ZRx101: - text: Natural Killer Cells ZRx101 - Pan-VEGFR/TIE2 Tyrosine Kinase Inhibitor CEP-11981: - text: Pan-VEGFR/TIE2 Tyrosine Kinase Inhibitor CEP-11981 - Paclitaxel Injection Concentrate for Nanodispersion: - text: Paclitaxel Injection Concentrate for Nanodispersion - Fosgemcitabine Palabenamide: - text: Fosgemcitabine Palabenamide - Selective Estrogen Receptor Degrader SRN-927: - text: Selective Estrogen Receptor Degrader SRN-927 - Tilsotolimod Sodium: - text: Tilsotolimod Sodium - Autologous Heat-Shock Protein 70 Peptide Vaccine AG-858: - text: Autologous Heat-Shock Protein 70 Peptide Vaccine AG-858 - Gallium-based Bone Resorption Inhibitor AP-002: - text: Gallium-based Bone Resorption Inhibitor AP-002 - PI3K Alpha/Beta Inhibitor BAY1082439: - text: PI3K Alpha/Beta Inhibitor BAY1082439 - TLR7/8/9 Antagonist IMO-8400: - text: TLR7/8/9 Antagonist IMO-8400 - Acyclic Nucleoside Phosphonate Prodrug ABI-1968: - text: Acyclic Nucleoside Phosphonate Prodrug ABI-1968 - N,N-Dibenzyl Daunomycin: - text: N,N-Dibenzyl Daunomycin - Liarozole: - text: Liarozole - MKNK1 Inhibitor BAY 1143269: - text: MKNK1 Inhibitor BAY 1143269 - Monoclonal Antibody HuHMFG1: - text: Monoclonal Antibody HuHMFG1 - MEK Inhibitor GDC-0623: - text: MEK Inhibitor GDC-0623 - Vadastuximab Talirine: - text: Vadastuximab Talirine - ATM Kinase Inhibitor AZD0156: - text: ATM Kinase Inhibitor AZD0156 - Daratumumab/rHuPH20: - text: Daratumumab/rHuPH20 - Cationic Peptide Cream Cypep-1: - text: Cationic Peptide Cream Cypep-1 - Bisantrene Hydrochloride: - text: Bisantrene Hydrochloride - Flanvotumab: - text: Flanvotumab - Anti-HLA-G Antibody TTX-080: - text: Anti-HLA-G Antibody TTX-080 - Recombinant Luteinizing Hormone: - text: Recombinant Luteinizing Hormone - Ivaltinostat: - text: Ivaltinostat - Entrectinib: - text: Entrectinib - 2-Hydroxyflutamide Depot: - text: 2-Hydroxyflutamide Depot - Detirelix: - text: Detirelix - Medroxyprogesterone: - text: Medroxyprogesterone - Oral Pancreatic Cancer Vaccine V3-P: - text: Oral Pancreatic Cancer Vaccine V3-P - Anti-MMP-9 Monoclonal Antibody GS-5745: - text: Anti-MMP-9 Monoclonal Antibody GS-5745 - Streptonigrin: - text: Streptonigrin - Mcl-1 Inhibitor MIK665: - text: Mcl-1 Inhibitor MIK665 - Recombinant Human EGF-rP64K/Montanide ISA 51 Vaccine: - text: Recombinant Human EGF-rP64K/Montanide ISA 51 Vaccine - Talacotuzumab: - text: Talacotuzumab - Iberdomide: - text: Iberdomide - Minretumomab: - text: Minretumomab - p97 Inhibitor CB-5083: - text: p97 Inhibitor CB-5083 - PV-10: - text: PV-10 - MDM2 Inhibitor KRT-232: - text: MDM2 Inhibitor KRT-232 - Citatuzumab Bogatox: - text: Citatuzumab Bogatox - Leuprolide Acetate: - text: Leuprolide Acetate - Picropodophyllin: - text: Picropodophyllin - Atuveciclib: - text: Atuveciclib - Autologous Nectin-4/FAP-targeted CAR-T Cells: - text: Autologous Nectin-4/FAP-targeted CAR-T Cells - Altiratinib: - text: Altiratinib - Tomivosertib: - text: Tomivosertib - Elsamitrucin: - text: Elsamitrucin - Anti-gremlin-1 Monoclonal Antibody UCB6114: - text: Anti-gremlin-1 Monoclonal Antibody UCB6114 - STAT3 Inhibitor OPB-31121: - text: STAT3 Inhibitor OPB-31121 - Acronine: - text: Acronine - Anti-CD25 Monoclonal Antibody RO7296682: - text: Anti-CD25 Monoclonal Antibody RO7296682 - Autologous CD123-4SCAR-expressing T-cells 4SCAR123: - text: Autologous CD123-4SCAR-expressing T-cells 4SCAR123 - Lurbinectedin: - text: Lurbinectedin - Loncastuximab Tesirine: - text: Loncastuximab Tesirine - Bruceanol D: - text: Bruceanol D - Duvelisib: - text: Duvelisib - Olaparib: - text: Olaparib - Anti-CD40L Fc-Fusion Protein BMS-986004: - text: Anti-CD40L Fc-Fusion Protein BMS-986004 - Aprinocarsen: - text: Aprinocarsen - Halofuginone: - text: Halofuginone - Iodine I 124 Monoclonal Antibody A33: - text: Iodine I 124 Monoclonal Antibody A33 - TIGIT Inhibitor M6223: - text: TIGIT Inhibitor M6223 - Apatorsen: - text: Apatorsen - Cytarabine Monophosphate Prodrug MB07133: - text: Cytarabine Monophosphate Prodrug MB07133 - Iso-fludelone: - text: Iso-fludelone - Transferrin Receptor-Targeted Anti-RRM2 siRNA CALAA-01: - text: Transferrin Receptor-Targeted Anti-RRM2 siRNA CALAA-01 - Retinyl Palmitate: - text: Retinyl Palmitate - Thorium Th 227 Anetumab Corixetan: - text: Thorium Th 227 Anetumab Corixetan - Monoclonal Antibody huJ591: - text: Monoclonal Antibody huJ591 - BF-200 Gel Formulation: - text: BF-200 Gel Formulation - Curcumin/Doxorubicin-encapsulating Nanoparticle IMX-110: - text: Curcumin/Doxorubicin-encapsulating Nanoparticle IMX-110 - Olaptesed Pegol: - text: Olaptesed Pegol - Tegafur: - text: Tegafur - EZH1/2 Inhibitor DS-3201: - text: EZH1/2 Inhibitor DS-3201 - Aniline Mustard: - text: Aniline Mustard - Porcupine Inhibitor ETC-1922159: - text: Porcupine Inhibitor ETC-1922159 - Tyrosinase-KLH: - text: Tyrosinase-KLH - HER2-directed TLR8 Agonist SBT6050: - text: HER2-directed TLR8 Agonist SBT6050 - Irinotecan Sucrosofate: - text: Irinotecan Sucrosofate - Anti-Globo H Monoclonal Antibody OBI-888: - text: Anti-Globo H Monoclonal Antibody OBI-888 - Anti-c-Met Monoclonal Antibody ARGX-111: - text: Anti-c-Met Monoclonal Antibody ARGX-111 - DNA Vaccine VB10.16: - text: DNA Vaccine VB10.16 - Coxsackievirus A21: - text: Coxsackievirus A21 - Anti-CD20/CD3 Monoclonal Antibody REGN1979: - text: Anti-CD20/CD3 Monoclonal Antibody REGN1979 - TRAIL Receptor Agonist ABBV-621: - text: TRAIL Receptor Agonist ABBV-621 - Adenovirus Serotype 26-expressing HPV16 Vaccine JNJ-63682918: - text: Adenovirus Serotype 26-expressing HPV16 Vaccine JNJ-63682918 - Recombinant Transforming Growth Factor-Beta: - text: Recombinant Transforming Growth Factor-Beta - Interferon: - text: Interferon - Monoclonal Antibody 3H1 Anti-Idiotype Vaccine: - text: Monoclonal Antibody 3H1 Anti-Idiotype Vaccine - Emitefur: - text: Emitefur - Zebularine: - text: Zebularine - Entolimod: - text: Entolimod - BET Inhibitor INCB057643: - text: BET Inhibitor INCB057643 - Anti-PD-L1 Monoclonal Antibody IMC-001: - text: Anti-PD-L1 Monoclonal Antibody IMC-001 - Glasdegib Maleate: - text: Glasdegib Maleate - Lutetium Lu 177 Monoclonal Antibody J591: - text: Lutetium Lu 177 Monoclonal Antibody J591 - Licartin: - text: Licartin - Pan-AKT Kinase Inhibitor GSK690693: - text: Pan-AKT Kinase Inhibitor GSK690693 - Cevostamab: - text: Cevostamab - HDAC Inhibitor CXD101: - text: HDAC Inhibitor CXD101 - Nolatrexed Dihydrochloride: - text: Nolatrexed Dihydrochloride - Smoothened Antagonist TAK-441: - text: Smoothened Antagonist TAK-441 - Troglitazone: - text: Troglitazone - Oglufanide Disodium: - text: Oglufanide Disodium - ADH-1: - text: ADH-1 - Anti-CEACAM5 Antibody-Drug Conjugate SAR408701: - text: Anti-CEACAM5 Antibody-Drug Conjugate SAR408701 - Foslinanib: - text: Foslinanib - pbi-shRNA STMN1 Lipoplex: - text: pbi-shRNA STMN1 Lipoplex - Osilodrostat: - text: Osilodrostat - Serabelisib: - text: Serabelisib - Teglarinad Chloride: - text: Teglarinad Chloride - Tiragolumab: - text: Tiragolumab - Anti-OX40 Monoclonal Antibody GSK3174998: - text: Anti-OX40 Monoclonal Antibody GSK3174998 - Esterified Estrogens: - text: Esterified Estrogens - Vibostolimab: - text: Vibostolimab - Yttrium Y-90 Tacatuzumab Tetraxetan: - text: Yttrium Y-90 Tacatuzumab Tetraxetan - Rhizoxin: - text: Rhizoxin - Indibulin: - text: Indibulin - Anti-CD40 Monoclonal Antibody SEA-CD40: - text: Anti-CD40 Monoclonal Antibody SEA-CD40 - CDC7 Kinase Inhibitor BMS-863233: - text: CDC7 Kinase Inhibitor BMS-863233 - Phosphatidylcholine-Bound Silybin: - text: Phosphatidylcholine-Bound Silybin - Anti-CSF1 Monoclonal Antibody PD-0360324: - text: Anti-CSF1 Monoclonal Antibody PD-0360324 - enum_CCDH_Substance_role: - name: enum_CCDH_Substance_role - description: Autogenerated Enumeration for CRDC-H Substance role - comments: - - 'Name according to TCCM: "CRDC-H.Substance.role"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Substance.role - code_set_version: '2021-07-21T20:42:59.982161+00:00' - enum_CCDH_TimePoint_eventType: - name: enum_CCDH_TimePoint_eventType - description: A specific type of event for which a timepoint is captured - notes: - - Derived from [TimePoint.eventType in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - IACUC approval: - text: IACUC approval - description: The date that the Institutional Animal Care and Use Committee - (IACUC) approved an animal study protocol. This date cannot be released - to funding agencies until congruency between the animal use in the funding - proposal and the IACUC approved protocol has been verified. - IRB approval: - text: IRB approval - description: The date that the Institutional Review Board (IRB) approved a - study protocol - Histological confirmation of diagnosis: - text: Histological confirmation of diagnosis - description: The date that a histological diagnosis was confirmed. - enum_CCDH_TobaccoExposureObservation_category: - name: enum_CCDH_TobaccoExposureObservation_category - description: Autogenerated Enumeration for CRDC-H TobaccoExposureObservation category - comments: - - 'Name according to TCCM: "CRDC-H.TobaccoExposureObservation.category"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.TobaccoExposureObservation.category - code_set_version: '2021-07-21T20:43:00.276862+00:00' - enum_CCDH_TobaccoExposureObservation_observation_type: - name: enum_CCDH_TobaccoExposureObservation_observation_type - description: Autogenerated Enumeration for CRDC-H TobaccoExposureObservation observation_type - comments: - - 'Name according to TCCM: "CRDC-H.TobaccoExposureObservation.observation_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.TobaccoExposureObservation.observation_type - code_set_version: '2021-07-21T20:43:00.419380+00:00' - enum_CCDH_TobaccoExposureObservation_method_type: - name: enum_CCDH_TobaccoExposureObservation_method_type - description: Autogenerated Enumeration for CRDC-H TobaccoExposureObservation method_type - comments: - - 'Name according to TCCM: "CRDC-H.TobaccoExposureObservation.method_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.TobaccoExposureObservation.method_type - code_set_version: '2021-07-21T20:43:00.568418+00:00' - enum_CCDH_TobaccoExposureObservation_valueCodeableConcept: - name: enum_CCDH_TobaccoExposureObservation_valueCodeableConcept - description: Autogenerated Enumeration for CRDC-H TobaccoExposureObservation valueCodeableConcept - comments: - - 'Name according to TCCM: "CRDC-H.TobaccoExposureObservation.valueCodeableConcept"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.TobaccoExposureObservation.valueCodeableConcept - code_set_version: '2021-07-21T20:43:00.718144+00:00' - permissible_values: - Some days: - text: Some days - Every day: - text: Every day - Unknown: - text: Unknown - description: Unknown - After 60 Minutes: - text: After 60 Minutes - Within 5 Minutes: - text: Within 5 Minutes - 6-30 Minutes: - text: 6-30 Minutes - 31-60 Minutes: - text: 31-60 Minutes - Electronic Cigarette: - text: Electronic Cigarette - Smokeless Tobacco: - text: Smokeless Tobacco - Other: - text: Other - Cigar: - text: Cigar - Cigarette: - text: Cigarette - Pipe: - text: Pipe - Not Reported: - text: Not Reported - '1': - text: '1' - description: Lifelong Non-Smoker - '7': - text: '7' - description: Smoking history not documented - '2': - text: '2' - description: Current Smoker - '3': - text: '3' - description: Current Reformed Smoker for > 15 yrs - '5': - text: '5' - description: Current Reformed Smoker, Duration Not Specified - '4': - text: '4' - description: Current Reformed Smoker for < or = 15 yrs - 'Yes': - text: 'Yes' - 'No': - text: 'No' - '6': - text: '6' - description: Smoker at Diagnosis - Cigarettes: - text: Cigarettes - enum_CCDH_Treatment_treatment_type: - name: enum_CCDH_Treatment_treatment_type - description: Autogenerated Enumeration for CRDC-H Treatment treatment_type - comments: - - 'Name according to TCCM: "CRDC-H.Treatment.treatment_type"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Treatment.treatment_type - code_set_version: '2021-07-21T20:43:00.885405+00:00' - permissible_values: - Radiation, Cyberknife: - text: Radiation, Cyberknife - Radiation, Combination: - text: Radiation, Combination - Stereotactic Radiosurgery: - text: Stereotactic Radiosurgery - Ancillary Treatment: - text: Ancillary Treatment - Ethanol Injection Ablation: - text: Ethanol Injection Ablation - Stem Cell Transplantation, Haploidentical: - text: Stem Cell Transplantation, Haploidentical - Concurrent Chemoradiation: - text: Concurrent Chemoradiation - Stem Cell Treatment: - text: Stem Cell Treatment - Brachytherapy, High Dose: - text: Brachytherapy, High Dose - description: High-Dose Rate Brachytherapy - Radiation, Photon Beam: - text: Radiation, Photon Beam - Radiation, Systemic: - text: Radiation, Systemic - Radiation Therapy, NOS: - text: Radiation Therapy, NOS - Radiation, 2D Conventional: - text: Radiation, 2D Conventional - I-131 Radiation Therapy: - text: I-131 Radiation Therapy - Radiosensitizing Agent: - text: Radiosensitizing Agent - Chemotherapy: - text: Chemotherapy - description: Chemotherapy - Chemoembolization: - text: Chemoembolization - Internal Radiation: - text: Internal Radiation - description: Internal Radiation Therapy - Radiation, 3D Conformal: - text: Radiation, 3D Conformal - Radiation, Stereotactic/Gamma Knife/SRS: - text: Radiation, Stereotactic/Gamma Knife/SRS - Ablation, Ethanol Injection: - text: Ablation, Ethanol Injection - Antiseizure Treatment: - text: Antiseizure Treatment - Stem Cell Transplantation, Autologous: - text: Stem Cell Transplantation, Autologous - Bisphosphonate Therapy: - text: Bisphosphonate Therapy - Hormone Therapy: - text: Hormone Therapy - description: Endocrine Therapy - Radiation, Implants: - text: Radiation, Implants - Cryoablation: - text: Cryoablation - Radiation, Internal: - text: Radiation, Internal - Ablation, Cryo: - text: Ablation, Cryo - Stem Cell Transplantation, NOS: - text: Stem Cell Transplantation, NOS - Surgery: - text: Surgery - description: Surgical Procedure - Not Reported: - text: Not Reported - Other: - text: Other - description: Other - Radiation, Hypofractionated: - text: Radiation, Hypofractionated - Brachytherapy, Low Dose: - text: Brachytherapy, Low Dose - description: Low-Dose Rate Brachytherapy - Radiation, External Beam: - text: Radiation, External Beam - Radiation, Intensity-Modulated Radiotherapy: - text: Radiation, Intensity-Modulated Radiotherapy - Targeted Molecular Therapy: - text: Targeted Molecular Therapy - description: Targeted Molecular Therapy - Stem Cell Transplantation, Double Autologous: - text: Stem Cell Transplantation, Double Autologous - Blinded Study, Treatment Unknown: - text: Blinded Study, Treatment Unknown - Isolated Limb Perfusion (ILP): - text: Isolated Limb Perfusion (ILP) - Embolization: - text: Embolization - Stem Cell Transplantation, Allogeneic: - text: Stem Cell Transplantation, Allogeneic - Pharmaceutical Therapy, NOS: - text: Pharmaceutical Therapy, NOS - Stem Cell Transplantation, Non-Myeloablative: - text: Stem Cell Transplantation, Non-Myeloablative - Steroid Therapy: - text: Steroid Therapy - Stem Cell Transplantation, Syngenic: - text: Stem Cell Transplantation, Syngenic - Pleurodesis: - text: Pleurodesis - Ablation, Radiofrequency: - text: Ablation, Radiofrequency - External Beam Radiation: - text: External Beam Radiation - Ablation, Microwave: - text: Ablation, Microwave - Radiation, Proton Beam: - text: Radiation, Proton Beam - Chemoprotectant: - text: Chemoprotectant - Brachytherapy, NOS: - text: Brachytherapy, NOS - Immunotherapy (Including Vaccines): - text: Immunotherapy (Including Vaccines) - Ablation, NOS: - text: Ablation, NOS - Ablation, Radiosurgical: - text: Ablation, Radiosurgical - Organ Transplantation: - text: Organ Transplantation - Unknown: - text: Unknown - description: Unknown - Radiation, Mixed Photon Beam: - text: Radiation, Mixed Photon Beam - Radioactive Iodine Therapy: - text: Radioactive Iodine Therapy - Radioembolization: - text: Radioembolization - Radiation, Radioisotope: - text: Radiation, Radioisotope - enum_CCDH_Treatment_treatment_end_reason: - name: enum_CCDH_Treatment_treatment_end_reason - description: Autogenerated Enumeration for CRDC-H Treatment treatment_end_reason - comments: - - 'Name according to TCCM: "CRDC-H.Treatment.treatment_end_reason"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Treatment.treatment_end_reason - code_set_version: '2021-07-21T20:43:01.070322+00:00' - permissible_values: - Other: - text: Other - Disease Progression: - text: Disease Progression - Withdrawal by Subject: - text: Withdrawal by Subject - Adverse Event: - text: Adverse Event - Course of Therapy Completed: - text: Course of Therapy Completed - Death: - text: Death - enum_CCDH_Treatment_regimen: - name: enum_CCDH_Treatment_regimen - description: Autogenerated Enumeration for CRDC-H Treatment regimen - comments: - - 'Name according to TCCM: "CRDC-H.Treatment.regimen"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Treatment.regimen - code_set_version: '2021-07-21T20:43:01.219318+00:00' - enum_CCDH_Treatment_treatment_frequency: - name: enum_CCDH_Treatment_treatment_frequency - description: Autogenerated Enumeration for CRDC-H Treatment treatment_frequency - comments: - - 'Name according to TCCM: "CRDC-H.Treatment.treatment_frequency"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Treatment.treatment_frequency - code_set_version: '2021-07-21T20:43:01.376562+00:00' - permissible_values: - Every Other Day: - text: Every Other Day - Five Times Daily: - text: Five Times Daily - Unknown: - text: Unknown - Every Hour: - text: Every Hour - Not Reported: - text: Not Reported - Twice Daily: - text: Twice Daily - Three Times Daily: - text: Three Times Daily - Once Weekly: - text: Once Weekly - Twice Weekly: - text: Twice Weekly - Every 24 Hours: - text: Every 24 Hours - Four Times Daily: - text: Four Times Daily - enum_CCDH_Treatment_treatment_intent: - name: enum_CCDH_Treatment_treatment_intent - description: Autogenerated Enumeration for CRDC-H Treatment treatment_intent - comments: - - 'Name according to TCCM: "CRDC-H.Treatment.treatment_intent"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Treatment.treatment_intent - code_set_version: '2021-07-21T20:43:01.528612+00:00' - permissible_values: - Neoadjuvant: - text: Neoadjuvant - description: Neoadjuvant Therapy - Unknown: - text: Unknown - Prevention: - text: Prevention - description: Cancer Prevention - Adjuvant: - text: Adjuvant - description: Adjuvant Therapy - Not Reported: - text: Not Reported - Maintenance Therapy: - text: Maintenance Therapy - Androgen Deprivation Therapy (ADT): - text: Androgen Deprivation Therapy (ADT) - Cancer Control: - text: Cancer Control - Cure: - text: Cure - description: Cure - Palliative: - text: Palliative - description: Palliative - enum_CCDH_Treatment_treatment_effect: - name: enum_CCDH_Treatment_treatment_effect - description: Autogenerated Enumeration for CRDC-H Treatment treatment_effect - comments: - - 'Name according to TCCM: "CRDC-H.Treatment.treatment_effect"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Treatment.treatment_effect - code_set_version: '2021-07-21T20:43:01.685766+00:00' - permissible_values: - 'Yes': - text: 'Yes' - Not Reported: - text: Not Reported - description: Not Reported - Unknown: - text: Unknown - description: Unknown - 'No': - text: 'No' - Incomplete Necrosis (Viable Tumor Present): - text: Incomplete Necrosis (Viable Tumor Present) - No Necrosis: - text: No Necrosis - No Known Treatment Effect: - text: No Known Treatment Effect - Complete Necrosis (No Viable Tumor): - text: Complete Necrosis (No Viable Tumor) - enum_CCDH_Treatment_treatment_outcome: - name: enum_CCDH_Treatment_treatment_outcome - description: Autogenerated Enumeration for CRDC-H Treatment treatment_outcome - comments: - - 'Name according to TCCM: "CRDC-H.Treatment.treatment_outcome"' - code_set: https://terminology.ccdh.io/enumerations/CRDC-H.Treatment.treatment_outcome - code_set_version: '2021-07-21T20:43:01.840442+00:00' - permissible_values: - Treatment Ongoing: - text: Treatment Ongoing - description: Treatment Still in Progress - Complete Response: - text: Complete Response - description: Complete Response - Very Good Partial Response: - text: Very Good Partial Response - description: Very good Partial Response - Unknown: - text: Unknown - description: Unknown - No Measurable Disease: - text: No Measurable Disease - Stable Disease: - text: Stable Disease - description: Stable Disease - Mixed Response: - text: Mixed Response - description: Mixed response - Persistent Disease: - text: Persistent Disease - description: Persistent disease (Hematologic persistence) - Not Reported: - text: Not Reported - Treatment Stopped Due to Toxicity: - text: Treatment Stopped Due to Toxicity - description: Treatment Terminated Due to Toxicity - Progressive Disease: - text: Progressive Disease - description: Progressive Disease - Partial Response: - text: Partial Response - description: Partial Response - No Response: - text: No Response - description: No Response - enum_CCDH_ExecutionConditionObservation: - name: enum_CCDH_ExecutionConditionObservation - description: Types of observations about the environmental conditions under which - specific aspects of an activity were performed. - notes: - - Derived from [ExecutionConditionObservation in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - ischemic_temperature: - text: ischemic_temperature - description: A term describing the temperature of a specimen when it experienced - ischemia. - enum_CCDH_ExecutionTimeObservation: - name: enum_CCDH_ExecutionTimeObservation - description: An observation about the duration of specific aspects / parts of - an activity. - notes: - - Derived from [ExecutionTimeObservation in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - time_between_excision_and_freezing: - text: time_between_excision_and_freezing - description: The elapsed time between the excision and freezing of the specimen - from its subject/source. - time_between_clamping_and_freezing: - text: time_between_clamping_and_freezing - description: The elapsed time between the clamping of blood supply and freezing - of the specimen from its subject/source. - ischemic_time: - text: ischemic_time - description: Duration of time, in seconds, between when the specimen stopped - receiving oxygen and when it was preserved or processed. - enum_CCDH_ResearchProject_primary_anatomic_site: - name: enum_CCDH_ResearchProject_primary_anatomic_site - description: The text term used to describe the general location of the malignant - disease, as categorized by the World Health Organization's (WHO) International - Classification of Diseases for Oncology (ICD-O). - notes: - - Derived from [ResearchProject.primary_anatomic_site in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - enum_CCDH_Substance__role: - name: enum_CCDH_Substance__role - description: A role played by the substance in a particular application (e.g. - the role of a lysis buffer when applied in a specimen creation activity, or - the role of fixative when applied in specimen processing) - notes: - - Derived from [Substance. role in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - lysis buffer: - text: lysis buffer - description: A buffer applied to lyse and extract content from biological - material. - mounting medium: - text: mounting medium - description: A substance applied to secure a specimen or slide in place for - further examination (typically through microscopy) - fixative: - text: fixative - description: A substance applied preserve biological tissues from decay due - to autolysis or putrefaction - collection media: - text: collection media - description: A substance applied to stabilize or support the growth/metabolic - activity of a specimen or derived product such as a cell line. - enum_CCDH_TobbaccoExposureObservation_observation_type: - name: enum_CCDH_TobbaccoExposureObservation_observation_type - description: Types of observations about a Subject's exposure to or use of tobacco. - notes: - - Derived from [TobbaccoExposureObservation.observation_type in sheet O_CCDH Enums](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=196972368) - permissible_values: - cigarettes_per_day: - text: cigarettes_per_day - description: The average number of cigarettes smoked per day. - pack_years_smoked: - text: pack_years_smoked - description: Numeric computed value to represent lifetime tobacco exposure - defined as number of cigarettes smoked per day x number of years smoked - divided by 20. - tobacco_smoking_onset_year: - text: tobacco_smoking_onset_year - description: The year in which the participant began smoking. - tobacco_smoking_quit_year: - text: tobacco_smoking_quit_year - description: The year in which the participant quit smoking. - years_smoked: - text: years_smoked - description: Numeric value (or unknown) to represent the number of years a - person has been smoking. - smoking_frequency: - text: smoking_frequency - description: The text term used to generally describe how often the patient - smokes. - time_between_waking_and_first_smoke: - text: time_between_waking_and_first_smoke - description: The text term used to describe the approximate amount of time - elapsed between the time the patient wakes up in the morning to the time - they smoke their first cigarette. - environmental_tobacco_smoke_exposure: - text: environmental_tobacco_smoke_exposure - description: The yes/no/unknown indicator used to describe whether a patient - was exposed to smoke that is emitted from burning tobacco, including cigarettes, - pipes, and cigars. This includes tobacco smoke exhaled by smokers. - tobacco_smoking_status: - text: tobacco_smoking_status - description: Category describing current smoking status and smoking history - as self-reported by a patient. - type_of_tobacco_used: - text: type_of_tobacco_used - description: The text term used to describe the specific type of tobacco used - by the patient. -classes: - AlcoholExposureObservation: - name: AlcoholExposureObservation - description: A structured object that describes a single data item about an individual's - exposure to alcohol, as generated through a point-in-time observation, measurement, - or interpretation. - notes: - - Derived from [AlcoholExposureObservation in sheet AlcoholExposureObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1894439514) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: AlcoholExposureObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: AlcoholExposureObservation - range: enum_CCDH_AlcoholExposureObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of alcohol exposure observation made - i.e. - the feature or characteristic that was observed, measured, estimated, etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: alcohol_days_per_week - - value: alcohol_drinks_per_day - - value: alcohol_history - - value: alcohol_intensity - domain: AlcoholExposureObservation - range: enum_CCDH_AlcoholExposureObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..0' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: AlcoholExposureObservation - range: enum_CCDH_AlcoholExposureObservation_method_type - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..0' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: AlcoholExposureObservation - range: Entity - multivalued: false - required: false - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: AlcoholExposureObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: AlcoholExposureObservation - range: Organization - multivalued: false - required: false - valueInteger: - name: valueInteger - description: The result of the observation, encoded as an integer. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - GDC:Exposure.alcohol_days_per_week - - PDC:Exposure.alcohol_days_per_week - - GDC:Exposure.alcohol_drinks_per_day - - PDC:Exposure.alcohol_drinks_per_day - domain: AlcoholExposureObservation - range: ccdh_integer - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: The result of the observation, encoded as a CodeableConcept. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - GDC:Exposure.alcohol_history - - PDC:Exposure.alcohol_history - - GDC:Exposure.alcohol_intensity - - PDC:Exposure.alcohol_intensity - domain: AlcoholExposureObservation - range: enum_CCDH_AlcoholExposureObservation_valueCodeableConcept - multivalued: false - required: false - BodySite: - name: BodySite - description: A site in the body of an organism, typically described in terms of - an anatomical location and optional qualifiers (e.g. left/right, upper/lower). - But body sites as defined here may include 'non-anatomic' sites, such as the - location of an implanted medical device. - notes: - - Derived from [BodySite in sheet BodySite](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1097478901) - is_a: Entity - attributes: - site: - name: site - description: A term describing any site in the body. - notes: - - 'Cardinality: 1..1' - examples: - - value: Adenoid - - value: Adipose - - value: Adrenal - exact_mappings: - - GDC:Sample.biospecimen_anatomic_site - - PDC:Sample.biospecimen_anatomic_site - - ICDC:Sample.sample_site - - HTAN:Biospecimen.SiteofResectionorBiopsy - - GDC:Case.primary_site - - PDC:Case.primary_site - - GDC:Project.primary_site - - GDC:Treatment.treatment_anatomic_site - - PDC:Treatment.treatment_anatomic_site - - GDC:Diagnosis.site_of_resection_or_biopsy - - PDC:Diagnosis.site_of_resection_or_biopsy - domain: BodySite - range: enum_CCDH_BodySite_site - multivalued: false - required: true - qualifier: - name: qualifier - description: A qualifier that further refines or specifies the location of - the body site (e.g. to indicate laterality, upper v. lower, containment, - etc). - notes: - - 'Cardinality: 0..m' - examples: - - value: left - - value: right - - value: bilateral - exact_mappings: - - GDC:Sample.biospecimen_laterality - - PDC:Sample.biospecimen_laterality - domain: BodySite - range: enum_CCDH_BodySite_qualifier - multivalued: true - required: false - BiologicProduct: - name: BiologicProduct - description: A living organism, or a metabolically active biological system such - as a cell culture, tissue culture, or organoid that is maintained or propagated - in vitro. - notes: - - Derived from [BiologicProduct in sheet BiologicProduct](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1097989080) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: BiologicProduct - range: ccdh_string - multivalued: false - required: false - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - domain: BiologicProduct - range: Identifier - multivalued: true - required: false - inlined_as_list: true - description: - name: description - description: A free text field to capture additional info/explanation about - the model system - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: BiologicProduct - range: ccdh_string - multivalued: false - required: false - product_type: - name: product_type - description: The high level type of model system (e.g. cell line, cell culture, - tissue culture, organoid) - notes: - - 'Cardinality: 0..1' - examples: - - value: cell line - - value: cell culture - - value: tissue culture - - value: organoid - domain: BiologicProduct - range: enum_CCDH_BiologicProduct_product_type - multivalued: false - required: false - passage_number: - name: passage_number - description: When the specimen an actively growing model system, such as a - cell or tissue culture, this property captures its passage number. - examples: - - value: '' - exact_mappings: - - GDC:Sample.passage_count - - PDC:Sample.passage_count - domain: BiologicProduct - range: ccdh_integer - multivalued: true - required: false - inlined_as_list: true - growth_rate: - name: growth_rate - description: When the specimen an actively growing model system, such as a - cell or tissue culture, this property captures its rate of growth. - examples: - - value: '' - exact_mappings: - - GDC:Sample.growth_rate - - PDC:Sample.growth_rate - domain: BiologicProduct - range: ccdh_string - multivalued: true - required: false - inlined_as_list: true - CancerGradeObservation: - name: CancerGradeObservation - description: A data structure with key (observation_type) and value (valueCodeableConcept) - attributes that represents a single cancer grade observation - notes: - - Derived from [CancerGradeObservation in sheet CancerGradeObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1099484640) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: CancerGradeObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: CancerGradeObservation - range: enum_CCDH_CancerGradeObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The cancer grade classification system being used to classify - the cancer (e.g. INPC, Gleason, etc.) - notes: - - 'Cardinality: 1..1' - comments: - - 'This field holds the ''key'' in the core key-value pair comprised of the - observation_type field and the relevant value(s) field. ' - examples: - - value: enneking_msts_grade - - value: esophageal_columnar_dysplasia_degree - - value: inpc_grade - - value: gleason_grade_group - - value: primary_gleason_grade - - value: secondary_gleason_grade - - value: tumor_grade - domain: CancerGradeObservation - range: enum_CCDH_CancerGradeObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..0' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: CancerGradeObservation - range: enum_CCDH_CancerGradeObservation_method_type - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..0' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: CancerGradeObservation - range: Entity - multivalued: false - required: false - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: CancerGradeObservation - range: Subject - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: The value from the grade classification system that classifies - the cancer (e.g. Poorly differentiated, differentiated, etc.) - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - GDC:Diagnosis.enneking_msts_grade - - PDC:Diagnosis.enneking_msts_grade - - GDC:Diagnosis.esophageal_columnar_dysplasia_degree - - PDC:Diagnosis.esophageal_columnar_dysplasia_degree - - GDC:Diagnosis.inpc_grade - - PDC:Diagnosis.inpc_grade - - GDC:Diagnosis.gleason_grade_group - - PDC:Diagnosis.gleason_grade_group - - HTAN:Diagnosis.GleasonGradeGroup - - GDC:Diagnosis.primary_gleason_grade - - PDC:Diagnosis.primary_gleason_grade - - HTAN:Diagnosis.PrimaryGleasonGrade - - GDC:Diagnosis.secondary_gleason_grade - - PDC:Diagnosis.secondary_gleason_grade - - HTAN:Diagnosis.SecondaryGleasonGrade - - GDC:Diagnosis.tumor_grade - - PDC:Diagnosis.tumor_grade - - HTAN:Diagnosis.TumorGrade - - ICDC:Diagnosis.histological_grade - domain: CancerGradeObservation - range: enum_CCDH_CancerGradeObservation_valueCodeableConcept - multivalued: false - required: true - CancerGradeObservationSet: - name: CancerGradeObservationSet - description: A structured object to hold related data items about the grade of - cancer (e.g. overall, primary gleason, secondary gleason, etc.). - notes: - - Derived from [CancerGradeObservationSet in sheet CancerGradeObservationSet](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1025765903) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: CancerGradeObservationSet - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation set described - notes: - - 'Cardinality: 0..0' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - domain: CancerGradeObservationSet - range: enum_CCDH_CancerGradeObservationSet_category - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: CancerGradeObservationSet - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: CancerGradeObservationSet - range: Subject - multivalued: false - required: false - method_type: - name: method_type - description: The cancer grade classification system being used to classify - the cancer (e.g. INPC, Gleason, etc.) - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy'). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: Gleason - - value: INPC - - value: Unspecified grading system - domain: CancerGradeObservationSet - range: enum_CCDH_CancerGradeObservationSet_method_type - multivalued: true - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: CancerGradeObservationSet - range: Organization - multivalued: false - required: false - observations: - name: observations - description: A set of one or more more atomic observations about the cancer - grade that classifies the cancer (e.g. Poorly differentiated, differentiated, - etc.) - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: CancerGradeObservationSet - range: CancerGradeObservation - multivalued: true - required: false - inlined_as_list: true - CancerStageObservation: - name: CancerStageObservation - description: A data structure with key (observation_type) and value (valueCodeableConcept) - attributes that represents a single cancer staging observation, such as the - Clinical Metastasis (M) component of a clinical TNM staging. - notes: - - Derived from [CancerStageObservation in sheet CancerStageObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1189722404) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: CancerStageObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: CancerStageObservation - range: enum_CCDH_CancerStageObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The type of cancer staging component being represented (e.g. - 'Clinical Metastasis (M)') - notes: - - 'Cardinality: 1..1' - comments: - - 'This field holds the ''key'' in the core key-value pair comprised of the - observation_type field and the relevant value(s) field. ''Overall'' should - be used when: the source staging value is not definitively ''Clinical'' - or ''Pathological'' (e.g. a TNM staged cancer without a clear indication - of clinical vs pathological), or the source staging system does not use - T, N, or M components and only has a single overall staging value (e.g. - FIGO staging)' - examples: - - value: Overall - - value: Tumor (T) - - value: Node (N) - - value: Metastasis (M) - - value: Clinical Overall - - value: Clinical Tumor (T) - - value: Clinical Node (N) - - value: Clinical Metastasis (M) - - value: Pathological Overall - - value: Pathological Tumor (T) - - value: Pathological Node (N) - - value: Pathological Metastasis (M) - - value: Ann Arbor Modifier - domain: CancerStageObservation - range: enum_CCDH_CancerStageObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..0' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: CancerStageObservation - range: enum_CCDH_CancerStageObservation_method_type - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..0' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: CancerStageObservation - range: Entity - multivalued: false - required: false - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: CancerStageObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: CancerStageObservation - range: Organization - multivalued: false - required: false - valueEntity: - name: valueEntity - description: The value of an observation - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: CancerStageObservation - range: Entity - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: The value for a cancer staging component being represented (e.g. - 'M1'), encoded as a CodeableConcept. - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: M0 - - value: M1 - - value: M1a - - value: N0 - - value: N0 (i+) - - value: N0 (i-) - exact_mappings: - - GDC:Diagnosis.ajcc_clinical_m - - PDC:Diagnosis.ajcc_clinical_m - - GDC:Diagnosis.ajcc_clinical_n - - PDC:Diagnosis.ajcc_clinical_n - - GDC:Diagnosis.ajcc_clinical_t - - PDC:Diagnosis.ajcc_clinical_t - - GDC:Diagnosis.ajcc_clinical_stage - - PDC:Diagnosis.ajcc_clinical_stage - - HTAN:Diagnosis.AJCCClinicalM - - HTAN:Diagnosis.AJCCClinicalN - - HTAN:Diagnosis.AJCCClinicalT - - HTAN:Diagnosis.AJCCClinicalStage - - HTAN:Diagnosis.AJCCPathologicM - - HTAN:Diagnosis.AJCCPathologicN - - HTAN:Diagnosis.AJCCPathologicT - - HTAN:Diagnosis.AJCCPathologicStage - - PDC:Diagnosis.tumor_stage - - ICDC:Diagnosis.stage_of_disease - - GDC:Diagnosis.ajcc_pathologic_m - - PDC:Diagnosis.ajcc_pathologic_m - - GDC:Diagnosis.ajcc_pathologic_n - - PDC:Diagnosis.ajcc_pathologic_n - - GDC:Diagnosis.ajcc_pathologic_t - - PDC:Diagnosis.ajcc_pathologic_t - - GDC:Diagnosis.ajcc_pathologic_stage - - PDC:Diagnosis.ajcc_pathologic_stage - - GDC:Diagnosis.ajcc_staging_system_edition - - PDC:Diagnosis.ajcc_staging_system_edition - - GDC:Diagnosis.ann_arbor_clinical_stage - - PDC:Diagnosis.ann_arbor_clinical_stage - - GDC:Diagnosis.ann_arbor_pathologic_stage - - PDC:Diagnosis.ann_arbor_pathologic_stage - - GDC:Diagnosis.figo_stage - - PDC:Diagnosis.figo_stage - - GDC:Diagnosis.igcccg_stage - - PDC:Diagnosis.igcccg_stage - - GDC:Diagnosis.inss_stage - - PDC:Diagnosis.inss_stage - - GDC:Diagnosis.iss_stage - - PDC:Diagnosis.iss_stage - - GDC:Diagnosis.masaoka_stage - - PDC:Diagnosis.masaoka_stage - - GDC:Diagnosis.cog_liver_stage - - PDC:Diagnosis.cog_liver_stage - - GDC:Diagnosis.cog_renal_stage - - PDC:Diagnosis.cog_renal_stage - - GDC:Diagnosis.enneking_msts_metastasis - - PDC:Diagnosis.enneking_msts_metastasis - - GDC:Diagnosis.enneking_msts_stage - - PDC:Diagnosis.enneking_msts_stage - - GDC:Diagnosis.enneking_msts_tumor_site - - PDC:Diagnosis.enneking_msts_tumor_site - - GDC:Diagnosis.inrg_stage - - PDC:Diagnosis.inrg_stage - - GDC:Diagnosis.irs_stage - - PDC:Diagnosis.irs_stage - - GDC:Diagnosis.ann_arbor_b_symptoms - - PDC:Diagnosis.ann_arbor_b_symptoms - - GDC:Diagnosis.ann_arbor_extranodal_involvement - - PDC:Diagnosis.ann_arbor_extranodal_involvement - domain: CancerStageObservation - range: enum_CCDH_CancerStageObservation_valueCodeableConcept - multivalued: false - required: true - CancerStageObservationSet: - name: CancerStageObservationSet - description: A structured object to hold related data items about the staging - of cancer (e.g. overall, T, N, and M components of a Cancer Staging observation). - notes: - - Derived from [CancerStageObservationSet in sheet CancerStageObservationSet](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1668576212) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: CancerStageObservationSet - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation set described - notes: - - 'Cardinality: 0..0' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - domain: CancerStageObservationSet - range: enum_CCDH_CancerStageObservationSet_category - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: CancerStageObservationSet - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: CancerStageObservationSet - range: Subject - multivalued: false - required: false - method_type: - name: method_type - description: A type of method used in generating each of the Observations - bundled in the set, in this case, the particular staging system being used - to classify the cancer. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy'). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: AJCC staging system 1st edition - - value: AJCC staging system 2nd edition - - value: AJCC staging system 3rd edition - - value: AJCC staging system 4th edition - - value: AJCC staging system 5th edition - - value: AJCC staging system 6th edition - - value: AJCC staging system 7th edition - - value: AJCC staging system 8th edition - - value: Ann Arbor staging system - - value: COG Liver staging system - - value: COG Renal staging system - - value: Enneking MSTS staging system - - value: FIGO staging system - - value: IGCCCG staging system - - value: INRG staging system - - value: INSS staging system - - value: IRS staging system - - value: ISS staging system - - value: Masaoka staging system - - value: Unspecified staging system - close_mappings: - - GDC:Diagnosis.ajcc_staging_system_edition - - PDC:Diagnosis.ajcc_staging_system_edition - - HTAN:Diagnosis.AJCCStagingSystemEdition - domain: CancerStageObservationSet - range: enum_CCDH_CancerStageObservationSet_method_type - multivalued: true - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: CancerStageObservationSet - range: Organization - multivalued: false - required: false - observations: - name: observations - description: A set of one or more more atomic observations about the cancer - stage - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: CancerStageObservationSet - range: CancerStageObservation - multivalued: true - required: false - inlined_as_list: true - CodeableConcept: - name: CodeableConcept - description: A representation of a concept that may be defined by or mapped to - one or more codes in code systems (terminologies, ontologies, dictionaries, - code sets, etc) - but may also be defined by the provision of text. - notes: - - Derived from [CodeableConcept in sheet CodeableConcept](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1820375300) - comments: - - 'More than one code may be used in CodeableConcept. The concept may be coded - multiple times in different code systems (or even multiple times in the same - code systems, where multiple forms are possible). Each Coding is a representation - of the concept as described above and may have slightly different granularity - due to the differences in the definitions of the underlying codes. There is - no meaning associated with the ordering of Coding within a CodeableConcept. - A typical use of CodeableConcept is to send the local code that the concept - was coded with, and also one or more translations to publicly defined code systems - such as LOINC or SNOMED CT. ' - is_a: Entity - attributes: - coding: - name: coding - description: A reference to a code defined by a terminology system - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: CodeableConcept - range: Coding - multivalued: true - required: false - inlined_as_list: true - text: - name: text - description: A human language representation of the concept represented by - the Coding. - notes: - - 'Cardinality: 0..1' - comments: - - 'The text attribute represents the concept as entered or chosen by the user; - often the value of text is the same as a display of one of the codings. A - concept that does not have an appropriate or known coding can be represented - using free-text in the text attribute. ' - examples: - - value: '' - domain: CodeableConcept - range: ccdh_string - multivalued: false - required: false - Coding: - name: Coding - description: A structured representation of a coded/enumerated data value, that - includes additional metadata about the code and code system. - notes: - - Derived from [Coding in sheet Coding](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1218588936) - is_a: Entity - attributes: - code: - name: code - description: The symbol/value of the code, as defined by the code system. - notes: - - 'Cardinality: 1..1' - examples: - - value: '' - domain: Coding - range: ccdh_string - multivalued: false - required: true - system: - name: system - description: The code system where the code is defined. - notes: - - 'Cardinality: 1..1' - examples: - - value: '' - domain: Coding - range: ccdh_string - multivalued: false - required: true - label: - name: label - description: A human-readable name for the code, as defined by the code system. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Coding - range: ccdh_string - multivalued: false - required: false - systemURL: - name: systemURL - description: A URL where the code system can be found. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Coding - range: ccdh_string - multivalued: false - required: false - systemVersion: - name: systemVersion - description: The version of the code system. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Coding - range: ccdh_string - multivalued: false - required: false - Diagnosis: - name: Diagnosis - description: A collection of characteristics that describe an abnormal condition - of the body as assessed at a point in time. May be used to capture information - about neoplastic and non-neoplastic conditions. - notes: - - Derived from [Diagnosis in sheet Diagnosis](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1015759209) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - exact_mappings: - - GDC:Diagnosis.id - - PDC:Diagnosis.diagnosis_id - domain: Diagnosis - range: ccdh_string - multivalued: false - required: false - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - exact_mappings: - - GDC:Diagnosis.submitter_id - - PDC:Diagnosis.diagnosis_submitter_id - domain: Diagnosis - range: Identifier - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The subject of this diagnosis. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Diagnosis - range: Subject - multivalued: false - required: false - age_at_diagnosis: - name: age_at_diagnosis - description: The age in days of the individual at the time of diagnosis - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Diagnosis.age_at_diagnosis - - PDC:Diagnosis.age_at_diagnosis - - HTAN:Diagnosis.AgeatDiagnosis - domain: Diagnosis - range: Quantity - multivalued: false - required: false - year_at_diagnosis: - name: year_at_diagnosis - description: Numeric value to represent the year of an individual's diagnosis. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Diagnosis.year_of_diagnosis - - PDC:Diagnosis.year_of_diagnosis - - HTAN:Diagnosis.YearofDiagnosis - - ICDC:Diagnosis.date_of_diagnosis - domain: Diagnosis - range: ccdh_integer - multivalued: false - required: false - condition: - name: condition - description: Code that captures the condition being diagnosed (e.g. ICD-O, - ICD-10, SNOMED, etc.) - notes: - - 'Cardinality: 0..1' - comments: - - This attribute will subsume source attributes that are bound to ICD-O and - ICD-10 classification systems. - examples: - - value: '' - exact_mappings: - - GDC:Diagnosis.primary_diagnosis - - PDC:Diagnosis.primary_diagnosis - - HTAN:Diagnosis.PrimaryDiagnosis - - ICDC:Diagnosis.disease_term - - ICDC:Diagnosis.concurrent_disease_type - - GDC:Diagnosis.icd_10_code - - PDC:Diagnosis.icd_10_code - domain: Diagnosis - range: enum_CCDH_Diagnosis_condition - multivalued: false - required: false - primary_site: - name: primary_site - description: The anatomical location of the primary condition - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Diagnosis.tissue_or_organ_of_origin - - PDC:Diagnosis.tissue_or_organ_of_origin - - HTAN:Diagnosis.TissueorOrganofOrigin - - ICDC:Diagnosis.primary_disease_site - - GDC:Diagnosis.laterality - - PDC:Diagnosis.laterality - - GDC:Diagnosis.site_of_resection_or_biopsy - - PDC:Diagnosis.site_of_resection_or_biopsy - - HTAN:Diagnosis.SiteofResectionorBiopsy - domain: Diagnosis - range: BodySite - multivalued: true - required: false - inlined_as_list: true - metastatic_site: - name: metastatic_site - description: The anatomical location(s) of metastatic disease - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: Diagnosis - range: BodySite - multivalued: true - required: false - inlined_as_list: true - stage: - name: stage - description: The extent of a cancer in the body. Staging is usually based - on the size of the tumor, whether lymph nodes contain cancer, and whether - the cancer has spread from the original site to other parts of the body. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Diagnosis.ajcc_clinical_m - - PDC:Diagnosis.ajcc_clinical_m - - GDC:Diagnosis.ajcc_clinical_n - - PDC:Diagnosis.ajcc_clinical_n - - GDC:Diagnosis.ajcc_clinical_t - - PDC:Diagnosis.ajcc_clinical_t - - GDC:Diagnosis.ajcc_clinical_stage - - PDC:Diagnosis.ajcc_clinical_stage - - PDC:Diagnosis.tumor_stage - - ICDC:Diagnosis.stage_of_disease - - GDC:Diagnosis.ajcc_pathologic_m - - PDC:Diagnosis.ajcc_pathologic_m - - GDC:Diagnosis.ajcc_pathologic_n - - PDC:Diagnosis.ajcc_pathologic_n - - GDC:Diagnosis.ajcc_pathologic_t - - PDC:Diagnosis.ajcc_pathologic_t - - GDC:Diagnosis.ajcc_pathologic_stage - - PDC:Diagnosis.ajcc_pathologic_stage - - GDC:Diagnosis.ajcc_staging_system_edition - - PDC:Diagnosis.ajcc_staging_system_edition - - GDC:Diagnosis.ann_arbor_clinical_stage - - PDC:Diagnosis.ann_arbor_clinical_stage - - GDC:Diagnosis.ann_arbor_pathologic_stage - - PDC:Diagnosis.ann_arbor_pathologic_stage - - GDC:Diagnosis.figo_stage - - PDC:Diagnosis.figo_stage - - GDC:Diagnosis.igcccg_stage - - PDC:Diagnosis.igcccg_stage - - GDC:Diagnosis.inss_stage - - PDC:Diagnosis.inss_stage - - GDC:Diagnosis.iss_stage - - PDC:Diagnosis.iss_stage - - GDC:Diagnosis.masaoka_stage - - PDC:Diagnosis.masaoka_stage - - GDC:Diagnosis.cog_liver_stage - - PDC:Diagnosis.cog_liver_stage - - GDC:Diagnosis.cog_renal_stage - - PDC:Diagnosis.cog_renal_stage - - GDC:Diagnosis.enneking_msts_metastasis - - PDC:Diagnosis.enneking_msts_metastasis - - GDC:Diagnosis.enneking_msts_stage - - PDC:Diagnosis.enneking_msts_stage - - GDC:Diagnosis.enneking_msts_tumor_site - - PDC:Diagnosis.enneking_msts_tumor_site - - GDC:Diagnosis.inrg_stage - - PDC:Diagnosis.inrg_stage - - GDC:Diagnosis.irs_stage - - PDC:Diagnosis.irs_stage - domain: Diagnosis - range: CancerStageObservationSet - multivalued: true - required: false - inlined_as_list: true - grade: - name: grade - description: The degree of abnormality of cancer cells, a measure of differentiation, - the extent to which cancer cells are similar in appearance and function - to healthy cells of the same tissue type. The degree of differentiation - often relates to the clinical behavior of the particular tumor. Based on - the microscopic findings, tumor grade is commonly described by one of four - degrees of severity. Histopathologic grade of a tumor may be used to plan - treatment and estimate the future course, outcome, and overall prognosis - of disease. Certain types of cancers, such as soft tissue sarcoma, primary - brain tumors, lymphomas, and breast have special grading systems. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Diagnosis.enneking_msts_grade - - PDC:Diagnosis.enneking_msts_grade - - GDC:Diagnosis.esophageal_columnar_dysplasia_degree - - PDC:Diagnosis.esophageal_columnar_dysplasia_degree - - GDC:Diagnosis.inpc_grade - - PDC:Diagnosis.inpc_grade - - GDC:Diagnosis.gleason_grade_group - - PDC:Diagnosis.gleason_grade_group - - GDC:Diagnosis.primary_gleason_grade - - PDC:Diagnosis.primary_gleason_grade - - GDC:Diagnosis.secondary_gleason_grade - - PDC:Diagnosis.secondary_gleason_grade - - GDC:Diagnosis.tumor_grade - - PDC:Diagnosis.tumor_grade - - HTAN:Diagnosis.TumorGrade - - ICDC:Diagnosis.histological_grade - - GDC:Diagnosis.tumor_regression_grade - - PDC:Diagnosis.tumor_regression_grade - domain: Diagnosis - range: CancerGradeObservationSet - multivalued: true - required: false - inlined_as_list: true - morphology: - name: morphology - description: Code that represents the histology of the disease using the third - edition of the International Classification of Diseases for Oncology, published - in 2000, used principally in tumor and cancer registries for coding the - site (topography) and the histology (morphology) of neoplasms. - notes: - - 'Cardinality: 0..1' - examples: - - value: 8001/3 - - value: 8002/3 - - value: 8003/3 - - value: 8004/3 - - value: 8005/3 - exact_mappings: - - GDC:Diagnosis.morphology - - PDC:Diagnosis.morphology - - HTAN:Diagnosis.Morphology - domain: Diagnosis - range: enum_CCDH_Diagnosis_morphology - multivalued: false - required: false - disease_status: - name: disease_status - description: A term that refers to the nature and/or clinical outcome of a - disease (e.g., primary disease, metastatic disease, recurrent disease, etc.) - notes: - - 'Cardinality: 0..1' - examples: - - value: Initial Diagnosis - - value: Progressive Disease - - value: Recurrent Disease - - value: Residual Disease - - value: Unknown - - value: Not Reported - exact_mappings: - - GDC:Treatment.initial_disease_status - - PDC:Treatment.initial_disease_status - domain: Diagnosis - range: enum_CCDH_Diagnosis_disease_status - multivalued: false - required: false - prior_diagnosis: - name: prior_diagnosis - description: A reference to a prior cancer diagnosis. In the case of relapse/recurrent - disease, this attribute may be populated with a reference to the initial - diagnosis. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Diagnosis - range: Diagnosis - multivalued: false - required: false - method_of_diagnosis: - name: method_of_diagnosis - description: The method used to confirm the patients malignant diagnosis - notes: - - 'Cardinality: 0..1' - examples: - - value: Autopsy - - value: Biopsy - - value: Blood Draw - - value: Bone Marrow Aspirate - - value: Core Biopsy - - value: .. - exact_mappings: - - GDC:Diagnosis.method_of_diagnosis - - PDC:Diagnosis.method_of_diagnosis - domain: Diagnosis - range: enum_CCDH_Diagnosis_method_of_diagnosis - multivalued: false - required: false - related_specimen: - name: related_specimen - description: The specimen from which this diagnosis is made - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: Diagnosis - range: Specimen - multivalued: true - required: false - inlined_as_list: true - primary_tumor_dimensional_measures: - name: primary_tumor_dimensional_measures - description: Observations about the current physical dimensions of the primary - tumor. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Diagnosis.tumor_largest_dimension_diameter - - PDC:Diagnosis.tumor_largest_dimension_diameter - domain: Diagnosis - range: DimensionalObservationSet - multivalued: false - required: false - supporting_observation: - name: supporting_observation - description: One or more observations that capture information relevant to - this condition or diagnosis. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - exact_mappings: - - GDC:Diagnosis.international_prognostic_index - - PDC:Diagnosis.international_prognostic_index - - GDC:Diagnosis.lymph_nodes_positive - - PDC:Diagnosis.lymph_nodes_positive - - GDC:Diagnosis.lymphatic_invasion_present - - PDC:Diagnosis.lymphatic_invasion_present - - GDC:Diagnosis.metastasis_at_diagnosis - - PDC:Diagnosis.metastasis_at_diagnosis - domain: Diagnosis - range: Observation - multivalued: true - required: false - inlined_as_list: true - DimensionalObservation: - name: DimensionalObservation - description: A structured object that describes a single data item about the physical - dimensions of an entity (e.g. length width, area), as generated through a point-in-time - observation or measurement. - notes: - - Derived from [DimensionalObservation in sheet DimensionalObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1045447308) - comments: - - At the core of an Observation is a flexible key-value pair (or a structured - collection of key-value pairs), where a 'key' field defines the type of observation - made, and the 'value' field describes the value or outcome of the observation. - The fact that the type of observation captured is defined in the data allow - Observation to convey a broad range of observation data. - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: DimensionalObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - comments: - - Use only if we don't define named subtypes of Observation for specific categories. - examples: - - value: '' - domain: DimensionalObservation - range: enum_CCDH_DimensionalObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of observation made - i.e. the feature or characteristic - that was observed, measured, estimated, etc. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: '' - domain: DimensionalObservation - range: enum_CCDH_DimensionalObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: DimensionalObservation - range: enum_CCDH_DimensionalObservation_method_type - multivalued: true - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: DimensionalObservation - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: DimensionalObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: DimensionalObservation - range: Organization - multivalued: false - required: false - valueQuantity: - name: valueQuantity - description: The result of the observation, encoded as a free-text Quantity. - notes: - - 'Cardinality: 1..1' - examples: - - value: '' - domain: DimensionalObservation - range: Quantity - multivalued: false - required: true - DimensionalObservationSet: - name: DimensionalObservationSet - description: A set of one or more discrete observations about the physical dimensions - of an object (e.g. length, width, area). - notes: - - Derived from [DimensionalObservationSet in sheet DimensionalObservationSet](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1118507095) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: DimensionalObservationSet - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation set described - notes: - - 'Cardinality: 0..0' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - domain: DimensionalObservationSet - range: enum_CCDH_DimensionalObservationSet_category - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: DimensionalObservationSet - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: DimensionalObservationSet - range: Subject - multivalued: false - required: false - method_type: - name: method_type - description: A type of method used in generating each of the Observations - bundled in the set. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy'). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - exact_mappings: - - GDC:Analyte.spectrophotometer_method - - PDC:Analyte.spectrophotometer_method - - HTAN:Biospecimen.HistologyAssessmentMedium - domain: DimensionalObservationSet - range: enum_CCDH_DimensionalObservationSet_method_type - multivalued: true - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: DimensionalObservationSet - range: Organization - multivalued: false - required: false - observations: - name: observations - description: A set of one or more more atomic observations that are conceptually - or logically related - e.g. two components of some compound measurement - (e.g. the systolic and diastolic components of a blood pressure measurement), - or a panel of related measurements run and interpreted together on the same - subject/specimen (e.g. a blood panel, or separate dimensional measurements - of a specimen). - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: DimensionalObservationSet - range: DimensionalObservation - multivalued: true - required: false - inlined_as_list: true - Document: - name: Document - description: A collection of information intented to be understood together as - a whole, and codified in human-readable form. - notes: - - Derived from [Document in sheet Document](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=809861603) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: Document - range: ccdh_string - multivalued: false - required: false - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - domain: Document - range: Identifier - multivalued: true - required: false - inlined_as_list: true - document_type: - name: document_type - description: The high-level type of the document (e.g. 'publication', 'pathology - report') - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Document - range: enum_CCDH_Document_document_type - multivalued: false - required: false - description: - name: description - description: A free text description or summary of the report. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Document - range: ccdh_string - multivalued: false - required: false - focus: - name: focus - description: The entity that the report is primarily about - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Document - range: Entity - multivalued: false - required: false - url: - name: url - description: A URL/web address where the document can be accessed. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: Document - range: ccdh_string - multivalued: true - required: false - inlined_as_list: true - Entity: - name: Entity - description: Any resource that has its own identifier - notes: - - Derived from [Entity in sheet Entity](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=65213867) - EnvironmentalExposureObservation: - name: EnvironmentalExposureObservation - description: A structured object that describes a single data item about an individual's - exposure to an environmental factor, as generated through a point-in-time observation, - measurement, or interpretation. - notes: - - Derived from [EnvironmentalExposureObservation in sheet EnvironmentalExposureObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=274611680) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: EnvironmentalExposureObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: EnvironmentalExposureObservation - range: enum_CCDH_EnvironmentalExposureObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of environmental exposure observation made - - i.e. the feature or characteristic that was observed, measured, estimated, - etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: asbestos_exposure - - value: coal_dust_exposure - - value: radon_exposure - - value: respirable_crystalline_silica_exposure - - value: type_of_smoke_exposure - domain: EnvironmentalExposureObservation - range: enum_CCDH_EnvironmentalExposureObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..0' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: EnvironmentalExposureObservation - range: enum_CCDH_EnvironmentalExposureObservation_method_type - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..0' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: EnvironmentalExposureObservation - range: Entity - multivalued: false - required: false - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: EnvironmentalExposureObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: EnvironmentalExposureObservation - range: Organization - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: The result of the observation, encoded as a CodeableConcept. - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - GDC:Exposure.asbestos_exposure - - PDC:Exposure.asbestos_exposure - - GDC:Exposure.coal_dust_exposure - - PDC:Exposure.coal_dust_exposure - - GDC:Exposure.radon_exposure - - PDC:Exposure.radon_exposure - - GDC:Exposure.respirable_crystalline_silica_exposure - - PDC:Exposure.respirable_crystalline_silica_exposure - - GDC:Exposure.type_of_smoke_exposure - - PDC:Exposure.type_of_smoke_exposure - domain: EnvironmentalExposureObservation - range: enum_CCDH_EnvironmentalExposureObservation_valueCodeableConcept - multivalued: false - required: true - ExecutionTimeObservation: - name: ExecutionTimeObservation - description: 'A structured object that describes how long certain parts on an - activity took to complete, as determined through a point-in-time observation - or measurement. - - - Information describing the environmental conditions in which an activity, or - a specific part of an activity, was performed.' - notes: - - Derived from [ExecutionTimeObservation in sheet ExecutionTimeObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=638866265) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: ExecutionTimeObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: ExecutionTimeObservation - range: enum_CCDH_ExecutionTimeObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of environmental exposure observation made - - i.e. the feature or characteristic that was observed, measured, estimated, - etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: '' - domain: ExecutionTimeObservation - range: enum_CCDH_ExecutionTimeObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..0' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: ExecutionTimeObservation - range: enum_CCDH_ExecutionTimeObservation_method_type - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..0' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: ExecutionTimeObservation - range: Entity - multivalued: false - required: false - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: ExecutionTimeObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: ExecutionTimeObservation - range: Organization - multivalued: false - required: false - valueQuantity: - name: valueQuantity - description: The result of the observation, encoded as a free-text Quantity. - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - GDC:Sample.time_between_excision_and_freezing - - GDC:Sample.time_between_clamping_and_freezing - - PDC:Sample.time_between_excision_and_freezing - - PDC:Sample.time_between_clamping_and_freezing - - HTAN:Biospecimen.ISCHEMIC_TIME - domain: ExecutionTimeObservation - range: Quantity - multivalued: false - required: true - ExecutionConditionObservation: - name: ExecutionConditionObservation - description: 'A structured object that describes how long certain parts on an - activity took to complete, as determined through a point-in-time observation - or measurement. - - - Information describing the environmental conditions in which an activity, or - a specific part of an activity, was performed.' - notes: - - Derived from [ExecutionConditionObservation in sheet ExecutionConditionObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1598634433) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: ExecutionConditionObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: ExecutionConditionObservation - range: enum_CCDH_ExecutionConditionObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of environmental exposure observation made - - i.e. the feature or characteristic that was observed, measured, estimated, - etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: '' - domain: ExecutionConditionObservation - range: enum_CCDH_ExecutionConditionObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..0' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: ExecutionConditionObservation - range: enum_CCDH_ExecutionConditionObservation_method_type - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..0' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: ExecutionConditionObservation - range: Entity - multivalued: false - required: false - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: ExecutionConditionObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: ExecutionConditionObservation - range: Organization - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: The result of the observation, encoded as a CodeableConcept. - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - HTAN:Biospecimen.ISCHEMIC_TEMPERATURE - - HTAN:Biospecimen.SHIPPING_CONDITIONS - domain: ExecutionConditionObservation - range: enum_CCDH_ExecutionConditionObservation_valueCodeableConcept - multivalued: false - required: true - Exposure: - name: Exposure - description: Contact between an agent and a target. A state of contact or close - proximity to a medicinal product, chemical, pathogen, radioisotope or other - substance. - notes: - - Derived from [Exposure in sheet Exposure](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1402410931) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 1..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - exact_mappings: - - GDC:Exposure.id - - PDC:Exposure.id - domain: Exposure - range: ccdh_string - multivalued: false - required: true - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - close_mappings: - - GDC:Exposure.submitter_id - - PDC:Exposure.submitter_id - domain: Exposure - range: Identifier - multivalued: true - required: false - inlined_as_list: true - tobacco_exposure: - name: tobacco_exposure - description: Observations about an individual's exposure to tobacco. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Exposure.cigarettes_per_day - - PDC:Exposure.cigarettes_per_day - - GDC:Exposure.environmental_tobacco_smoke_exposure - - PDC:Exposure.environmental_tobacco_smoke_exposure - - GDC:Exposure.pack_years_smoked - - PDC:Exposure.pack_years_smoked - - GDC:Exposure.smoking_frequency - - PDC:Exposure.smoking_frequency - - GDC:Exposure.time_between_waking_and_first_smoke - - PDC:Exposure.time_between_waking_and_first_smoke - - GDC:Exposure.tobacco_smoking_onset_year - - PDC:Exposure.tobacco_smoking_onset_year - - GDC:Exposure.tobacco_smoking_quit_year - - PDC:Exposure.tobacco_smoking_quit_year - - GDC:Exposure.tobacco_smoking_status - - PDC:Exposure.tobacco_smoking_status - - GDC:Exposure.type_of_tobacco_used - - PDC:Exposure.type_of_tobacco_used - - GDC:Exposure.years_smoked - - PDC:Exposure.years_smoked - domain: Exposure - range: TobaccoExposureObservation - multivalued: true - required: false - inlined_as_list: true - alcohol_exposure: - name: alcohol_exposure - description: Observations about an individual's exposure to alcohol. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Exposure.alcohol_days_per_week - - PDC:Exposure.alcohol_days_per_week - - GDC:Exposure.alcohol_drinks_per_day - - PDC:Exposure.alcohol_drinks_per_day - - GDC:Exposure.alcohol_history - - PDC:Exposure.alcohol_history - - GDC:Exposure.alcohol_intensity - - PDC:Exposure.alcohol_intensity - domain: Exposure - range: AlcoholExposureObservation - multivalued: true - required: false - inlined_as_list: true - environmental_exposure: - name: environmental_exposure - description: Observations about an individual's exposure to environmental - substances that may impact clinical outcomes. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Exposure.asbestos_exposure - - PDC:Exposure.asbestos_exposure - - GDC:Exposure.coal_dust_exposure - - PDC:Exposure.coal_dust_exposure - - GDC:Exposure.radon_exposure - - PDC:Exposure.radon_exposure - - GDC:Exposure.respirable_crystalline_silica_exposure - - PDC:Exposure.respirable_crystalline_silica_exposure - - GDC:Exposure.type_of_smoke_exposure - - PDC:Exposure.type_of_smoke_exposure - domain: Exposure - range: EnvironmentalExposureObservation - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: A reference to the Subject that is the subject of this Exposure - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Exposure - range: Subject - multivalued: false - required: false - HistologicalCompositionObservation: - name: HistologicalCompositionObservation - description: An observation about characteristics of a specimen at a microscopic - level - typically related to its cellular or tissue composition. (e.g. how many - cells in the specimen are of a given type, or exhibit a particular cellular - phenotype). - notes: - - Derived from [HistologicalCompositionObservation in sheet HistologicalCompositionObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1411171873) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: HistologicalCompositionObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - comments: - - Use only if we don't define named subtypes of Observation for specific categories. - examples: - - value: '' - domain: HistologicalCompositionObservation - range: enum_CCDH_HistologicalCompositionObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of observation made - i.e. the feature or characteristic - that was observed, measured, estimated, etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: '' - domain: HistologicalCompositionObservation - range: enum_CCDH_HistologicalCompositionObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy,). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: HistologicalCompositionObservation - range: enum_CCDH_HistologicalCompositionObservation_method_type - multivalued: true - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: HistologicalCompositionObservation - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: HistologicalCompositionObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: HistologicalCompositionObservation - range: Organization - multivalued: false - required: false - valueQuantity: - name: valueQuantity - description: The result of the observation, encoded as a free-text Quantity. - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: HistologicalCompositionObservation - range: Quantity - multivalued: false - required: true - HistologicalCompositionObservationSet: - name: HistologicalCompositionObservationSet - description: A set of one or more discrete observations that quantify the relative - or absolute composition of a specimen at cellular level - e.g. how many cells - in the specimen are of a given type, or exhibit a particular cellular phenotype. - notes: - - Derived from [HistologicalCompositionObservationSet in sheet HistologicalCompositionObservationSet](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=815777747) - comments: - - An Observation Set is comprised of one or more logically related Observations - made about the same entity. The Observations in a set may be grouped because - they were generated on a single occasion using a common methodology (e.g. a - blood panel), and/or or because describe aspects of the same underlying feature - of an entity and as such are considered together as a logical unit of information - (e.g. diastolic and systolic measures that comprise a blood pressure observation, - or T, N, and M components of a Cancer Staging observation). - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 1..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: HistologicalCompositionObservationSet - range: ccdh_string - multivalued: false - required: true - category: - name: category - description: The general category of observation set described - notes: - - 'Cardinality: 1..1' - examples: - - value: '' - domain: HistologicalCompositionObservationSet - range: enum_CCDH_HistologicalCompositionObservationSet_category - multivalued: false - required: true - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: HistologicalCompositionObservationSet - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: HistologicalCompositionObservationSet - range: Subject - multivalued: false - required: false - method_type: - name: method_type - description: A type of method used in generating each of the Observations - bundled in the set. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy'). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: HistologicalCompositionObservationSet - range: enum_CCDH_HistologicalCompositionObservationSet_method_type - multivalued: true - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: HistologicalCompositionObservationSet - range: Organization - multivalued: false - required: false - observations: - name: observations - description: A set of one or more more atomic observations that are conceptually - or logically related - e.g. two components of some compound measurement - (e.g. the systolic and diastolic components of a blood pressure measurement), - or a panel of related measurements run and interpreted together on the same - subject/specimen (e.g. a blood panel, or separate dimensional measurements - of a specimen). - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: HistologicalCompositionObservationSet - range: HistologicalCompositionObservation - multivalued: true - required: false - inlined_as_list: true - Identifier: - name: Identifier - description: An Identifier is associated with a unique object or entity within - a given system. - notes: - - Derived from [Identifier in sheet Identifier](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1307792462) - comments: - - This data type is intended to be used to represent business identifiers that - are shared between systems. - is_a: Entity - attributes: - value: - name: value - description: The value of the identifier, as defined by the system. - notes: - - 'Cardinality: 1..1' - examples: - - value: '' - exact_mappings: - - GDC:Sample.submitter_id - - GDC:Analyte.submitter_id - - GDC:Slide.submitter_id - - PDC:Sample.sample_submitter_id - - PDC:Analyte.analyte_submitter_id - - GDC:Sample.pathology_report_uuid - - PDC:Sample.pathology_report_uuid - - HTAN:Biospecimen.ProtocolLink - - GDC:Sample.distributor_reference - - PDC:Sample.distributor_reference - - GDC:Sample.catalog_reference - - PDC:Sample.catalog_reference - - GDC:Program.dbgap_accession_number - - GDC:Project.dbgap_accession_number - - PDC:Program.program_submitter_id - - PDC:Project.project_submitter_id - - ICDC:Study.clinical_study_designation - - GDC:Case.submitter_id - - PDC:Case.case_submitter_id - domain: Identifier - range: ccdh_string - multivalued: false - required: true - system: - name: system - description: The system or namespace that defines the identifier. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Identifier - range: ccdh_string - multivalued: false - required: false - type: - name: type - description: A code that defines the type of the identifier. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Identifier - range: enum_CCDH_Identifier_type - multivalued: false - required: false - Observation: - name: Observation - description: A structured object that describes a single data item about an entity, - as generated through a point-in-time observation, measurement, or interpretation. - notes: - - Derived from [Observation in sheet Observation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=550424063) - comments: - - At the core of an Observation is a flexible key-value pair (or a structured - collection of key-value pairs), where a 'key' field defines the type of observation - made, and the 'value' field describes the value or outcome of the observation. - The fact that the type of observation captured is defined in the data allow - Observation to convey a broad range of observation data. - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: Observation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..1' - comments: - - Use only if we don't define named subtypes of Observation for specific categories. - examples: - - value: DimensionalMeasure - - value: TissueCompositionMeasure - - value: SpecimenQualityMeasure - - value: CellularCompositionMeasure - - value: TobbaccoExposureMeasure - domain: Observation - range: enum_CCDH_Observation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of observation made - i.e. the feature or characteristic - that was observed, measured, estimated, etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: tumor_tissue_area - - value: percentage_stroma - - value: a260_a280_ratio - - value: width_of_tumor - - value: time_between_excision_and_freezing - domain: Observation - range: enum_CCDH_Observation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy'). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - exact_mappings: - - GDC:Analyte.spectrophotometer_method - - PDC:Analyte.spectrophotometer_method - - HTAN:Biospecimen.HistologyAssessmentMedium - domain: Observation - range: enum_CCDH_Observation_method_type - multivalued: true - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: Observation - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Observation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Observation - range: Organization - multivalued: false - required: false - valueEntity: - name: valueEntity - description: The value of an observation - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Observation - range: Entity - multivalued: false - required: false - valueString: - name: valueString - description: The result of the observation, encoded as a free-text string. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: Observation - range: ccdh_string - multivalued: false - required: false - valueInteger: - name: valueInteger - description: The result of the observation, encoded as a decimal. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: Observation - range: ccdh_decimal - multivalued: false - required: false - valueDecimal: - name: valueDecimal - description: The result of the observation, encoded as a decimal. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: Observation - range: ccdh_decimal - multivalued: false - required: false - valueBoolean: - name: valueBoolean - description: The result of the observation, encoded as a boolean. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: Observation - range: ccdh_boolean - multivalued: false - required: false - valueDateTime: - name: valueDateTime - description: The result of the observation, encoded as a dateTime. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: Observation - range: ccdh_dateTime - multivalued: false - required: false - valueQuantity: - name: valueQuantity - description: The result of the observation, encoded as a free-text Quantity. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: Observation - range: Quantity - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: The result of the observation, encoded as a CodeableConcept. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: Observation - range: enum_CCDH_Observation_valueCodeableConcept - multivalued: false - required: false - ObservationSet: - name: ObservationSet - description: A structured object to hold related data items about an entity, as - generated through a point-in-time observation, measurement, or interpretation. - notes: - - Derived from [ObservationSet in sheet ObservationSet](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1243450201) - comments: - - An Observation Set is comprised of one or more logically related Observations - made about the same entity. The Observations in a set may be grouped because - they were generated on a single occasion using a common methodology (e.g. a - blood panel), and/or or because describe aspects of the same underlying feature - of an entity and as such are considered together as a logical unit of information - (e.g. diastolic and systolic measures that comprise a blood pressure observation, - or T, N, and M components of a Cancer Staging observation). - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 1..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: ObservationSet - range: ccdh_string - multivalued: false - required: true - category: - name: category - description: The general category of observation set described - notes: - - 'Cardinality: 1..1' - examples: - - value: DimensionalMeasureSet - - value: TissueCompositionMeasureSet - - value: CellularCompositionMeasureSet - domain: ObservationSet - range: enum_CCDH_ObservationSet_category - multivalued: false - required: true - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: ObservationSet - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: ObservationSet - range: Subject - multivalued: false - required: false - method_type: - name: method_type - description: A type of method used in generating each of the Observations - bundled in the set. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy'). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - exact_mappings: - - GDC:Analyte.spectrophotometer_method - - PDC:Analyte.spectrophotometer_method - - HTAN:Biospecimen.HistologyAssessmentMedium - domain: ObservationSet - range: enum_CCDH_ObservationSet_method_type - multivalued: true - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: ObservationSet - range: Organization - multivalued: false - required: false - observations: - name: observations - description: A set of one or more more atomic observations that are conceptually - or logically related - e.g. two components of some compound measurement - (e.g. the systolic and diastolic components of a blood pressure measurement), - or a panel of related measurements run and interpreted together on the same - subject/specimen (e.g. a blood panel, or separate dimensional measurements - of a specimen). - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: ObservationSet - range: Observation - multivalued: true - required: false - inlined_as_list: true - Organization: - name: Organization - description: A grouping of people or organizations with a common purpose such - as a data coordinating center, an university, or an institute within a university - notes: - - Derived from [Organization in sheet Organization](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1477577710) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 1..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - exact_mappings: - - GDC:Center.id - domain: Organization - range: ccdh_string - multivalued: false - required: true - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - exact_mappings: - - GDC:Center.code - - HTAN:Biospecimen.SiteDataSource - domain: Organization - range: Identifier - multivalued: true - required: false - inlined_as_list: true - name: - name: name - description: The full legal name by which the organization is known (e.g. - 'National Cancer Institute') - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Center.name - - GDC:Aliquot.source_center - - HTAN:Biospecimen.SiteDataSource - domain: Organization - range: ccdh_string - multivalued: false - required: false - alias: - name: alias - description: A secondary name for the organization such as a short name or - abbreviation (e.g. 'NCI') - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Center.short_name - domain: Organization - range: ccdh_string - multivalued: false - required: false - organization_type: - name: organization_type - description: The type of the organization (e.g. 'Cancer Genome Characterization - Center') - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Center.center_type - domain: Organization - range: ccdh_string - multivalued: false - required: false - Quantity: - name: Quantity - description: A structured object to represent an amount of something (e.g., weight, - mass, length, duration of time) - including a value and unit. - notes: - - Derived from [Quantity in sheet Quantity](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1941950611) - comments: - - QuantityMeasure' may be implemented as an Observation-like object that will - let us capture any type of measure of the amount of some substance (e.g. weight, - volume, maybe even concentration?), with distinct timestamps and methods associated. It - could be implemented as a "simple" observation (one measurement per instance, - where the 'code' fields is bound to a value set describing the different types - of quantity measures allowed - e.g. 'weight', 'volume', 'concentration'), or - as "composite" observation (multiple measurements possible in a single instance, - each captured as a component defined to hold a specific type of quantity measure - - e.g. 'weight', 'volume', 'concentration'). The number of different quantity - measures we anticipate needed to support, and the potential for data sparseness, - are factors that determine whether a simple or composite Observation would be - most appropriate. - is_a: Entity - attributes: - valueDecimal: - name: valueDecimal - description: An amount, in the given units (if specified) - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Sample.initial_weight - - PDC:Sample.initial_weight - - GDC:Sample.current_weight - - GDC:Aliquot.amount - - GDC:Portion.weight - - GDC:Aliquot.aliquot_quantity - - GDC:Analyte.amount - - GDC:Analyte.analyte_quantity - - PDC:Sample.current_weight - - PDC:Aliquot.amount - - PDC:Portion.weight - - PDC:Aliquot.aliquot_quantity - - PDC:Analyte.amount - - PDC:Analyte.analyte_quantity - - GDC:Aliquot.aliquot_volume - - GDC:Aliquot.amount - - GDC:Analyte.amount - - GDC:Analyte.analyte_volume - - PDC:Aliquot.aliquot_volume - - PDC:Aliquot.amount - - PDC:Analyte.amount - - PDC:Analyte.analyte_volume - - GDC:Aliquot.concentration - - GDC:Analyte.concentration - - PDC:Aliquot.concentration - - PDC:Analyte.concentration - - GDC:Sample.longest_dimension - - GDC:Sample.shortest_dimension - - GDC:Sample.intermediate_dimension - - PDC:Sample.longest_dimension - - PDC:Sample.shortest_dimension - - PDC:Sample.intermediate_dimension - - ICDC:Sample.length_of_tumor - - ICDC:Sample.width_of_tumor - - ICDC:Sample.total_tissue_area - - GDC:Slide.number_proliferating_cells - - GDC:Slide.percent_eosinophil_infiltration - - GDC:Slide.percent_granulocyte_infiltration - - GDC:Slide.percent_inflam_infiltration - - GDC:Slide.percent_lymphocyte_infiltration - - GDC:Slide.percent_monocyte_infiltration - - GDC:Slide.percent_necrosis - - GDC:Slide.percent_neutrophil_infiltration - - GDC:Slide.percent_normal_cells - - GDC:Slide.percent_stromal_cells - - GDC:Slide.percent_tumor_cells - - GDC:Slide.percent_tumor_nuclei - - GDC:Slide.percent_rhabdoid_features - - GDC:Slide.percent_sarcomatoid_features - - HTAN:Biospecimen.NumberProliferatingCells - - HTAN:Biospecimen.PercentEosinophilInfiltration - - HTAN:Biospecimen.PercentGranulocyteInfiltration - - HTAN:Biospecimen.PercentInflamInfiltration - - HTAN:Biospecimen.PercentLymphocyteInfiltration - - HTAN:Biospecimen.PercentMonocyteInfiltration - - HTAN:Biospecimen.PercentNecrosis - - HTAN:Biospecimen.PercentNeutrophilInfiltration - - HTAN:Biospecimen.PercentNormalCells - - HTAN:Biospecimen.PercentStromalCells - - HTAN:Biospecimen.PercentTumorCells - - HTAN:Biospecimen.PercentTumorNuclei - - HTAN:Biospecimen.TumorInfiltratingLymphocytes - - ICDC:Sample.non_tumor_tissue_area - - ICDC:Sample.tumor_tissue_area - - ICDC:Sample.percentage_tumor - - ICDC:Sample.percentage_stroma - - ICDC:Sample.analysis_area - - ICDC:Sample.analysis_area_percentage_stroma - - ICDC:Sample.analysis_area_percentage_tumor - - ICDC:Sample.analysis_area_percentage_glass - - ICDC:Sample.analysis_area_percentage_pigmented_tumor - - HTAN:Biospecimen.CollectionDaysfromIndex - - HTAN:Biospecimen.ProcessingDaysfromIndex - - HTAN:Biospecimen.SectioningDaysfromIndex - - PDC:Sample.days_to_collection - - GDC:Sample.time_between_excision_and_freezing - - GDC:Sample.time_between_clamping_and_freezing - - PDC:Sample.time_between_excision_and_freezing - - PDC:Sample.time_between_clamping_and_freezing - - HTAN:Biospecimen.ISCHEMIC_TIME - - HTAN:Biospecimen.FIXATION_DURATION - - GDC:Treatment.treatment_dose - - GDC:Treatment.days_to_treatment_end - - PDC:Treatment.days_to_treatment_end - - GDC:Treatment.days_to_treatment_start - - PDC:Treatment.days_to_treatment_start - - GDC:Diagnosis.tumor_largest_dimension_diameter - - PDC:Diagnosis.tumor_largest_dimension_diameter - - GDC:Diagnosis.age_at_diagnosis - - PDC:Diagnosis.age_at_diagnosis - - HTAN:Diagnosis.AgeatDiagnosis - domain: Quantity - range: ccdh_decimal - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: A coded value representing a quantity (e.g. "Adjacent (< or = - 2cm)") - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Sample.distance_normal_to_tumor - - PDC:Sample.distance_normal_to_tumor - domain: Quantity - range: enum_CCDH_Quantity_valueCodeableConcept - multivalued: false - required: false - unit: - name: unit - description: A coded or free text (in the .text field) representation of the - unit. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Treatment.treatment_dose_unit - domain: Quantity - range: enum_CCDH_Quantity_unit - multivalued: false - required: false - ResearchProject: - name: ResearchProject - description: "A process where a researcher or organization plans and then executes\ - \ a series of steps intended to increase the field of healthcare-related knowledge.\ - \ \nThis includes studies of safety, efficacy, comparative effectiveness and\ - \ other information about medications, devices, therapies and other interventional\ - \ \nand investigative techniques. A ResearchProject involves the gathering of\ - \ information about human or animal subjects." - notes: - - Derived from [ResearchProject in sheet ResearchProject](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1123416579) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - exact_mappings: - - GDC:Program.id - - PDC:Program.program_id - - PDC:Project.project_id - - GDC:Project.id - - ICDC:Study.clinical_study_id - domain: ResearchProject - range: ccdh_string - multivalued: false - required: false - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - close_mappings: - - GDC:Program.dbgap_accession_number - - GDC:Project.dbgap_accession_number - - PDC:Program.program_submitter_id - - PDC:Project.project_submitter_id - - ICDC:Study.clinical_study_designation - domain: ResearchProject - range: Identifier - multivalued: true - required: false - inlined_as_list: true - name: - name: name - description: An unabridged name of a research program, project, or study. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Program.name - - PDC:Program.name - - ICDC:Program.program_name - - GDC:Project.name - - PDC:Project.name - - ICDC:Study.clinical_study_name - domain: ResearchProject - range: ccdh_string - multivalued: false - required: false - name_shortened: - name: name_shortened - description: An abbreviated name of a research program, project, or study. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - ICDC:Program.program_acronym - - PDC:Program.program_shortname - domain: ResearchProject - range: ccdh_string - multivalued: false - required: false - description: - name: description - description: An unabridged description of a research program, project, or - study. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - ICDC:Program.program_full_description - domain: ResearchProject - range: ccdh_string - multivalued: false - required: false - description_shortened: - name: description_shortened - description: An abbreviated description of a research program, project, or - study. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - ICDC:Program.program_short_description - domain: ResearchProject - range: ccdh_string - multivalued: false - required: false - sponsor: - name: sponsor - description: An entity that is responsible for the initiation, management, - and/or financing of a research project. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - exact_mappings: - - PDC:Program.sponsor - domain: ResearchProject - range: ccdh_string - multivalued: true - required: false - inlined_as_list: true - date_started: - name: date_started - description: The date when the research project began. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - ICDC:Study.dates_of_conduct - domain: ResearchProject - range: TimePoint - multivalued: false - required: false - date_ended: - name: date_ended - description: The date when the research project ended. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - ICDC:Study.dates_of_conduct - domain: ResearchProject - range: TimePoint - multivalued: false - required: false - primary_anatomic_site: - name: primary_anatomic_site - description: The text term used to describe the general location of the malignant - disease, as categorized by the World Health Organization's (WHO) International - Classification of Diseases for Oncology (ICD-O). In the context of ResearchProject, - this attribute captures the anatomic sites of research interest. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Project.primary_site - domain: ResearchProject - range: BodySite - multivalued: true - required: false - inlined_as_list: true - url: - name: url - description: A URL address for a resource that provides information about - a research program, project, or study. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - exact_mappings: - - ICDC:Program.program_external_url - domain: ResearchProject - range: ccdh_string - multivalued: true - required: false - inlined_as_list: true - part_of: - name: part_of - description: A reference to a parent ResearchProject (e.g. a link to the overarching - CPTAC ResearchProject from a substudy of CPTAC) - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: ResearchProject - range: ResearchProject - multivalued: true - required: false - inlined_as_list: true - research_project_type: - name: research_project_type - description: The 'type' of ResearchProject represented (e.g. a broad-based - Program like 'CPTAC' or a more focused Project like 'CPTAC PDAC Discovery - Study') - notes: - - 'Cardinality: 1..1' - examples: - - value: Program - - value: Project - - value: Clinical Trial - exact_mappings: - - ICDC:Study.clinical_study_type - close_mappings: - - GDC:Program - - GDC:Project - - PDC:Program - - PDC:Project - - ICDC:Program - - ICDC:Study - domain: ResearchProject - range: enum_CCDH_ResearchProject_research_project_type - multivalued: false - required: true - associated_timepoint: - name: associated_timepoint - description: A collection of timepoint observations that are relevant to research - projects (e.g. date of IACUC approval, date of IRB approval, date of embargo - end, etc.) - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - ICDC:Study.date_of_iacuc_approval - domain: ResearchProject - range: TimePoint - multivalued: true - required: false - inlined_as_list: true - ResearchSubject: - name: ResearchSubject - description: "A research subject is the entity of interest in a research study,\ - \ typically a human being or an animal, but can also be a device, group of humans\ - \ or animals, \nor a tissue sample. Human research subjects are usually not\ - \ traceable to a particular person to protect the subject\u2019s privacy." - notes: - - Derived from [ResearchSubject in sheet ResearchSubject](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=665511119) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 1..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - exact_mappings: - - GDC:Case.id - - ICDC:Case.case_id - domain: ResearchSubject - range: ccdh_string - multivalued: false - required: true - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - close_mappings: - - GDC:Case.submitter_id - - PDC:Case.case_submitter_id - domain: ResearchSubject - range: Identifier - multivalued: true - required: false - inlined_as_list: true - description: - name: description - description: A free text field to capture additional info/explanation about - the research subject. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: ResearchSubject - range: ccdh_string - multivalued: false - required: false - member_of_research_project: - name: member_of_research_project - description: A reference to the Study(s) of which this ResearchSubject is - a member - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Case.member_of - - GDC:Case.project_id - - PDC:Case.Project - - ICDC:Case.member_of - domain: ResearchSubject - range: ResearchProject - multivalued: false - required: false - age_at_enrollment: - name: age_at_enrollment - description: The age in days when the Subject enrolled on the ResearchProject - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - ICDC:Demographic.patient_age_at_enrollment - domain: ResearchSubject - range: Quantity - multivalued: false - required: false - primary_diagnosis_condition: - name: primary_diagnosis_condition - description: The text term used to describe the type of malignant disease, - as categorized by the World Health Organization's (WHO) International Classification - of Diseases for Oncology (ICD-O). This attribute represents the disease - that qualified the subject for inclusion on the ResearchProject - notes: - - 'Cardinality: 0..1' - comments: - - In cases where a data source does not have sufficiently detailed information - on the diagnosis that qualified a subject for inclusion on a ResearchProject - in order to instantiate a Diagnosis entity, the primary_diagnosis_condition - attribute should be populated when available. - examples: - - value: Acinar Cell Neoplasms - - value: Adenomas and Adenocarcinomas - - value: Adnexal and Skin Appendage Neoplasms - - value: '' - exact_mappings: - - GDC:Case.disease_type - - PDC:Case.disease_type - domain: ResearchSubject - range: enum_CCDH_ResearchSubject_primary_diagnosis_condition - multivalued: false - required: false - primary_diagnosis_site: - name: primary_diagnosis_site - description: The text term used to describe the primary site of disease, as - categorized by the World Health Organization's (WHO) International Classification - of Diseases for Oncology (ICD-O). This categorization groups cases into - general categories. This attribute represents the primary site of disease - that qualified the subject for inclusion on the ResearchProject. - notes: - - 'Cardinality: 0..1' - comments: - - In cases where a data source does not have sufficiently detailed information - on the diagnosis that qualified a subject for inclusion on a ResearchProject - in order to instantiate a Diagnosis entity, the primary_diagnosis_site attribute - should be populated when available. - examples: - - value: Accessory sinuses - - value: Adrenal gland - - value: Anus and anal canal - - value: '' - close_mappings: - - GDC:Case.primary_site - - PDC:Case.primary_site - domain: ResearchSubject - range: BodySite - multivalued: false - required: false - primary_diagnosis: - name: primary_diagnosis - description: The diagnosis instance that qualified a subject for inclusion - on a ResearchProject - notes: - - 'Cardinality: 0..m' - comments: - - In cases where a data source has sufficiently detailed information on the - diagnosis that qualifies a subject for inclusion on a ResearchProject, a - Diagnosis entity should be instantiated and included here. - examples: - - value: '' - domain: ResearchSubject - range: Diagnosis - multivalued: true - required: false - inlined_as_list: true - comorbid_diagnosis: - name: comorbid_diagnosis - description: One or more diagnosis instance that are comorbid with the primary_diagnosis - that qualified a subject for inclusion on a ResearchProject - notes: - - 'Cardinality: 0..m' - comments: - - In cases where a data source has sufficiently detailed information on comorbid - diagnoses related to the diagnosis that qualified a subject for inclusion - on a ResearchProject, a Diagnosis entity should be instantiated and included - here. - examples: - - value: '' - close_mappings: - - ICDC:Diagnosis.concurrent_disease - - ICDC:Diagnosis.concurrent_disease_type - - GDC:Diagnosis.synchronous_malignancy - - PDC:Diagnosis.synchronous_malignancy - domain: ResearchSubject - range: Diagnosis - multivalued: true - required: false - inlined_as_list: true - index_timepoint: - name: index_timepoint - description: The text term used to describe the reference or anchor date used - for date obfuscation, where a single date is obscured by creating one or - more date ranges in relation to this date. - notes: - - 'Cardinality: 0..1' - examples: - - value: Diagnosis - - value: First Patient Visit - - value: First Treatment - - value: '' - exact_mappings: - - GDC:Case.index_date - - PDC:Case.index_date - domain: ResearchSubject - range: enum_CCDH_ResearchSubject_index_timepoint - multivalued: false - required: false - originating_site: - name: originating_site - description: The Organization at which a subject was enrolled on a ResearchProject. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - PDC:Case.tissue_source_site_code - domain: ResearchSubject - range: Organization - multivalued: false - required: false - associated_subject: - name: associated_subject - description: A reference to the Subject that is this ResearchSubject - notes: - - 'Cardinality: 1..1' - examples: - - value: '' - domain: ResearchSubject - range: Subject - multivalued: false - required: true - Specimen: - name: Specimen - description: Any material taken as a sample from a biological entity (living or - dead), or from a physical object or the environment. Specimens are usually collected - as an example of their kind, often for use in some investigation. - notes: - - Derived from [Specimen in sheet Specimen](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1439310281) - comments: - - Definition adapted from FHIR Specimen. - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - exact_mappings: - - GDC:Aliquot.id - - GDC:Analyte.id - - GDC:Portion.id - - GDC:Sample.id - - GDC:Slide.id - - PDC:Aliquot.aliquot_id - - PDC:Analyte.analyte_id - - PDC:Portion.portion_id - - PDC:Sample.sample_id - - ICDC:Sample.sample_id - - HTAN:Biospecimen.HTANBiospecimenID - domain: Specimen - range: ccdh_string - multivalued: false - required: false - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - close_mappings: - - GDC:Sample.submitter_id - - GDC:Analyte.submitter_id - - GDC:Slide.submitter_id - - PDC:Sample.sample_submitter_id - - PDC:Analyte.analyte_submitter_id - domain: Specimen - range: Identifier - multivalued: true - required: false - inlined_as_list: true - description: - name: description - description: A free text field to capture additional information or explanation - about the specimen. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - ICDC:Sample.comment - domain: Specimen - range: ccdh_string - multivalued: false - required: false - specimen_type: - name: specimen_type - description: The high-level type of the specimen, based on its derivation - provenance (i.e. how far removed it is from the original sample extracted - from a source). - notes: - - 'Cardinality: 0..1' - comments: - - Our model defines a single 'Specimen' type to cover speific subtypes of - specimens delineated in some CRDC node models (e.g. GDC 'Sample', 'Portion', - 'Aliquot', 'Analyte', and 'Slide'). The 'specimen_type' field is used to - indicate which subtype a given Specimen instance represents. The enumerated - values are meant to be mutually exclusive, such that only one can be applied - to a given specimen. - examples: - - value: Initial Sample - - value: Portion - - value: Aliquot - - value: Analyte - - value: Slide - exact_mappings: - - HTAN:Biospecimen.BiospecimenType - close_mappings: - - GDC:Sample - - GDC:Portion - - GDC:Analyte - - GDC:Aliquot - - GDC:Slide - - PDC:Sample - - PDC:Portion - - PDC:Analyte - - PDC:Aliquot - - PDC:Slide - - ICDC:Sample - domain: Specimen - range: enum_CCDH_Specimen_specimen_type - multivalued: false - required: false - analyte_type: - name: analyte_type - description: For specimens of type 'analyte' (or an 'aliquot' derived from - an analyte), this is the category of chemcial the analyte of interest represents - (e.g. DNA, RNA) - notes: - - 'Cardinality: 0..1' - examples: - - value: DNA - - value: FFPE DNA - - value: GenomePlex (Rubicon) Amplified DNA - - value: Repli-G (Qiagen) DNA - - value: RNA - - value: FFPE RNA - exact_mappings: - - GDC:Aliquot.analyte_type - - GDC:Aliquot.analyte_type_id - - GDC:Analyte.analyte_type - - GDC:Analyte.analyte_type_id - - PDC:Aliquot.analyte_type - - PDC:Aliquot.analyte_type_id - - PDC:Analyte.analyte_type - - PDC:Analyte.analyte_type_id - - HTAN:Biospecimen.AnalyteBiospecimenType - domain: Specimen - range: enum_CCDH_Specimen_analyte_type - multivalued: false - required: false - associated_project: - name: associated_project - description: The Project associated with the specimen. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Sample.project_id - - GDC:Portion.project_id - - GDC:Aliquot.project_id - - GDC:Analyte.project_id - - PDC:Sample.gdc_project_id - domain: Specimen - range: ResearchProject - multivalued: false - required: false - data_provider: - name: data_provider - description: The organization (e.g.a laboratory, processing center, or research - site) that provided data associated with a specimen. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Aliquot.source_center - - HTAN:Biospecimen.SiteDataSource - domain: Specimen - range: Organization - multivalued: false - required: false - source_material_type: - name: source_material_type - description: The general kind of material from which the specimen was derived. - notes: - - 'Cardinality: 0..1' - comments: - - Values captured here may describe the type of molecular mixture, cell, tissue, - organ, body fluid, embryo, excretory substance, or experimental system from - which a specimen was derived. - examples: - - value: Tissue, Blood, Tumor Aspirate - - value: Cell Line - - value: Expanded Next Generation Cancer Model - - value: Pleural Effusion - - value: Xenograft Tissue - exact_mappings: - - GDC:Sample.sample_type - - GDC:Sample.sample_type_id - - PDC:Sample.sample_type - - PDC:Sample.sample_type_id - - ICDC:Sample.physical_sample_type - - HTAN:Biospecimen.BiospecimenType - domain: Specimen - range: enum_CCDH_Specimen_source_material_type - multivalued: false - required: false - parent_specimen: - name: parent_specimen - description: An existing specimen from which the specimen of interest was - directly derived (i.e its immediate parent specimen). - notes: - - 'Cardinality: 0..m' - comments: - - This property indicates only the direct parent specimen(s). Cardinality - is 0..m to account for specimens derived from pooling of multiple specimens. - examples: - - value: '' - exact_mappings: - - GDC:Sample.derived_from - - GDC:Aliquot.derived_from - - GDC:Aliquot.derived_from - - GDC:Analyte.derived_from - - GDC:Analyte.derived_from - - GDC:Portion.derived_from - - GDC:Slide.derived_from - - PDC:Aliquot.Sample - - PDC:Analyte.Portion - - PDC:Analyte.Sample - - PDC:Portion.Sample - - HTAN:Biospecimen.HTANParentID - domain: Specimen - range: Specimen - multivalued: true - required: false - inlined_as_list: true - source_subject: - name: source_subject - description: A specific Subject from which the specimen was directly or indirectly - derived. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - PDC:Sample.Case - - GDC:Sample.derived_from - - ICDC:Sample.of_case - - HTAN:Biospecimen.HTANParentID - domain: Specimen - range: Subject - multivalued: false - required: false - tumor_status_at_collection: - name: tumor_status_at_collection - description: The status of the tumor at the time the specimen was collected - (e.g. if it was primary, recurrent, metastatic, etc). - notes: - - 'Cardinality: 0..1' - examples: - - value: Additional Primary - - value: Local recurrence - - value: Metastatic - - value: NOS - - value: Premalignant - - value: Primary - - value: Recurrent - - value: Xenograft - exact_mappings: - - GDC:Sample.tumor_descriptor - - PDC:Sample.tumor_descriptor - - HTAN:Biospecimen.TUMOR_TISSUE_TYPE - - ICDC:Sample.tumor_sample_origin - - GDC:Diagnosis.classification_of_tumor - - PDC:Diagnosis.classification_of_tumor - domain: Specimen - range: enum_CCDH_Specimen_tumor_status_at_collection - multivalued: false - required: false - creation_activity: - name: creation_activity - description: The activity through which a specimen was created, by removing - material from an biological subject, or deriving material from an existing - specimen. - notes: - - 'Cardinality: 0..1' - comments: - - Note that a given specimen is the result of only one and only one SpecimenCreationActivity, - but may be subject to many processing events that subsequently modify or - derive new specimens from it. - examples: - - value: '' - close_mappings: - - GDC:Portion.creation_datetime - - PDC:Portion.creation_datetime - - PDC:Sample.days_to_collection - - ICDC:Sample.date_of_sample_collection - - HTAN:Biospecimen.CollectionDaysfromIndex - - GDC:Sample.method_of_sample_procurement - - PDC:Sample.method_of_sample_procurement - - PDC:Sample.pool - - PDC:Aliquot.pool - - HTAN:Biospecimen.AcquisitionMethodType - - HTAN:Biospecimen.SlicingMethod - - HTAN:Biospecimen.MethodofNucleicAcidIsolation - - HTAN:Biospecimen.LysisBuffer - - GDC:Sample.biospecimen_anatomic_site - - GDC:Sample.biospecimen_laterality - - PDC:Sample.biospecimen_anatomic_site - - PDC:Sample.biospecimen_laterality - - ICDC:Sample.sample_site - - HTAN:Biospecimen.SiteofResectionorBiopsy - - GDC:Sample.initial_weight - - PDC:Sample.initial_weight - - GDC:Sample.time_between_excision_and_freezing - - GDC:Sample.time_between_clamping_and_freezing - - PDC:Sample.time_between_excision_and_freezing - - PDC:Sample.time_between_clamping_and_freezing - - HTAN:Biospecimen.ISCHEMIC_TEMPERATURE - - HTAN:Biospecimen.ISCHEMIC_TIME - - GDC:Portion.portion_number - - PDC:Portion.portion_number - - ICDC:Sample.on_visit - - ICDC:Sample.necropsy_sample - - HTAN:Biospecimen.TimepointLabel - domain: Specimen - range: SpecimenCreationActivity - multivalued: false - required: false - processing_activity: - name: processing_activity - description: An activity that modifies the physical structure, composition, - or state of a specimen. - notes: - - 'Cardinality: 0..m' - comments: - - Note that a given specimen may undergo more than one distinct processing - activity, through application of different methodologies that modify its - physical state. However, if an activity generates a new specimen (e.g. via - portioning, slicing) it is considered a SpeciemnCreationActivity. - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.ProcessingDaysfromIndex - - HTAN:Biospecimen.FIXATION_DURATION - - GDC:Sample.processed_at - - HTAN:Biospecimen.ProcessingLocation - - GDC:Sample.freezing_method - - GDC:Sample.preservation_method - - GDC:Sample.is_ffpe - - GDC:Portion.is_ffpe - - GDC:Sample.oct_embedded - - PDC:Sample.freezing_method - - PDC:Sample.preservation_method - - PDC:Sample.is_ffpe - - GDC:Portion.is_ffpe - - PDC:Sample.oct_embedded - - HTAN:Biospecimen.PRESERVATION_METHOD - - HTAN:Biospecimen.FixativeType - - HTAN:Biospecimen.MountingMedium - domain: Specimen - range: SpecimenProcessingActivity - multivalued: true - required: false - inlined_as_list: true - storage_activity: - name: storage_activity - description: An activity that results in the storage or maintenance of a specimen - in a particular location, container, or state. - notes: - - 'Cardinality: 0..m' - comments: - - 'The 0..m cardinality of this attribute reflects the fact that a given specimen - may undergo many separate periods of storage, in different locations and/or - under different conditions ' - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.StorageMethod - domain: Specimen - range: SpecimenStorageActivity - multivalued: true - required: false - inlined_as_list: true - transport_activity: - name: transport_activity - description: An activity through which the specimen is transported between - locations. - notes: - - 'Cardinality: 0..m' - comments: - - The 0..m cardinality of this attribute reflects the fact that a given specimen - may undergo many separate transport processes at different periods of time. - examples: - - value: '' - close_mappings: - - GDC:Portion.shipped_to - - GDC:Aliquot.shipped_to - domain: Specimen - range: SpecimenTransportActivity - multivalued: true - required: false - inlined_as_list: true - contained_in: - name: contained_in - description: A physical container in which a specimen is presently held or - attached - as storage for future use, a substrate for growth (e.g. a cell - culture dish), or a vessel to enable analysis (e.g. a microscope slide or - 96-well plate) - notes: - - 'Cardinality: 0..1' - comments: - - 'The 0..1 cardinality on this attribute means that you cannot directly references - multiple nested containers holding a sample. To capture this scenario, use - the ''parent_container'' attribute of the Container entity. ' - examples: - - value: '' - close_mappings: - - GDC:Analyte.well_number - - PDC:Analyte.well_number - - HTAN:Biospecimen.CollectionMedia - - GDC:Slide.charge_type - domain: Specimen - range: SpecimenContainer - multivalued: false - required: false - dimensional_measures: - name: dimensional_measures - description: Observations about the current physical dimensions of an object - (e.g. length, width, area). - notes: - - 'Cardinality: 0..1' - comments: - - Observations are flexible containers for capturing a specific type of observation/measurement - data about an object, along with metadata about how it was generated. The - specific type of observation made is captured as data in the Observation - object. - examples: - - value: '' - close_mappings: - - GDC:Sample.longest_dimension - - GDC:Sample.shortest_dimension - - GDC:Sample.intermediate_dimension - - PDC:Sample.longest_dimension - - PDC:Sample.shortest_dimension - - PDC:Sample.intermediate_dimension - - ICDC:Sample.length_of_tumor - - ICDC:Sample.width_of_tumor - - ICDC:Sample.total_tissue_area - domain: Specimen - range: DimensionalObservationSet - multivalued: false - required: false - quantity_measure: - name: quantity_measure - description: An observation related to the present quantity of a specimen - - e.g. its weight, volume, or analyte concentration. - notes: - - 'Cardinality: 0..m' - comments: - - Observations are flexible containers for capturing a specific type of observation/measurement - data about an object, along with metadata about how it was generated. The - specific type of observation made is captured as data in the Observation - object. - examples: - - value: '' - close_mappings: - - GDC:Sample.current_weight - - GDC:Aliquot.amount - - GDC:Portion.weight - - GDC:Aliquot.aliquot_quantity - - GDC:Analyte.amount - - GDC:Analyte.analyte_quantity - - PDC:Sample.current_weight - - PDC:Aliquot.amount - - PDC:Portion.weight - - PDC:Aliquot.aliquot_quantity - - PDC:Analyte.amount - - PDC:Analyte.analyte_quantity - - GDC:Aliquot.aliquot_volume - - GDC:Aliquot.amount - - GDC:Analyte.amount - - GDC:Analyte.analyte_volume - - PDC:Aliquot.aliquot_volume - - PDC:Aliquot.amount - - PDC:Analyte.amount - - PDC:Analyte.analyte_volume - - GDC:Aliquot.concentration - - GDC:Analyte.concentration - - PDC:Aliquot.concentration - - PDC:Analyte.concentration - - GDC:Analyte.spectrophotometer_method - - PDC:Analyte.spectrophotometer_method - domain: Specimen - range: SpecimenQuantityObservation - multivalued: true - required: false - inlined_as_list: true - quality_measure: - name: quality_measure - description: An observation about characteristics of a specimen that are indicative - of its quality or suitability for use. - notes: - - 'Cardinality: 0..m' - comments: - - Observations are flexible containers for capturing a specific type of observation/measurement - data about an object, along with metadata about how it was generated. The - specific type of observation made is captured as data in the Observation - object. - examples: - - value: '' - close_mappings: - - GDC:Analyte.a260_a280_ratio - - GDC:Analyte.ribosomal_rna_28s_16s_ratio - - PDC:Analyte.a260_a280_ratio - - PDC:Analyte.ribosomal_rna_28s_16s_ratio - domain: Specimen - range: SpecimenQualityObservation - multivalued: true - required: false - inlined_as_list: true - cellular_composition_type: - name: cellular_composition_type - description: A term describing the type of cell or cellular material comprising - a specimen. - notes: - - 'Cardinality: 0..1' - examples: - - value: 2D Classical Conditionally Reprogrammed Cells - - value: Adherent Cell Line - - value: Bone Marrow Components - - value: Buccal Cells - - value: Buffy Coat - - value: Derived Cell Line - - value: Granulocytes - - value: Pleural Effusion - - value: Human Original Cells - - value: Liquid Suspension Cell Line - exact_mappings: - - GDC:Sample.composition - - PDC:Sample.composition - domain: Specimen - range: enum_CCDH_Specimen_cellular_composition_type - multivalued: false - required: false - histological_composition_measures: - name: histological_composition_measures - description: A set of one or more observations that quantify the relative - or absolute composition of a specimen at cellular level - e.g. how many - cells in the specimen are of a given type, or exhibit a particular cellular - phenotype. - notes: - - 'Cardinality: 0..m' - comments: - - Observations are flexible containers for capturing a specific type of observation/measurement - data about an object, along with metadata about how it was generated. The - specific type of observation made is captured as data in the Observation - object. - examples: - - value: '' - close_mappings: - - GDC:Slide.number_proliferating_cells - - GDC:Slide.percent_eosinophil_infiltration - - GDC:Slide.percent_granulocyte_infiltration - - GDC:Slide.percent_inflam_infiltration - - GDC:Slide.percent_lymphocyte_infiltration - - GDC:Slide.percent_monocyte_infiltration - - GDC:Slide.percent_necrosis - - GDC:Slide.percent_neutrophil_infiltration - - GDC:Slide.percent_normal_cells - - GDC:Slide.percent_stromal_cells - - GDC:Slide.percent_tumor_cells - - GDC:Slide.percent_tumor_nuclei - - GDC:Slide.percent_rhabdoid_features - - GDC:Slide.percent_sarcomatoid_features - - HTAN:Biospecimen.NumberProliferatingCells - - HTAN:Biospecimen.PercentEosinophilInfiltration - - HTAN:Biospecimen.PercentGranulocyteInfiltration - - HTAN:Biospecimen.PercentInflamInfiltration - - HTAN:Biospecimen.PercentLymphocyteInfiltration - - HTAN:Biospecimen.PercentMonocyteInfiltration - - HTAN:Biospecimen.PercentNecrosis - - HTAN:Biospecimen.PercentNeutrophilInfiltration - - HTAN:Biospecimen.PercentNormalCells - - HTAN:Biospecimen.PercentStromalCells - - HTAN:Biospecimen.PercentTumorCells - - HTAN:Biospecimen.PercentTumorNuclei - - HTAN:Biospecimen.TumorInfiltratingLymphocytes - - ICDC:Sample.non_tumor_tissue_area - - ICDC:Sample.tumor_tissue_area - - ICDC:Sample.percentage_tumor - - ICDC:Sample.percentage_stroma - - ICDC:Sample.analysis_area - - ICDC:Sample.analysis_area_percentage_stroma - - ICDC:Sample.analysis_area_percentage_tumor - - ICDC:Sample.analysis_area_percentage_glass - - ICDC:Sample.analysis_area_percentage_pigmented_tumor - domain: Specimen - range: HistologicalCompositionObservationSet - multivalued: true - required: false - inlined_as_list: true - general_tissue_morphology: - name: general_tissue_morphology - description: The high-level kind of tissue collected when generating a specimen, - based on its disease status or proximity to tumor tissue (e.g. is it normal, - abnormal, tumor, tumor-adjacent). - notes: - - 'Cardinality: 0..1' - examples: - - value: Tumor - - value: Normal - - value: Abnormal - - value: Peritumoral - - value: not applicable - exact_mappings: - - GDC:Sample.tissue_type - - PDC:Sample.tissue_type - - ICDC:Sample.general_sample_pathology - domain: Specimen - range: enum_CCDH_Specimen_general_tissue_morphology - multivalued: false - required: false - specific_tissue_morphology: - name: specific_tissue_morphology - description: A term describing the specific pathology exhibited by the tissue - comprising a specimen. - notes: - - 'Cardinality: 0..1' - examples: - - value: Non cancerous tissue - - value: Lung Cancer (all types) - - value: CNS, medulloblastoma - - value: '00' - - value: '01' - - value: '02' - - value: Melanocytic hyperplasia - - value: Atypical melanocytic proliferation - - value: Melanoma in situ, superficial spreading - exact_mappings: - - GDC:Sample.tumor_code - - GDC:Sample.tumor_code_id - - PDC:Sample.tumor_code - - PDC:Sample.tumor_code_id - - ICDC:Sample.specific_sample_pathology - - HTAN:Biospecimen.HistologicMorphologyCode - domain: Specimen - range: enum_CCDH_Specimen_specific_tissue_morphology - multivalued: false - required: false - preinvasive_tissue_morphology: - name: preinvasive_tissue_morphology - description: A term describing the specific pathology exhibited by pre-invasive - tissue comprising a specimen. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - HTAN:Biospecimen.PreinvasiveMorphology - domain: Specimen - range: enum_CCDH_Specimen_preinvasive_tissue_morphology - multivalued: false - required: false - morphology_pathologically_confirmed: - name: morphology_pathologically_confirmed - description: A flag indicating whether the histologic assessment of specific - morphology was confirmed by pathologist review. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Sample.diagnosis_pathologically_confirmed - - PDC:Sample.diagnosis_pathologically_confirmed - domain: Specimen - range: ccdh_boolean - multivalued: false - required: false - morphology_assessor_role: - name: morphology_assessor_role - description: A term describing the role of the person who histologically assessed - the specific tissue morphology of a specimen - notes: - - 'Cardinality: 0..1' - examples: - - value: Pathologist - - value: Research Scientist - - value: Other - - value: Unknown - exact_mappings: - - HTAN:Biospecimen.HistologyAssessmentBy - domain: Specimen - range: enum_CCDH_Specimen_morphology_assessor_role - multivalued: false - required: false - morphlogy_assessment_method: - name: morphlogy_assessment_method - description: The general method used to assess a specimens specific tissue - morphology - notes: - - 'Cardinality: 0..1' - examples: - - value: Digital - - value: Microscopy - - value: Other - - value: Unknown - exact_mappings: - - HTAN:Biospecimen.HistologyAssessmentMedium - domain: Specimen - range: enum_CCDH_Specimen_morphlogy_assessment_method - multivalued: false - required: false - degree_of_dysplasia: - name: degree_of_dysplasia - description: A term describing the nature/extent of abnormal cells that are - not cancer, as observed upon microscopic assessment of a specimen. Records - the degree of dysplasia for the cyst or lesion under consideration. - notes: - - 'Cardinality: 0..1' - examples: - - value: Normal or basal cell hyperplasia or metaplasia - - value: Mild dysplasia - - value: Moderate dysplasia - - value: Severe dysplasia - - value: Carcinoma in Situ - - value: Unknown - exact_mappings: - - HTAN:Biospecimen.DegreeofDysplasia - domain: Specimen - range: enum_CCDH_Specimen_degree_of_dysplasia - multivalued: false - required: false - dysplasia_fraction: - name: dysplasia_fraction - description: Resulting value to represent the number of pieces of dysplasia - divided by the total number of pieces. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - HTAN:Biospecimen.DysplasiaFraction - domain: Specimen - range: ccdh_string - multivalued: false - required: false - related_document: - name: related_document - description: A reference to an external document that is about or related - to the specimen (e.g. a publication related to the study it is a part of, - pathology report containing additional details about it, protocol describing - how it was collected) - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Sample.pathology_report_uuid - - PDC:Sample.pathology_report_uuid - - HTAN:Biospecimen.ProtocolLink - domain: Specimen - range: Document - multivalued: true - required: false - inlined_as_list: true - section_location: - name: section_location - description: The location in a parent specimen from which a section/portion - was excised (e.g. top, middle, bottom) - notes: - - 'Cardinality: 0..1' - comments: - - This attribute applies only to Specimens that are of type 'portion' or 'slide'. - examples: - - value: Top - - value: Bottom - - value: Unknown - exact_mappings: - - GDC:Slide.section_location - domain: Specimen - range: enum_CCDH_Specimen_section_location - multivalued: false - required: false - derived_product: - name: derived_product - description: A 'living' biologically active product that was derived from - the specimen (e.g. a cell culture, tissue culture, or organoid) - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Sample.passage_count - - GDC:Sample.growth_rate - - PDC:Sample.passage_count - - PDC:Sample.growth_rate - domain: Specimen - range: BiologicProduct - multivalued: true - required: false - inlined_as_list: true - distance_from_paired_specimen: - name: distance_from_paired_specimen - description: The observed distance in the body of the specimen from a 'paired - specimen' at the time of collection. (e.g. the distance between the in vivo - location of a tumor tissue specimen and its paired normal specimen) - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Sample.distance_normal_to_tumor - - PDC:Sample.distance_normal_to_tumor - domain: Specimen - range: Quantity - multivalued: false - required: false - SpecimenContainer: - name: SpecimenContainer - description: A vessel in which a specimen is held or to which it is attached - - for storage or as a substrate for growth (e.g. a cell culture dish) or analysis - (e.g. a microscope slide or 96-well plate) - notes: - - Derived from [SpecimenContainer in sheet SpecimenContainer](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=729222697) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: SpecimenContainer - range: ccdh_string - multivalued: false - required: false - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - domain: SpecimenContainer - range: Identifier - multivalued: true - required: false - inlined_as_list: true - container_type: - name: container_type - description: The kind of the container. - notes: - - 'Cardinality: 0..1' - examples: - - value: Capillary blood collection tube - - value: Sputum specimen container - - value: Cell culture flask - - value: Glass slide - domain: SpecimenContainer - range: enum_CCDH_SpecimenContainer_container_type - multivalued: false - required: false - container_number: - name: container_number - description: Informal number by which the container is referenced or identified - (e.g. a slide number, or a well number in a plate) - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Analyte.well_number - - PDC:Analyte.well_number - domain: SpecimenContainer - range: ccdh_string - multivalued: false - required: false - additive: - name: additive - description: A material substance added to the container (typically to support - the primary contained object - e.g. culture media to support cell growth) - notes: - - 'Cardinality: 0..m' - examples: - - value: DMEM - - value: DMEM+Serum - - value: RPMI - - value: RPMI+Serum - exact_mappings: - - HTAN:Biospecimen.CollectionMedia - domain: SpecimenContainer - range: Substance - multivalued: true - required: false - inlined_as_list: true - parent_container: - name: parent_container - description: A larger container of which this container is a part (e.g. the - complete 96-well plate of which a single well is a part) - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenContainer - range: SpecimenContainer - multivalued: false - required: false - SpecimenCreationActivity: - name: SpecimenCreationActivity - description: The process of creating a specimen. This may occur through observing - and/or collecting material from an biological source or natural setting, or - through derivation from an existing specimen (e.g. via portioning or aliquoting). - notes: - - Derived from [SpecimenCreationActivity in sheet SpecimenCreationActivity](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=693792130) - comments: - - A creation' activity represents the entire process up to the point where the - specimen is physically modified, stored, or transported. - is_a: Entity - attributes: - activity_type: - name: activity_type - description: The high-level type of creation activity. - notes: - - 'Cardinality: 0..1' - comments: - - At present our model collapses two types of processes through which specimens - are created (initial collection from source, and derivation from an existing - specimen). The 'category' is a flag to indicate which applies to a given - instance, so that more specific recommendations about data entry in certain - fields can be specified. - examples: - - value: Collection from Source - - value: Derivation from Specimen - domain: SpecimenCreationActivity - range: enum_CCDH_SpecimenCreationActivity_activity_type - multivalued: false - required: false - date_started: - name: date_started - description: The date when the activity began (in this case, a specimen creation - event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - close_mappings: - - GDC:Portion.creation_datetime - - PDC:Portion.creation_datetime - - PDC:Sample.days_to_collection - - ICDC:Sample.date_of_sample_collection - - HTAN:Biospecimen.CollectionDaysfromIndex - domain: SpecimenCreationActivity - range: TimePoint - multivalued: false - required: false - date_ended: - name: date_ended - description: The date when the activity ended (in this case, a specimen creation - event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - close_mappings: - - GDC:Portion.creation_datetime - - PDC:Portion.creation_datetime - - PDC:Sample.days_to_collection - - ICDC:Sample.date_of_sample_collection - - HTAN:Biospecimen.CollectionDaysfromIndex - domain: SpecimenCreationActivity - range: TimePoint - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenCreationActivity - range: Organization - multivalued: false - required: false - collection_method_type: - name: collection_method_type - description: The type of method applied in collecting a sample from its original - source. - notes: - - 'Cardinality: 0..1' - comments: - - This attribute applies only when the Specimen.category = 'original'. - examples: - - value: Anterior Resection of Rectum - - value: Ascites Drainage - - value: Excisional Biopsy - - value: Specimen Pooling - exact_mappings: - - GDC:Sample.method_of_sample_procurement - - PDC:Sample.method_of_sample_procurement - - PDC:Sample.pool - - PDC:Aliquot.pool - - HTAN:Biospecimen.AcquisitionMethodType - domain: SpecimenCreationActivity - range: enum_CCDH_SpecimenCreationActivity_collection_method_type - multivalued: false - required: false - derivation_method_type: - name: derivation_method_type - description: The type of method applied to derive a new specimen from an existing - one. - notes: - - 'Cardinality: 0..1' - comments: - - This attribute applies only when Specimen.category = 'portion', 'aliquot', - 'analyte', or 'slide'. - examples: - - value: Vibratome - - value: Cryosectioning - - value: Tissuemolds - - value: Slidingmicrotome - - value: Sectioning - - value: Other - - value: Unknown - - value: NotReported - exact_mappings: - - HTAN:Biospecimen.SlicingMethod - - HTAN:Biospecimen.MethodofNucleicAcidIsolation - domain: SpecimenCreationActivity - range: enum_CCDH_SpecimenCreationActivity_derivation_method_type - multivalued: false - required: false - additive: - name: additive - description: A type of material or reagent used applied as input when creating - a specimen. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.LysisBuffer - domain: SpecimenCreationActivity - range: Substance - multivalued: true - required: false - inlined_as_list: true - collection_site: - name: collection_site - description: The anatomic site from which a specimen was collected. - notes: - - 'Cardinality: 0..1' - comments: - - This attribute is used when SpecimenCreationActivity.activity_type = 'Collection - from Source'. - examples: - - value: Abdomen - - value: Abdominal Wall - - value: Acetabulum - close_mappings: - - GDC:Sample.biospecimen_anatomic_site - - GDC:Sample.biospecimen_laterality - - PDC:Sample.biospecimen_anatomic_site - - PDC:Sample.biospecimen_laterality - - ICDC:Sample.sample_site - - HTAN:Biospecimen.SiteofResectionorBiopsy - domain: SpecimenCreationActivity - range: BodySite - multivalued: false - required: false - quantity_collected: - name: quantity_collected - description: The quantity of material in the specimen as originally collected - from its original source material (prior to downstream portioning or processing) - notes: - - 'Cardinality: 0..1' - comments: - - This attribute applies only when Specimen.category='initial sample'. - examples: - - value: '' - close_mappings: - - GDC:Sample.initial_weight - - PDC:Sample.initial_weight - domain: SpecimenCreationActivity - range: Quantity - multivalued: false - required: false - execution_time_observation: - name: execution_time_observation - description: Information describing how long certain parts on an activity - took to complete. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Sample.time_between_excision_and_freezing - - GDC:Sample.time_between_clamping_and_freezing - - PDC:Sample.time_between_excision_and_freezing - - PDC:Sample.time_between_clamping_and_freezing - domain: SpecimenCreationActivity - range: ExecutionTimeObservation - multivalued: true - required: false - inlined_as_list: true - execution_condition_observation: - name: execution_condition_observation - description: Information describing the environmental conditions in which - an activity, or a specific part of an activity, was performed. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.ISCHEMIC_TEMPERATURE - - HTAN:Biospecimen.ISCHEMIC_TIME - domain: SpecimenCreationActivity - range: ExecutionConditionObservation - multivalued: true - required: false - inlined_as_list: true - specimen_order: - name: specimen_order - description: A numeric value that represents the sequential order of this - creation activity relative to those producing other specimens from the same - source material or parent specimen. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Portion.portion_number - - PDC:Portion.portion_number - domain: SpecimenCreationActivity - range: ccdh_integer - multivalued: false - required: false - SpecimenQualityObservation: - name: SpecimenQualityObservation - description: A structured object that describes a characteristic of a specimen - indicative of its quality or suitability for use, as generated through a point-in-time - observation or measurement. - notes: - - Derived from [SpecimenQualityObservation in sheet SpecimenQualityObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=97281875) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: SpecimenQualityObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - comments: - - Use only if we don't define named subtypes of Observation for specific categories. - examples: - - value: '' - domain: SpecimenQualityObservation - range: enum_CCDH_SpecimenQualityObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of observation made - i.e. the feature or characteristic - that was observed, measured, estimated, etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: '' - domain: SpecimenQualityObservation - range: enum_CCDH_SpecimenQualityObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: SpecimenQualityObservation - range: enum_CCDH_SpecimenQualityObservation_method_type - multivalued: true - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: SpecimenQualityObservation - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenQualityObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenQualityObservation - range: Organization - multivalued: false - required: false - valueQuantity: - name: valueQuantity - description: The result of the observation, encoded as a free-text Quantity. - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: SpecimenQualityObservation - range: Quantity - multivalued: false - required: true - SpecimenQuantityObservation: - name: SpecimenQuantityObservation - description: A structured object that describes a single data item about the quantity - of an entity, as generated through a point-in-time observation or measurement. - notes: - - Derived from [SpecimenQuantityObservation in sheet SpecimenQuantityObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=9917708) - comments: - - At the core of an Observation is a flexible key-value pair (or a structured - collection of key-value pairs), where a 'key' field defines the type of observation - made, and the 'value' field describes the value or outcome of the observation. - The fact that the type of observation captured is defined in the data allow - Observation to convey a broad range of observation data. - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: SpecimenQuantityObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - comments: - - Use only if we don't define named subtypes of Observation for specific categories. - examples: - - value: '' - domain: SpecimenQuantityObservation - range: enum_CCDH_SpecimenQuantityObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of observation made - i.e. the feature or characteristic - that was observed, measured, estimated, etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: '' - domain: SpecimenQuantityObservation - range: enum_CCDH_SpecimenQuantityObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..m' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - exact_mappings: - - GDC:Analyte.spectrophotometer_method - - PDC:Analyte.spectrophotometer_method - domain: SpecimenQuantityObservation - range: enum_CCDH_SpecimenQuantityObservation_method_type - multivalued: true - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..m' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: SpecimenQuantityObservation - range: Entity - multivalued: true - required: false - inlined_as_list: true - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenQuantityObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenQuantityObservation - range: Organization - multivalued: false - required: false - valueQuantity: - name: valueQuantity - description: The result of the observation, encoded as a free-text Quantity. - notes: - - 'Cardinality: 1..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - domain: SpecimenQuantityObservation - range: Quantity - multivalued: false - required: true - SpecimenProcessingActivity: - name: SpecimenProcessingActivity - description: An activity that modifies the physical structure, composition, or - state of a specimen. Unlike SpecimenCreation, SpecimenProcessing activities - do not result in the generation of new entities - they take a single specimen - as input, and output that same specimen. - notes: - - Derived from [SpecimenProcessingActivity in sheet SpecimenProcessingActivity](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1726416617) - comments: - - '"Processing" as defined here alters the physical nature of a specimen, such - that storage or transport activities do not qualify as processing activities. - When instantiating this class, create a separate instances for each type/method - of processing performed (e.g. each method of fixation, freezing, labeling, etc. - that is applied).' - is_a: Entity - attributes: - activity_type: - name: activity_type - description: The high-level type of processing activity - notes: - - 'Cardinality: 0..1' - examples: - - value: Fixation - - value: Freezing - - value: Mounting - - value: Preservation - domain: SpecimenProcessingActivity - range: enum_CCDH_SpecimenProcessingActivity_activity_type - multivalued: false - required: false - date_started: - name: date_started - description: The date when the activity began (in this case, a specimen processing - event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.ProcessingDaysfromIndex - - HTAN:Biospecimen.SectioningDaysfromIndex - domain: SpecimenProcessingActivity - range: TimePoint - multivalued: false - required: false - date_ended: - name: date_ended - description: The date when the activity began (in this case, a specimen processing - event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.ProcessingDaysfromIndex - domain: SpecimenProcessingActivity - range: TimePoint - multivalued: false - required: false - duration: - name: duration - description: The length of time over which the activity was performed. - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.FIXATION_DURATION - domain: SpecimenProcessingActivity - range: Quantity - multivalued: true - required: false - inlined_as_list: true - performed_by: - name: performed_by - description: The organization or group that performed the activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Sample.processed_at - - HTAN:Biospecimen.ProcessingLocation - domain: SpecimenProcessingActivity - range: Organization - multivalued: false - required: false - method_type: - name: method_type - description: A specific type of method or procedure performed to process the - specimen - notes: - - 'Cardinality: 0..1' - examples: - - value: Snap Freezing - - value: Cryopreservation in liquid nitrogen (dead tissue) - - value: Cryopreservation in dry ice (dead tissue) - - value: Formalin fixed paraffin embedded (FFPE) - - value: Formalin fixed-unbuffered - - value: Formalin fixed-buffered - - value: OCT - exact_mappings: - - GDC:Sample.freezing_method - - GDC:Sample.preservation_method - - GDC:Sample.is_ffpe - - GDC:Portion.is_ffpe - - GDC:Sample.oct_embedded - - PDC:Sample.freezing_method - - PDC:Sample.preservation_method - - PDC:Sample.is_ffpe - - GDC:Portion.is_ffpe - - PDC:Sample.oct_embedded - - HTAN:Biospecimen.PRESERVATION_METHOD - domain: SpecimenProcessingActivity - range: enum_CCDH_SpecimenProcessingActivity_method_type - multivalued: false - required: false - additive: - name: additive - description: A type of material or reagent used as input when processing the - specimen - notes: - - 'Cardinality: 0..m' - examples: - - value: Formalin - close_mappings: - - HTAN:Biospecimen.FixativeType - - HTAN:Biospecimen.MountingMedium - domain: SpecimenProcessingActivity - range: Substance - multivalued: true - required: false - inlined_as_list: true - execution_time_observation: - name: execution_time_observation - description: Information describing how long certain parts on an activity - took to complete. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: SpecimenProcessingActivity - range: ExecutionTimeObservation - multivalued: true - required: false - inlined_as_list: true - execution_condition_observation: - name: execution_condition_observation - description: Information describing the environmental conditions in which - an activity, or a specific part of an activity, was performed. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: SpecimenProcessingActivity - range: ExecutionConditionObservation - multivalued: true - required: false - inlined_as_list: true - SpecimenStorageActivity: - name: SpecimenStorageActivity - description: "An activity in which a specimen is stored or maintained in a particular\ - \ location, container, or state. Unlike 'processing' activities, storage does\ - \ not alter the \nintrinsic physical nature of a specimen." - notes: - - Derived from [SpecimenStorageActivity in sheet SpecimenStorageActivity](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1583133214) - comments: - - Think of the StorageActivity as being one of many possible periods when the - specimen was stored at some location and in some state or condition. We may - want to capture storage dates and conditions for each. - is_a: Entity - attributes: - date_started: - name: date_started - description: The date when the activity began (in this case, a storage event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - domain: SpecimenStorageActivity - range: TimePoint - multivalued: false - required: false - date_ended: - name: date_ended - description: The date when the activity ended (in this case, a storage event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - domain: SpecimenStorageActivity - range: TimePoint - multivalued: false - required: false - duration: - name: duration - description: The length of time over which the activity was performed. - notes: - - 'Cardinality: 0..1' - comments: - - 'Quantity.unit MUST be a unit of time. ' - examples: - - value: '' - domain: SpecimenStorageActivity - range: Quantity - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenStorageActivity - range: Organization - multivalued: false - required: false - method_type: - name: method_type - description: A specific type of method or procedure performed to store the - specimen - notes: - - 'Cardinality: 0..1' - examples: - - value: ambient temperature - - value: cut slide - - value: fresh - - value: frozen at -70C - - value: frozen at -150C - - value: frozen in liquid nitrogen - - value: frozen in vapor phase - - value: paraffin block - - value: RNAlater at 4C - exact_mappings: - - HTAN:Biospecimen.StorageMethod - domain: SpecimenStorageActivity - range: enum_CCDH_SpecimenStorageActivity_method_type - multivalued: false - required: false - container: - name: container - description: A container in which the specimen is held or affixed during its - storage. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - domain: SpecimenStorageActivity - range: SpecimenContainer - multivalued: true - required: false - inlined_as_list: true - SpecimenTransportActivity: - name: SpecimenTransportActivity - description: An activity through which a specimen is transported between locations - or organizations. - notes: - - Derived from [SpecimenTransportActivity in sheet SpecimenTransportActivity](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=359352096) - comments: - - Think of the TransportActivity as being one of many possible occasions when - the specimen was moved from one location to another, in some state or condition. We - may want to capture dates and conditions for each. - is_a: Entity - attributes: - date_started: - name: date_started - description: The date when the activity began (in this case, a transport event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - domain: SpecimenTransportActivity - range: TimePoint - multivalued: false - required: false - date_ended: - name: date_ended - description: The date when the activity ended (in this case, a transport event). - notes: - - 'Cardinality: 0..1' - comments: - - To allow for more precise specification of dates when an activity was performed, - we provide date_started and date_ended attributes. If source data only - provides a single date, it SHOULD be entered as both the date_started and - date_ended. - examples: - - value: '' - domain: SpecimenTransportActivity - range: TimePoint - multivalued: false - required: false - duration: - name: duration - description: The length of time over which the activity was performed. - examples: - - value: '' - domain: SpecimenTransportActivity - range: ccdh_string - multivalued: true - required: false - inlined_as_list: true - performed_by: - name: performed_by - description: The organization or group that performed the activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenTransportActivity - range: Organization - multivalued: false - required: false - transport_origin: - name: transport_origin - description: An organization (facility, site, lab, etc) from which the specimen - was transported as a result of the activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: SpecimenTransportActivity - range: Organization - multivalued: false - required: false - transport_destination: - name: transport_destination - description: An organization (facility, site, lab, etc) to which the specimen - is delivered as a result of the activity. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Portion.shipped_to - - GDC:Aliquot.shipped_to - domain: SpecimenTransportActivity - range: Organization - multivalued: false - required: false - execution_condition_observation: - name: execution_condition_observation - description: Information describing the environmental conditions in which - an activity, or a specific part of an activity, was performed. - notes: - - 'Cardinality: 0..m' - comments: - - 'e.g. that a specimen was shipped with an ice pack, or at a specific temperature. ' - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.SHIPPING_CONDITIONS - domain: SpecimenTransportActivity - range: ExecutionConditionObservation - multivalued: true - required: false - inlined_as_list: true - Subject: - name: Subject - description: Demographics and other administrative information about an individual - or animal receiving care or other health-related services. - notes: - - Derived from [Subject in sheet Subject](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1651956379) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 1..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: Subject - range: ccdh_string - multivalued: false - required: true - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - exact_mappings: - - ICDC:Case.patient_id - domain: Subject - range: Identifier - multivalued: true - required: false - inlined_as_list: true - species: - name: species - description: The scientific binomial name for the species of the subject (e.g. - Homo sapiens, Mus musculus, etc.) - notes: - - 'Cardinality: 0..1' - examples: - - value: Homo sapiens - - value: Canis familiaris - - value: Mus musculus - domain: Subject - range: enum_CCDH_Subject_species - multivalued: false - required: false - breed: - name: breed - description: A label given to a group of animals homogeneous in appearance - and other characteristics that distinguish it from other animals of the - same species. - notes: - - 'Cardinality: 0..1' - examples: - - value: Affenpinscher - - value: Afghan Hound - - value: Airedale Terrier - - value: Akita - exact_mappings: - - ICDC:Demographic.breed - domain: Subject - range: enum_CCDH_Subject_breed - multivalued: false - required: false - sex: - name: sex - description: The biologic character or quality that distinguishes male and - female from one another as expressed by analysis of the person's gonadal, - morphologic (internal and external), chromosomal, and hormonal characteristics. - notes: - - 'Cardinality: 0..1' - examples: - - value: Female - - value: Intersex - - value: Male - - value: Not Reported - - value: Unknown - - value: Unspecified - exact_mappings: - - ICDC:Demographic.sex - - GDC:Demographic.gender - - PDC:Demographic.gender - - HTAN:Demographics.Gender - domain: Subject - range: enum_CCDH_Subject_sex - multivalued: false - required: false - ethnicity: - name: ethnicity - description: An individual's self-described social and cultural grouping, - specifically whether an individual describes themselves as Hispanic or Latino. - The provided values are based on the categories defined by the U.S. Office - of Management and Business and used by the U.S. Census Bureau - notes: - - 'Cardinality: 0..1' - comments: - - Applicable only when Subject.species is Homo Sapiens - examples: - - value: Hispanic or Latino - - value: Not Allowed To Collect - - value: Not Hispanic or Latino - - value: Not Reported - - value: Unknown - exact_mappings: - - GDC:Clinical.ethnicity - - GDC:Demographic.ethnicity - - PDC:Demographic.ethnicity - - HTAN:Demographics.Ethnicity - domain: Subject - range: enum_CCDH_Subject_ethnicity - multivalued: false - required: false - race: - name: race - description: An arbitrary classification of a taxonomic group that is a division - of a species. It usually arises as a consequence of geographical isolation - within a species and is characterized by shared heredity, physical attributes - and behavior, and in the case of humans, by common history, nationality, - or geographic distribution. The provided values are based on the categories - defined by the U.S. Office of Management and Business and used by the U.S. - Census Bureau. - notes: - - 'Cardinality: 0..m' - examples: - - value: American Indian or Alaska Native - - value: Asian - - value: Black or African American - - value: Native Hawaiian or other Pacific Islander - - value: Not Allowed To Collect - - value: Not Reported - - value: Unknown - - value: White - exact_mappings: - - GDC:Clinical.race - - GDC:Demographic.race - - PDC:Demographic.race - - HTAN:Demographics.Race - domain: Subject - range: enum_CCDH_Subject_race - multivalued: true - required: false - year_of_birth: - name: year_of_birth - description: Numeric value to represent the calendar year in which an individual - was born. - notes: - - 'Cardinality: 0..1' - comments: - - Applicable only when Subject.species is Homo Sapiens - examples: - - value: '' - exact_mappings: - - GDC:Demographic.year_of_birth - - PDC:Demographic.year_of_birth - - ICDC:Demographic.date_of_birth - - HTAN:Demographics.YearOfBirth - domain: Subject - range: ccdh_integer - multivalued: false - required: false - vital_status: - name: vital_status - description: Coded value indicating the state or condition of being living - or deceased; also includes the case where the vital status is unknown. - notes: - - 'Cardinality: 0..1' - examples: - - value: Alive - - value: Dead - - value: Unknown - - value: Not Reported - exact_mappings: - - GDC:Demographic.vital_status - - PDC:Demographic.vital_status - - HTAN:Demographics.VitalStatus - domain: Subject - range: enum_CCDH_Subject_vital_status - multivalued: false - required: false - age_at_death: - name: age_at_death - description: The age of an individual at the time of death, expressed in days - since birth - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Demographic.days_to_death - - PDC:Demographic.days_to_death - domain: Subject - range: Quantity - multivalued: false - required: false - year_of_death: - name: year_of_death - description: Numeric value to represent the calendar year in which an individual - died. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Demographic.year_of_death - - PDC:Demographic.year_of_death - domain: Subject - range: ccdh_integer - multivalued: false - required: false - cause_of_death: - name: cause_of_death - description: Coded value indicating the circumstance or condition that results - in the death of the subject. - notes: - - 'Cardinality: 0..1' - examples: - - value: Cancer Related - - value: Cardiovascular Disorder, NOS - - value: End-stage Renal Disease - - value: '' - exact_mappings: - - GDC:Demographic.cause_of_death - - PDC:Demographic.cause_of_death - domain: Subject - range: enum_CCDH_Subject_cause_of_death - multivalued: false - required: false - Substance: - name: Substance - description: A type of material substance, or instance thereof, as used in a - particular application. May include information about the role the substance - played in a particular application. - notes: - - Derived from [Substance in sheet Substance](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=385534272) - is_a: Entity - attributes: - substance_type: - name: substance_type - description: The specific type of the substance - at as granular a level as - possible. May be a specific chemical compound, or the name of a formulation/preparation - made up of many compounds. - notes: - - 'Cardinality: 0..1' - examples: - - value: toluene - - value: formalin - - value: DMEM - exact_mappings: - - HTAN:Biospecimen.LysisBuffer - - HTAN:Biospecimen.FixativeType - - HTAN:Biospecimen.MountingMedium - - HTAN:Biospecimen.CollectionMedia - - GDC:Treatment.therapeutic_agents - - PDC:Treatment.therapeutic_agents - domain: Substance - range: enum_CCDH_Substance_substance_type - multivalued: false - required: false - role: - name: role - description: A role played by the substance in a particular application (e.g. - the role of a lysis buffer when applied in a specimen creation activity, - or the role of fixative when applied in specimen processing) - notes: - - 'Cardinality: 0..m' - examples: - - value: lysis buffer - - value: fixative - - value: mounting medium - - value: collection media - domain: Substance - range: enum_CCDH_Substance_role - multivalued: true - required: false - substance_quantity: - name: substance_quantity - description: The quantity of substance this instance stands for. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Treatment.treatment_dose - - GDC:Treatment.treatment_dose_unit - domain: Substance - range: Quantity - multivalued: false - required: false - TimePoint: - name: TimePoint - description: A structured representation of a single point in time that allows - direct/explicit declaration as a dateTime, or specification in terms of offset - from a defined index. - notes: - - Derived from [TimePoint in sheet TimePoint](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=300932847) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: TimePoint - range: ccdh_string - multivalued: false - required: false - dateTime: - name: dateTime - description: An explicitly specified timepoint described in terms of a date - and optionally a time on that date. - notes: - - 'Cardinality: 0..1' - comments: - - 'Use when the TimePeriod is just a single instant / point in time. ' - examples: - - value: '' - exact_mappings: - - GDC:Portion.creation_datetime - - PDC:Portion.creation_datetime - - ICDC:Sample.date_of_sample_collection - - ICDC:Study.date_of_iacuc_approval - domain: TimePoint - range: ccdh_dateTime - multivalued: false - required: false - indexTimePoint: - name: indexTimePoint - description: Another TimePoint from which this point is offset. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: TimePoint - range: TimePoint - multivalued: false - required: false - offsetFromIndex: - name: offsetFromIndex - description: A quantity of time that, together with the index date or event, - can be used to derive a specific timepoint. - notes: - - 'Cardinality: 0..1' - comments: - - Quantity.unit MUST be a unit of time, and SHOULD be set to 'days'. - examples: - - value: '' - close_mappings: - - HTAN:Biospecimen.CollectionDaysfromIndex - - HTAN:Biospecimen.ProcessingDaysfromIndex - - HTAN:Biospecimen.SectioningDaysfromIndex - - PDC:Sample.days_to_collection - - GDC:Treatment.days_to_treatment_end - - PDC:Treatment.days_to_treatment_end - - GDC:Treatment.days_to_treatment_start - - PDC:Treatment.days_to_treatment_start - domain: TimePoint - range: Quantity - multivalued: false - required: false - eventType: - name: eventType - description: An event that occurred at the point in time specified by this - TimePoint. - notes: - - 'Cardinality: 0..m' - comments: - - eventType can be used to associate a label for a particular event (e.g. - IACUC approval, embargo lifted, etc.) to a dateTime. - examples: - - value: '' - domain: TimePoint - range: enum_CCDH_TimePoint_eventType - multivalued: true - required: false - TimePeriod: - name: TimePeriod - description: A period of time between a start and end time point. - notes: - - Derived from [TimePeriod in sheet TimePeriod](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1590126992) - is_a: Entity - attributes: - ? 'periodStart - - start' - : name: 'periodStart - - start' - description: When a period of time started. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: TimePeriod - range: TimePoint - multivalued: false - required: false - ? 'periodEnd - - end' - : name: 'periodEnd - - end' - description: When a period of time ended. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: TimePeriod - range: TimePoint - multivalued: false - required: false - TobaccoExposureObservation: - name: TobaccoExposureObservation - description: A structured object that describes a single data item about an individual's - exposure to tobacco, as generated through a point-in-time observation, measurement, - or interpretation. - notes: - - Derived from [TobaccoExposureObservation in sheet TobaccoExposureObservation](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=1464668175) - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..0' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - domain: TobaccoExposureObservation - range: ccdh_string - multivalued: false - required: false - category: - name: category - description: The general category of observation described - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: TobaccoExposureObservation - range: enum_CCDH_TobaccoExposureObservation_category - multivalued: false - required: false - observation_type: - name: observation_type - description: The specific type of tobacco exposure observation made - i.e. - the feature or characteristic that was observed, measured, estimated, etc.. - notes: - - 'Cardinality: 1..1' - comments: - - This field holds the 'key' in the core key-value pair comprised of the observation_type - field and the relevant value(s) field. - examples: - - value: cigarettes_per_day - - value: environmental_tobacco_smoke_exposure - - value: pack_years_smoked - - value: smoking_frequency - - value: time_between_waking_and_first_smoke - - value: tobacco_smoking_onset_year - - value: tobacco_smoking_quit_year - - value: tobacco_smoking_status - - value: type_of_tobacco_used - - value: years_smoked - domain: TobaccoExposureObservation - range: enum_CCDH_TobaccoExposureObservation_observation_type - multivalued: false - required: true - method_type: - name: method_type - description: A type of method used in generating the Observation result. - notes: - - 'Cardinality: 0..0' - comments: - - This may be a type of observational, measurement, experimental, or computational - method specifying how to generate data (e.g. 'manual counting', 'bright - field microscopy',). Or a Guideline or SOP specifying how to interpret data - and/or encode the result of an Observation (e.g. a Cancer Staging system - such as that defined by the AJCC, or variant interpretation guideline such - as that provided by the ACMG). - examples: - - value: '' - domain: TobaccoExposureObservation - range: enum_CCDH_TobaccoExposureObservation_method_type - multivalued: false - required: false - focus: - name: focus - description: The entity or entities directly observed/measured in generating - an observation result. - notes: - - 'Cardinality: 0..0' - comments: - - 'The ''focus'', ''subject'', and ''specimen'' fields are useful when data - creators want an Observation object to stand on its own, so it can point - back to the entities it is about. These fields are not needed when an Observation - is embedded in a Specimen or other entity, where focus, subject, and specimen - can be determined from context. ' - examples: - - value: '' - domain: TobaccoExposureObservation - range: Entity - multivalued: false - required: false - subject: - name: subject - description: The patient that the observation is about (if not the direct - focus). e.g. observations are often made on specimens derived from a patient, - or other entities related to a patient, that ultimately tell us something - about the patient of interest. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: TobaccoExposureObservation - range: Subject - multivalued: false - required: false - performed_by: - name: performed_by - description: The organization or group that performed the observation activity. - notes: - - 'Cardinality: 0..0' - examples: - - value: '' - domain: TobaccoExposureObservation - range: Organization - multivalued: false - required: false - valueInteger: - name: valueInteger - description: The result of the observation, encoded as an integer. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - GDC:Exposure.cigarettes_per_day - - PDC:Exposure.cigarettes_per_day - - GDC:Exposure.pack_years_smoked - - PDC:Exposure.pack_years_smoked - - GDC:Exposure.tobacco_smoking_onset_year - - PDC:Exposure.tobacco_smoking_onset_year - - GDC:Exposure.tobacco_smoking_quit_year - - PDC:Exposure.tobacco_smoking_quit_year - - GDC:Exposure.years_smoked - - PDC:Exposure.years_smoked - domain: TobaccoExposureObservation - range: ccdh_integer - multivalued: false - required: false - valueCodeableConcept: - name: valueCodeableConcept - description: The result of the observation, encoded as a CodeableConcept. - notes: - - 'Cardinality: 0..1' - comments: - - One and only one of the value(x) fields must be populated. - examples: - - value: '' - exact_mappings: - - GDC:Exposure.environmental_tobacco_smoke_exposure - - PDC:Exposure.environmental_tobacco_smoke_exposure - - GDC:Exposure.smoking_frequency - - PDC:Exposure.smoking_frequency - - GDC:Exposure.time_between_waking_and_first_smoke - - PDC:Exposure.time_between_waking_and_first_smoke - - GDC:Exposure.tobacco_smoking_status - - PDC:Exposure.tobacco_smoking_status - - GDC:Exposure.type_of_tobacco_used - - PDC:Exposure.type_of_tobacco_used - domain: TobaccoExposureObservation - range: enum_CCDH_TobaccoExposureObservation_valueCodeableConcept - multivalued: false - required: false - Treatment: - name: Treatment - description: Represent medication administration or other treatment types. - notes: - - Derived from [Treatment in sheet Treatment](https://docs.google.com/spreadsheets/d/1oWS7cao-fgz2MKWtyr8h2dEL9unX__0bJrWKv6mQmM4/edit#gid=2111784779) - comments: - - This entity is overloaded with the idea of medication/substance based treatments, - and other more procedure-like interventions that are also considered to be a - treatment. We should probably separate these concerns and it will be useful - to have a "Procedure" entity long term. If that is done, this entity will be - renamed to "MedicationTreatment" or something like that and the other concerns - refactored out to other entities. Also, if we can consider a medication/substance - based treatment as a procedure as well (which is commonly the case in other - models), we can make this entity more about the individual doses for such treatments - if that level of granularity is needed. - is_a: Entity - attributes: - id: - name: id - description: The 'logical' identifier of the entity within the system of record. The - simple value of this attribute stands for an identifier of this data object - within the system, it can be used as a reference from other objects within - the same system (i.e. primary and foreign keys), and it should be unique - per type of object. The same data object copied to a different system will - likely have a different "id" in the new system since "id" values are system - specific and do not represent persistent business identifiers. Business - identifiers are assigned outside the information system and are captured - in the "identifier" field. The "id" field is more likely to be a serially - or randomly generated value that is assigned to the data object as it is - created in a system. - notes: - - 'Cardinality: 0..1' - comments: - - 'FHIR naming conventions are followed here, where ''id'' is used for logical - identifiers, and ''identifier'' for business identifiers. The identified - entity may have a different ''id'' in a different system, and have many - external business ''identifiers'' associated with it. If an "id" value can - also be considered to be a business identifier, and should be transmissible - to other systems, it should be duplicated in the "identifier" attribute - along with the additional metadata needed to give context to the value of - "id". An entity in this model that does not have an "id" field is considered - to be an embeddable entity that can not stand on its own. ' - examples: - - value: '' - exact_mappings: - - GDC:Treatment.id - - PDC:Treatment.id - domain: Treatment - range: ccdh_string - multivalued: false - required: false - identifier: - name: identifier - description: A 'business' identifier or accession number for the entity, typically - as provided by an external system or authority, that are globally unique - and persist across implementing systems. Also, since these identifiers are - created outside the information system through a specific business process, - the Identifier type has additional attributes to capture this additional - metadata so the actual identifier values are qualified by the context that - created those values. This additional context allows "identifier" instances - to be transmitted as business data across systems while still being able - to trace them back to the system of origin. - notes: - - 'Cardinality: 0..m' - comments: - - FHIR naming conventions are followed here, where 'id' is used for logical - identifiers which are unique only within a given system, and 'identifier' - for business identifiers, which are used to connect entities or share content - across systems. The complex 'Identifier' data type is used to capture - the identifier itself, along with metadata about its source. - examples: - - value: '' - domain: Treatment - range: Identifier - multivalued: true - required: false - inlined_as_list: true - treatment_for_diagnosis: - name: treatment_for_diagnosis - description: The diagnosis for which this treatment is intended. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Treatment.diagnosis - - PDC:Treatment.Diagnosis - - GDC:Treatment.initial_disease_status - - PDC:Treatment.initial_disease_status - domain: Treatment - range: Diagnosis - multivalued: true - required: false - inlined_as_list: true - concurrent_treatment: - name: concurrent_treatment - description: Treatment instance(s) that are concurrent with this treatment. - notes: - - 'Cardinality: 0..m' - examples: - - value: '' - close_mappings: - - GDC:Treatment.chemo_concurrent_to_radiation - domain: Treatment - range: Treatment - multivalued: true - required: false - inlined_as_list: true - treatment_type: - name: treatment_type - description: The type of treatment administered, which may include medication/therapeutics - or other procedures. - notes: - - 'Cardinality: 0..1' - examples: - - value: Ablation - - value: Radiofrequency - - value: Stem Cell Transplantation - - value: Ablation, Cryo Ablation - - value: Ethanol Injection Ablation - - value: Microwave Ablation - exact_mappings: - - GDC:Treatment.treatment_type - - PDC:Treatment.treatment_type - domain: Treatment - range: enum_CCDH_Treatment_treatment_type - multivalued: false - required: false - subject: - name: subject - description: The subject (person, animal, model system) to which the treatment - was administered. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - domain: Treatment - range: Subject - multivalued: false - required: false - date_started: - name: date_started - description: The timepoint at which the treatment started. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Treatment.days_to_treatment_start - - PDC:Treatment.days_to_treatment_start - domain: Treatment - range: TimePoint - multivalued: false - required: false - date_ended: - name: date_ended - description: The timepoint at which the treatment ended. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Treatment.days_to_treatment_end - - PDC:Treatment.days_to_treatment_end - domain: Treatment - range: TimePoint - multivalued: false - required: false - treatment_end_reason: - name: treatment_end_reason - description: The reason the treatment ended. - notes: - - 'Cardinality: 0..m' - examples: - - value: Adverse Event Course of Therapy Completed - - value: Death - - value: Disease Progression - - value: Other - exact_mappings: - - GDC:Treatment.reason_treatment_ended - domain: Treatment - range: enum_CCDH_Treatment_treatment_end_reason - multivalued: true - required: false - regimen: - name: regimen - description: The regimen or line of therapy - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Treatment.regimen_or_line_of_therapy - - PDC:Treatment.regimen_or_line_of_therapy - domain: Treatment - range: enum_CCDH_Treatment_regimen - multivalued: false - required: false - therapeutic_agent: - name: therapeutic_agent - description: One or more therapeutic agents that are administered as part - of this treatment. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Treatment.therapeutic_agents - - PDC:Treatment.therapeutic_agents - - GDC:Treatment.treatment_dose - - GDC:Treatment.treatment_dose_unit - domain: Treatment - range: Substance - multivalued: false - required: false - number_of_cycles: - name: number_of_cycles - description: The number of treatment cycles the subject received. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - exact_mappings: - - GDC:Treatment.number_of_cycles - domain: Treatment - range: ccdh_integer - multivalued: false - required: false - treatment_frequency: - name: treatment_frequency - description: The frequency of using the substance described by this instance. - notes: - - 'Cardinality: 0..1' - examples: - - value: Every Hour - - value: Five Times Daily - - value: Four Times Daily - - value: Three Times Daily - exact_mappings: - - GDC:Treatment.treatment_frequency - domain: Treatment - range: enum_CCDH_Treatment_treatment_frequency - multivalued: false - required: false - treatment_anatomic_site: - name: treatment_anatomic_site - description: The anatomical site that the treatment targets. - notes: - - 'Cardinality: 0..1' - examples: - - value: '' - close_mappings: - - GDC:Treatment.treatment_anatomic_site - - PDC:Treatment.treatment_anatomic_site - domain: Treatment - range: BodySite - multivalued: false - required: false - treatment_intent: - name: treatment_intent - description: The medical intent of the treatment. - notes: - - 'Cardinality: 0..1' - examples: - - value: Adjuvant - - value: Cure - - value: Palliative - exact_mappings: - - GDC:Treatment.treatment_intent_type - - PDC:Treatment.treatment_intent_type - domain: Treatment - range: enum_CCDH_Treatment_treatment_intent - multivalued: false - required: false - treatment_effect: - name: treatment_effect - description: The effect of a treatment on the diagnosis or tumor. - notes: - - 'Cardinality: 0..1' - examples: - - value: Complete Necrosis (No Viable Tumor) - - value: No Necrosis - exact_mappings: - - GDC:Treatment.treatment_effect - - PDC:Treatment.treatment_effect - - GDC:Treatment.treatment_effect_indicator - domain: Treatment - range: enum_CCDH_Treatment_treatment_effect - multivalued: false - required: false - treatment_outcome: - name: treatment_outcome - description: The final outcome of the treatment. - notes: - - 'Cardinality: 0..1' - examples: - - value: Complete Response - - value: Mixed Response - - value: No Measurable Disease - - value: No Response - - value: Partial Response - - value: Persistent Disease - exact_mappings: - - GDC:Treatment.treatment_outcome - - PDC:Treatment.treatment_outcome - domain: Treatment - range: enum_CCDH_Treatment_treatment_outcome - multivalued: false - required: false -generation_date: '2021-07-21T20:40:27.493440+00:00' From 16fed5a049f6591b8715563617131d5940fa4221 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 18 Nov 2021 16:11:49 -0500 Subject: [PATCH 04/18] Removed Pipfile. --- Pipfile | 16 - Pipfile.lock | 1446 -------------------------------------------------- 2 files changed, 1462 deletions(-) delete mode 100644 Pipfile delete mode 100644 Pipfile.lock diff --git a/Pipfile b/Pipfile deleted file mode 100644 index a32e02f..0000000 --- a/Pipfile +++ /dev/null @@ -1,16 +0,0 @@ -[[source]] -url = "https://pypi.org/simple" -verify_ssl = true -name = "pypi" - -[packages] -linkml = "*" -jsonschema = "*" -jupyter = "*" -pytest = "*" -pyld = "*" -pip = "*" -crdch-model = "*" -pandas = "*" - -[dev-packages] diff --git a/Pipfile.lock b/Pipfile.lock deleted file mode 100644 index 7a24b85..0000000 --- a/Pipfile.lock +++ /dev/null @@ -1,1446 +0,0 @@ -{ - "_meta": { - "hash": { - "sha256": "f18653083e5cfd13f631552b5884371c32f54988046f3292594fbbb35d6421a4" - }, - "pipfile-spec": 6, - "requires": {}, - "sources": [ - { - "name": "pypi", - "url": "https://pypi.org/simple", - "verify_ssl": true - } - ] - }, - "default": { - "alabaster": { - "hashes": [ - "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359", - "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02" - ], - "version": "==0.7.12" - }, - "antlr4-python3-runtime": { - "hashes": [ - "sha256:31f5abdc7faf16a1a6e9bf2eb31565d004359b821b09944436a34361929ae85a" - ], - "version": "==4.9.2" - }, - "argon2-cffi": { - "hashes": [ - "sha256:165cadae5ac1e26644f5ade3bd9c18d89963be51d9ea8817bd671006d7909057", - "sha256:217b4f0f853ccbbb5045242946ad2e162e396064575860141b71a85eb47e475a", - "sha256:245f64a203012b144b7b8c8ea6d468cb02b37caa5afee5ba4a10c80599334f6a", - "sha256:4ad152c418f7eb640eac41ac815534e6aa61d1624530b8e7779114ecfbf327f8", - "sha256:566ffb581bbd9db5562327aee71b2eda24a1c15b23a356740abe3c011bbe0dcb", - "sha256:65213a9174320a1aee03fe826596e0620783966b49eb636955958b3074e87ff9", - "sha256:bc513db2283c385ea4da31a2cd039c33380701f376f4edd12fe56db118a3b21a", - "sha256:c7a7c8cc98ac418002090e4add5bebfff1b915ea1cb459c578cd8206fef10378", - "sha256:e4d8f0ae1524b7b0372a3e574a2561cbdddb3fdb6c28b70a72868189bda19659", - "sha256:f710b61103d1a1f692ca3ecbd1373e28aa5e545ac625ba067ff2feca1b2bb870", - "sha256:fa7e7d1fc22514a32b1761fdfa1882b6baa5c36bb3ef557bdd69e6fc9ba14a41" - ], - "version": "==21.1.0" - }, - "argparse": { - "hashes": [ - "sha256:62b089a55be1d8949cd2bc7e0df0bddb9e028faefc8c32038cc84862aefdd6e4", - "sha256:c31647edb69fd3d465a847ea3157d37bed1f95f19760b11a47aa91c04b666314" - ], - "version": "==1.4.0" - }, - "attrs": { - "hashes": [ - "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1", - "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb" - ], - "version": "==21.2.0" - }, - "babel": { - "hashes": [ - "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9", - "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0" - ], - "version": "==2.9.1" - }, - "backcall": { - "hashes": [ - "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e", - "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255" - ], - "version": "==0.2.0" - }, - "bleach": { - "hashes": [ - "sha256:0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da", - "sha256:4d2651ab93271d1129ac9cbc679f524565cc8a1b791909c4a51eac4446a15994" - ], - "version": "==4.1.0" - }, - "cachetools": { - "hashes": [ - "sha256:89ea6f1b638d5a73a4f9226be57ac5e4f399d22770b92355f92dcb0f7f001693", - "sha256:92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1" - ], - "version": "==4.2.4" - }, - "certifi": { - "hashes": [ - "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee", - "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8" - ], - "version": "==2021.5.30" - }, - "cffi": { - "hashes": [ - "sha256:06c54a68935738d206570b20da5ef2b6b6d92b38ef3ec45c5422c0ebaf338d4d", - "sha256:0c0591bee64e438883b0c92a7bed78f6290d40bf02e54c5bf0978eaf36061771", - "sha256:19ca0dbdeda3b2615421d54bef8985f72af6e0c47082a8d26122adac81a95872", - "sha256:22b9c3c320171c108e903d61a3723b51e37aaa8c81255b5e7ce102775bd01e2c", - "sha256:26bb2549b72708c833f5abe62b756176022a7b9a7f689b571e74c8478ead51dc", - "sha256:33791e8a2dc2953f28b8d8d300dde42dd929ac28f974c4b4c6272cb2955cb762", - "sha256:3c8d896becff2fa653dc4438b54a5a25a971d1f4110b32bd3068db3722c80202", - "sha256:4373612d59c404baeb7cbd788a18b2b2a8331abcc84c3ba40051fcd18b17a4d5", - "sha256:487d63e1454627c8e47dd230025780e91869cfba4c753a74fda196a1f6ad6548", - "sha256:48916e459c54c4a70e52745639f1db524542140433599e13911b2f329834276a", - "sha256:4922cd707b25e623b902c86188aca466d3620892db76c0bdd7b99a3d5e61d35f", - "sha256:55af55e32ae468e9946f741a5d51f9896da6b9bf0bbdd326843fec05c730eb20", - "sha256:57e555a9feb4a8460415f1aac331a2dc833b1115284f7ded7278b54afc5bd218", - "sha256:5d4b68e216fc65e9fe4f524c177b54964af043dde734807586cf5435af84045c", - "sha256:64fda793737bc4037521d4899be780534b9aea552eb673b9833b01f945904c2e", - "sha256:6d6169cb3c6c2ad50db5b868db6491a790300ade1ed5d1da29289d73bbe40b56", - "sha256:7bcac9a2b4fdbed2c16fa5681356d7121ecabf041f18d97ed5b8e0dd38a80224", - "sha256:80b06212075346b5546b0417b9f2bf467fea3bfe7352f781ffc05a8ab24ba14a", - "sha256:818014c754cd3dba7229c0f5884396264d51ffb87ec86e927ef0be140bfdb0d2", - "sha256:8eb687582ed7cd8c4bdbff3df6c0da443eb89c3c72e6e5dcdd9c81729712791a", - "sha256:99f27fefe34c37ba9875f224a8f36e31d744d8083e00f520f133cab79ad5e819", - "sha256:9f3e33c28cd39d1b655ed1ba7247133b6f7fc16fa16887b120c0c670e35ce346", - "sha256:a8661b2ce9694ca01c529bfa204dbb144b275a31685a075ce123f12331be790b", - "sha256:a9da7010cec5a12193d1af9872a00888f396aba3dc79186604a09ea3ee7c029e", - "sha256:aedb15f0a5a5949ecb129a82b72b19df97bbbca024081ed2ef88bd5c0a610534", - "sha256:b315d709717a99f4b27b59b021e6207c64620790ca3e0bde636a6c7f14618abb", - "sha256:ba6f2b3f452e150945d58f4badd92310449876c4c954836cfb1803bdd7b422f0", - "sha256:c33d18eb6e6bc36f09d793c0dc58b0211fccc6ae5149b808da4a62660678b156", - "sha256:c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd", - "sha256:c9e005e9bd57bc987764c32a1bee4364c44fdc11a3cc20a40b93b444984f2b87", - "sha256:d2ad4d668a5c0645d281dcd17aff2be3212bc109b33814bbb15c4939f44181cc", - "sha256:d950695ae4381ecd856bcaf2b1e866720e4ab9a1498cba61c602e56630ca7195", - "sha256:e22dcb48709fc51a7b58a927391b23ab37eb3737a98ac4338e2448bef8559b33", - "sha256:e8c6a99be100371dbb046880e7a282152aa5d6127ae01783e37662ef73850d8f", - "sha256:e9dc245e3ac69c92ee4c167fbdd7428ec1956d4e754223124991ef29eb57a09d", - "sha256:eb687a11f0a7a1839719edd80f41e459cc5366857ecbed383ff376c4e3cc6afd", - "sha256:eb9e2a346c5238a30a746893f23a9535e700f8192a68c07c0258e7ece6ff3728", - "sha256:ed38b924ce794e505647f7c331b22a693bee1538fdf46b0222c4717b42f744e7", - "sha256:f0010c6f9d1a4011e429109fda55a225921e3206e7f62a0c22a35344bfd13cca", - "sha256:f0c5d1acbfca6ebdd6b1e3eded8d261affb6ddcf2186205518f1428b8569bb99", - "sha256:f10afb1004f102c7868ebfe91c28f4a712227fe4cb24974350ace1f90e1febbf", - "sha256:f174135f5609428cc6e1b9090f9268f5c8935fddb1b25ccb8255a2d50de6789e", - "sha256:f3ebe6e73c319340830a9b2825d32eb6d8475c1dac020b4f0aa774ee3b898d1c", - "sha256:f627688813d0a4140153ff532537fbe4afea5a3dffce1f9deb7f91f848a832b5", - "sha256:fd4305f86f53dfd8cd3522269ed7fc34856a8ee3709a5e28b2836b2db9d4cd69" - ], - "version": "==1.14.6" - }, - "cfgraph": { - "hashes": [ - "sha256:b57fe7044a10b8ff65aa3a8a8ddc7d4cd77bf511b42e57289cd52cbc29f8fe74" - ], - "version": "==0.2.1" - }, - "charset-normalizer": { - "hashes": [ - "sha256:5d209c0a931f215cee683b6445e2d77677e7e75e159f78def0db09d68fafcaa6", - "sha256:5ec46d183433dcbd0ab716f2d7f29d8dee50505b3fdb40c6b985c7c4f5a3591f" - ], - "markers": "python_version >= '3'", - "version": "==2.0.6" - }, - "click": { - "hashes": [ - "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a", - "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc" - ], - "version": "==7.1.2" - }, - "crdch-model": { - "hashes": [ - "sha256:0d432d832aa64f3c9f8250b2b4d3559c1299f74af24de3d827afa5cfa9f484ef", - "sha256:287a5e6f9cdb3eceee3aeaf9eece170c6e3e692ec85b888660eaf3f17b5cac3b" - ], - "index": "pypi", - "version": "==1.1.3" - }, - "debugpy": { - "hashes": [ - "sha256:098753d30232d1e4264eee37e1ddd5d106dc5c4bc6d8d7f4dadad9e44736cd48", - "sha256:1283e418f595262d11abc5fae6a3ac629c5fc3b44d3988511ea755414aab3062", - "sha256:33e8a9b4949be8b4f5fcfff07e24bd63c565060659f1c79773c08d19eee012f2", - "sha256:72093ea83226d5264b3697b948c07a3cfcc4953da14a78a50c4e623a2bb99ad8", - "sha256:77b5233b23a248cd930bf03ecd684da065c6e7d2a57d137516b6fa1698a58317", - "sha256:82c4fa1293981a28c435d196a3714e06df761daff0da3336234475ceff1b042c", - "sha256:86febd61fc351cee926060eef008e242b7259957d71d25eef82860d0cc59b4dc", - "sha256:8e7391a08a351adce6e5154ed35e4cf90c5f3c10dbf7c8f6a234faef300588d6", - "sha256:990228f15de4ccbc52c2accf41a63b3b8d0a01e3de9876e02e77e487c4b1ffab", - "sha256:9f3bed64027bd80a8fe1f35491ec0ec2d2c85f1e63dac7c0311e400bfe58cf05", - "sha256:a03051ba4fdf6720ee83a42e9f803e3a0b69a48b00436b97d16aeda49d28a8bf", - "sha256:be7ca2baef5a634dfbd086d9c1d6b5e0783c6d0f6d0a004b43d36f625d4fc0a9", - "sha256:c3184666cfe1768bf110f8075bafea59d2afce3cc54f4c501f2371c7238bc69d", - "sha256:cdaf6baaf8176644e752aed321b3f810dcf8b0439709f7edd9ae542f849a639b", - "sha256:ce0794d50391c87813bb148548c34dc638fb4d58198d275334968f63c088aa69", - "sha256:dacdb0a3377063d638bd8736c80b7274ae341ce778fec0f883ef1cbb79538bf2", - "sha256:dd0e8d5e099444c22b27511dafd48e8bdcd7051b811ddd0ab2062965fe36ac80", - "sha256:de56775b3dbbfc02bc9fb0682da4a960e0a5bada699eac5e22e0723c4107ec9f", - "sha256:ef71eb8eb276370f8e74ab3f8c7648bbdc9aabac814a5b2840c8dd38a7bc7251", - "sha256:f058c204341fd7ff800ee0edafc106ca0fb1c9857e8a8895a6e04cca3ddcb7bf", - "sha256:fda623aa1036b34d554a1225a09cae6bf02b06c0ad903a9f0b8ac3cb74eddc15" - ], - "version": "==1.5.0" - }, - "decorator": { - "hashes": [ - "sha256:7b12e7c3c6ab203a29e157335e9122cb03de9ab7264b137594103fd4a683b374", - "sha256:e59913af105b9860aa2c8d3272d9de5a56a4e608db9a2f167a8480b323d529a7" - ], - "version": "==5.1.0" - }, - "defusedxml": { - "hashes": [ - "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", - "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61" - ], - "version": "==0.7.1" - }, - "deprecated": { - "hashes": [ - "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d", - "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d" - ], - "version": "==1.2.13" - }, - "docutils": { - "hashes": [ - "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125", - "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61" - ], - "version": "==0.17.1" - }, - "entrypoints": { - "hashes": [ - "sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19", - "sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451" - ], - "version": "==0.3" - }, - "et-xmlfile": { - "hashes": [ - "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c", - "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada" - ], - "version": "==1.1.0" - }, - "frozendict": { - "hashes": [ - "sha256:3f00de72805cf4c9e81b334f3f04809278b967d2fed84552313a0fcce511beb1", - "sha256:5d3f75832c35d4df041f0e19c268964cbef29c1eb34cd3517cf883f1c2d089b9" - ], - "version": "==2.0.6" - }, - "graphviz": { - "hashes": [ - "sha256:5dadec94046d82adaae6019311a30e0487536d9d5a60d85451f0ba32f9fc6559", - "sha256:ef6e2c5deb9cdcc0c7eece1d89625fd07b0f2208ea2bcb483520907ddf8b4e12" - ], - "version": "==0.17" - }, - "greenlet": { - "hashes": [ - "sha256:00e44c8afdbe5467e4f7b5851be223be68adb4272f44696ee71fe46b7036a711", - "sha256:013d61294b6cd8fe3242932c1c5e36e5d1db2c8afb58606c5a67efce62c1f5fd", - "sha256:049fe7579230e44daef03a259faa24511d10ebfa44f69411d99e6a184fe68073", - "sha256:14d4f3cd4e8b524ae9b8aa567858beed70c392fdec26dbdb0a8a418392e71708", - "sha256:166eac03e48784a6a6e0e5f041cfebb1ab400b394db188c48b3a84737f505b67", - "sha256:17ff94e7a83aa8671a25bf5b59326ec26da379ace2ebc4411d690d80a7fbcf23", - "sha256:1e12bdc622676ce47ae9abbf455c189e442afdde8818d9da983085df6312e7a1", - "sha256:21915eb821a6b3d9d8eefdaf57d6c345b970ad722f856cd71739493ce003ad08", - "sha256:288c6a76705dc54fba69fbcb59904ae4ad768b4c768839b8ca5fdadec6dd8cfd", - "sha256:32ca72bbc673adbcfecb935bb3fb1b74e663d10a4b241aaa2f5a75fe1d1f90aa", - "sha256:356b3576ad078c89a6107caa9c50cc14e98e3a6c4874a37c3e0273e4baf33de8", - "sha256:40b951f601af999a8bf2ce8c71e8aaa4e8c6f78ff8afae7b808aae2dc50d4c40", - "sha256:572e1787d1460da79590bf44304abbc0a2da944ea64ec549188fa84d89bba7ab", - "sha256:58df5c2a0e293bf665a51f8a100d3e9956febfbf1d9aaf8c0677cf70218910c6", - "sha256:64e6175c2e53195278d7388c454e0b30997573f3f4bd63697f88d855f7a6a1fc", - "sha256:7227b47e73dedaa513cdebb98469705ef0d66eb5a1250144468e9c3097d6b59b", - "sha256:7418b6bfc7fe3331541b84bb2141c9baf1ec7132a7ecd9f375912eca810e714e", - "sha256:7cbd7574ce8e138bda9df4efc6bf2ab8572c9aff640d8ecfece1b006b68da963", - "sha256:7ff61ff178250f9bb3cd89752df0f1dd0e27316a8bd1465351652b1b4a4cdfd3", - "sha256:833e1551925ed51e6b44c800e71e77dacd7e49181fdc9ac9a0bf3714d515785d", - "sha256:8639cadfda96737427330a094476d4c7a56ac03de7265622fcf4cfe57c8ae18d", - "sha256:8c790abda465726cfb8bb08bd4ca9a5d0a7bd77c7ac1ca1b839ad823b948ea28", - "sha256:8d2f1fb53a421b410751887eb4ff21386d119ef9cde3797bf5e7ed49fb51a3b3", - "sha256:903bbd302a2378f984aef528f76d4c9b1748f318fe1294961c072bdc7f2ffa3e", - "sha256:93f81b134a165cc17123626ab8da2e30c0455441d4ab5576eed73a64c025b25c", - "sha256:95e69877983ea39b7303570fa6760f81a3eec23d0e3ab2021b7144b94d06202d", - "sha256:9633b3034d3d901f0a46b7939f8c4d64427dfba6bbc5a36b1a67364cf148a1b0", - "sha256:97e5306482182170ade15c4b0d8386ded995a07d7cc2ca8f27958d34d6736497", - "sha256:9f3cba480d3deb69f6ee2c1825060177a22c7826431458c697df88e6aeb3caee", - "sha256:aa5b467f15e78b82257319aebc78dd2915e4c1436c3c0d1ad6f53e47ba6e2713", - "sha256:abb7a75ed8b968f3061327c433a0fbd17b729947b400747c334a9c29a9af6c58", - "sha256:aec52725173bd3a7b56fe91bc56eccb26fbdff1386ef123abb63c84c5b43b63a", - "sha256:b11548073a2213d950c3f671aa88e6f83cda6e2fb97a8b6317b1b5b33d850e06", - "sha256:b1692f7d6bc45e3200844be0dba153612103db241691088626a33ff1f24a0d88", - "sha256:b92e29e58bef6d9cfd340c72b04d74c4b4e9f70c9fa7c78b674d1fec18896dc4", - "sha256:be5f425ff1f5f4b3c1e33ad64ab994eed12fc284a6ea71c5243fd564502ecbe5", - "sha256:dd0b1e9e891f69e7675ba5c92e28b90eaa045f6ab134ffe70b52e948aa175b3c", - "sha256:e30f5ea4ae2346e62cedde8794a56858a67b878dd79f7df76a0767e356b1744a", - "sha256:e6a36bb9474218c7a5b27ae476035497a6990e21d04c279884eb10d9b290f1b1", - "sha256:e859fcb4cbe93504ea18008d1df98dee4f7766db66c435e4882ab35cf70cac43", - "sha256:eb6ea6da4c787111adf40f697b4e58732ee0942b5d3bd8f435277643329ba627", - "sha256:ec8c433b3ab0419100bd45b47c9c8551248a5aee30ca5e9d399a0b57ac04651b", - "sha256:eff9d20417ff9dcb0d25e2defc2574d10b491bf2e693b4e491914738b7908168", - "sha256:f0214eb2a23b85528310dad848ad2ac58e735612929c8072f6093f3585fd342d", - "sha256:f276df9830dba7a333544bd41070e8175762a7ac20350786b322b714b0e654f5", - "sha256:f3acda1924472472ddd60c29e5b9db0cec629fbe3c5c5accb74d6d6d14773478", - "sha256:f70a9e237bb792c7cc7e44c531fd48f5897961701cdaa06cf22fc14965c496cf", - "sha256:f9d29ca8a77117315101425ec7ec2a47a22ccf59f5593378fc4077ac5b754fce", - "sha256:fa877ca7f6b48054f847b61d6fa7bed5cebb663ebc55e018fda12db09dcc664c", - "sha256:fdcec0b8399108577ec290f55551d926d9a1fa6cad45882093a7a07ac5ec147b" - ], - "markers": "python_version >= '3' and (platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))))", - "version": "==1.1.2" - }, - "hbreader": { - "hashes": [ - "sha256:9a6e76c9d1afc1b977374a5dc430a1ebb0ea0488205546d4678d6e31cc5f6801", - "sha256:d2c132f8ba6276d794c66224c3297cec25c8079d0a4cf019c061611e0a3b94fa" - ], - "version": "==0.9.1" - }, - "idna": { - "hashes": [ - "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a", - "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3" - ], - "markers": "python_version >= '3'", - "version": "==3.2" - }, - "imagesize": { - "hashes": [ - "sha256:6965f19a6a2039c7d48bca7dba2473069ff854c36ae6f19d2cde309d998228a1", - "sha256:b1f6b5a4eab1f73479a50fb79fcf729514a900c341d8503d62a62dbc4127a2b1" - ], - "version": "==1.2.0" - }, - "iniconfig": { - "hashes": [ - "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3", - "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32" - ], - "version": "==1.1.1" - }, - "ipykernel": { - "hashes": [ - "sha256:a3f6c2dda2ecf63b37446808a70ed825fea04790779ca524889c596deae0def8", - "sha256:df3355e5eec23126bc89767a676c5f0abfc7f4c3497d118c592b83b316e8c0cd" - ], - "version": "==6.4.1" - }, - "ipython": { - "hashes": [ - "sha256:2097be5c814d1b974aea57673176a924c4c8c9583890e7a5f082f547b9975b11", - "sha256:f16148f9163e1e526f1008d7c8d966d9c15600ca20d1a754287cf96d00ba6f1d" - ], - "version": "==7.28.0" - }, - "ipython-genutils": { - "hashes": [ - "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8", - "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8" - ], - "version": "==0.2.0" - }, - "ipywidgets": { - "hashes": [ - "sha256:00974f7cb4d5f8d494c19810fedb9fa9b64bffd3cda7c2be23c133a1ad3c99c5", - "sha256:d258f582f915c62ea91023299603be095de19afb5ee271698f88327b9fe9bf43" - ], - "version": "==7.6.5" - }, - "isodate": { - "hashes": [ - "sha256:2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8", - "sha256:aa4d33c06640f5352aca96e4b81afd8ab3b47337cc12089822d6f322ac772c81" - ], - "version": "==0.6.0" - }, - "jedi": { - "hashes": [ - "sha256:18456d83f65f400ab0c2d3319e48520420ef43b23a086fdc05dff34132f0fb93", - "sha256:92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707" - ], - "version": "==0.18.0" - }, - "jinja2": { - "hashes": [ - "sha256:827a0e32839ab1600d4eb1c4c33ec5a8edfbc5cb42dafa13b81f182f97784b45", - "sha256:8569982d3f0889eed11dd620c706d39b60c36d6d25843961f33f77fb6bc6b20c" - ], - "version": "==3.0.2" - }, - "json-flattener": { - "hashes": [ - "sha256:9a3d7c45e0b3636268efdb1a9d78734f0573e2a05ec4f00b6a677c69a63d1e3f", - "sha256:af41c05fb15b6b9881faa95191e942e1387e305574b2269ebbecb4289173395b" - ], - "version": "==0.1.7" - }, - "jsonasobj": { - "hashes": [ - "sha256:221af946bbe4171505e81ea1f0c31d652e69c68e02fff742e37543abe08ff7d9", - "sha256:e87c47ec5ec3db65a212e15236fdefc38dd01bdcf563b0d53021095066cd5963" - ], - "version": "==2.0.1" - }, - "jsonasobj2": { - "hashes": [ - "sha256:12e86f86324d54fcf60632db94ea74488d5314e3da554c994fe1e2c6f29acb79", - "sha256:f50b1668ef478004aa487b2d2d094c304e5cb6b79337809f4a1f2975cc7fbb4e" - ], - "version": "==1.0.4" - }, - "jsonpatch": { - "hashes": [ - "sha256:26ac385719ac9f54df8a2f0827bb8253aa3ea8ab7b3368457bcdb8c14595a397", - "sha256:b6ddfe6c3db30d81a96aaeceb6baf916094ffa23d7dd5fa2c13e13f8b6e600c2" - ], - "version": "==1.32" - }, - "jsonpath-ng": { - "hashes": [ - "sha256:292a93569d74029ba75ac2dc3d3630fc0e17b2df26119a165fa1d498ca47bf65", - "sha256:a273b182a82c1256daab86a313b937059261b5c5f8c4fa3fc38b882b344dd567", - "sha256:f75b95dbecb8a0f3b86fd2ead21c2b022c3f5770957492b9b6196ecccfeb10aa" - ], - "version": "==1.5.3" - }, - "jsonpointer": { - "hashes": [ - "sha256:150f80c5badd02c757da6644852f612f88e8b4bc2f9852dcbf557c8738919686", - "sha256:5a34b698db1eb79ceac454159d3f7c12a451a91f6334a4f638454327b7a89962" - ], - "version": "==2.1" - }, - "jsonschema": { - "hashes": [ - "sha256:48f4e74f8bec0c2f75e9fcfffa264e78342873e1b57e2cfeae54864cc5e9e4dd", - "sha256:9938802041347f2c62cad2aef59e9a0826cd34584f3609db950efacb4dbf6518" - ], - "index": "pypi", - "version": "==4.0.1" - }, - "jupyter": { - "hashes": [ - "sha256:3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7", - "sha256:5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78", - "sha256:d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f" - ], - "index": "pypi", - "version": "==1.0.0" - }, - "jupyter-client": { - "hashes": [ - "sha256:074bdeb1ffaef4a3095468ee16313938cfdc48fc65ca95cc18980b956c2e5d79", - "sha256:8b6e06000eb9399775e0a55c52df6c1be4766666209c22f90c2691ded0e338dc" - ], - "version": "==7.0.6" - }, - "jupyter-console": { - "hashes": [ - "sha256:242248e1685039cd8bff2c2ecb7ce6c1546eb50ee3b08519729e6e881aec19c7", - "sha256:7799c4ea951e0e96ba8260575423cb323ea5a03fcf5503560fa3e15748869e27" - ], - "version": "==6.4.0" - }, - "jupyter-core": { - "hashes": [ - "sha256:8dd262ec8afae95bd512518eb003bc546b76adbf34bf99410e9accdf4be9aa3a", - "sha256:ef210dcb4fca04de07f2ead4adf408776aca94d17151d6f750ad6ded0b91ea16" - ], - "version": "==4.8.1" - }, - "jupyterlab-pygments": { - "hashes": [ - "sha256:abfb880fd1561987efaefcb2d2ac75145d2a5d0139b1876d5be806e32f630008", - "sha256:cfcda0873626150932f438eccf0f8bf22bfa92345b814890ab360d666b254146" - ], - "version": "==0.1.2" - }, - "jupyterlab-widgets": { - "hashes": [ - "sha256:7885092b2b96bf189c3a705cc3c412a4472ec5e8382d0b47219a66cccae73cfa", - "sha256:f5d9efface8ec62941173ba1cffb2edd0ecddc801c11ae2931e30b50492eb8f7" - ], - "markers": "python_version >= '3.6'", - "version": "==1.0.2" - }, - "linkml": { - "hashes": [ - "sha256:2b00e45bae6da5eecb9fc0060544ab5885cfbda2c75e3cb66ce05f70f19122bb", - "sha256:999a4b64cd6cc983a75f23ad12b09c8e3e0bcafafdb4f44b22bbf1ecda9a1d0f" - ], - "index": "pypi", - "version": "==1.1.8" - }, - "linkml-runtime": { - "hashes": [ - "sha256:9479bac297aa3b30f053f663406603c3c4d27f58c2ed5f5728f1061530905334", - "sha256:a5d23cd8ab1d3fbc3567eb41e003abb5cc54fdf17bfda6ee7828a9a52e52cc4a" - ], - "version": "==1.1.2" - }, - "linkml-runtime-api": { - "hashes": [ - "sha256:b18541410dabedfe61bb90ad2830e794c72417a4451563a2a02c486783df2ef4", - "sha256:fb619e0e10a878502051eb316af431bd81849dc1966a926ee09c83b90ba24e59" - ], - "version": "==0.0.4" - }, - "lxml": { - "hashes": [ - "sha256:079f3ae844f38982d156efce585bc540c16a926d4436712cf4baee0cce487a3d", - "sha256:0fbcf5565ac01dff87cbfc0ff323515c823081c5777a9fc7703ff58388c258c3", - "sha256:122fba10466c7bd4178b07dba427aa516286b846b2cbd6f6169141917283aae2", - "sha256:1b38116b6e628118dea5b2186ee6820ab138dbb1e24a13e478490c7db2f326ae", - "sha256:1b7584d421d254ab86d4f0b13ec662a9014397678a7c4265a02a6d7c2b18a75f", - "sha256:26e761ab5b07adf5f555ee82fb4bfc35bf93750499c6c7614bd64d12aaa67927", - "sha256:289e9ca1a9287f08daaf796d96e06cb2bc2958891d7911ac7cae1c5f9e1e0ee3", - "sha256:2a9d50e69aac3ebee695424f7dbd7b8c6d6eb7de2a2eb6b0f6c7db6aa41e02b7", - "sha256:3082c518be8e97324390614dacd041bb1358c882d77108ca1957ba47738d9d59", - "sha256:33bb934a044cf32157c12bfcfbb6649807da20aa92c062ef51903415c704704f", - "sha256:3439c71103ef0e904ea0a1901611863e51f50b5cd5e8654a151740fde5e1cade", - "sha256:36108c73739985979bf302006527cf8a20515ce444ba916281d1c43938b8bb96", - "sha256:39b78571b3b30645ac77b95f7c69d1bffc4cf8c3b157c435a34da72e78c82468", - "sha256:4289728b5e2000a4ad4ab8da6e1db2e093c63c08bdc0414799ee776a3f78da4b", - "sha256:4bff24dfeea62f2e56f5bab929b4428ae6caba2d1eea0c2d6eb618e30a71e6d4", - "sha256:4c61b3a0db43a1607d6264166b230438f85bfed02e8cff20c22e564d0faff354", - "sha256:542d454665a3e277f76954418124d67516c5f88e51a900365ed54a9806122b83", - "sha256:5a0a14e264069c03e46f926be0d8919f4105c1623d620e7ec0e612a2e9bf1c04", - "sha256:5c8c163396cc0df3fd151b927e74f6e4acd67160d6c33304e805b84293351d16", - "sha256:64812391546a18896adaa86c77c59a4998f33c24788cadc35789e55b727a37f4", - "sha256:66e575c62792c3f9ca47cb8b6fab9e35bab91360c783d1606f758761810c9791", - "sha256:6f12e1427285008fd32a6025e38e977d44d6382cf28e7201ed10d6c1698d2a9a", - "sha256:74f7d8d439b18fa4c385f3f5dfd11144bb87c1da034a466c5b5577d23a1d9b51", - "sha256:7610b8c31688f0b1be0ef882889817939490a36d0ee880ea562a4e1399c447a1", - "sha256:76fa7b1362d19f8fbd3e75fe2fb7c79359b0af8747e6f7141c338f0bee2f871a", - "sha256:7728e05c35412ba36d3e9795ae8995e3c86958179c9770e65558ec3fdfd3724f", - "sha256:8157dadbb09a34a6bd95a50690595e1fa0af1a99445e2744110e3dca7831c4ee", - "sha256:820628b7b3135403540202e60551e741f9b6d3304371712521be939470b454ec", - "sha256:884ab9b29feaca361f7f88d811b1eea9bfca36cf3da27768d28ad45c3ee6f969", - "sha256:89b8b22a5ff72d89d48d0e62abb14340d9e99fd637d046c27b8b257a01ffbe28", - "sha256:92e821e43ad382332eade6812e298dc9701c75fe289f2a2d39c7960b43d1e92a", - "sha256:b007cbb845b28db4fb8b6a5cdcbf65bacb16a8bd328b53cbc0698688a68e1caa", - "sha256:bc4313cbeb0e7a416a488d72f9680fffffc645f8a838bd2193809881c67dd106", - "sha256:bccbfc27563652de7dc9bdc595cb25e90b59c5f8e23e806ed0fd623755b6565d", - "sha256:c1a40c06fd5ba37ad39caa0b3144eb3772e813b5fb5b084198a985431c2f1e8d", - "sha256:c47ff7e0a36d4efac9fd692cfa33fbd0636674c102e9e8d9b26e1b93a94e7617", - "sha256:c4f05c5a7c49d2fb70223d0d5bcfbe474cf928310ac9fa6a7c6dddc831d0b1d4", - "sha256:cdaf11d2bd275bf391b5308f86731e5194a21af45fbaaaf1d9e8147b9160ea92", - "sha256:ce256aaa50f6cc9a649c51be3cd4ff142d67295bfc4f490c9134d0f9f6d58ef0", - "sha256:d2e35d7bf1c1ac8c538f88d26b396e73dd81440d59c1ef8522e1ea77b345ede4", - "sha256:d916d31fd85b2f78c76400d625076d9124de3e4bda8b016d25a050cc7d603f24", - "sha256:df7c53783a46febb0e70f6b05df2ba104610f2fb0d27023409734a3ecbb78fb2", - "sha256:e1cbd3f19a61e27e011e02f9600837b921ac661f0c40560eefb366e4e4fb275e", - "sha256:efac139c3f0bf4f0939f9375af4b02c5ad83a622de52d6dfa8e438e8e01d0eb0", - "sha256:efd7a09678fd8b53117f6bae4fa3825e0a22b03ef0a932e070c0bdbb3a35e654", - "sha256:f2380a6376dfa090227b663f9678150ef27543483055cc327555fb592c5967e2", - "sha256:f8380c03e45cf09f8557bdaa41e1fa7c81f3ae22828e1db470ab2a6c96d8bc23", - "sha256:f90ba11136bfdd25cae3951af8da2e95121c9b9b93727b1b896e3fa105b2f586" - ], - "version": "==4.6.3" - }, - "markdown-it-py": { - "hashes": [ - "sha256:36be6bb3ad987bfdb839f5ba78ddf094552ca38ccbd784ae4f74a4e1419fc6e3", - "sha256:98080fc0bc34c4f2bcf0846a096a9429acbd9d5d8e67ed34026c03c61c464389" - ], - "version": "==1.1.0" - }, - "markupsafe": { - "hashes": [ - "sha256:01a9b8ea66f1658938f65b93a85ebe8bc016e6769611be228d797c9d998dd298", - "sha256:023cb26ec21ece8dc3907c0e8320058b2e0cb3c55cf9564da612bc325bed5e64", - "sha256:0446679737af14f45767963a1a9ef7620189912317d095f2d9ffa183a4d25d2b", - "sha256:0717a7390a68be14b8c793ba258e075c6f4ca819f15edfc2a3a027c823718567", - "sha256:0955295dd5eec6cb6cc2fe1698f4c6d84af2e92de33fbcac4111913cd100a6ff", - "sha256:0d4b31cc67ab36e3392bbf3862cfbadac3db12bdd8b02a2731f509ed5b829724", - "sha256:10f82115e21dc0dfec9ab5c0223652f7197feb168c940f3ef61563fc2d6beb74", - "sha256:168cd0a3642de83558a5153c8bd34f175a9a6e7f6dc6384b9655d2697312a646", - "sha256:1d609f577dc6e1aa17d746f8bd3c31aa4d258f4070d61b2aa5c4166c1539de35", - "sha256:1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6", - "sha256:2a7d351cbd8cfeb19ca00de495e224dea7e7d919659c2841bbb7f420ad03e2d6", - "sha256:2d7d807855b419fc2ed3e631034685db6079889a1f01d5d9dac950f764da3dad", - "sha256:2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26", - "sha256:36bc903cbb393720fad60fc28c10de6acf10dc6cc883f3e24ee4012371399a38", - "sha256:37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac", - "sha256:3c112550557578c26af18a1ccc9e090bfe03832ae994343cfdacd287db6a6ae7", - "sha256:3dd007d54ee88b46be476e293f48c85048603f5f516008bee124ddd891398ed6", - "sha256:47ab1e7b91c098ab893b828deafa1203de86d0bc6ab587b160f78fe6c4011f75", - "sha256:49e3ceeabbfb9d66c3aef5af3a60cc43b85c33df25ce03d0031a608b0a8b2e3f", - "sha256:4efca8f86c54b22348a5467704e3fec767b2db12fc39c6d963168ab1d3fc9135", - "sha256:53edb4da6925ad13c07b6d26c2a852bd81e364f95301c66e930ab2aef5b5ddd8", - "sha256:5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a", - "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a", - "sha256:5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9", - "sha256:60bf42e36abfaf9aff1f50f52644b336d4f0a3fd6d8a60ca0d054ac9f713a864", - "sha256:611d1ad9a4288cf3e3c16014564df047fe08410e628f89805e475368bd304914", - "sha256:6557b31b5e2c9ddf0de32a691f2312a32f77cd7681d8af66c2692efdbef84c18", - "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8", - "sha256:6a7fae0dd14cf60ad5ff42baa2e95727c3d81ded453457771d02b7d2b3f9c0c2", - "sha256:6c4ca60fa24e85fe25b912b01e62cb969d69a23a5d5867682dd3e80b5b02581d", - "sha256:6fcf051089389abe060c9cd7caa212c707e58153afa2c649f00346ce6d260f1b", - "sha256:7d91275b0245b1da4d4cfa07e0faedd5b0812efc15b702576d103293e252af1b", - "sha256:905fec760bd2fa1388bb5b489ee8ee5f7291d692638ea5f67982d968366bef9f", - "sha256:97383d78eb34da7e1fa37dd273c20ad4320929af65d156e35a5e2d89566d9dfb", - "sha256:984d76483eb32f1bcb536dc27e4ad56bba4baa70be32fa87152832cdd9db0833", - "sha256:99df47edb6bda1249d3e80fdabb1dab8c08ef3975f69aed437cb69d0a5de1e28", - "sha256:a30e67a65b53ea0a5e62fe23682cfe22712e01f453b95233b25502f7c61cb415", - "sha256:ab3ef638ace319fa26553db0624c4699e31a28bb2a835c5faca8f8acf6a5a902", - "sha256:add36cb2dbb8b736611303cd3bfcee00afd96471b09cda130da3581cbdc56a6d", - "sha256:b2f4bf27480f5e5e8ce285a8c8fd176c0b03e93dcc6646477d4630e83440c6a9", - "sha256:b7f2d075102dc8c794cbde1947378051c4e5180d52d276987b8d28a3bd58c17d", - "sha256:baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145", - "sha256:be98f628055368795d818ebf93da628541e10b75b41c559fdf36d104c5787066", - "sha256:bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c", - "sha256:c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1", - "sha256:d7f9850398e85aba693bb640262d3611788b1f29a79f0c93c565694658f4071f", - "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53", - "sha256:e0f138900af21926a02425cf736db95be9f4af72ba1bb21453432a07f6082134", - "sha256:e9936f0b261d4df76ad22f8fee3ae83b60d7c3e871292cd42f40b81b70afae85", - "sha256:f5653a225f31e113b152e56f154ccbe59eeb1c7487b39b9d9f9cdb58e6c79dc5", - "sha256:f826e31d18b516f653fe296d967d700fddad5901ae07c622bb3705955e1faa94", - "sha256:f8ba0e8349a38d3001fae7eadded3f6606f0da5d748ee53cc1dab1d6527b9509", - "sha256:f9081981fe268bd86831e5c75f7de206ef275defcb82bc70740ae6dc507aee51", - "sha256:fa130dd50c57d53368c9d59395cb5526eda596d3ffe36666cd81a44d56e48872" - ], - "version": "==2.0.1" - }, - "matplotlib-inline": { - "hashes": [ - "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee", - "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c" - ], - "version": "==0.1.3" - }, - "mdit-py-plugins": { - "hashes": [ - "sha256:1833bf738e038e35d89cb3a07eb0d227ed647ce7dd357579b65343740c6d249c", - "sha256:5991cef645502e80a5388ec4fc20885d2313d4871e8b8e320ca2de14ac0c015f" - ], - "version": "==0.2.8" - }, - "mistune": { - "hashes": [ - "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e", - "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4" - ], - "version": "==0.8.4" - }, - "myst-parser": { - "hashes": [ - "sha256:40124b6f27a4c42ac7f06b385e23a9dcd03d84801e9c7130b59b3729a554b1f9", - "sha256:f7f3b2d62db7655cde658eb5d62b2ec2a4631308137bd8d10f296a40d57bbbeb" - ], - "version": "==0.15.2" - }, - "nbclient": { - "hashes": [ - "sha256:6c8ad36a28edad4562580847f9f1636fe5316a51a323ed85a24a4ad37d4aefce", - "sha256:95a300c6fbe73721736cf13972a46d8d666f78794b832866ed7197a504269e11" - ], - "version": "==0.5.4" - }, - "nbconvert": { - "hashes": [ - "sha256:16ceecd0afaa8fd26c245fa32e2c52066c02f13aa73387fffafd84750baea863", - "sha256:b1b9dc4f1ff6cafae0e6d91f42fb9046fdc32e6beb6d7e2fa2cd7191ad535240" - ], - "version": "==6.2.0" - }, - "nbformat": { - "hashes": [ - "sha256:b516788ad70771c6250977c1374fcca6edebe6126fd2adb5a69aa5c2356fd1c8", - "sha256:eb8447edd7127d043361bc17f2f5a807626bc8e878c7709a1c647abda28a9171" - ], - "version": "==5.1.3" - }, - "nest-asyncio": { - "hashes": [ - "sha256:76d6e972265063fe92a90b9cc4fb82616e07d586b346ed9d2c89a4187acea39c", - "sha256:afc5a1c515210a23c461932765691ad39e8eba6551c055ac8d5546e69250d0aa" - ], - "version": "==1.5.1" - }, - "notebook": { - "hashes": [ - "sha256:26b0095c568e307a310fd78818ad8ebade4f00462dada4c0e34cbad632b9085d", - "sha256:33488bdcc5cbef23c3cfa12cd51b0b5459a211945b5053d17405980611818149" - ], - "version": "==6.4.4" - }, - "numpy": { - "hashes": [ - "sha256:09858463db6dd9f78b2a1a05c93f3b33d4f65975771e90d2cf7aadb7c2f66edf", - "sha256:209666ce9d4a817e8a4597cd475b71b4878a85fa4b8db41d79fdb4fdee01dde2", - "sha256:298156f4d3d46815eaf0fcf0a03f9625fc7631692bd1ad851517ab93c3168fc6", - "sha256:30fc68307c0155d2a75ad19844224be0f2c6f06572d958db4e2053f816b859ad", - "sha256:423216d8afc5923b15df86037c6053bf030d15cc9e3224206ef868c2d63dd6dc", - "sha256:426a00b68b0d21f2deb2ace3c6d677e611ad5a612d2c76494e24a562a930c254", - "sha256:466e682264b14982012887e90346d33435c984b7fead7b85e634903795c8fdb0", - "sha256:51a7b9db0a2941434cd930dacaafe0fc9da8f3d6157f9d12f761bbde93f46218", - "sha256:52a664323273c08f3b473548bf87c8145b7513afd63e4ebba8496ecd3853df13", - "sha256:550564024dc5ceee9421a86fc0fb378aa9d222d4d0f858f6669eff7410c89bef", - "sha256:5de64950137f3a50b76ce93556db392e8f1f954c2d8207f78a92d1f79aa9f737", - "sha256:640c1ccfd56724f2955c237b6ccce2e5b8607c3bc1cc51d3933b8c48d1da3723", - "sha256:7fdc7689daf3b845934d67cb221ba8d250fdca20ac0334fea32f7091b93f00d3", - "sha256:805459ad8baaf815883d0d6f86e45b3b0b67d823a8f3fa39b1ed9c45eaf5edf1", - "sha256:92a0ab128b07799dd5b9077a9af075a63467d03ebac6f8a93e6440abfea4120d", - "sha256:9f2dc79c093f6c5113718d3d90c283f11463d77daa4e83aeeac088ec6a0bda52", - "sha256:a5109345f5ce7ddb3840f5970de71c34a0ff7fceb133c9441283bb8250f532a3", - "sha256:a55e4d81c4260386f71d22294795c87609164e22b28ba0d435850fbdf82fc0c5", - "sha256:a9da45b748caad72ea4a4ed57e9cd382089f33c5ec330a804eb420a496fa760f", - "sha256:b160b9a99ecc6559d9e6d461b95c8eec21461b332f80267ad2c10394b9503496", - "sha256:b342064e647d099ca765f19672696ad50c953cac95b566af1492fd142283580f", - "sha256:b5e8590b9245803c849e09bae070a8e1ff444f45e3f0bed558dd722119eea724", - "sha256:bf75d5825ef47aa51d669b03ce635ecb84d69311e05eccea083f31c7570c9931", - "sha256:c01b59b33c7c3ba90744f2c695be571a3bd40ab2ba7f3d169ffa6db3cfba614f", - "sha256:d96a6a7d74af56feb11e9a443150216578ea07b7450f7c05df40eec90af7f4a7", - "sha256:dd0e3651d210068d13e18503d75aaa45656eef51ef0b261f891788589db2cc38", - "sha256:e167b9805de54367dcb2043519382be541117503ce99e3291cc9b41ca0a83557", - "sha256:e42029e184008a5fd3d819323345e25e2337b0ac7f5c135b7623308530209d57", - "sha256:f545c082eeb09ae678dd451a1b1dbf17babd8a0d7adea02897a76e639afca310", - "sha256:fde50062d67d805bc96f1a9ecc0d37bfc2a8f02b937d2c50824d186aa91f2419" - ], - "version": "==1.21.2" - }, - "openpyxl": { - "hashes": [ - "sha256:40f568b9829bf9e446acfffce30250ac1fa39035124d55fc024025c41481c90f", - "sha256:8f3b11bd896a95468a4ab162fc4fcd260d46157155d1f8bfaabb99d88cfcf79f" - ], - "version": "==3.0.9" - }, - "packaging": { - "hashes": [ - "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7", - "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14" - ], - "version": "==21.0" - }, - "pandas": { - "hashes": [ - "sha256:272c8cb14aa9793eada6b1ebe81994616e647b5892a370c7135efb2924b701df", - "sha256:3334a5a9eeaca953b9db1b2b165dcdc5180b5011f3bec3a57a3580c9c22eae68", - "sha256:37d63e78e87eb3791da7be4100a65da0383670c2b59e493d9e73098d7a879226", - "sha256:3f5020613c1d8e304840c34aeb171377dc755521bf5e69804991030c2a48aec3", - "sha256:45649503e167d45360aa7c52f18d1591a6d5c70d2f3a26bc90a3297a30ce9a66", - "sha256:49fd2889d8116d7acef0709e4c82b8560a8b22b0f77471391d12c27596e90267", - "sha256:4def2ef2fb7fcd62f2aa51bacb817ee9029e5c8efe42fe527ba21f6a3ddf1a9f", - "sha256:53e2fb11f86f6253bb1df26e3aeab3bf2e000aaa32a953ec394571bec5dc6fd6", - "sha256:629138b7cf81a2e55aa29ce7b04c1cece20485271d1f6c469c6a0c03857db6a4", - "sha256:68408a39a54ebadb9014ee5a4fae27b2fe524317bc80adf56c9ac59e8f8ea431", - "sha256:7326b37de08d42dd3fff5b7ef7691d0fd0bf2428f4ba5a2bdc3b3247e9a52e4c", - "sha256:7557b39c8e86eb0543a17a002ac1ea0f38911c3c17095bc9350d0a65b32d801c", - "sha256:86b16b1b920c4cb27fdd65a2c20258bcd9c794be491290660722bb0ea765054d", - "sha256:a800df4e101b721e94d04c355e611863cc31887f24c0b019572e26518cbbcab6", - "sha256:a9f1b54d7efc9df05320b14a48fb18686f781aa66cc7b47bb62fabfc67a0985c", - "sha256:c399200631db9bd9335d013ec7fce4edb98651035c249d532945c78ad453f23a", - "sha256:e574c2637c9d27f322e911650b36e858c885702c5996eda8a5a60e35e6648cf2", - "sha256:e9bc59855598cb57f68fdabd4897d3ed2bc3a3b3bef7b868a0153c4cd03f3207", - "sha256:ebbed7312547a924df0cbe133ff1250eeb94cdff3c09a794dc991c5621c8c735", - "sha256:ed2f29b4da6f6ae7c68f4b3708d9d9e59fa89b2f9e87c2b64ce055cbd39f729e", - "sha256:f7d84f321674c2f0f31887ee6d5755c54ca1ea5e144d6d54b3bbf566dd9ea0cc" - ], - "index": "pypi", - "version": "==1.3.3" - }, - "pandocfilters": { - "hashes": [ - "sha256:0b679503337d233b4339a817bfc8c50064e2eff681314376a47cb582305a7a38", - "sha256:33aae3f25fd1a026079f5d27bdd52496f0e0803b3469282162bafdcbdf6ef14f" - ], - "version": "==1.5.0" - }, - "parse": { - "hashes": [ - "sha256:9ff82852bcb65d139813e2a5197627a94966245c897796760a3a2a8eb66f020b" - ], - "version": "==1.19.0" - }, - "parso": { - "hashes": [ - "sha256:12b83492c6239ce32ff5eed6d3639d6a536170723c6f3f1506869f1ace413398", - "sha256:a8c4922db71e4fdb90e0d0bc6e50f9b273d3397925e5e60a717e719201778d22" - ], - "version": "==0.8.2" - }, - "pexpect": { - "hashes": [ - "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937", - "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c" - ], - "markers": "sys_platform != 'win32'", - "version": "==4.8.0" - }, - "pickleshare": { - "hashes": [ - "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca", - "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56" - ], - "version": "==0.7.5" - }, - "pluggy": { - "hashes": [ - "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159", - "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3" - ], - "version": "==1.0.0" - }, - "ply": { - "hashes": [ - "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3", - "sha256:096f9b8350b65ebd2fd1346b12452efe5b9607f7482813ffca50c22722a807ce" - ], - "version": "==3.11" - }, - "prefixcommons": { - "hashes": [ - "sha256:2ff99e9f2c27f41e6beb831742ca88ddae129b2de6dcc81b0b27f0de69cb2e8a", - "sha256:a4a6decd6c1a2497b2b10193fa4ed69ed91cea20deb3a9781815b6bf3f3e1003", - "sha256:f820dc69f0eba1f6fd80bdb2e78420e4970f20dfb4c307fed77c607198ca69f2" - ], - "version": "==0.1.9" - }, - "prologterms": { - "hashes": [ - "sha256:9b8f6272dcae5a0a9257daa41cd455d5b060147486cea36623f91a3226a656e9", - "sha256:c63cfc291ccfa3e2eeea89eed93bc7fc0214a1f2d748a200de0a5fdd90e0426a" - ], - "version": "==0.0.6" - }, - "prometheus-client": { - "hashes": [ - "sha256:3a8baade6cb80bcfe43297e33e7623f3118d660d41387593758e2fb1ea173a86", - "sha256:b014bc76815eb1399da8ce5fc84b7717a3e63652b0c0f8804092c9363acab1b2" - ], - "version": "==0.11.0" - }, - "prompt-toolkit": { - "hashes": [ - "sha256:6076e46efae19b1e0ca1ec003ed37a933dc94b4d20f486235d436e64771dcd5c", - "sha256:eb71d5a6b72ce6db177af4a7d4d7085b99756bf656d98ffcc4fecd36850eea6c" - ], - "version": "==3.0.20" - }, - "ptyprocess": { - "hashes": [ - "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", - "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220" - ], - "markers": "os_name != 'nt'", - "version": "==0.7.0" - }, - "py": { - "hashes": [ - "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3", - "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a" - ], - "version": "==1.10.0" - }, - "pycparser": { - "hashes": [ - "sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0", - "sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705" - ], - "version": "==2.20" - }, - "pygments": { - "hashes": [ - "sha256:b8e67fe6af78f492b3c4b3e2970c0624cbf08beb1e493b2c99b9fa1b67a20380", - "sha256:f398865f7eb6874156579fdf36bc840a03cab64d1cde9e93d68f46a425ec52c6" - ], - "version": "==2.10.0" - }, - "pyjsg": { - "hashes": [ - "sha256:08d9a80f6996af8862e8a2a4e2d90049af695c4ccd84187e7d7a48f600d37952", - "sha256:3c98d3153a2e4ca8ae8942a4bb213477c68519b145ca2d973648bcb9495208e7" - ], - "version": "==0.11.6" - }, - "pyld": { - "hashes": [ - "sha256:287445f888c3a332ccbd20a14844c66c2fcbaeab3c99acd506a0788e2ebb2f82" - ], - "index": "pypi", - "version": "==2.0.3" - }, - "pyldmod": { - "hashes": [ - "sha256:afe7515a4c2b53bbff436c93af128599b4f52791cc71e34baecb7662c694feed" - ], - "version": "==2.0.5" - }, - "pyparsing": { - "hashes": [ - "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1", - "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b" - ], - "version": "==2.4.7" - }, - "pyrsistent": { - "hashes": [ - "sha256:097b96f129dd36a8c9e33594e7ebb151b1515eb52cceb08474c10a5479e799f2", - "sha256:2aaf19dc8ce517a8653746d98e962ef480ff34b6bc563fc067be6401ffb457c7", - "sha256:404e1f1d254d314d55adb8d87f4f465c8693d6f902f67eb6ef5b4526dc58e6ea", - "sha256:48578680353f41dca1ca3dc48629fb77dfc745128b56fc01096b2530c13fd426", - "sha256:4916c10896721e472ee12c95cdc2891ce5890898d2f9907b1b4ae0f53588b710", - "sha256:527be2bfa8dc80f6f8ddd65242ba476a6c4fb4e3aedbf281dfbac1b1ed4165b1", - "sha256:58a70d93fb79dc585b21f9d72487b929a6fe58da0754fa4cb9f279bb92369396", - "sha256:5e4395bbf841693eaebaa5bb5c8f5cdbb1d139e07c975c682ec4e4f8126e03d2", - "sha256:6b5eed00e597b5b5773b4ca30bd48a5774ef1e96f2a45d105db5b4ebb4bca680", - "sha256:73ff61b1411e3fb0ba144b8f08d6749749775fe89688093e1efef9839d2dcc35", - "sha256:772e94c2c6864f2cd2ffbe58bb3bdefbe2a32afa0acb1a77e472aac831f83427", - "sha256:773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b", - "sha256:a0c772d791c38bbc77be659af29bb14c38ced151433592e326361610250c605b", - "sha256:b29b869cf58412ca5738d23691e96d8aff535e17390128a1a52717c9a109da4f", - "sha256:c1a9ff320fa699337e05edcaae79ef8c2880b52720bc031b219e5b5008ebbdef", - "sha256:cd3caef37a415fd0dae6148a1b6957a8c5f275a62cca02e18474608cb263640c", - "sha256:d5ec194c9c573aafaceebf05fc400656722793dac57f254cd4741f3c27ae57b4", - "sha256:da6e5e818d18459fa46fac0a4a4e543507fe1110e808101277c5a2b5bab0cd2d", - "sha256:e79d94ca58fcafef6395f6352383fa1a76922268fa02caa2272fff501c2fdc78", - "sha256:f3ef98d7b76da5eb19c37fda834d50262ff9167c65658d1d8f974d2e4d90676b", - "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72" - ], - "version": "==0.18.0" - }, - "pyshex": { - "hashes": [ - "sha256:3ea61c2a3f7436bac725bd5001072ba08d2dff5b836d5388ce9ff6f5251c2707", - "sha256:6c9cecd7726461c2105330a9b2d5fd054f0e7966bfc9e3a73e7136b8be63d089" - ], - "version": "==0.7.20" - }, - "pyshexc": { - "hashes": [ - "sha256:6f75e26dfda605c994031a72ca74b2b0079e1f7b12ab713e030078d8fa05dc3a", - "sha256:ad83bb2a645f64becbf946d4bd170e35fd9b903616c7ee25d5a4ed188cf2d1dd" - ], - "version": "==0.8.3" - }, - "pytest": { - "hashes": [ - "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89", - "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134" - ], - "index": "pypi", - "version": "==6.2.5" - }, - "python-dateutil": { - "hashes": [ - "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", - "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" - ], - "version": "==2.8.2" - }, - "pytz": { - "hashes": [ - "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c", - "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326" - ], - "version": "==2021.3" - }, - "pyyaml": { - "hashes": [ - "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf", - "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696", - "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393", - "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77", - "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922", - "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5", - "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8", - "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10", - "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc", - "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018", - "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e", - "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253", - "sha256:72a01f726a9c7851ca9bfad6fd09ca4e090a023c00945ea05ba1638c09dc3347", - "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183", - "sha256:895f61ef02e8fed38159bb70f7e100e00f471eae2bc838cd0f4ebb21e28f8541", - "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb", - "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185", - "sha256:bfb51918d4ff3d77c1c856a9699f8492c612cde32fd3bcd344af9be34999bfdc", - "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db", - "sha256:cb333c16912324fd5f769fff6bc5de372e9e7a202247b48870bc251ed40239aa", - "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46", - "sha256:d483ad4e639292c90170eb6f7783ad19490e7a8defb3e46f97dfe4bacae89122", - "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b", - "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63", - "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df", - "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc", - "sha256:fd7f6999a8070df521b6384004ef42833b9bd62cfee11a09bda1079b4b704247", - "sha256:fdc842473cd33f45ff6bce46aea678a54e3d21f1b61a7750ce3c498eedfe25d6", - "sha256:fe69978f3f768926cfa37b867e3843918e012cf83f680806599ddce33c2c68b0" - ], - "version": "==5.4.1" - }, - "pyzmq": { - "hashes": [ - "sha256:0ca6cd58f62a2751728016d40082008d3b3412a7f28ddfb4a2f0d3c130f69e74", - "sha256:1621e7a2af72cced1f6ec8ca8ca91d0f76ac236ab2e8828ac8fe909512d566cb", - "sha256:18cd854b423fce44951c3a4d3e686bac8f1243d954f579e120a1714096637cc0", - "sha256:2841997a0d85b998cbafecb4183caf51fd19c4357075dfd33eb7efea57e4c149", - "sha256:2b97502c16a5ec611cd52410bdfaab264997c627a46b0f98d3f666227fd1ea2d", - "sha256:3a4c9886d61d386b2b493377d980f502186cd71d501fffdba52bd2a0880cef4f", - "sha256:3c1895c95be92600233e476fe283f042e71cf8f0b938aabf21b7aafa62a8dac9", - "sha256:42abddebe2c6a35180ca549fadc7228d23c1e1f76167c5ebc8a936b5804ea2df", - "sha256:480b9931bfb08bf8b094edd4836271d4d6b44150da051547d8c7113bf947a8b0", - "sha256:67db33bea0a29d03e6eeec55a8190e033318cee3cbc732ba8fd939617cbf762d", - "sha256:6b217b8f9dfb6628f74b94bdaf9f7408708cb02167d644edca33f38746ca12dd", - "sha256:7661fc1d5cb73481cf710a1418a4e1e301ed7d5d924f91c67ba84b2a1b89defd", - "sha256:76c532fd68b93998aab92356be280deec5de8f8fe59cd28763d2cc8a58747b7f", - "sha256:79244b9e97948eaf38695f4b8e6fc63b14b78cc37f403c6642ba555517ac1268", - "sha256:7c58f598d9fcc52772b89a92d72bf8829c12d09746a6d2c724c5b30076c1f11d", - "sha256:7dc09198e4073e6015d9a8ea093fc348d4e59de49382476940c3dd9ae156fba8", - "sha256:80e043a89c6cadefd3a0712f8a1322038e819ebe9dbac7eca3bce1721bcb63bf", - "sha256:851977788b9caa8ed011f5f643d3ee8653af02c5fc723fa350db5125abf2be7b", - "sha256:8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c", - "sha256:954e73c9cd4d6ae319f1c936ad159072b6d356a92dcbbabfd6e6204b9a79d356", - "sha256:ab888624ed68930442a3f3b0b921ad7439c51ba122dbc8c386e6487a658e4a4e", - "sha256:acebba1a23fb9d72b42471c3771b6f2f18dcd46df77482612054bd45c07dfa36", - "sha256:b4ebed0977f92320f6686c96e9e8dd29eed199eb8d066936bac991afc37cbb70", - "sha256:be4e0f229cf3a71f9ecd633566bd6f80d9fa6afaaff5489492be63fe459ef98c", - "sha256:c0f84360dcca3481e8674393bdf931f9f10470988f87311b19d23cda869bb6b7", - "sha256:c1e41b32d6f7f9c26bc731a8b529ff592f31fc8b6ef2be9fa74abd05c8a342d7", - "sha256:cf98fd7a6c8aaa08dbc699ffae33fd71175696d78028281bc7b832b26f00ca57", - "sha256:d072f7dfbdb184f0786d63bda26e8a0882041b1e393fbe98940395f7fab4c5e2", - "sha256:d3dcb5548ead4f1123851a5ced467791f6986d68c656bc63bfff1bf9e36671e2", - "sha256:d6157793719de168b199194f6b6173f0ccd3bf3499e6870fac17086072e39115", - "sha256:d728b08448e5ac3e4d886b165385a262883c34b84a7fe1166277fe675e1c197a", - "sha256:de8df0684398bd74ad160afdc2a118ca28384ac6f5e234eb0508858d8d2d9364", - "sha256:e6a02cf7271ee94674a44f4e62aa061d2d049001c844657740e156596298b70b", - "sha256:ea12133df25e3a6918718fbb9a510c6ee5d3fdd5a346320421aac3882f4feeea", - "sha256:f43b4a2e6218371dd4f41e547bd919ceeb6ebf4abf31a7a0669cd11cd91ea973", - "sha256:f762442bab706fd874064ca218b33a1d8e40d4938e96c24dafd9b12e28017f45", - "sha256:f89468059ebc519a7acde1ee50b779019535db8dcf9b8c162ef669257fef7a93" - ], - "version": "==22.3.0" - }, - "qtconsole": { - "hashes": [ - "sha256:73994105b0369bb99f4164df4a131010f3c7b33a7b5169c37366358d8744675b", - "sha256:bbc34bca14f65535afcb401bc74b752bac955e5313001ba640383f7e5857dc49" - ], - "version": "==5.1.1" - }, - "qtpy": { - "hashes": [ - "sha256:83c502973e9fdd7b648d8267a421229ea3d9a0651c22e4c65a4d9228479c39b6", - "sha256:d6e4ae3a41f1fcb19762b58f35ad6dd443b4bdc867a4cb81ef10ccd85403c92b" - ], - "version": "==1.11.2" - }, - "rdflib": { - "hashes": [ - "sha256:78149dd49d385efec3b3adfbd61c87afaf1281c30d3fcaf1b323b34f603fb155", - "sha256:88208ea971a87886d60ae2b1a4b2cdc263527af0454c422118d43fe64b357877" - ], - "version": "==5.0.0" - }, - "rdflib-jsonld": { - "hashes": [ - "sha256:bcf84317e947a661bae0a3f2aee1eced697075fc4ac4db6065a3340ea0f10fc2", - "sha256:eda5a42a2e09f80d4da78e32b5c684bccdf275368f1541e6b7bcddfb1382a0e0" - ], - "version": "==0.6.1" - }, - "rdflib-pyldmod-compat": { - "hashes": [ - "sha256:68aa05d4f4d8f46241e0c37e631b4747f18a356d8accc5bae204350d2f314196", - "sha256:bfba0064d8b2584afdbef5d54bac3ac1dd4c13b64aaeba7a43812c2f35ca13c6" - ], - "version": "==0.1.2" - }, - "requests": { - "hashes": [ - "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24", - "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7" - ], - "version": "==2.26.0" - }, - "ruamel.yaml": { - "hashes": [ - "sha256:1a771fc92d3823682b7f0893ad56cb5a5c87c48e62b5399d6f42c8759a583b33", - "sha256:ea21da1198c4b41b8e7a259301cc9710d3b972bf8ba52f06218478e6802dd1f1" - ], - "version": "==0.17.16" - }, - "ruamel.yaml.clib": { - "hashes": [ - "sha256:0847201b767447fc33b9c235780d3aa90357d20dd6108b92be544427bea197dd", - "sha256:1866cf2c284a03b9524a5cc00daca56d80057c5ce3cdc86a52020f4c720856f0", - "sha256:31ea73e564a7b5fbbe8188ab8b334393e06d997914a4e184975348f204790277", - "sha256:3fb9575a5acd13031c57a62cc7823e5d2ff8bc3835ba4d94b921b4e6ee664104", - "sha256:4ff604ce439abb20794f05613c374759ce10e3595d1867764dd1ae675b85acbd", - "sha256:72a2b8b2ff0a627496aad76f37a652bcef400fd861721744201ef1b45199ab78", - "sha256:78988ed190206672da0f5d50c61afef8f67daa718d614377dcd5e3ed85ab4a99", - "sha256:7b2927e92feb51d830f531de4ccb11b320255ee95e791022555971c466af4527", - "sha256:7f7ecb53ae6848f959db6ae93bdff1740e651809780822270eab111500842a84", - "sha256:825d5fccef6da42f3c8eccd4281af399f21c02b32d98e113dbc631ea6a6ecbc7", - "sha256:846fc8336443106fe23f9b6d6b8c14a53d38cef9a375149d61f99d78782ea468", - "sha256:89221ec6d6026f8ae859c09b9718799fea22c0e8da8b766b0b2c9a9ba2db326b", - "sha256:9efef4aab5353387b07f6b22ace0867032b900d8e91674b5d8ea9150db5cae94", - "sha256:a32f8d81ea0c6173ab1b3da956869114cae53ba1e9f72374032e33ba3118c233", - "sha256:a49e0161897901d1ac9c4a79984b8410f450565bbad64dbfcbf76152743a0cdb", - "sha256:ada3f400d9923a190ea8b59c8f60680c4ef8a4b0dfae134d2f2ff68429adfab5", - "sha256:bf75d28fa071645c529b5474a550a44686821decebdd00e21127ef1fd566eabe", - "sha256:cfdb9389d888c5b74af297e51ce357b800dd844898af9d4a547ffc143fa56751", - "sha256:d67f273097c368265a7b81e152e07fb90ed395df6e552b9fa858c6d2c9f42502", - "sha256:dc6a613d6c74eef5a14a214d433d06291526145431c3b964f5e16529b1842bed", - "sha256:de9c6b8a1ba52919ae919f3ae96abb72b994dd0350226e28f3686cb4f142165c" - ], - "markers": "platform_python_implementation == 'CPython' and python_version < '3.10'", - "version": "==0.2.6" - }, - "send2trash": { - "hashes": [ - "sha256:d2c24762fd3759860a0aff155e45871447ea58d2be6bdd39b5c8f966a0c99c2d", - "sha256:f20eaadfdb517eaca5ce077640cb261c7d2698385a6a0f072a4a5447fd49fa08" - ], - "version": "==1.8.0" - }, - "shexjsg": { - "hashes": [ - "sha256:788991c4df2ca9b24258fb68c94107c3e140c70bbe398fb15f00338d2a9155e5", - "sha256:89fb39a4448f50fd4988108a0a2c7096aa51dd15cd89fef0bc3ad96e04929929" - ], - "version": "==0.7.1" - }, - "six": { - "hashes": [ - "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", - "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" - ], - "version": "==1.16.0" - }, - "snowballstemmer": { - "hashes": [ - "sha256:b51b447bea85f9968c13b650126a888aabd4cb4463fca868ec596826325dedc2", - "sha256:e997baa4f2e9139951b6f4c631bad912dfd3c792467e2f03d7239464af90e914" - ], - "version": "==2.1.0" - }, - "sparqlslurper": { - "hashes": [ - "sha256:0808cf53923c9ffbf069f80310c73a41d3ae170c266d805b56b6978a066f63e3", - "sha256:e1decb006837c5b8f1f404710d86a36a6cd09301910c79165094a1354ddae487" - ], - "version": "==0.4.1" - }, - "sparqlwrapper": { - "hashes": [ - "sha256:17ec44b08b8ae2888c801066249f74fe328eec25d90203ce7eadaf82e64484c7", - "sha256:357ee8a27bc910ea13d77836dbddd0b914991495b8cc1bf70676578155e962a8", - "sha256:8cf6c21126ed76edc85c5c232fd6f77b9f61f8ad1db90a7147cdde2104aff145", - "sha256:c7f9c9d8ebb13428771bc3b6dee54197422507dcc3dea34e30d5dcfc53478dec", - "sha256:d6a66b5b8cda141660e07aeb00472db077a98d22cb588c973209c7336850fb3c" - ], - "version": "==1.8.5" - }, - "sphinx": { - "hashes": [ - "sha256:94078db9184491e15bce0a56d9186e0aec95f16ac20b12d00e06d4e36f1058a6", - "sha256:98a535c62a4fcfcc362528592f69b26f7caec587d32cd55688db580be0287ae0" - ], - "version": "==4.2.0" - }, - "sphinx-click": { - "hashes": [ - "sha256:9b24c46f3b8f25fc639f47c97ac0361d9f80d48c2ed6b3917de2865bbdbe1785", - "sha256:e9ee2237e5a6b6620e9996b8214934afdf8f7f9f9fc082482c77be0e4379038e" - ], - "version": "==3.0.1" - }, - "sphinx-rtd-theme": { - "hashes": [ - "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8", - "sha256:eec6d497e4c2195fa0e8b2016b337532b8a699a68bcb22a512870e16925c6a5c" - ], - "version": "==1.0.0" - }, - "sphinxcontrib-applehelp": { - "hashes": [ - "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a", - "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58" - ], - "version": "==1.0.2" - }, - "sphinxcontrib-devhelp": { - "hashes": [ - "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e", - "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4" - ], - "version": "==1.0.2" - }, - "sphinxcontrib-htmlhelp": { - "hashes": [ - "sha256:d412243dfb797ae3ec2b59eca0e52dac12e75a241bf0e4eb861e450d06c6ed07", - "sha256:f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2" - ], - "version": "==2.0.0" - }, - "sphinxcontrib-jsmath": { - "hashes": [ - "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", - "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8" - ], - "version": "==1.0.1" - }, - "sphinxcontrib-qthelp": { - "hashes": [ - "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72", - "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6" - ], - "version": "==1.0.3" - }, - "sphinxcontrib-serializinghtml": { - "hashes": [ - "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd", - "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952" - ], - "version": "==1.1.5" - }, - "sqlalchemy": { - "hashes": [ - "sha256:0566a6e90951590c0307c75f9176597c88ef4be2724958ca1d28e8ae05ec8822", - "sha256:08d9396a2a38e672133266b31ed39b2b1f2b5ec712b5bff5e08033970563316a", - "sha256:0b08a53e40b34205acfeb5328b832f44437956d673a6c09fce55c66ab0e54916", - "sha256:16ef07e102d2d4f974ba9b0d4ac46345a411ad20ad988b3654d59ff08e553b1c", - "sha256:1adf3d25e2e33afbcd48cfad8076f9378793be43e7fec3e4334306cac6bec138", - "sha256:1b38db2417b9f7005d6ceba7ce2a526bf10e3f6f635c0f163e6ed6a42b5b62b2", - "sha256:1ebd69365717becaa1b618220a3df97f7c08aa68e759491de516d1c3667bba54", - "sha256:26b0cd2d5c7ea96d3230cb20acac3d89de3b593339c1447b4d64bfcf4eac1110", - "sha256:2ed67aae8cde4d32aacbdba4f7f38183d14443b714498eada5e5a7a37769c0b7", - "sha256:33a1e86abad782e90976de36150d910748b58e02cd7d35680d441f9a76806c18", - "sha256:41a916d815a3a23cb7fff8d11ad0c9b93369ac074e91e428075e088fe57d5358", - "sha256:6003771ea597346ab1e97f2f58405c6cacbf6a308af3d28a9201a643c0ac7bb3", - "sha256:6400b22e4e41cc27623a9a75630b7719579cd9a3a2027bcf16ad5aaa9a7806c0", - "sha256:6b602e3351f59f3999e9fb8b87e5b95cb2faab6a6ecdb482382ac6fdfbee5266", - "sha256:75cd5d48389a7635393ff5a9214b90695c06b3d74912109c3b00ce7392b69c6c", - "sha256:7ad59e2e16578b6c1a2873e4888134112365605b08a6067dd91e899e026efa1c", - "sha256:7b7778a205f956755e05721eebf9f11a6ac18b2409bff5db53ce5fe7ede79831", - "sha256:842c49dd584aedd75c2ee05f6c950730c3ffcddd21c5824ed0f820808387e1e3", - "sha256:90fe429285b171bcc252e21515703bdc2a4721008d1f13aa5b7150336f8a8493", - "sha256:91cd87d1de0111eaca11ccc3d31af441c753fa2bc22df72e5009cfb0a1af5b03", - "sha256:9a1df8c93a0dd9cef0839917f0c6c49f46c75810cf8852be49884da4a7de3c59", - "sha256:9ebe49c3960aa2219292ea2e5df6acdc425fc828f2f3d50b4cfae1692bcb5f02", - "sha256:a28fe28c359835f3be20c89efd517b35e8f97dbb2ca09c6cf0d9ac07f62d7ef6", - "sha256:a36ea43919e51b0de0c0bc52bcfdad7683f6ea9fb81b340cdabb9df0e045e0f7", - "sha256:a505ecc0642f52e7c65afb02cc6181377d833b7df0994ecde15943b18d0fa89c", - "sha256:a79abdb404d9256afb8aeaa0d3a4bc7d3b6d8b66103d8b0f2f91febd3909976e", - "sha256:c211e8ec81522ce87b0b39f0cf0712c998d4305a030459a0e115a2b3dc71598f", - "sha256:dd4ed12a775f2cde4519f4267d3601990a97d8ecde5c944ab06bfd6e8e8ea177", - "sha256:e37621b37c73b034997b5116678862f38ee70e5a054821c7b19d0e55df270dec", - "sha256:e93978993a2ad0af43f132be3ea8805f56b2f2cd223403ec28d3e7d5c6d39ed1" - ], - "version": "==1.4.25" - }, - "terminado": { - "hashes": [ - "sha256:09fdde344324a1c9c6e610ee4ca165c4bb7f5bbf982fceeeb38998a988ef8452", - "sha256:b20fd93cc57c1678c799799d117874367cc07a3d2d55be95205b1a88fa08393f" - ], - "version": "==0.12.1" - }, - "testfixtures": { - "hashes": [ - "sha256:2600100ae96ffd082334b378e355550fef8b4a529a6fa4c34f47130905c7426d", - "sha256:6ddb7f56a123e1a9339f130a200359092bd0a6455e31838d6c477e8729bb7763" - ], - "version": "==6.18.3" - }, - "testpath": { - "hashes": [ - "sha256:1acf7a0bcd3004ae8357409fc33751e16d37ccc650921da1094a86581ad1e417", - "sha256:8044f9a0bab6567fc644a3593164e872543bb44225b0e24846e2c89237937589" - ], - "version": "==0.5.0" - }, - "toml": { - "hashes": [ - "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", - "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" - ], - "version": "==0.10.2" - }, - "tornado": { - "hashes": [ - "sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb", - "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c", - "sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288", - "sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95", - "sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558", - "sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe", - "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791", - "sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d", - "sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326", - "sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b", - "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4", - "sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c", - "sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910", - "sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5", - "sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c", - "sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0", - "sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675", - "sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd", - "sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f", - "sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c", - "sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea", - "sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6", - "sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05", - "sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd", - "sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575", - "sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a", - "sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37", - "sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795", - "sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f", - "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32", - "sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c", - "sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01", - "sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4", - "sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2", - "sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921", - "sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085", - "sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df", - "sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102", - "sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5", - "sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68", - "sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5" - ], - "version": "==6.1" - }, - "traitlets": { - "hashes": [ - "sha256:03f172516916220b58c9f19d7f854734136dd9528103d04e9bf139a92c9f54c4", - "sha256:bd382d7ea181fbbcce157c133db9a829ce06edffe097bcf3ab945b435452b46d" - ], - "version": "==5.1.0" - }, - "urllib3": { - "hashes": [ - "sha256:4987c65554f7a2dbf30c18fd48778ef124af6fab771a377103da0585e2336ece", - "sha256:c4fdf4019605b6e5423637e01bc9fe4daef873709a7973e195ceba0a62bbc844" - ], - "version": "==1.26.7" - }, - "watchdog": { - "hashes": [ - "sha256:25fb5240b195d17de949588628fdf93032ebf163524ef08933db0ea1f99bd685", - "sha256:3386b367e950a11b0568062b70cc026c6f645428a698d33d39e013aaeda4cc04", - "sha256:3becdb380d8916c873ad512f1701f8a92ce79ec6978ffde92919fd18d41da7fb", - "sha256:4ae38bf8ba6f39d5b83f78661273216e7db5b00f08be7592062cb1fc8b8ba542", - "sha256:8047da932432aa32c515ec1447ea79ce578d0559362ca3605f8e9568f844e3c6", - "sha256:8f1c00aa35f504197561060ca4c21d3cc079ba29cf6dd2fe61024c70160c990b", - "sha256:922a69fa533cb0c793b483becaaa0845f655151e7256ec73630a1b2e9ebcb660", - "sha256:9693f35162dc6208d10b10ddf0458cc09ad70c30ba689d9206e02cd836ce28a3", - "sha256:a0f1c7edf116a12f7245be06120b1852275f9506a7d90227648b250755a03923", - "sha256:a36e75df6c767cbf46f61a91c70b3ba71811dfa0aca4a324d9407a06a8b7a2e7", - "sha256:aba5c812f8ee8a3ff3be51887ca2d55fb8e268439ed44110d3846e4229eb0e8b", - "sha256:ad6f1796e37db2223d2a3f302f586f74c72c630b48a9872c1e7ae8e92e0ab669", - "sha256:ae67501c95606072aafa865b6ed47343ac6484472a2f95490ba151f6347acfc2", - "sha256:b2fcf9402fde2672545b139694284dc3b665fd1be660d73eca6805197ef776a3", - "sha256:b52b88021b9541a60531142b0a451baca08d28b74a723d0c99b13c8c8d48d604", - "sha256:b7d336912853d7b77f9b2c24eeed6a5065d0a0cc0d3b6a5a45ad6d1d05fb8cd8", - "sha256:bd9ba4f332cf57b2c1f698be0728c020399ef3040577cde2939f2e045b39c1e5", - "sha256:be9be735f827820a06340dff2ddea1fb7234561fa5e6300a62fe7f54d40546a0", - "sha256:cca7741c0fcc765568350cb139e92b7f9f3c9a08c4f32591d18ab0a6ac9e71b6", - "sha256:d0d19fb2441947b58fbf91336638c2b9f4cc98e05e1045404d7a4cb7cddc7a65", - "sha256:e02794ac791662a5eafc6ffeaf9bcc149035a0e48eb0a9d40a8feb4622605a3d", - "sha256:e0f30db709c939cabf64a6dc5babb276e6d823fd84464ab916f9b9ba5623ca15", - "sha256:e92c2d33858c8f560671b448205a268096e17870dcf60a9bb3ac7bfbafb7f5f9" - ], - "version": "==2.1.6" - }, - "wcwidth": { - "hashes": [ - "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784", - "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83" - ], - "version": "==0.2.5" - }, - "webencodings": { - "hashes": [ - "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", - "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923" - ], - "version": "==0.5.1" - }, - "widgetsnbextension": { - "hashes": [ - "sha256:079f87d87270bce047512400efd70238820751a11d2d8cb137a5a5bdbaf255c7", - "sha256:bd314f8ceb488571a5ffea6cc5b9fc6cba0adaf88a9d2386b93a489751938bcd" - ], - "version": "==3.5.1" - }, - "wrapt": { - "hashes": [ - "sha256:04312fbf51e9dd15261228e6b4bed0c0ed5723ccf986645d2c7308511dccba35", - "sha256:04a00cef5d1b9e0e8db997816437b436e859106283c4771a40c4de4759344765", - "sha256:0b2cbe418beeff3aadb3afc39a67d3f5f6a3eb020ceb5f2bcf56bef14b33629a", - "sha256:19b2c992668c9ca764899bae52987a04041ebc21859d2646db0b27e089c2fd6b", - "sha256:1b46e4fe0f9efbfaf1ee82fc79f9cb044c69b67b181c58370440d396fe40736e", - "sha256:21c1710f61aa95b4be83a32b6d6facbb0efdfac22dee65e1caa72a83deed7cda", - "sha256:2d18618440df6bc072762625e9c843d32a7328347c321b89f8df3a7c4a72ce6c", - "sha256:2f6fbea8936ba862425664fc689182a8ef50a6d88cd49f3cd073eccd3e78c930", - "sha256:3658ae9c704906cab5865a00c1aa9e1fd3555074d1a4462fa1742d7fea8260ae", - "sha256:3816922f0941f1637869a04e25d1e5261dfa55cc6b39c73872cbf192ea562443", - "sha256:40fd2cebad4010787de4221ec27a650635eed3e49e4bbfa8244fc34836cc2457", - "sha256:4f3f99bb8eed5d394bbb898c5191ed91ebf21187d52b2c45895733ae2798f373", - "sha256:5dc6c8cfaf4ff2a4632f8f97d29f555d6951eb0f905d3d47b3fd69bddb653214", - "sha256:6aa687da5565674c9696fafd2b8d44a04fb697ec2431af21c3def9cbedc4082a", - "sha256:6b81913fdba96e286f0c6007eb61f0158e64a1941bfc72fee61b34a4f8f9877f", - "sha256:6c241b4ef0744590ae0ee89305743977e478200cff961bdcc6b3d0530aea3377", - "sha256:77fef0bfdc612f5f30e43392a9f67dddaf4f48f299421bf25f910d0f47173f3d", - "sha256:7929ce97be2f7c49f454a6f8e014225e53cc3767fe48cce94b188de2225232ac", - "sha256:8055f8cc9a80dc1db01f31af6399b83f597ec164f07b7251d2a1bf1c6c025190", - "sha256:836c73f53a0cefc7ba10c6f4a0d78894cb4876f56035fe500b029e0a1ae0ffe9", - "sha256:8a184c655bb41295a9b0c28745a1b762c0c86025e43808b7e814f9cedc6c563d", - "sha256:8a6ba1b00d07f5a90a2d2eb1804a42e2067a6145b7745a8297664a75a8a232ba", - "sha256:909a80ce028821c7ad01bdcaa588126825931d177cdccd00b3545818d4a195ce", - "sha256:947a8d9d7829364e11eca88af18394713c8f98571cbc672b12545977d837f054", - "sha256:95c9fcfc326fdd3e2fd264e808f6474ca7ffd253feb3a505ee5ceb4d78216ef7", - "sha256:972099fa9cf4e43c255701c78ec5098c2fec4d6ea669a110b3414a158e772b0a", - "sha256:97f016514ceac524832e7d1bd41cf928b992ebe0324d59736f84ad5f4bbe0632", - "sha256:9d200716eb4bb1d73f47f3ccc4f98fdf979dcc82d752183828f1be2e332b6874", - "sha256:9f839c47698052ef5c2c094e21f8a06d0828aebe52d20cdb505faa318c62e886", - "sha256:aa637733f1d599077522f6a1f0c6c40389aa90a44cba37afcefef26f8e53d28f", - "sha256:b0eed9b295039a619f64667f27cffbffcfc0559073d562700912ca6266bc8b28", - "sha256:b1137e6aef3ac267c2af7d3af0266ef3f8dd1e5cde67b8eac9fa3b94e7fa0ada", - "sha256:b41ce8ee3825634e67883dd4dab336f95d0cc9d223fb7e224dcd36d66af93694", - "sha256:bc42803987eb46b5fc67ec9a072df15a72ee9db61e3b7dd955d82581bf141f60", - "sha256:bd705e341baccc3d1ef20e790b1f6383bd4ae92a77ba87a86ece8189fab8793c", - "sha256:c803526c0d3fa426e06de379b4eb56102234f2dc3c3a24a500d7962a83ca6166", - "sha256:cb0b12b365b054bee2a53078a67df81781be0686cc3f3ab8bbdd16b2e188570a", - "sha256:d0ae90fd60c7473e437b0dd48ae323c11f631fe47c243056f9e7505d26e8e2f6", - "sha256:db0daf2afca9f3b3a76e96ecb5f55ba82615ec584471d7aa27c1bdeb9e3888bb", - "sha256:e2eb4f38441b56698b4d40d48fd331e4e8a0477264785d08cbced63813d4bd29", - "sha256:e5a0727ea56de6e9a17693589bcf913d6bf1ec49f12d4671993321f3325fda4f", - "sha256:ec803c9d6e4ce037201132d903ff8b0dd26c9688be50ce4c77c420c076e78ff7", - "sha256:f1e2cea943192e24070b65bda862901c02bdf7c6abcd66ef5381ad6511921067", - "sha256:f4377eda306b488255ea4336662cd9015a902d6dc2ed77a3e4c1e3b42387453a", - "sha256:fd5320bf61a2e8d3b46d9e183323293c9a695df8f38c98d17c45e1846758f9a9" - ], - "version": "==1.13.1" - } - }, - "develop": {} -} From bfe506160c050eb313a361d95eca80f167be15e0 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 18 Nov 2021 16:30:15 -0500 Subject: [PATCH 05/18] Updated GitHub Action pytest to use poetry. --- .github/workflows/pytest.yaml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index d78c600..22413d2 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 @@ -15,21 +15,20 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Install Poetry + uses: snok/install-poetry@v1 - name: Install dependencies run: | python -m pip install --upgrade pipenv flake8 wheel - - id: cache-pipenv + - id: cache-poetry uses: actions/cache@v1 with: - path: ~/.local/share/virtualenvs - key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} - - name: Install dependencies - if: steps.cache-pipenv.outputs.cache-hit != 'true' - run: | - pipenv install --deploy --dev + path: ~/.local + key: ${{ runner.os }}-python-${{ matrix.python-version }}-poetry-${{ hashFiles('**/poetry.lock') }} - name: Test with pytest run: | - pipenv run pytest -svvv + poetry install + poetry run pytest -svvv - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names From 82e4bf1191406f991a4a5b8266add7cf283e216d Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 18 Nov 2021 18:23:45 -0500 Subject: [PATCH 06/18] Updated test_load.py to use model via GitHub raw URI. --- head-and-mouth/diagnoses.jsonld | 395 ++++++-------------------------- head-and-mouth/test_load.py | 14 +- 2 files changed, 80 insertions(+), 329 deletions(-) diff --git a/head-and-mouth/diagnoses.jsonld b/head-and-mouth/diagnoses.jsonld index 9ac0222..012cdea 100644 --- a/head-and-mouth/diagnoses.jsonld +++ b/head-and-mouth/diagnoses.jsonld @@ -75875,7 +75875,7 @@ } ], "@context": { - "_comments": "Auto generated from ccdhmodel.yaml by jsonldcontextgen.py version: 0.1.1\n Generation date: 2021-10-04 22:46\n Schema: CRDC-H\n \n id: https://example.org/ccdh\n description: \n license: https://creativecommons.org/publicdomain/zero/1.0/\n ", + "_comments": "Auto generated from crdch_model.yaml by jsonldcontextgen.py version: 0.1.1\n Generation date: 2021-11-18T18:20:30\n Schema: CRDC-H\n \n id: https://example.org/crdch\n description: \n license: https://creativecommons.org/publicdomain/zero/1.0/\n ", "@context": { "GDC": "http://example.org/gdc/", "HTAN": "http://example.org/htan/", @@ -75885,36 +75885,20 @@ "@prefix": true }, "PDC": "http://example.org/pdc/", - "ccdh": "https://example.org/ccdh/", + "crdch": "https://example.org/crdch/", "linkml": "https://w3id.org/linkml/", - "skos": "http://www.w3.org/2004/02/skos/core#", - "@vocab": "https://example.org/ccdh/", + "@vocab": "https://example.org/crdch/", "category": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "focus": { "@type": "@id" }, "method_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "observation_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "performed_by": { "@type": "@id" @@ -75922,15 +75906,10 @@ "subject": { "@type": "@id" }, - "valueCodeableConcept": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "value_codeable_concept": { + "@type": "@id" }, - "valueInteger": { + "value_integer": { "@type": "xsd:integer" }, "identifier": { @@ -75940,33 +75919,18 @@ "@type": "xsd:integer" }, "product_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "qualifier": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "site": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "observations": { "@type": "@id" }, - "valueEntity": { + "value_entity": { "@type": "@id" }, "coding": { @@ -75976,20 +75940,13 @@ "@type": "@id" }, "condition": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" + }, + "diagnosis_date": { + "@type": "@id" }, "disease_status": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "grade": { "@type": "@id" @@ -75998,20 +75955,10 @@ "@type": "@id" }, "method_of_diagnosis": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "morphology": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "primary_site": { "@type": "@id" @@ -76031,19 +75978,11 @@ "supporting_observation": { "@type": "@id" }, - "year_at_diagnosis": { - "@type": "xsd:integer" - }, - "valueQuantity": { + "value_quantity": { "@type": "@id" }, "document_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "alcohol_exposure": { "@type": "@id" @@ -76055,29 +75994,19 @@ "@type": "@id" }, "type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, - "valueBoolean": { + "value_boolean": { "@type": "xsd:boolean" }, - "valueDateTime": { + "value_date_time": { "@type": "xsd:dateTime" }, - "valueDecimal": { + "value_decimal": { "@type": "xsd:decimal" }, "unit": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "associated_timepoint": { "@type": "@id" @@ -76095,12 +76024,7 @@ "@type": "@id" }, "research_project_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "age_at_enrollment": { "@type": "@id" @@ -76112,12 +76036,7 @@ "@type": "@id" }, "index_timepoint": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "member_of_research_project": { "@type": "@id" @@ -76129,34 +76048,19 @@ "@type": "@id" }, "primary_diagnosis_condition": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "primary_diagnosis_site": { "@type": "@id" }, "analyte_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "associated_project": { "@type": "@id" }, "cellular_composition_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "contained_in": { "@type": "@id" @@ -76168,12 +76072,7 @@ "@type": "@id" }, "degree_of_dysplasia": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "derived_product": { "@type": "@id" @@ -76184,32 +76083,17 @@ "distance_from_paired_specimen": { "@type": "@id" }, - "general_tissue_morphology": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "general_tissue_pathology": { + "@type": "@id" }, "histological_composition_measures": { "@type": "@id" }, - "morphlogy_assessment_method": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "morphology_assessment_method": { + "@type": "@id" }, "morphology_assessor_role": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "morphology_pathologically_confirmed": { "@type": "xsd:boolean" @@ -76218,12 +76102,7 @@ "@type": "@id" }, "preinvasive_tissue_morphology": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "processing_activity": { "@type": "@id" @@ -76238,39 +76117,19 @@ "@type": "@id" }, "section_location": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "source_material_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "source_subject": { "@type": "@id" }, - "specific_tissue_morphology": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "specific_tissue_pathology": { + "@type": "@id" }, "specimen_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "storage_activity": { "@type": "@id" @@ -76279,53 +76138,28 @@ "@type": "@id" }, "tumor_status_at_collection": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "additive": { "@type": "@id" }, "container_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "parent_container": { "@type": "@id" }, "activity_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "collection_method_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "collection_site": { "@type": "@id" }, "derivation_method_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "execution_condition_observation": { "@type": "@id" @@ -76355,60 +76189,25 @@ "@type": "@id" }, "breed": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "cause_of_death": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "ethnicity": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "race": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "sex": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "species": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "vital_status": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "year_of_birth": { "@type": "xsd:integer" @@ -76417,45 +76216,30 @@ "@type": "xsd:integer" }, "role": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "substance_quantity": { "@type": "@id" }, "substance_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, - "periodEnd_end": { + "period_end_end": { "@type": "@id" }, - "periodStart_start": { + "period_start_start": { "@type": "@id" }, - "dateTime": { + "date_time": { "@type": "xsd:dateTime" }, - "eventType": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "event_type": { + "@type": "@id" }, - "indexTimePoint": { + "index_time_point": { "@type": "@id" }, - "offsetFromIndex": { + "offset_from_index": { "@type": "@id" }, "concurrent_treatment": { @@ -76465,12 +76249,7 @@ "@type": "xsd:integer" }, "regimen": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "therapeutic_agent": { "@type": "@id" @@ -76479,55 +76258,25 @@ "@type": "@id" }, "treatment_effect": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "treatment_end_reason": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "treatment_for_diagnosis": { "@type": "@id" }, "treatment_frequency": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "treatment_intent": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "treatment_outcome": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" }, "treatment_type": { - "@context": { - "@vocab": "@null", - "text": "skos:notation", - "description": "skos:prefLabel", - "meaning": "@id" - } + "@type": "@id" } } }, diff --git a/head-and-mouth/test_load.py b/head-and-mouth/test_load.py index b6553bf..3c4eac2 100644 --- a/head-and-mouth/test_load.py +++ b/head-and-mouth/test_load.py @@ -10,6 +10,8 @@ import crdch_model as ccdh +# The URI where the CRDCH YAML file is located. +CRDCH_YAML_URI = 'https://raw.githubusercontent.com/cancerDHC/ccdhmodel/v1.1/model/schema/crdch_model.yaml' def codeable_concept(text, system, code): return ccdh.CodeableConcept( @@ -275,7 +277,7 @@ def test_transform_gdc_data(): assert len(gdc_head_and_mouth) > 0, "At least one GDC Head and Mouth case loaded." - jsonldContext = ContextGenerator('ccdh/ccdhmodel.yaml').serialize() + jsonldContext = ContextGenerator(CRDCH_YAML_URI).serialize() jsonldContextAsDict = json.loads(jsonldContext) assert type(jsonldContextAsDict) is dict @@ -303,8 +305,8 @@ def test_transform_gdc_data(): f.write(as_json_str) # Convert JSON-LD into Turtle. - g = rdflib.Graph() - g.parse(data=as_json_str, format="json-ld") - rdf_as_turtle = g.serialize(format="turtle").decode() - with open('head-and-mouth/diagnoses.ttl', 'w') as file: - file.write(rdf_as_turtle) + # g = rdflib.Graph() + # g.parse(data=as_json_str, format="json-ld") + # rdf_as_turtle = g.serialize(format="turtle").decode() + # with open('head-and-mouth/diagnoses.ttl', 'w') as file: + # file.write(rdf_as_turtle) From a221282151279787bc11205f8bed4c619331e71b Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 18 Nov 2021 18:29:43 -0500 Subject: [PATCH 07/18] Restored RDF output by fixing codeable concept fields. --- head-and-mouth/diagnoses.jsonld | 22552 ++++++++++++-- head-and-mouth/diagnoses.ttl | 50200 ++++++++++++++++-------------- head-and-mouth/test_load.py | 21 +- 3 files changed, 46183 insertions(+), 26590 deletions(-) diff --git a/head-and-mouth/diagnoses.jsonld b/head-and-mouth/diagnoses.jsonld index 012cdea..ebaef75 100644 --- a/head-and-mouth/diagnoses.jsonld +++ b/head-and-mouth/diagnoses.jsonld @@ -68,14 +68,38 @@ "related_specimen": [ { "id": "bdc73f48-dc0b-487d-abbe-e3a977b6830a", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:44:57.790971-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -298,23 +322,71 @@ "related_specimen": [ { "id": "8b2588c8-4261-492b-b173-2490a5de668f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "badeaed0-2625-4a4d-bb95-d295e2c32c01", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e23c7006-1a13-4211-8920-47548641e574", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -537,28 +609,92 @@ "related_specimen": [ { "id": "69a89590-eb61-41d5-b33e-e7bc5adb92bf", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b069c55b-496a-4a57-a507-1b2e1b4201ae", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "00f7bc3c-c0e7-42bf-84d7-87a8a539bd4a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a7692585-a129-4671-bfe5-98342a326776", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -781,23 +917,71 @@ "related_specimen": [ { "id": "bd90f967-84dd-48cd-aec0-9de9a76df7a9", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "256469d0-5f36-4966-bf4f-3b4297e55f43", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "dc102dcf-3f48-49e2-8a6f-cfdc34f8ed0f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -1009,23 +1193,71 @@ "related_specimen": [ { "id": "1ed245de-fea4-42c9-9197-773bcd12d2a8", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "665d66ad-54ee-478e-bdd0-85d77980fb3e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "665d4bff-603c-497b-816f-c98784665d0f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -1257,13 +1489,45 @@ "related_specimen": [ { "id": "aa121605-a2c9-43fc-a836-8ec6c42b99de", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "afb7ea63-2959-4e53-95ea-7a032dcb5a8b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -1506,23 +1770,71 @@ "related_specimen": [ { "id": "0c14d932-3b44-48fa-8974-db6e01464851", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "cc3866fe-2690-4354-a548-10189054b85d", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "744cbf84-554d-4cba-aa4f-4c1e5e28a1ee", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -1714,23 +2026,71 @@ "related_specimen": [ { "id": "d6f48bb2-379a-448d-b13d-2dfc5da91d0c", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fd99fd83-4040-4738-8a5a-e42d36ecfe0e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5fe1ae56-74a5-44a9-b8d1-7f05a569bb34", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -1962,13 +2322,45 @@ "related_specimen": [ { "id": "2d9ad43c-f177-455e-9b63-1b9ffdc672d9", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5ef4d047-5a84-4e03-acf5-02029d8a4cf2", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -2171,23 +2563,71 @@ "related_specimen": [ { "id": "36fb3f52-714b-4b86-a7a5-ca4b017fd182", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "95018dba-f23d-4af0-b774-c28be60007f7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b8eb9edb-fce8-4e72-9cbf-c4868c04965c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -2410,23 +2850,71 @@ "related_specimen": [ { "id": "72f5520a-28f0-4be6-afe0-6bee4de5b69a", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "106c7016-9bf6-415a-a0fc-3722a1aaf2c6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b7d03ca7-f518-4587-a54f-03896e53b167", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -2649,28 +3137,92 @@ "related_specimen": [ { "id": "8e461b7f-1bfd-476d-a948-7aadb89a41e5", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "79ec5357-3a44-40db-a1ba-ee282b484526", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "397b08f6-f560-418b-a6e6-2d953187bd5d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f040a5a4-e955-4e69-9f2e-ae9a4c78780a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -2913,23 +3465,71 @@ "related_specimen": [ { "id": "3285f0ab-61e2-4235-b0ac-af1718ca1874", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "82db742d-885d-4788-b509-474715ae183b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "75430612-09bb-4d6f-9304-62a5b517d424", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3152,23 +3752,71 @@ "related_specimen": [ { "id": "4db7e146-bf2a-4729-ae80-d471370b62a0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9adfbc71-da3c-4a8e-a72f-76690e90a8ca", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f92383bc-5869-44d6-a128-60b60043d778", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3391,23 +4039,71 @@ "related_specimen": [ { "id": "b33eba98-6a89-4454-9a53-94999cd5003c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7560ec6d-e0f2-4b55-88bf-62e7173126a1", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b801368a-b10a-4a42-bda8-5df8216b532f", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3479,13 +4175,29 @@ "related_specimen": [ { "id": "7eef7c3e-d42d-4cf5-9ad1-3099b828f776", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:54:19.535598-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3557,13 +4269,29 @@ "related_specimen": [ { "id": "b39fb248-8053-47b7-aa2c-d69335f218ce", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:20:30.865187-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3635,13 +4363,29 @@ "related_specimen": [ { "id": "a764b89e-ad60-4316-a812-24a5eec7b9dd", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3713,13 +4457,29 @@ "related_specimen": [ { "id": "a0deb101-019f-46d7-8cb2-ee98c9d7aa92", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3791,13 +4551,29 @@ "related_specimen": [ { "id": "856fab11-14d9-4e8c-af8a-65684ca39418", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:13:38.880466-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3869,13 +4645,29 @@ "related_specimen": [ { "id": "64dd4e81-f01b-4846-b306-20b7cd7d9340", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:09:54.181448-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -3947,13 +4739,29 @@ "related_specimen": [ { "id": "46f8b134-ad13-42d1-b3c7-6b2d8cf77f90", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T18:54:47.858087-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4025,13 +4833,29 @@ "related_specimen": [ { "id": "b2a64027-92cc-4961-9c27-821fff58c5ca", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4103,13 +4927,29 @@ "related_specimen": [ { "id": "b857d450-dfaf-4407-84e8-d3bbf843cbc3", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4181,13 +5021,29 @@ "related_specimen": [ { "id": "3c02ad20-11ec-4e71-b7e8-c29194ae502f", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4259,13 +5115,29 @@ "related_specimen": [ { "id": "d4ba57ac-0820-4d57-85a6-06122bb4559e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:39:49.045696-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4337,13 +5209,29 @@ "related_specimen": [ { "id": "5cdc6f40-9b5f-4dc0-9082-a9500c3e5af4", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:18:10.730001-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4415,13 +5303,29 @@ "related_specimen": [ { "id": "eca4b442-f9d1-4018-94cb-158757bd3bea", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:02:01.981535-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4493,13 +5397,29 @@ "related_specimen": [ { "id": "cd31b18a-5019-4a94-8966-a1160e544684", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4571,14 +5491,38 @@ "related_specimen": [ { "id": "a4ae0499-714f-4d0b-95b5-e085bb652117", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:47:53.195932-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4650,13 +5594,29 @@ "related_specimen": [ { "id": "bce047a2-b5b7-4ccf-8bf9-406d8c87d7a3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:37:30.937085-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4728,13 +5688,29 @@ "related_specimen": [ { "id": "10935163-56ad-43d1-af91-1846aa5922eb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4806,13 +5782,29 @@ "related_specimen": [ { "id": "0f1ec484-9205-42f4-9696-815dae75b073", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:52:12.528526-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4884,13 +5876,29 @@ "related_specimen": [ { "id": "b1a851b3-94bf-4652-82d3-cc6133cd1565", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:12:32.615882-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -4962,13 +5970,29 @@ "related_specimen": [ { "id": "5e386079-a9c2-4c7e-80ed-9dda270249b9", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5040,13 +6064,29 @@ "related_specimen": [ { "id": "08209047-3b7a-4295-90b0-ddc92aa1e1c9", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:07:22.808668-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5118,13 +6158,29 @@ "related_specimen": [ { "id": "475098e0-9927-42fc-adf2-e280d8aec3bb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:10:26.105156-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5196,14 +6252,38 @@ "related_specimen": [ { "id": "a1fe6dde-024f-4487-8838-24fda3505cc3", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:02:30.028866-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5275,13 +6355,29 @@ "related_specimen": [ { "id": "98e2382a-2d7b-445d-83ff-1dc53d66db12", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:26:11.717995-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5353,13 +6449,29 @@ "related_specimen": [ { "id": "35f0c152-0c87-42bb-a1b7-b306e66514f5", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:10:26.105156-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5431,13 +6543,29 @@ "related_specimen": [ { "id": "b6ddcf15-8ecb-47ca-bb29-60b9b43fa7aa", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:39:05.576558-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5509,14 +6637,38 @@ "related_specimen": [ { "id": "68742842-28e9-49db-b49d-79c73ad4ef0c", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T09:54:31.122378-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5588,14 +6740,38 @@ "related_specimen": [ { "id": "69907c44-c952-482a-a307-44efd82a16dd", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T09:58:58.753780-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5667,13 +6843,29 @@ "related_specimen": [ { "id": "60efb1a2-a8b1-40a7-b230-e4b532a8048b", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:39:49.045696-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5745,13 +6937,29 @@ "related_specimen": [ { "id": "ab9d819a-6445-4bad-a520-3d1edf413508", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-04T18:19:50.810302-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5823,13 +7031,29 @@ "related_specimen": [ { "id": "cf3feb17-3b74-4d84-8395-c4af9b8f4514", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5901,13 +7125,29 @@ "related_specimen": [ { "id": "3dc819bf-5af3-4be1-a892-974d670975c9", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -5979,13 +7219,29 @@ "related_specimen": [ { "id": "43bdb66c-6b5a-4a1c-9d44-2717ecc981ed", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6057,13 +7313,29 @@ "related_specimen": [ { "id": "53e7103c-42c4-41cc-948c-b8e23271bee9", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T18:54:47.858087-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6135,13 +7407,29 @@ "related_specimen": [ { "id": "ba40b824-5fe9-4a73-b7f0-9b371af64f65", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-27T19:26:40.896040-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6213,13 +7501,29 @@ "related_specimen": [ { "id": "c0927894-b73f-4930-b147-e079caeb60e5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6291,13 +7595,29 @@ "related_specimen": [ { "id": "c930148f-2059-480b-960a-4efcb3c98ac1", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6369,13 +7689,29 @@ "related_specimen": [ { "id": "e868826f-a629-4839-bc5f-5383b74aac12", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6447,13 +7783,29 @@ "related_specimen": [ { "id": "e179e193-0933-48cd-98fe-aa4e21c0ad44", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:13:38.880466-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6525,13 +7877,29 @@ "related_specimen": [ { "id": "b9b1b672-a788-46eb-bc8e-a5b401d1a430", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6603,13 +7971,29 @@ "related_specimen": [ { "id": "d0ef535c-d0ed-471d-a1a6-3cf9600d37cb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6681,13 +8065,29 @@ "related_specimen": [ { "id": "ab79d569-bc64-4639-a6a8-74bc2bbe0d0c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6759,13 +8159,29 @@ "related_specimen": [ { "id": "bb6ae997-ee6b-42e0-ab0c-c9fbc64f8d9b", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:58:03.635432-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6837,13 +8253,29 @@ "related_specimen": [ { "id": "116b69cf-c9f3-45c6-be86-c4f22a36dcf8", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-28T12:01:45.147328-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6915,14 +8347,38 @@ "related_specimen": [ { "id": "3c1903f3-2a52-46cf-872e-060ba3a092e3", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:40:08.863452-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -6994,13 +8450,29 @@ "related_specimen": [ { "id": "d7332e8a-d17d-497f-9b44-cc7992f48739", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:42:39.927651-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7072,13 +8544,29 @@ "related_specimen": [ { "id": "87d18b2c-1241-43b3-b7aa-24442a047ade", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T18:54:47.858087-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7150,13 +8638,29 @@ "related_specimen": [ { "id": "781e0bea-f234-496c-915c-c163fc8de24b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7228,14 +8732,38 @@ "related_specimen": [ { "id": "1fc039e3-94d1-4fe2-9d51-796dce543f9f", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:48:10.807261-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7307,13 +8835,29 @@ "related_specimen": [ { "id": "02cf8f79-3109-423e-b290-9b0cf112e827", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7385,13 +8929,29 @@ "related_specimen": [ { "id": "cd1a65bd-7bc3-4c1e-9d5e-792938c2fc5a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7463,13 +9023,29 @@ "related_specimen": [ { "id": "99c1a34d-ba04-462f-be28-bb5eac77b316", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:49:52.836213-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7541,13 +9117,29 @@ "related_specimen": [ { "id": "6f3b4fcf-0519-439f-b3e9-6a0678745885", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-27T19:26:40.896040-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7619,14 +9211,38 @@ "related_specimen": [ { "id": "b62fca52-48c3-4bea-b5f7-5794a1ed4f43", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:58:46.365657-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7698,13 +9314,29 @@ "related_specimen": [ { "id": "c3431e69-82eb-4eef-9e13-312bfde95103", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:07:22.808668-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -7776,99 +9408,37 @@ "related_specimen": [ { "id": "f48ed568-6c4b-4746-b480-139ed3ab5794", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "c8b3a37f-01ec-481e-9460-0bcac22cc002", - "identifier": [ - { - "value": "GENIE-GRCC-18076aef-sample-a_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Oropharynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Oropharynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" + "text": "Not Reported" } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "960fe012-e237-42c8-a3e0-d02853ce3818", - "source_material_type": "Primary Tumor", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-02T18:01:58.729859-05:00" - } - }, - "general_tissue_morphology": "Not Reported" } ] }, { - "id": "9c1cd7ed-46f5-4809-a898-22cc0e15cd64", + "id": "c8b3a37f-01ec-481e-9460-0bcac22cc002", "identifier": [ { - "value": "GENIE-GRCC-438c3609-sample-a_diagnosis", + "value": "GENIE-GRCC-18076aef-sample-a_diagnosis", "system": "GDC-submitter-id" } ], @@ -7886,11 +9456,105 @@ "site": { "coding": [ { - "code": "Hypopharynx", + "code": "Oropharynx", "system": "GDC" } ], - "text": "Hypopharynx" + "text": "Oropharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8070/3", + "system": "GDC" + } + ], + "text": "8070/3" + }, + "related_specimen": [ + { + "id": "960fe012-e237-42c8-a3e0-d02853ce3818", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-02T18:01:58.729859-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "9c1cd7ed-46f5-4809-a898-22cc0e15cd64", + "identifier": [ + { + "value": "GENIE-GRCC-438c3609-sample-a_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Hypopharynx", + "system": "GDC" + } + ], + "text": "Hypopharynx" } } ], @@ -7932,13 +9596,29 @@ "related_specimen": [ { "id": "bc168208-ee4f-4a50-8ddf-b72b0dd59da2", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -8010,13 +9690,29 @@ "related_specimen": [ { "id": "0ef8dcd6-8f67-4f29-a69d-d952df3d43b3", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -8088,13 +9784,29 @@ "related_specimen": [ { "id": "01b01d59-07d3-481d-b466-bf77a916a0db", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -8166,14 +9878,38 @@ "related_specimen": [ { "id": "3dac18fb-752c-42aa-bdad-9f91d54fb950", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:01:51.025011-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -8245,13 +9981,29 @@ "related_specimen": [ { "id": "25bebf87-88d5-4cd5-b2d7-3f2b7c1a0a02", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -8414,13 +10166,45 @@ "related_specimen": [ { "id": "3a24aaeb-37ce-4508-81d5-e531aac8a167", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "92173f97-b46a-4950-8cd8-6729ab9522c5", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -8643,23 +10427,71 @@ "related_specimen": [ { "id": "40583cb5-46f0-4966-82c7-4149f14581d4", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ef81caac-1fdd-43dd-80a3-4e18eb35271e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6766e43d-12fd-49ba-bdde-c19bb71d329d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -8822,13 +10654,45 @@ "related_specimen": [ { "id": "a26d04d0-1501-4cc7-afea-154a89cff0ff", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "dfbc5ddf-a361-4d72-ba8d-5615ca644357", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9060,23 +10924,71 @@ "related_specimen": [ { "id": "03c9108a-5139-4bac-9641-c7dbbedef420", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a47974a3-b37e-4041-8953-5f50f8745681", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8d8ddca2-6461-4a8b-a696-da0906661b9e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9308,23 +11220,71 @@ "related_specimen": [ { "id": "51eeba12-4cfb-4842-ad6c-e49cfe5ef207", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b8077f12-81e6-49f1-aa69-a4b6f5825534", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "226992b4-f81f-49f5-a1da-37ab1742779b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9396,14 +11356,38 @@ "related_specimen": [ { "id": "0a8dd963-c724-4a77-b662-5f711ac88607", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:03:00.815411-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9475,13 +11459,29 @@ "related_specimen": [ { "id": "cb629447-dbb7-49c7-a88a-435b6b6decda", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T17:51:39.178920-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9553,13 +11553,29 @@ "related_specimen": [ { "id": "92e24628-56bc-4c65-9c4b-76c589943948", - "source_material_type": "Not Reported", + "source_material_type": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T17:51:39.178920-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9631,13 +11647,29 @@ "related_specimen": [ { "id": "d57d8dd7-f0d5-4c3e-9ac7-cc23e2aa77d7", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:12:32.615882-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9709,13 +11741,29 @@ "related_specimen": [ { "id": "0d696183-2cc4-4f33-9973-04537cb86276", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9787,13 +11835,29 @@ "related_specimen": [ { "id": "cc51bca3-858a-4ac3-b48a-c4d273b2329c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-28T12:01:45.147328-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -9865,177 +11929,225 @@ "related_specimen": [ { "id": "5349f1ac-ad8d-437f-a9e7-30b2323bd11f", - "source_material_type": "Primary Tumor", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-02T18:21:56.842750-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "08272717-6b2b-4734-9674-4bec2662bd32", - "identifier": [ - { - "value": "GENIE-UHN-523097-ARC1_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "source_material_type": { "coding": [ { - "code": "Nasopharynx", + "code": "Primary Tumor", "system": "GDC" } ], - "text": "Nasopharynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8010/3", - "system": "GDC" - } - ], - "text": "8010/3" - }, - "related_specimen": [ - { - "id": "ffef8dac-d99c-4426-ad9e-f4e3947fe1c1", - "source_material_type": "Primary Tumor", + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2018-10-02T18:18:10.730001-05:00" + "date_time": "2018-10-02T18:21:56.842750-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "96e73819-3b05-4a68-90bb-ceb60d419d50", - "identifier": [ - { - "value": "GENIE-DFCI-006296-6704_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Oropharynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Not Reported" } } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" - } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "51ca54fe-f436-4a88-a11d-ab0781666edf", - "source_material_type": "Primary Tumor", - "creation_activity": { - "date_ended": { - "date_time": "2018-09-24T17:27:14.117499-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } ] }, { - "id": "ca8f5806-a2af-45ee-8217-e6dfc4d0b229", + "id": "08272717-6b2b-4734-9674-4bec2662bd32", "identifier": [ { - "value": "GENIE-MSK-P-0012391-T01-IM5_diagnosis", + "value": "GENIE-UHN-523097-ARC1_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Nasopharynx", + "system": "GDC" + } + ], + "text": "Nasopharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8010/3", + "system": "GDC" + } + ], + "text": "8010/3" + }, + "related_specimen": [ + { + "id": "ffef8dac-d99c-4426-ad9e-f4e3947fe1c1", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-02T18:18:10.730001-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "96e73819-3b05-4a68-90bb-ceb60d419d50", + "identifier": [ + { + "value": "GENIE-DFCI-006296-6704_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Oropharynx", + "system": "GDC" + } + ], + "text": "Oropharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8070/3", + "system": "GDC" + } + ], + "text": "8070/3" + }, + "related_specimen": [ + { + "id": "51ca54fe-f436-4a88-a11d-ab0781666edf", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-09-24T17:27:14.117499-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "ca8f5806-a2af-45ee-8217-e6dfc4d0b229", + "identifier": [ + { + "value": "GENIE-MSK-P-0012391-T01-IM5_diagnosis", "system": "GDC-submitter-id" } ], @@ -10099,13 +12211,29 @@ "related_specimen": [ { "id": "3c8fe733-1711-4d4a-a64c-b94788eda279", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:17:29.664139-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -10177,13 +12305,29 @@ "related_specimen": [ { "id": "f8de95dc-1011-4b86-9a46-28bc46465195", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -10255,13 +12399,29 @@ "related_specimen": [ { "id": "71ba3119-c343-43f0-84db-4ba8787d316b", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-28T12:01:45.147328-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -10453,23 +12613,71 @@ "related_specimen": [ { "id": "f079e825-160a-40d5-97cc-1931f11c4e2e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2f668e36-b359-488e-b0fc-fb7bb479f485", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2dc7070a-9c70-4bb1-9634-8c934bb9c8d1", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -10661,13 +12869,45 @@ "related_specimen": [ { "id": "950233c0-c1ca-4b69-8e3f-a6072dbc7e6a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "43739161-8083-4740-a670-1a334a87ca7e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -10910,28 +13150,92 @@ "related_specimen": [ { "id": "b4074f91-5478-4117-bee5-ed164e4d38c2", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "840d3da5-0493-460a-b5a9-4285e1a2ad37", - "source_material_type": "Metastatic", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "61eec5b6-925d-434b-a318-b22fc21c9ffe", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e4439379-d930-4b9a-b498-3b75e569f8ad", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -11174,23 +13478,71 @@ "related_specimen": [ { "id": "15776f80-0722-45a8-bc97-cc209cef631b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "56c76698-7155-4f7a-9f9e-4fb62c673599", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "90e4a976-0d97-47ef-aa29-295c2afeb31b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -11413,23 +13765,71 @@ "related_specimen": [ { "id": "c2530f39-c334-4a38-b75b-b74d5cb95920", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5c4960e6-92f7-4576-a7d8-82a7c3d7cd5f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2916fc1e-ba62-4494-8014-dfcc6dd358ea", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -11661,23 +14061,71 @@ "related_specimen": [ { "id": "3147ba3d-b1fd-4e40-82e1-56429f2389d6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6f0b02c4-6efb-4104-89e1-2e76811b6afc", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "127b2222-93b1-4870-93f2-867d8e69d015", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -11869,13 +14317,45 @@ "related_specimen": [ { "id": "c6aafc51-6295-494f-9bf2-1e4f43a72ae0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f27e3255-bc73-4943-8201-5245b85c4ee5", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -12087,23 +14567,71 @@ "related_specimen": [ { "id": "fc3d6178-acc8-4e4f-b935-3cc1f6c0f304", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "866bc103-c5bc-4365-8ef6-40064b33046d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f844574a-cb7f-4f66-83d4-ee0ca41a63d1", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -12326,28 +14854,92 @@ "related_specimen": [ { "id": "72f98dc0-3fcb-47a4-8c7a-52a7cd9d3fdf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4151c76f-9dcb-4451-a99b-889e0024f8b9", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5d293d68-61ae-49ad-bfcc-e0bdb91cc29e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5bae7161-8838-4b10-9210-02deaae4b9c1", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -12590,23 +15182,71 @@ "related_specimen": [ { "id": "ad47c17b-e21c-4aed-aac6-8a062c6b5e42", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0a64b28d-8dde-4eaf-bac5-217406cbc4c6", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b3a55bcd-1f88-4d25-9f95-5ef7393d6cf0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -12829,13 +15469,45 @@ "related_specimen": [ { "id": "7758f04c-0e07-4e8a-882d-ece76469f433", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "34b36112-f260-4bf4-90b7-0cebc5988b59", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -13058,23 +15730,71 @@ "related_specimen": [ { "id": "2e1366b9-95b7-4a0d-81f0-7ec14e4f4592", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "10c45c93-36f6-4085-8bc8-f46dfdedca1f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4d8bbfbd-1a39-4630-a1e5-3bc6abb01949", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -13146,13 +15866,29 @@ "related_specimen": [ { "id": "379984ec-2e8f-4c3e-9153-1ec8adc17770", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:02:01.981535-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -13224,13 +15960,29 @@ "related_specimen": [ { "id": "4e6ffe6c-feee-4dca-b56d-0f2c8b498ae6", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:02:01.981535-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -13302,177 +16054,225 @@ "related_specimen": [ { "id": "f2f48558-d331-431f-a14d-845efe0c6ce9", - "source_material_type": "Metastatic", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-03T03:35:23.418160-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "0c55f80d-c82c-4554-916f-6b117978b3fc", - "identifier": [ - { - "value": "GENIE-MSK-P-0000454-T01-IM3_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "source_material_type": { "coding": [ { - "code": "Oropharynx", + "code": "Metastatic", "system": "GDC" } ], - "text": "Oropharynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" - } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "5c3a5e81-481c-430b-9c70-f2d61a77568d", - "source_material_type": "Metastatic", + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2018-10-03T03:31:25.700438-05:00" + "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "c652d5fb-652f-485c-99cd-4e3e00af1126", - "identifier": [ - { - "value": "GENIE-MSK-P-0000396-T01-IM3_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Oropharynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Not Reported" } } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" - } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "2bde1811-da29-46e9-973a-45ea43387818", - "source_material_type": "Metastatic", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-03T03:31:25.700438-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } ] }, { - "id": "4ac21d4b-c592-4afd-bfc1-278702612bd6", + "id": "0c55f80d-c82c-4554-916f-6b117978b3fc", "identifier": [ { - "value": "GENIE-DFCI-004838-2080_diagnosis", + "value": "GENIE-MSK-P-0000454-T01-IM3_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Oropharynx", + "system": "GDC" + } + ], + "text": "Oropharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8070/3", + "system": "GDC" + } + ], + "text": "8070/3" + }, + "related_specimen": [ + { + "id": "5c3a5e81-481c-430b-9c70-f2d61a77568d", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-03T03:31:25.700438-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "c652d5fb-652f-485c-99cd-4e3e00af1126", + "identifier": [ + { + "value": "GENIE-MSK-P-0000396-T01-IM3_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Oropharynx", + "system": "GDC" + } + ], + "text": "Oropharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8070/3", + "system": "GDC" + } + ], + "text": "8070/3" + }, + "related_specimen": [ + { + "id": "2bde1811-da29-46e9-973a-45ea43387818", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-03T03:31:25.700438-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "4ac21d4b-c592-4afd-bfc1-278702612bd6", + "identifier": [ + { + "value": "GENIE-DFCI-004838-2080_diagnosis", "system": "GDC-submitter-id" } ], @@ -13536,13 +16336,29 @@ "related_specimen": [ { "id": "10d245b5-b16d-40ee-bd41-bd08a0355894", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -13785,23 +16601,71 @@ "related_specimen": [ { "id": "3ad15aca-9197-4512-8bb9-77099ae8f049", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2a081426-e4fe-4868-adc9-c14142490b81", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9808b586-4541-42a8-a72c-0c043ff568b3", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14024,23 +16888,71 @@ "related_specimen": [ { "id": "a2caeab5-55a4-412f-a647-0112f48bbbe7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "feb21d9d-394f-402d-8659-eb15bb95f0db", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fbb300fa-8793-42da-a68e-4570ae2e5186", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14283,23 +17195,71 @@ "related_specimen": [ { "id": "75c0a7b6-3e82-4ce9-8856-dd3475affe87", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b477dfb8-c039-49d5-9a0e-912946dc3ad1", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "74606f8c-46a7-453e-acfd-91203aec6df7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14371,13 +17331,29 @@ "related_specimen": [ { "id": "90c9d5f2-ca54-4084-99e7-e9407e364b12", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14449,13 +17425,29 @@ "related_specimen": [ { "id": "ad472d22-bccd-401b-ab2d-0ab7a31c7b73", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14527,14 +17519,38 @@ "related_specimen": [ { "id": "97354824-7fe1-472e-ac48-74ad10e5da51", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T09:58:58.476597-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14606,14 +17622,38 @@ "related_specimen": [ { "id": "c9bccdb4-1bd0-44e0-bfb0-7588611ab01b", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:40:26.338588-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14685,13 +17725,29 @@ "related_specimen": [ { "id": "1291884d-38d8-49cf-b16e-aeab69d83681", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14763,13 +17819,29 @@ "related_specimen": [ { "id": "50b8e07c-b892-4fac-bf59-9e093e2d74d3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:26:11.717995-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14841,13 +17913,29 @@ "related_specimen": [ { "id": "ed3acbbc-fb24-4be6-b09c-e0b6f4d9814f", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14919,14 +18007,38 @@ "related_specimen": [ { "id": "2bbdf4c4-88a1-4358-a88a-5daa2a9a506d", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:57:01.408534-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -14998,13 +18110,29 @@ "related_specimen": [ { "id": "9a26d9df-9ab2-48df-ada8-8bd8455cccd6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15076,13 +18204,29 @@ "related_specimen": [ { "id": "8fe03287-0b1e-4750-9006-58059562a243", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15154,13 +18298,29 @@ "related_specimen": [ { "id": "abf5cf5e-2352-4ba7-9a91-cbefe78ae28e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T18:54:47.858087-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15232,13 +18392,29 @@ "related_specimen": [ { "id": "c862481b-aaaf-41d4-9c29-188760a43dd8", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:18:25.269226-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15310,13 +18486,29 @@ "related_specimen": [ { "id": "e3362d03-8d6c-4be0-b1a6-5ce9c230f4f0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:42:39.927651-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15388,13 +18580,29 @@ "related_specimen": [ { "id": "257963cb-44bc-4946-ac72-7a1bb02f6af9", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15466,13 +18674,29 @@ "related_specimen": [ { "id": "104530ac-b606-41bc-93e4-5734f176d3bb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15675,23 +18899,71 @@ "related_specimen": [ { "id": "52e0aaf1-d93b-42f8-b0e3-f6b4a3d0bd1e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c522234a-c0b1-427a-8992-84fcfc9389ef", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "387e8df2-f053-4cbe-aae8-5727d215f904", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -15934,23 +19206,71 @@ "related_specimen": [ { "id": "a118da56-784d-4b67-aade-d9a7a8b49f18", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "cff6967e-e8f7-4a25-aa31-9328e4b42816", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "1efb2d28-ac51-4d70-a24d-667a2b53467a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -16173,23 +19493,71 @@ "related_specimen": [ { "id": "f4ed2c84-39f8-4ab3-8762-a9920acc2432", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0aaa8bba-f4a5-4158-b9b4-a02244b5f6f7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2f9729e6-edea-4612-82b3-01251317074a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-23T13:20:20.149518-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -16432,23 +19800,71 @@ "related_specimen": [ { "id": "d452d59e-92ff-46ee-840d-df8a161ca9c5", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3b8fd8fb-429a-47ac-8b99-ae42a3fe968d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "952f71e6-b64c-456d-8d00-45e4118fef96", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -16671,23 +20087,71 @@ "related_specimen": [ { "id": "acd6cfc3-412b-4f61-a2c7-013c61fa2efe", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a24e0ad7-668e-4bc7-ae3a-94964278a407", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "843ced6e-a9be-48ea-9313-13aa752dbbe1", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -16759,13 +20223,29 @@ "related_specimen": [ { "id": "d74d27e4-88e8-4ce3-a1ff-7658e007a49a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:54:19.535598-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -16837,13 +20317,29 @@ "related_specimen": [ { "id": "4ec8fe70-22ad-4f62-893d-f95d77dd37f5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:12:32.615882-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -16915,13 +20411,29 @@ "related_specimen": [ { "id": "fc3b12ce-4c74-4faa-ad8b-60ddde831901", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:12:32.615882-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -16993,13 +20505,29 @@ "related_specimen": [ { "id": "f8a73605-d802-4364-aa6e-5d23691f92cf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -17071,13 +20599,29 @@ "related_specimen": [ { "id": "ee78495d-54c1-4d73-93d7-06034b0c7bd0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -17309,13 +20853,45 @@ "related_specimen": [ { "id": "a17406af-2eda-4148-8a0d-ec2ae4bd9fac", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6ced7677-159f-4e9f-b550-627ab9ea80f7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -17478,23 +21054,71 @@ "related_specimen": [ { "id": "396f116a-bede-472e-847d-435a77dfa7dc", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f32ce523-c60e-4a86-bfa0-eeb4f3b2d83a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0551272d-7e05-435c-92b3-918cde4d14ee", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -17717,23 +21341,71 @@ "related_specimen": [ { "id": "b86352a7-2987-4743-aa3c-1895c438641a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7a5921a4-5714-44e7-8ebd-048031b32b88", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ce0b9c55-baeb-4ca8-9235-51a836a4b58f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -17956,23 +21628,71 @@ "related_specimen": [ { "id": "2ef80e58-961d-45d6-ac3a-a520be3728c9", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "460e7821-2712-4d74-b5a1-b2883b3197ca", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c53d6135-c614-45f4-8f41-49b20ed4a549", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -18195,23 +21915,71 @@ "related_specimen": [ { "id": "32d7cb3d-5f5a-474a-9dcc-3b5f2dc64d22", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3901d8b6-f2f2-45e9-a40f-3ccd679f701e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "32056265-c5fb-4544-9f99-22b34febb805", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -18414,23 +22182,71 @@ "related_specimen": [ { "id": "fb5ba525-1658-4f8b-81f8-8d7ec3727773", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "af5d22cc-87f4-4b91-97bc-7103bc07adcc", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "736c3c8c-ff9f-4892-860f-04665a1f344b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -18653,23 +22469,71 @@ "related_specimen": [ { "id": "1477b393-8acf-4550-86a7-6570c0d7d583", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f3c568ae-ad12-4155-a652-8e16e5276bda", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4775330f-0409-4bb2-a096-a3d1eb0180d1", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -18892,23 +22756,71 @@ "related_specimen": [ { "id": "8cc840ea-3053-41a2-a325-6e86f3deeec6", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "61380e29-a7ae-4e29-b69a-d56f234f1ba0", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4deea4a5-4d54-48b2-9a46-68eea668283b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -19151,23 +23063,71 @@ "related_specimen": [ { "id": "59ddae84-32f9-40c0-9d9f-e3b883ab5c47", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0ebb072d-0596-4deb-8607-2548b0396fb0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f99dc3bf-e91d-4011-b62a-2653b53417f0", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -19410,13 +23370,45 @@ "related_specimen": [ { "id": "97657453-6a97-4879-9440-fd0eea9d5f33", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "285e2354-8efd-4951-87cf-0e188d11423e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -19639,23 +23631,71 @@ "related_specimen": [ { "id": "5bf33753-d3c4-4fbe-a8e0-af958efb6fd1", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4f72ee1e-37e2-4845-90de-812686a25980", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ca2a45b4-1eb0-4e28-a4c8-5647bfbaa98c", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -19878,23 +23918,71 @@ "related_specimen": [ { "id": "63535469-d402-4ba2-9ab5-986e6ed80f55", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c2ef7833-c2fa-446c-a12e-f353c744b1e4", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "256d61e1-54c4-4250-bd17-5bb82496f5f4", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -20117,23 +24205,71 @@ "related_specimen": [ { "id": "7fb56f25-873d-475c-9db6-f0be3945d926", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e723f1bb-73a3-4d65-bd25-de76138515e9", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "698f639f-c34a-4f21-8306-26002008804f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-25T15:20:17.640379-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -20376,23 +24512,71 @@ "related_specimen": [ { "id": "df66e44f-3130-4d7b-a1d9-2d90f96b4c7e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3a4af2fc-6443-4644-9da0-fee722e6d5c6", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5c464f43-4aa0-4203-8828-5fc4cb13cf42", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -20615,13 +24799,45 @@ "related_specimen": [ { "id": "c029272a-feef-4a11-9566-092c16b40eef", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ce469c00-b5c0-4d7c-875b-092c5b6ac289", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -20864,23 +25080,71 @@ "related_specimen": [ { "id": "3f2ed4ae-5b71-48d9-b120-4f7bfd4b34c4", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8f5a4b47-4c69-4295-a576-fd3e558754a5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "94c71079-a453-4a4c-b52a-ab686bc83b65", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -21123,23 +25387,71 @@ "related_specimen": [ { "id": "9b9dbf11-d017-4723-a76f-c25ce4a01f09", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8da610b4-0a32-4ef8-9f55-1c969addd79f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e6cd0e23-4423-4ebb-b314-913419340811", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -21362,23 +25674,71 @@ "related_specimen": [ { "id": "2d8d11be-421d-4f96-b5d6-4cbc632f11f3", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c129394b-3c04-4a6a-b4ea-d56d96bf28ef", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c3c82c51-0200-44c8-b5aa-050084983398", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -21581,23 +25941,71 @@ "related_specimen": [ { "id": "cc1be5d1-ea6a-4e7d-822b-51887dab88b6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-23T13:20:20.149518-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e6af426a-d899-44ef-96a8-92bd76a0ea3a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5bf05a41-3a19-445b-96bd-439b9cac01eb", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -21840,23 +26248,71 @@ "related_specimen": [ { "id": "37e8e5f5-0edb-420a-9f32-a2e167ef4cf4", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "041d7de0-fdee-4f6b-9945-058f8bab509c", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "43a91c60-f1f5-4b10-b0ee-c55afadac481", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22099,23 +26555,71 @@ "related_specimen": [ { "id": "63b4690f-f247-4874-9923-e96375c56a01", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5f210369-1839-4f18-b081-974efc7de032", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0d0194eb-d83f-4028-9b4b-3308c0207133", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22347,23 +26851,71 @@ "related_specimen": [ { "id": "1ac65133-fc2b-4b41-a101-eacd225f71b1", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b929bf9b-34a0-4fa3-9bd5-49f8097c573e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "73005780-ea15-4353-b6f7-c26865d3f4d0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22435,13 +26987,29 @@ "related_specimen": [ { "id": "6d1a6236-3625-4300-9f12-4e666cb2694a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22513,13 +27081,29 @@ "related_specimen": [ { "id": "0fd4a1fd-2313-475e-ae01-d424516e42c9", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:09:54.181448-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22591,13 +27175,29 @@ "related_specimen": [ { "id": "6d54051a-c75c-40e6-9215-3e470f0d242e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22669,13 +27269,29 @@ "related_specimen": [ { "id": "fb20acec-aeb5-4591-b114-0834c6629db7", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22747,13 +27363,29 @@ "related_specimen": [ { "id": "f198873e-fb8b-4ddb-8d79-1fcf1bb1d764", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:44:49.261364-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22825,13 +27457,29 @@ "related_specimen": [ { "id": "37ecc052-0274-45dd-98db-fb0d5476fa16", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:06:57.341931-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22903,13 +27551,29 @@ "related_specimen": [ { "id": "a5fa104a-bb1e-4e7d-a740-607fc803f4f3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-28T12:05:42.341898-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -22981,14 +27645,38 @@ "related_specimen": [ { "id": "dc97ccf6-b026-45ac-a658-fb44806230a1", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:51:17.672127-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23060,13 +27748,29 @@ "related_specimen": [ { "id": "80c31730-c365-4f43-ae30-d082f4c7f67a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23138,14 +27842,38 @@ "related_specimen": [ { "id": "24318871-5bfe-4bbe-8df8-9e415558ae47", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:06:58.520537-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23217,14 +27945,38 @@ "related_specimen": [ { "id": "542b7dd6-20ad-4719-bece-768060ddab97", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:51:38.104730-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23296,13 +28048,29 @@ "related_specimen": [ { "id": "3a006479-c2eb-457a-b0a1-e3faebae25b9", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23374,13 +28142,29 @@ "related_specimen": [ { "id": "14dd72d1-596c-42c6-a5aa-c3220dc6fc21", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:12:32.615882-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23452,13 +28236,29 @@ "related_specimen": [ { "id": "172019a6-18cf-4532-89ec-9f4ec83dee30", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:12:32.615882-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23530,14 +28330,38 @@ "related_specimen": [ { "id": "e2edc535-6fc4-4999-aa4c-932bf58d344e", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:06:53.493092-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23609,13 +28433,29 @@ "related_specimen": [ { "id": "0d989563-7a49-49e9-9417-4b607d661ab4", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:17:41.081467-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23687,13 +28527,29 @@ "related_specimen": [ { "id": "9ed6f000-4643-4f65-be84-8fd380d3bc36", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23765,13 +28621,29 @@ "related_specimen": [ { "id": "8449ccd3-033e-4c9f-bec5-9f341264e12b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:26:11.717995-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23843,13 +28715,29 @@ "related_specimen": [ { "id": "4e763f63-0494-4b2f-9f6a-c9461c7e7b1e", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:44.678712-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23921,13 +28809,29 @@ "related_specimen": [ { "id": "8f775235-6026-40f6-b156-cc3711222412", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -23999,13 +28903,29 @@ "related_specimen": [ { "id": "8955be34-dfc4-4a5e-9636-f27ccef4318a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:07:22.808668-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24077,13 +28997,29 @@ "related_specimen": [ { "id": "8479ff0a-fce8-4f4e-8d00-6775d1e9cb00", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:10:26.105156-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24155,13 +29091,29 @@ "related_specimen": [ { "id": "2386e3a8-c4ea-4434-af11-e60fae9630fc", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24233,13 +29185,29 @@ "related_specimen": [ { "id": "421f819b-c4ac-445f-882d-c36766f7002a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24311,13 +29279,29 @@ "related_specimen": [ { "id": "ae00c91b-f03b-41fa-bd2f-d6fde4338cf1", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:12:32.615882-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24389,13 +29373,29 @@ "related_specimen": [ { "id": "b480938b-4562-4d37-a280-16cd4dc700ca", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24467,13 +29467,29 @@ "related_specimen": [ { "id": "175e9244-58cb-4b1a-9614-a4fb1c0e6603", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24545,13 +29561,29 @@ "related_specimen": [ { "id": "01a0cb84-c716-4134-aa16-ef008ae30469", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24623,14 +29655,38 @@ "related_specimen": [ { "id": "97cac184-023d-4aaf-9637-cc34969471cb", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:42:22.825295-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24702,13 +29758,29 @@ "related_specimen": [ { "id": "8212fb32-9c81-4bf1-ab6b-337196acdf90", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24780,13 +29852,29 @@ "related_specimen": [ { "id": "b993e287-e823-4843-b182-3bf775dfb489", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24858,13 +29946,29 @@ "related_specimen": [ { "id": "a3b9c3f7-8499-4c17-92f9-274b1ee52764", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:20:30.865187-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -24936,13 +30040,29 @@ "related_specimen": [ { "id": "3396e2a0-10bb-43b3-b5be-7980064889e0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25014,14 +30134,38 @@ "related_specimen": [ { "id": "bcecf093-e764-4c32-81e5-619d0e86216e", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:50:23.633804-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25093,13 +30237,29 @@ "related_specimen": [ { "id": "933ddbda-c8bb-4e81-9342-9d7379bd6332", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25171,14 +30331,38 @@ "related_specimen": [ { "id": "ea5776ba-c4cc-4d4b-9e33-573ea824853a", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:07:26.436903-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25250,14 +30434,38 @@ "related_specimen": [ { "id": "c54fca3a-3919-4ac7-81b6-f1cf955f47a7", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:04:01.286185-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25329,14 +30537,38 @@ "related_specimen": [ { "id": "a8ae1d5d-04b7-4012-9bf5-70a664f325ee", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:40:28.865821-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25408,13 +30640,29 @@ "related_specimen": [ { "id": "f933f399-d986-43eb-bdc0-b3faf49bf513", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25486,14 +30734,38 @@ "related_specimen": [ { "id": "712ad6f8-8c2a-4c82-a89a-10ff849e3e9e", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T09:54:12.244834-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25565,13 +30837,29 @@ "related_specimen": [ { "id": "f632701a-5242-4839-b96d-0214c7e9a73e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:27:14.117499-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25643,13 +30931,29 @@ "related_specimen": [ { "id": "536ca98b-7415-49d8-84c2-dca4b5070ff6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25721,13 +31025,29 @@ "related_specimen": [ { "id": "dc326cf0-cb20-4f0a-968a-28c6923319dd", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:37:32.909734-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25799,13 +31119,29 @@ "related_specimen": [ { "id": "d2928928-ad9f-46d3-89a5-a00131eaec79", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25877,13 +31213,29 @@ "related_specimen": [ { "id": "e4d9ec72-9281-4b2e-841d-06d84634968d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:39:49.045696-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -25955,13 +31307,29 @@ "related_specimen": [ { "id": "430338db-7df9-43c8-be80-6ef5a6b98899", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26033,13 +31401,29 @@ "related_specimen": [ { "id": "58a5858d-4740-4da1-8959-43d7b05ae1ea", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26111,13 +31495,29 @@ "related_specimen": [ { "id": "fd2acd96-a021-4fd4-b0f5-1d9f6e4448bb", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26189,13 +31589,29 @@ "related_specimen": [ { "id": "1c156e43-c8c3-4ecb-83ff-2075ebd89cd7", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:39:05.576558-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26267,13 +31683,29 @@ "related_specimen": [ { "id": "6b2d8256-f78a-4ac8-b0c3-a97a03410b59", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:27:14.117499-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26345,13 +31777,29 @@ "related_specimen": [ { "id": "7230cf9f-1930-4377-bfdb-6e07cd472bc0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26423,13 +31871,29 @@ "related_specimen": [ { "id": "27e33c39-2025-4573-9b0c-1bc774566bfa", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:44.678712-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26501,13 +31965,29 @@ "related_specimen": [ { "id": "e125a436-ca27-4a85-bd9d-9ca108306229", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:17:29.664139-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26579,13 +32059,29 @@ "related_specimen": [ { "id": "5f316e98-9980-4841-b297-f07b3e87004f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T18:54:47.858087-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26657,13 +32153,29 @@ "related_specimen": [ { "id": "2d54eff7-a093-4bf0-b1c2-2f9f159e6b78", - "source_material_type": "Not Reported", + "source_material_type": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26735,13 +32247,29 @@ "related_specimen": [ { "id": "59d43c02-f731-4a7f-97ae-c3d7dac2d5e0", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:39:05.576558-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26813,13 +32341,29 @@ "related_specimen": [ { "id": "4d69eeb9-81bd-4146-9a4a-3ca86c789272", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26891,13 +32435,29 @@ "related_specimen": [ { "id": "e331b564-d79c-446d-bff2-a732dacba6bb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -26969,13 +32529,29 @@ "related_specimen": [ { "id": "2af6ce71-3d6c-4da8-8b75-f0ae49f95bd2", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:10:26.105156-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -27047,13 +32623,29 @@ "related_specimen": [ { "id": "7128ab9a-3a2d-4df6-8604-829406ab3bed", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -27125,13 +32717,29 @@ "related_specimen": [ { "id": "c63e4630-7bb4-4f01-b9fe-94478000158a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -27203,14 +32811,38 @@ "related_specimen": [ { "id": "4448e3e1-aeff-4ea0-82e4-1692b9b59414", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:00:26.233095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -27282,99 +32914,37 @@ "related_specimen": [ { "id": "f0afc508-eff1-4a28-b912-3705a87d607d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "366df7ed-b836-4cb0-9146-75d22e0ca019", - "identifier": [ - { - "value": "GENIE-DFCI-009836-7821_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Oropharynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Oropharynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" + "text": "Not Reported" } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "356353d1-c8db-4f97-b1d2-0b895cb42266", - "source_material_type": "Metastatic", - "creation_activity": { - "date_ended": { - "date_time": "2018-09-24T17:56:43.308719-05:00" - } - }, - "general_tissue_morphology": "Not Reported" } ] }, { - "id": "972c3046-1f6c-40fc-a83a-3b200148a683", + "id": "366df7ed-b836-4cb0-9146-75d22e0ca019", "identifier": [ { - "value": "AD5830_diagnosis", + "value": "GENIE-DFCI-009836-7821_diagnosis", "system": "GDC-submitter-id" } ], @@ -27392,11 +32962,11 @@ "site": { "coding": [ { - "code": "Nasopharynx", + "code": "Oropharynx", "system": "GDC" } ], - "text": "Nasopharynx" + "text": "Oropharynx" } } ], @@ -27437,23 +33007,38 @@ }, "related_specimen": [ { - "id": "ed2a5846-de67-40c3-9074-3adc9edfb0b0", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "id": "356353d1-c8db-4f97-b1d2-0b895cb42266", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2017-06-01T10:39:05.012118-05:00" + "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "0e732992-a174-4861-8e05-a6c3e21107b3", + "id": "972c3046-1f6c-40fc-a83a-3b200148a683", "identifier": [ { - "value": "GENIE-MSK-P-0001903-T01-IM3_diagnosis", + "value": "AD5830_diagnosis", "system": "GDC-submitter-id" } ], @@ -27471,11 +33056,11 @@ "site": { "coding": [ { - "code": "Hypopharynx", + "code": "Nasopharynx", "system": "GDC" } ], - "text": "Hypopharynx" + "text": "Nasopharynx" } } ], @@ -27516,22 +33101,47 @@ }, "related_specimen": [ { - "id": "ea373411-6d3c-4ee3-b8c1-d79131847aa1", - "source_material_type": "Primary Tumor", + "id": "ed2a5846-de67-40c3-9074-3adc9edfb0b0", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2018-10-03T03:35:23.418160-05:00" + "date_time": "2017-06-01T10:39:05.012118-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "881c2131-1f0d-4b11-8b3a-626918ad5566", + "id": "0e732992-a174-4861-8e05-a6c3e21107b3", "identifier": [ { - "value": "GENIE-MSK-P-0013652-T01-IM5_diagnosis", + "value": "GENIE-MSK-P-0001903-T01-IM3_diagnosis", "system": "GDC-submitter-id" } ], @@ -27549,11 +33159,11 @@ "site": { "coding": [ { - "code": "Oropharynx", + "code": "Hypopharynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Hypopharynx" } } ], @@ -27594,22 +33204,38 @@ }, "related_specimen": [ { - "id": "4c4f2c9b-d2db-42ab-898d-7d6c8c8e4a6e", - "source_material_type": "Primary Tumor", + "id": "ea373411-6d3c-4ee3-b8c1-d79131847aa1", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2018-10-03T03:39:05.576558-05:00" + "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "c1551a30-c8b7-4ba5-b5ed-044b55587a38", + "id": "881c2131-1f0d-4b11-8b3a-626918ad5566", "identifier": [ { - "value": "GENIE-DFCI-003078-318_diagnosis", + "value": "GENIE-MSK-P-0013652-T01-IM5_diagnosis", "system": "GDC-submitter-id" } ], @@ -27672,44 +33298,60 @@ }, "related_specimen": [ { - "id": "1647be39-e387-4457-a1c0-83483d25ea5e", - "source_material_type": "Primary Tumor", + "id": "4c4f2c9b-d2db-42ab-898d-7d6c8c8e4a6e", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2018-09-24T17:18:52.539095-05:00" + "date_time": "2018-10-03T03:39:05.576558-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "552900c2-144c-4340-aed9-197382fafed4", + "id": "c1551a30-c8b7-4ba5-b5ed-044b55587a38", "identifier": [ { - "value": "AD17916_diagnosis", + "value": "GENIE-DFCI-003078-318_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Carcinoma, undifferentiated, NOS", + "code": "Squamous cell carcinoma, NOS", "system": "GDC" } ], - "text": "Carcinoma, undifferentiated, NOS" + "text": "Squamous cell carcinoma, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Nasopharynx", + "code": "Oropharynx", "system": "GDC" } ], - "text": "Nasopharynx" + "text": "Oropharynx" } } ], @@ -27742,53 +33384,68 @@ "morphology": { "coding": [ { - "code": "8020/3", + "code": "8070/3", "system": "GDC" } ], - "text": "8020/3" + "text": "8070/3" }, "related_specimen": [ { - "id": "d4c804df-7392-4267-908e-8fe8c37d00cd", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "id": "1647be39-e387-4457-a1c0-83483d25ea5e", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2017-06-01T10:57:41.511744-05:00" + "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "49e46e5d-46b8-41f2-954e-c3c7b563a55b", + "id": "552900c2-144c-4340-aed9-197382fafed4", "identifier": [ { - "value": "GENIE-DFCI-041937-203493_diagnosis", + "value": "AD17916_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Squamous cell carcinoma, NOS", + "code": "Carcinoma, undifferentiated, NOS", "system": "GDC" } ], - "text": "Squamous cell carcinoma, NOS" + "text": "Carcinoma, undifferentiated, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Oropharynx", + "code": "Nasopharynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Nasopharynx" } } ], @@ -27821,30 +33478,55 @@ "morphology": { "coding": [ { - "code": "8070/3", + "code": "8020/3", "system": "GDC" } ], - "text": "8070/3" + "text": "8020/3" }, "related_specimen": [ { - "id": "1108ef37-87b6-4b62-82f3-5e799fc4fb52", - "source_material_type": "Metastatic", + "id": "d4c804df-7392-4267-908e-8fe8c37d00cd", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2019-06-03T15:28:08.827884-05:00" + "date_time": "2017-06-01T10:57:41.511744-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "cbfef8ff-181a-4048-a571-f78fd34799ef", + "id": "49e46e5d-46b8-41f2-954e-c3c7b563a55b", "identifier": [ { - "value": "GENIE-DFCI-037220-88689_diagnosis", + "value": "GENIE-DFCI-041937-203493_diagnosis", "system": "GDC-submitter-id" } ], @@ -27907,22 +33589,38 @@ }, "related_specimen": [ { - "id": "9f95c03c-4c29-47c7-8bff-47c3014a61b5", - "source_material_type": "Metastatic", + "id": "1108ef37-87b6-4b62-82f3-5e799fc4fb52", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2018-09-25T12:05:51.637331-05:00" + "date_time": "2019-06-03T15:28:08.827884-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "d5b740be-4c9a-4bec-835a-4cd0b394ded4", + "id": "cbfef8ff-181a-4048-a571-f78fd34799ef", "identifier": [ { - "value": "GENIE-DFCI-006383-3525_diagnosis", + "value": "GENIE-DFCI-037220-88689_diagnosis", "system": "GDC-submitter-id" } ], @@ -27985,22 +33683,38 @@ }, "related_specimen": [ { - "id": "1a1294ab-79bf-4e29-b958-cd6c3b25a984", - "source_material_type": "Primary Tumor", + "id": "9f95c03c-4c29-47c7-8bff-47c3014a61b5", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2018-09-24T17:27:14.117499-05:00" + "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "5c73649d-f112-401e-a47c-785337555930", + "id": "d5b740be-4c9a-4bec-835a-4cd0b394ded4", "identifier": [ { - "value": "GENIE-JHU-02535-03020_diagnosis", + "value": "GENIE-DFCI-006383-3525_diagnosis", "system": "GDC-submitter-id" } ], @@ -28063,44 +33777,60 @@ }, "related_specimen": [ { - "id": "d34c6f0f-6b69-4820-8dc8-90d8d54ff7c4", - "source_material_type": "Primary Tumor", + "id": "1a1294ab-79bf-4e29-b958-cd6c3b25a984", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2018-10-02T23:09:11.890404-05:00" + "date_time": "2018-09-24T17:27:14.117499-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "ce0e772c-45e6-4686-9db5-f88e05e2f713", + "id": "5c73649d-f112-401e-a47c-785337555930", "identifier": [ { - "value": "AD12118_diagnosis", + "value": "GENIE-JHU-02535-03020_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Carcinoma, undifferentiated, NOS", + "code": "Squamous cell carcinoma, NOS", "system": "GDC" } ], - "text": "Carcinoma, undifferentiated, NOS" + "text": "Squamous cell carcinoma, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Nasopharynx", + "code": "Oropharynx", "system": "GDC" } ], - "text": "Nasopharynx" + "text": "Oropharynx" } } ], @@ -28133,53 +33863,171 @@ "morphology": { "coding": [ { - "code": "8020/3", + "code": "8070/3", "system": "GDC" } ], - "text": "8020/3" + "text": "8070/3" }, "related_specimen": [ { - "id": "fb315485-9a4d-42a8-8e1b-8cc97c708f1d", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "id": "d34c6f0f-6b69-4820-8dc8-90d8d54ff7c4", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2017-06-01T10:00:58.377064-05:00" + "date_time": "2018-10-02T23:09:11.890404-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "9233f502-9580-4801-915e-732ca0f26a2c", + "id": "ce0e772c-45e6-4686-9db5-f88e05e2f713", "identifier": [ { - "value": "GENIE-DFCI-050720-203425_diagnosis", + "value": "AD12118_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Squamous cell carcinoma, NOS", + "code": "Carcinoma, undifferentiated, NOS", "system": "GDC" } ], - "text": "Squamous cell carcinoma, NOS" + "text": "Carcinoma, undifferentiated, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Oropharynx", + "code": "Nasopharynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Nasopharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8020/3", + "system": "GDC" + } + ], + "text": "8020/3" + }, + "related_specimen": [ + { + "id": "fb315485-9a4d-42a8-8e1b-8cc97c708f1d", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "creation_activity": { + "date_ended": { + "date_time": "2017-06-01T10:00:58.377064-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "9233f502-9580-4801-915e-732ca0f26a2c", + "identifier": [ + { + "value": "GENIE-DFCI-050720-203425_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Oropharynx", + "system": "GDC" + } + ], + "text": "Oropharynx" } } ], @@ -28221,13 +34069,29 @@ "related_specimen": [ { "id": "c1353660-3a6c-4a01-8800-d52a40b6ed68", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:18:25.269226-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28299,14 +34163,38 @@ "related_specimen": [ { "id": "50977953-c3a2-4b71-b40a-3f211a269cc5", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:54:59.697804-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28378,13 +34266,29 @@ "related_specimen": [ { "id": "7946822e-6d72-4013-8be2-f3ffb0487d65", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T18:54:47.858087-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28456,13 +34360,29 @@ "related_specimen": [ { "id": "075795d3-4e6e-4edb-95ee-f4d7ca56b337", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28534,13 +34454,29 @@ "related_specimen": [ { "id": "4121fe4a-1ae9-41e4-954d-88c88d047d9c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28612,13 +34548,29 @@ "related_specimen": [ { "id": "6db9d94f-7868-4a64-b9b4-a5b95747c317", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28690,13 +34642,29 @@ "related_specimen": [ { "id": "f5e6b025-48ca-4fd5-b657-ae622bc9de02", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:11:14.458475-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28768,13 +34736,29 @@ "related_specimen": [ { "id": "37b86231-4224-4084-a523-800e98c4fea3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28846,13 +34830,29 @@ "related_specimen": [ { "id": "8a8010f9-2193-4604-9425-da6e5512ebef", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -28924,13 +34924,29 @@ "related_specimen": [ { "id": "8642c059-a648-4ced-977f-45d6e6496e7b", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29002,13 +35018,29 @@ "related_specimen": [ { "id": "c6e1507a-83f3-4c51-8275-319d0dcd8f97", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:18:25.269226-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29080,13 +35112,29 @@ "related_specimen": [ { "id": "d02e5c34-3c1e-4a7d-a67d-c2525ac3a734", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29158,13 +35206,29 @@ "related_specimen": [ { "id": "b5793531-8ec1-4bd9-9544-57844ebee0a6", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:42:00.849990-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29236,13 +35300,29 @@ "related_specimen": [ { "id": "7c2babfc-9948-4332-8c28-096971073c2e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:09:54.181448-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29314,13 +35394,29 @@ "related_specimen": [ { "id": "78b77808-ec88-4e6b-8393-decaa7bba86d", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29392,13 +35488,29 @@ "related_specimen": [ { "id": "162d69ba-adac-4884-9d98-3bc70cdb72a7", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29470,13 +35582,29 @@ "related_specimen": [ { "id": "e1e98bc8-81b8-45f0-8289-6c306defeaef", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29548,13 +35676,29 @@ "related_specimen": [ { "id": "8d24d0d3-ec37-4b8e-9c31-e23965637da9", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29626,13 +35770,29 @@ "related_specimen": [ { "id": "e0559edf-8fa9-43f1-acbb-7964ea0c33d3", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29704,14 +35864,38 @@ "related_specimen": [ { "id": "02402659-6c66-46ca-861c-e4c093a1a3d3", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:42:51.054806-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29783,14 +35967,38 @@ "related_specimen": [ { "id": "4288c5a9-610c-4b1f-b102-2b96b49a6fd8", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:06:53.493092-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29862,14 +36070,38 @@ "related_specimen": [ { "id": "8f636ed2-41a2-4c3d-bee5-40d9755bf674", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:39:12.328231-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -29941,13 +36173,29 @@ "related_specimen": [ { "id": "faf18ba4-6d92-4da3-bd43-5071bb88c5e1", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30019,14 +36267,38 @@ "related_specimen": [ { "id": "3fa16cbf-829f-4097-ac9f-d8016c40c618", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:01:59.757092-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30098,14 +36370,38 @@ "related_specimen": [ { "id": "5e91c356-4431-478f-8033-99442bcdcb95", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:46:27.877516-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30177,13 +36473,29 @@ "related_specimen": [ { "id": "d492bfd2-b37d-49c3-a8d5-40171e8442d5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30255,13 +36567,29 @@ "related_specimen": [ { "id": "4cb8fa37-e3cd-4d7e-bb34-67ffdf228d78", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:00:11.934564-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30333,14 +36661,38 @@ "related_specimen": [ { "id": "de90601b-1eda-4d1a-aa41-29feebdcfd57", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:06:20.797099-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30412,13 +36764,29 @@ "related_specimen": [ { "id": "31be6816-e615-4939-8c64-c523db6a438e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:17:29.664139-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30490,13 +36858,29 @@ "related_specimen": [ { "id": "b5f4b393-678a-4964-b625-19c8099cde13", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:58:03.635432-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30568,13 +36952,29 @@ "related_specimen": [ { "id": "e91ef1f0-a986-44d2-8880-fbef0afe91d8", - "source_material_type": "Not Reported", + "source_material_type": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T17:51:39.178920-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30646,14 +37046,38 @@ "related_specimen": [ { "id": "900eabba-ab2e-4b0b-9738-db52f9203db9", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T09:59:56.723939-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30725,13 +37149,29 @@ "related_specimen": [ { "id": "12d6861e-5ad9-48f7-ae61-07c7e45be5a3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30803,13 +37243,29 @@ "related_specimen": [ { "id": "968b2133-a7b0-4d2f-8949-f6ff299f1219", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:39:05.576558-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30881,13 +37337,29 @@ "related_specimen": [ { "id": "f71f4733-17f4-436f-b12d-bad5b99ceba3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -30959,14 +37431,38 @@ "related_specimen": [ { "id": "c84c230b-7953-4d86-ba93-255ab2242ce7", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:54:42.853523-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31038,14 +37534,38 @@ "related_specimen": [ { "id": "3ece7ea7-cad2-4e6d-811f-c91f63a4fca9", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:51:47.854910-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31117,13 +37637,29 @@ "related_specimen": [ { "id": "d69183b2-2961-45f3-a4db-3d32d08f6abb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:13:38.880466-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31195,14 +37731,38 @@ "related_specimen": [ { "id": "dbf24e2a-1a10-4dfb-be35-8021f82b947c", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:07:48.972608-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31274,13 +37834,29 @@ "related_specimen": [ { "id": "667948dc-d9bd-4813-922b-69468835c551", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31352,13 +37928,29 @@ "related_specimen": [ { "id": "bbc31a15-3dc6-479c-bd5a-9c1950705ca4", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:43:52.092583-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31430,13 +38022,29 @@ "related_specimen": [ { "id": "b1a78f00-1eeb-4c1b-838f-fb8453112c5a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31508,13 +38116,29 @@ "related_specimen": [ { "id": "5dec4e0d-afbd-4ad6-8acc-00b5ad113a03", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:09:54.181448-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31586,13 +38210,29 @@ "related_specimen": [ { "id": "0f97f0c0-2148-4c06-97a5-37a64ed1b81d", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:10:26.105156-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31664,14 +38304,38 @@ "related_specimen": [ { "id": "d3811cf5-8f54-4344-9efc-2f42c49e4e67", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:49:07.730023-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31743,14 +38407,38 @@ "related_specimen": [ { "id": "42ef0174-6a5e-4804-ae6e-5d0122cb51c5", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:01:38.093247-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31822,14 +38510,38 @@ "related_specimen": [ { "id": "32112d7c-2b29-485d-86c3-6b995450ec8c", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:41:59.431029-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31901,13 +38613,29 @@ "related_specimen": [ { "id": "9eb7cb20-106f-4668-9ef4-c0344e8df3c1", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:44.678712-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -31979,13 +38707,29 @@ "related_specimen": [ { "id": "adbb22ae-5402-4918-a4d0-b54e2f114253", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:27:14.117499-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32057,13 +38801,29 @@ "related_specimen": [ { "id": "1bee9751-cbcd-46d2-97ac-bbe9f4495f2c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:52:12.528526-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32135,13 +38895,29 @@ "related_specimen": [ { "id": "22ef8279-1519-4099-ae13-ff430645c992", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32213,13 +38989,29 @@ "related_specimen": [ { "id": "7d368af5-dc58-4ddb-af35-cbc63bd638e4", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32291,13 +39083,29 @@ "related_specimen": [ { "id": "5103a1f3-d342-462e-9845-9703579d26f8", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:18:10.730001-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32369,13 +39177,29 @@ "related_specimen": [ { "id": "09f9d0e6-10af-4224-a875-8d1e99e90eb5", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:18:10.730001-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32447,13 +39271,29 @@ "related_specimen": [ { "id": "025ae6c3-bdbe-4db0-ac71-56df7e80ea0d", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32525,13 +39365,29 @@ "related_specimen": [ { "id": "1303ddf5-cd55-47c9-9f93-c09d7bbf2f80", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32603,13 +39459,29 @@ "related_specimen": [ { "id": "b3eb534b-6441-4294-809a-ab6963d9aa39", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:43:52.092583-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32681,13 +39553,29 @@ "related_specimen": [ { "id": "10e9e747-568c-4276-9275-1f1d7cb30f81", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-02T20:58:03.565619-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32759,13 +39647,29 @@ "related_specimen": [ { "id": "89fa0392-487d-4839-9c7e-cb82312941c7", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:09:54.181448-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32837,14 +39741,38 @@ "related_specimen": [ { "id": "0d4e791a-4a50-4c58-a8a5-88e5bf4d7c9c", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:51:28.078592-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32916,13 +39844,29 @@ "related_specimen": [ { "id": "ff1a3e50-533b-4228-a8fb-93af76ca4b59", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:20:07.713564-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -32994,13 +39938,29 @@ "related_specimen": [ { "id": "21a0707d-357c-4ea4-aec8-1227b8997cbb", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:37:30.937085-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33072,14 +40032,38 @@ "related_specimen": [ { "id": "b62623cd-3d81-4e48-bba4-7df880930106", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T09:56:48.362532-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33151,14 +40135,38 @@ "related_specimen": [ { "id": "f7b249aa-b35a-4e08-87b6-e9a79d75edbd", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:39:25.573239-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33230,13 +40238,29 @@ "related_specimen": [ { "id": "9e503ae6-5765-4fe6-9a28-eac5a3a93a13", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33308,13 +40332,29 @@ "related_specimen": [ { "id": "a8ec3306-0190-4e13-94d1-e269b8479a1d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33386,13 +40426,29 @@ "related_specimen": [ { "id": "30b0ff9c-3106-4ce0-8657-3ed59c1c8fc7", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33464,13 +40520,29 @@ "related_specimen": [ { "id": "016681b7-82cb-404f-a175-8cb6d3f6bc62", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:06:57.341931-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33542,13 +40614,29 @@ "related_specimen": [ { "id": "2022f8c2-108a-4919-bbcf-1dd1ba4fa10b", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:10:26.105156-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33620,13 +40708,29 @@ "related_specimen": [ { "id": "5dcad3f6-29d1-4043-8bf8-c8ceb17c5ec4", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33698,14 +40802,38 @@ "related_specimen": [ { "id": "14f00898-8aaa-4008-9eac-0959333c3525", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:41:09.015209-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -33948,23 +41076,71 @@ "related_specimen": [ { "id": "a6af965f-ae37-421d-98d6-a69ce62213ac", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "812b8ee1-096a-40ff-914d-9957644b7d11", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b4430e0f-983c-454d-926e-a33fcb4cd02c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -34156,23 +41332,71 @@ "related_specimen": [ { "id": "619a1a7c-f360-4e07-aa85-812e2b1bd92f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f1cbf326-7657-4c9b-9c8d-e2036e89fd07", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "edcbcb1d-23bb-4177-8f77-71071822cd89", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -34364,13 +41588,45 @@ "related_specimen": [ { "id": "b86e8a21-6937-4299-89f6-05f51888f5d8", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "dfdf096f-9577-4e8f-8e98-9b808e417ccc", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -34582,13 +41838,45 @@ "related_specimen": [ { "id": "4c4a6867-babe-4032-a639-a9b31cdddc6c", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d1553b1a-bc1e-4dcf-a273-b3effabe380b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -34811,23 +42099,71 @@ "related_specimen": [ { "id": "26243d14-e401-4ca4-92e7-aee13c9e6e47", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "698208bb-7272-4ad5-9cc0-909cb669bdaf", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ec885af4-3513-4790-ab1f-6ecc94b6115d", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -34979,13 +42315,45 @@ "related_specimen": [ { "id": "ed96ee9b-cf03-4eaa-b783-07b739e3a648", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a9e7990e-7daa-4c79-a836-ac1ad63aaa37", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35208,13 +42576,45 @@ "related_specimen": [ { "id": "5eea7c58-96b4-426b-9685-15599e534730", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7bfdae74-2bf4-4ec7-b08c-acd9b9e0baf4", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35457,23 +42857,71 @@ "related_specimen": [ { "id": "4210ffee-2a83-4f05-8935-2687503c83d4", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "bbee89dc-6858-45c3-a9fc-c455851f96a8", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "735334b4-6c30-4a7a-aa54-63f506b8e2bb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35545,13 +42993,29 @@ "related_specimen": [ { "id": "8ccd1ad3-a277-468d-ae44-03e6c1964c3d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35623,13 +43087,29 @@ "related_specimen": [ { "id": "f37609a0-84b8-4203-9497-9f60cc8be539", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:20:30.865187-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35701,13 +43181,29 @@ "related_specimen": [ { "id": "1f6b16e8-e1f4-462a-ac25-700c915f464f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35779,13 +43275,29 @@ "related_specimen": [ { "id": "3e441a98-f869-414d-9732-4b4037711d5e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T18:54:47.858087-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35857,13 +43369,29 @@ "related_specimen": [ { "id": "f2c471a5-55a3-4180-be7d-c3560efade4b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -35935,13 +43463,29 @@ "related_specimen": [ { "id": "e084b5e5-05ac-4229-bbe8-f640f231e1fb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T19:11:18.668081-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36013,13 +43557,29 @@ "related_specimen": [ { "id": "3a9e0ea1-fb4f-47bd-bf6c-831f7101b005", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36091,13 +43651,29 @@ "related_specimen": [ { "id": "89363cf2-b8d0-48cd-97e5-4cd68ed372d3", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36169,13 +43745,29 @@ "related_specimen": [ { "id": "8738d7cc-e80c-4a00-bc4e-fee451f4b19f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-02T20:58:03.565619-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36247,13 +43839,29 @@ "related_specimen": [ { "id": "52f200af-cd9b-4d63-91fc-7bf44c67c537", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:37:32.909734-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36325,13 +43933,29 @@ "related_specimen": [ { "id": "5c9ff077-5620-4611-a58c-fdd8ed98b2db", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36403,199 +44027,247 @@ "related_specimen": [ { "id": "60e15dc9-5d8b-4104-b6c3-bc0b7b3109a5", - "source_material_type": "Primary Tumor", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-02T18:01:58.729859-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "675831ed-0976-4fdb-87da-15a7a85ba6b5", - "identifier": [ - { - "value": "GENIE-GRCC-9bb5e551-sample-a_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "source_material_type": { "coding": [ { - "code": "Nasopharynx", + "code": "Primary Tumor", "system": "GDC" } ], - "text": "Nasopharynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8010/3", - "system": "GDC" - } - ], - "text": "8010/3" - }, - "related_specimen": [ - { - "id": "b2ee3f62-a9d8-4f49-bc51-1d3f17d63b14", - "source_material_type": "Primary Tumor", + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "1137ba9a-12d3-4b2d-a3a4-d95de8bcf49a", - "identifier": [ - { - "value": "GENIE-GRCC-8191e4ea-sample-a_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Larynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Larynx" + "text": "Not Reported" } } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" - } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "783e6c97-20aa-4c8b-a7e1-ae0d8f7af28d", - "source_material_type": "Metastatic", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-02T18:01:58.729859-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } ] }, { - "id": "52fd0265-204c-4ce3-bb51-a3cbee5aca51", + "id": "675831ed-0976-4fdb-87da-15a7a85ba6b5", "identifier": [ { - "value": "GENIE-GRCC-115ef99e-sample-a_diagnosis", + "value": "GENIE-GRCC-9bb5e551-sample-a_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Squamous cell carcinoma, NOS", + "code": "Carcinoma, NOS", "system": "GDC" } ], - "text": "Squamous cell carcinoma, NOS" + "text": "Carcinoma, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Oropharynx", + "code": "Nasopharynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Nasopharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8010/3", + "system": "GDC" + } + ], + "text": "8010/3" + }, + "related_specimen": [ + { + "id": "b2ee3f62-a9d8-4f49-bc51-1d3f17d63b14", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-02T18:01:58.729859-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "1137ba9a-12d3-4b2d-a3a4-d95de8bcf49a", + "identifier": [ + { + "value": "GENIE-GRCC-8191e4ea-sample-a_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Larynx", + "system": "GDC" + } + ], + "text": "Larynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8070/3", + "system": "GDC" + } + ], + "text": "8070/3" + }, + "related_specimen": [ + { + "id": "783e6c97-20aa-4c8b-a7e1-ae0d8f7af28d", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-02T18:01:58.729859-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "52fd0265-204c-4ce3-bb51-a3cbee5aca51", + "identifier": [ + { + "value": "GENIE-GRCC-115ef99e-sample-a_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Oropharynx", + "system": "GDC" + } + ], + "text": "Oropharynx" } } ], @@ -36637,13 +44309,29 @@ "related_specimen": [ { "id": "6ba7ff9a-775d-4239-884f-4a303b42e4fd", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36715,13 +44403,29 @@ "related_specimen": [ { "id": "36b762ea-ade4-4e7a-b824-0fdadd0e33ef", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T17:51:39.178920-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36793,13 +44497,29 @@ "related_specimen": [ { "id": "b34b2488-73cb-480c-a1ac-c2ef5b89c5f0", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-29T19:51:14.064673-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36871,13 +44591,29 @@ "related_specimen": [ { "id": "c65b0cad-f2f5-40f2-a523-60374faf390a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -36949,13 +44685,29 @@ "related_specimen": [ { "id": "baf6aa81-4b32-4d7f-8557-5942a0febb91", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37027,13 +44779,29 @@ "related_specimen": [ { "id": "1f1c82de-2931-4f38-9caf-213d5425ded1", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-04T18:19:50.810302-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37105,13 +44873,29 @@ "related_specimen": [ { "id": "25007740-c3ea-41f0-a9dc-52de44cb9faa", - "source_material_type": "Not Reported", + "source_material_type": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37183,13 +44967,29 @@ "related_specimen": [ { "id": "75fdf08c-00e0-42dd-a21c-62cceb7bf00f", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-04T13:56:37.232985-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37261,13 +45061,29 @@ "related_specimen": [ { "id": "cc6054a8-ec09-42af-be24-4041b7be75cc", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.308719-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37339,13 +45155,29 @@ "related_specimen": [ { "id": "5c19b5fa-d6eb-4d7e-b617-930e19aea484", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:27:14.117499-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37417,14 +45249,38 @@ "related_specimen": [ { "id": "9ab974e3-bc94-4f83-b7dc-82285f5b4b69", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:55:27.721574-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37496,13 +45352,29 @@ "related_specimen": [ { "id": "c353a3fb-dad8-4a6c-acd3-4121eb21b98e", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37574,13 +45446,29 @@ "related_specimen": [ { "id": "ab00664b-8f6a-493d-b000-89f1341dc713", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:06:57.341931-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37652,14 +45540,38 @@ "related_specimen": [ { "id": "2b14983f-b848-45de-9881-5dc4f483f7a4", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:57:54.983619-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37731,13 +45643,29 @@ "related_specimen": [ { "id": "9590434b-5b17-4ee8-b109-7ebb737252ef", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -37809,177 +45737,37 @@ "related_specimen": [ { "id": "5db1c5e8-ddbb-4057-a059-6acf46826258", - "source_material_type": "Metastatic", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-02T18:01:58.729859-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "664c73af-7fd8-43bf-9a1c-1109c71a303a", - "identifier": [ - { - "value": "GENIE-GRCC-6a5b9e32-sample-a_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "source_material_type": { "coding": [ { - "code": "Larynx", + "code": "Metastatic", "system": "GDC" } ], - "text": "Larynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" - } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "e6616639-64a7-4462-9676-1b2420f371d6", - "source_material_type": "Primary Tumor", + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2019-06-04T18:19:50.810302-05:00" + "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "576b4319-20fe-4dd8-82b1-c34a70bd2182", - "identifier": [ - { - "value": "GENIE-GRCC-596e5ce8-metastasis-a_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Nasopharynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Nasopharynx" + "text": "Not Reported" } } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8010/3", - "system": "GDC" - } - ], - "text": "8010/3" - }, - "related_specimen": [ - { - "id": "7889cf51-be9b-4193-b057-5f348fca10db", - "source_material_type": "Not Reported", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-02T18:01:58.729859-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } ] }, { - "id": "be59114f-e2eb-4d06-824e-7aa867673eda", + "id": "664c73af-7fd8-43bf-9a1c-1109c71a303a", "identifier": [ { - "value": "GENIE-DFCI-004755-1862_diagnosis", + "value": "GENIE-GRCC-6a5b9e32-sample-a_diagnosis", "system": "GDC-submitter-id" } ], @@ -37997,11 +45785,199 @@ "site": { "coding": [ { - "code": "Oropharynx", + "code": "Larynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Larynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8070/3", + "system": "GDC" + } + ], + "text": "8070/3" + }, + "related_specimen": [ + { + "id": "e6616639-64a7-4462-9676-1b2420f371d6", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2019-06-04T18:19:50.810302-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "576b4319-20fe-4dd8-82b1-c34a70bd2182", + "identifier": [ + { + "value": "GENIE-GRCC-596e5ce8-metastasis-a_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Nasopharynx", + "system": "GDC" + } + ], + "text": "Nasopharynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8010/3", + "system": "GDC" + } + ], + "text": "8010/3" + }, + "related_specimen": [ + { + "id": "7889cf51-be9b-4193-b057-5f348fca10db", + "source_material_type": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-02T18:01:58.729859-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "be59114f-e2eb-4d06-824e-7aa867673eda", + "identifier": [ + { + "value": "GENIE-DFCI-004755-1862_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Oropharynx", + "system": "GDC" + } + ], + "text": "Oropharynx" } } ], @@ -38043,13 +46019,29 @@ "related_specimen": [ { "id": "255bbe44-dce0-4905-86bb-317144348172", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -38121,13 +46113,29 @@ "related_specimen": [ { "id": "43637316-5d63-491d-b4cd-2caa045d8c7d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:20:07.713564-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -38199,13 +46207,29 @@ "related_specimen": [ { "id": "2ba57cf3-fd06-4f99-9ad7-447a164b9586", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -38428,23 +46452,71 @@ "related_specimen": [ { "id": "cc2d6cfa-7640-44dd-a200-68fd9f9ee69c", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f102aef0-94b8-4d26-8055-35b76da9dd5f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a7257360-c4dd-4f59-bfb9-c8d593050146", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -38636,13 +46708,45 @@ "related_specimen": [ { "id": "a39131b9-e7c7-4385-a1b9-d8a0a0950337", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a0723862-62f9-4770-b415-e8f52c447e7a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -38865,13 +46969,45 @@ "related_specimen": [ { "id": "eff60f0d-e3c1-4a93-9026-c0764c70ba9f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f87efb5e-24f5-4d2b-b6b3-987bbda30e03", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -39063,23 +47199,71 @@ "related_specimen": [ { "id": "769f3c1c-323e-4f04-9ae7-e41f484a964c", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "cb2da33c-021a-4af5-8509-118bc1e8e0d5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "57ea3eed-f8e2-4310-90c0-50d89f818a12", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -39311,23 +47495,71 @@ "related_specimen": [ { "id": "7202ca4b-6caf-4f4d-adc9-4c59b00cbdc3", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f9ae08e7-9166-4699-801a-4bed11f72dc2", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fe66156a-b3ea-4ed1-a5ca-68a3664c3505", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -39559,23 +47791,71 @@ "related_specimen": [ { "id": "8d31f35c-9178-447d-9a2b-acc305fab407", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b4c02606-0f86-46e4-9daf-dc7dbcd60d78", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "11d697ec-f451-4102-a908-e44f48ab0800", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -39738,13 +48018,45 @@ "related_specimen": [ { "id": "e9a39a90-6401-4a9f-baa5-606e8b5176f6", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "04652163-a674-446f-9e86-607de19e4c34", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -39987,23 +48299,71 @@ "related_specimen": [ { "id": "a2260bc1-8aa1-442c-933e-e4a05d46d802", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "33bf2824-d873-442f-8ae6-48274fbf4a94", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8b80b922-b00f-4cda-92a2-49c357aea89d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -40206,23 +48566,71 @@ "related_specimen": [ { "id": "ad04d034-7fff-4073-8c1f-97fac3d0bbdb", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d660bc61-4016-4f52-98c3-72de5459946a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0469c4d4-58ff-411d-9bf4-8d8bbe31d7c5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -40465,23 +48873,71 @@ "related_specimen": [ { "id": "03c6ac2c-c6b6-4041-a024-f2556fab62b8", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d238e52b-b2e8-479e-b76c-a168136e0ef0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "91e56a17-b4e8-4ef7-b587-a83bcd8c062d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -40673,23 +49129,71 @@ "related_specimen": [ { "id": "43fbb037-8ba4-4ba3-8458-71a027eda822", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fbea64f9-b46b-4af1-bfb2-1791d93977b6", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8c925c97-a7e0-44b3-ac62-b365e89975f0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -40912,28 +49416,92 @@ "related_specimen": [ { "id": "f2e436bd-bbc1-4b1d-9a55-e2a83a1bb510", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7f11de1e-f75d-4476-a179-b50a84a45a78", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a6c24a00-67fd-4a1c-a371-b6e387dcea61", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "267e43c1-bf99-430a-b077-147985fb7e64", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -41005,13 +49573,29 @@ "related_specimen": [ { "id": "6e2561a0-676c-4f69-9059-d49696a56c64", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:58:03.635432-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -41083,13 +49667,29 @@ "related_specimen": [ { "id": "57a1d12e-9ead-43ed-8990-0fecb573d3cf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-28T12:01:45.147328-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -41161,200 +49761,59 @@ "related_specimen": [ { "id": "cb69d223-6e16-4e94-8a35-b1197a261b19", - "source_material_type": "Not Reported", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-02T18:01:58.729859-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "a099ae58-fa38-4a90-82b6-c97a23b317f0", - "identifier": [ - { - "value": "GENIE-GRCC-f88a03a6-metastasis-a_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "source_material_type": { "coding": [ { - "code": "Nasopharynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Nasopharynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8010/3", - "system": "GDC" - } - ], - "text": "8010/3" - }, - "related_specimen": [ - { - "id": "a9b18808-3ee9-4274-9a83-8d2fcbc16c7f", - "source_material_type": "Metastatic", + "text": "Not Reported" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "491f9f68-fb39-4d17-a75d-90d14e801df2", - "identifier": [ - { - "value": "AD15095_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Carcinoma, undifferentiated, NOS", - "system": "GDC" - } - ], - "text": "Carcinoma, undifferentiated, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Nasopharynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Nasopharynx" + "text": "Not Reported" } } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8020/3", - "system": "GDC" - } - ], - "text": "8020/3" - }, - "related_specimen": [ - { - "id": "ae6cd26b-98b2-46a9-917b-cecd94358907", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", - "creation_activity": { - "date_ended": { - "date_time": "2017-06-01T10:44:57.662014-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - } ] }, { - "id": "e7fe03ad-184c-46be-adcb-dcfc79db3492", + "id": "a099ae58-fa38-4a90-82b6-c97a23b317f0", "identifier": [ { - "value": "GENIE-GRCC-d47c6375-sample-a_diagnosis", + "value": "GENIE-GRCC-f88a03a6-metastasis-a_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Squamous cell carcinoma, NOS", + "code": "Carcinoma, NOS", "system": "GDC" } ], - "text": "Squamous cell carcinoma, NOS" + "text": "Carcinoma, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Oropharynx", + "code": "Nasopharynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Nasopharynx" } } ], @@ -41387,41 +49846,57 @@ "morphology": { "coding": [ { - "code": "8070/3", + "code": "8010/3", "system": "GDC" } ], - "text": "8070/3" + "text": "8010/3" }, "related_specimen": [ { - "id": "7512ff60-162b-41b7-a3ed-c153d7aee073", - "source_material_type": "Primary Tumor", + "id": "a9b18808-3ee9-4274-9a83-8d2fcbc16c7f", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "c1887ffe-1e7a-4584-a9cb-897604949138", + "id": "491f9f68-fb39-4d17-a75d-90d14e801df2", "identifier": [ { - "value": "AD7475_diagnosis", + "value": "AD15095_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Squamous cell carcinoma, NOS", + "code": "Carcinoma, undifferentiated, NOS", "system": "GDC" } ], - "text": "Squamous cell carcinoma, NOS" + "text": "Carcinoma, undifferentiated, NOS" }, "metastatic_site": [ { @@ -41465,31 +49940,55 @@ "morphology": { "coding": [ { - "code": "8070/3", + "code": "8020/3", "system": "GDC" } ], - "text": "8070/3" + "text": "8020/3" }, "related_specimen": [ { - "id": "b82784b8-217d-487f-b2f6-4435ebc09885", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "id": "ae6cd26b-98b2-46a9-917b-cecd94358907", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2017-06-01T10:48:10.807261-05:00" + "date_time": "2017-06-01T10:44:57.662014-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "d078cccf-6335-4c55-8d5e-a36e32dd8006", + "id": "e7fe03ad-184c-46be-adcb-dcfc79db3492", "identifier": [ { - "value": "GENIE-DFCI-004034-372_diagnosis", + "value": "GENIE-GRCC-d47c6375-sample-a_diagnosis", "system": "GDC-submitter-id" } ], @@ -41552,22 +50051,38 @@ }, "related_specimen": [ { - "id": "7d1a8a2e-c9d3-4e1d-b183-3c82de7e2306", - "source_material_type": "Primary Tumor", + "id": "7512ff60-162b-41b7-a3ed-c153d7aee073", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2018-09-24T17:22:15.693629-05:00" + "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "09912a9d-8fe7-4170-89cb-f0881ba681bb", + "id": "c1887ffe-1e7a-4584-a9cb-897604949138", "identifier": [ { - "value": "GENIE-DFCI-037012-88553_diagnosis", + "value": "AD7475_diagnosis", "system": "GDC-submitter-id" } ], @@ -41585,11 +50100,11 @@ "site": { "coding": [ { - "code": "Oropharynx", + "code": "Nasopharynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Nasopharynx" } } ], @@ -41630,22 +50145,47 @@ }, "related_specimen": [ { - "id": "89c7b64b-262a-440c-b2b0-b45a94097d6b", - "source_material_type": "Primary Tumor", + "id": "b82784b8-217d-487f-b2f6-4435ebc09885", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2018-09-25T12:05:51.637331-05:00" + "date_time": "2017-06-01T10:48:10.807261-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "73adb3fc-a3c9-487c-a0d0-fa8b09707932", + "id": "d078cccf-6335-4c55-8d5e-a36e32dd8006", "identifier": [ { - "value": "GENIE-DFCI-005121-1375_diagnosis", + "value": "GENIE-DFCI-004034-372_diagnosis", "system": "GDC-submitter-id" } ], @@ -41663,11 +50203,11 @@ "site": { "coding": [ { - "code": "Hypopharynx", + "code": "Oropharynx", "system": "GDC" } ], - "text": "Hypopharynx" + "text": "Oropharynx" } } ], @@ -41708,22 +50248,38 @@ }, "related_specimen": [ { - "id": "eadf6e9a-c6c3-444c-8e93-8ab77ed87d09", - "source_material_type": "Primary Tumor", + "id": "7d1a8a2e-c9d3-4e1d-b183-3c82de7e2306", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "22080645-9bd1-4303-ae61-8228c254dc24", + "id": "09912a9d-8fe7-4170-89cb-f0881ba681bb", "identifier": [ { - "value": "GENIE-MSK-P-0002746-T01-IM3_diagnosis", + "value": "GENIE-DFCI-037012-88553_diagnosis", "system": "GDC-submitter-id" } ], @@ -41741,11 +50297,11 @@ "site": { "coding": [ { - "code": "Larynx", + "code": "Oropharynx", "system": "GDC" } ], - "text": "Larynx" + "text": "Oropharynx" } } ], @@ -41786,44 +50342,60 @@ }, "related_specimen": [ { - "id": "c74deddd-6181-4108-baf3-4d750d877606", - "source_material_type": "Metastatic", + "id": "89c7b64b-262a-440c-b2b0-b45a94097d6b", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { - "date_time": "2018-10-03T03:50:42.610446-05:00" + "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "d813126a-5e28-5c5a-8730-598f0d047584", + "id": "73adb3fc-a3c9-487c-a0d0-fa8b09707932", "identifier": [ { - "value": "TARGET-52-PATBLF_diagnosis", + "value": "GENIE-DFCI-005121-1375_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Malignant rhabdoid tumor", + "code": "Squamous cell carcinoma, NOS", "system": "GDC" } ], - "text": "Malignant rhabdoid tumor" + "text": "Squamous cell carcinoma, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Lip", + "code": "Hypopharynx", "system": "GDC" } ], - "text": "Lip" + "text": "Hypopharynx" } } ], @@ -41843,11 +50415,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Unknown", + "code": "Not Reported", "system": "GDC" } ], - "text": "unknown" + "text": "not reported" } } ] @@ -41856,64 +50428,68 @@ "morphology": { "coding": [ { - "code": "8963/3", + "code": "8070/3", "system": "GDC" } ], - "text": "8963/3" + "text": "8070/3" }, "related_specimen": [ { - "id": "ac3e795d-69a1-57f5-9dec-5b59e2523091", - "source_material_type": "Blood Derived Normal", - "creation_activity": { - "date_ended": { - "date_time": "2016-02-17T11:50:17.531058-06:00" - } + "id": "eadf6e9a-c6c3-444c-8e93-8ab77ed87d09", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" - }, - { - "id": "eb5eeeae-6bd7-511e-9f13-51531684c774", - "source_material_type": "Primary Tumor", "creation_activity": { "date_ended": { - "date_time": "2016-02-17T11:50:17.531058-06:00" + "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "9a11a042-337d-5a91-b483-093f98b0b72f", + "id": "22080645-9bd1-4303-ae61-8228c254dc24", "identifier": [ { - "value": "TARGET-52-PARKKN_diagnosis", + "value": "GENIE-MSK-P-0002746-T01-IM3_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Malignant rhabdoid tumor", + "code": "Squamous cell carcinoma, NOS", "system": "GDC" } ], - "text": "Malignant rhabdoid tumor" + "text": "Squamous cell carcinoma, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Lip", + "code": "Larynx", "system": "GDC" } ], - "text": "Lip" + "text": "Larynx" } } ], @@ -41933,11 +50509,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Unknown", + "code": "Not Reported", "system": "GDC" } ], - "text": "unknown" + "text": "not reported" } } ] @@ -41946,31 +50522,46 @@ "morphology": { "coding": [ { - "code": "8963/3", + "code": "8070/3", "system": "GDC" } ], - "text": "8963/3" + "text": "8070/3" }, "related_specimen": [ { - "id": "ced7edc7-a9ff-5d30-a63d-dbed4edfe497", - "source_material_type": "Primary Tumor", + "id": "c74deddd-6181-4108-baf3-4d750d877606", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { - "date_time": "2016-02-17T11:50:17.531058-06:00" + "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "d1368e23-4a00-5b0c-ad28-56a5a4dbd833", + "id": "d813126a-5e28-5c5a-8730-598f0d047584", "identifier": [ { - "value": "TARGET-52-PATYUA_diagnosis", + "value": "TARGET-52-PATBLF_diagnosis", "system": "GDC-submitter-id" } ], @@ -42033,23 +50624,288 @@ }, "related_specimen": [ { - "id": "83a37c0f-ac29-558c-b7dc-a9fcfed82b61", - "source_material_type": "Primary Tumor", + "id": "ac3e795d-69a1-57f5-9dec-5b59e2523091", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "creation_activity": { + "date_ended": { + "date_time": "2016-02-17T11:50:17.531058-06:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } + }, + { + "id": "eb5eeeae-6bd7-511e-9f13-51531684c774", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2016-02-17T11:50:17.531058-06:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } } ] }, { - "id": "2e79ab38-e511-5e60-8c81-1584d28a909e", + "id": "9a11a042-337d-5a91-b483-093f98b0b72f", "identifier": [ { - "value": "TARGET-52-PASVDP_diagnosis", + "value": "TARGET-52-PARKKN_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Malignant rhabdoid tumor", + "system": "GDC" + } + ], + "text": "Malignant rhabdoid tumor" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Lip", + "system": "GDC" + } + ], + "text": "Lip" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Unknown", + "system": "GDC" + } + ], + "text": "unknown" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8963/3", + "system": "GDC" + } + ], + "text": "8963/3" + }, + "related_specimen": [ + { + "id": "ced7edc7-a9ff-5d30-a63d-dbed4edfe497", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2016-02-17T11:50:17.531058-06:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } + } + ] + }, + { + "id": "d1368e23-4a00-5b0c-ad28-56a5a4dbd833", + "identifier": [ + { + "value": "TARGET-52-PATYUA_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Malignant rhabdoid tumor", + "system": "GDC" + } + ], + "text": "Malignant rhabdoid tumor" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Lip", + "system": "GDC" + } + ], + "text": "Lip" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Unknown", + "system": "GDC" + } + ], + "text": "unknown" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8963/3", + "system": "GDC" + } + ], + "text": "8963/3" + }, + "related_specimen": [ + { + "id": "83a37c0f-ac29-558c-b7dc-a9fcfed82b61", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2016-02-17T11:50:17.531058-06:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } + } + ] + }, + { + "id": "2e79ab38-e511-5e60-8c81-1584d28a909e", + "identifier": [ + { + "value": "TARGET-52-PASVDP_diagnosis", "system": "GDC-submitter-id" } ], @@ -42113,25 +50969,73 @@ "related_specimen": [ { "id": "fd9ff1de-6856-5a42-ad32-2e3aa28dc2d7", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2016-02-17T11:50:17.531058-06:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } }, { "id": "a28e1682-4703-527b-bd4e-81f86fa6f35a", - "source_material_type": "Blood Derived Normal", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, "creation_activity": { "date_ended": { "date_time": "2016-02-17T11:50:17.531058-06:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } } ] }, @@ -42203,14 +51107,38 @@ "related_specimen": [ { "id": "e5a4af40-c272-5aeb-942c-4be4614b4cfd", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2016-02-17T11:50:17.531058-06:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } } ] }, @@ -42282,25 +51210,73 @@ "related_specimen": [ { "id": "1d3eef26-a725-51f7-95fa-139d1a7da76e", - "source_material_type": "Blood Derived Normal", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, "creation_activity": { "date_ended": { "date_time": "2016-02-17T11:50:17.531058-06:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } }, { "id": "da724216-c1fe-5420-9e73-3a9d4b52bf1c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2016-02-17T11:50:17.531058-06:00" } }, - "general_tissue_morphology": "Not Reported", - "specific_tissue_morphology": "Rhabdoid tumor (kidney) (RT)" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + }, + "specific_tissue_morphology": { + "coding": [ + { + "code": "Rhabdoid tumor (kidney) (RT)", + "system": "GDC" + } + ], + "text": "Rhabdoid tumor (kidney) (RT)" + } } ] }, @@ -42372,13 +51348,29 @@ "related_specimen": [ { "id": "1853a05a-8846-4da3-9509-bff587eb6e8d", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -42621,28 +51613,92 @@ "related_specimen": [ { "id": "069b94fd-00fe-4073-bfca-3a3a8057d1f8", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "578cf44a-2d2c-416d-a428-69547378bb9b", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "875069b7-9411-4fb1-b8a2-992a052bee49", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9b557922-d796-48bd-b194-1fba8622f254", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -42865,23 +51921,71 @@ "related_specimen": [ { "id": "cf684788-d8e6-49da-8421-b2dbf040a529", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fb9d2ba0-7673-4587-ab69-0059fce2f671", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "bcb5da85-78d6-4519-9740-378587b1bd37", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -42953,13 +52057,29 @@ "related_specimen": [ { "id": "13654c9a-afcc-4635-9885-8418a318ac7a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -43182,28 +52302,92 @@ "related_specimen": [ { "id": "ddb758e6-20a8-4a28-ba98-798de978154f", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e850a80d-1b50-4ab6-ab36-1d1a5e697d7e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "21152590-1224-410e-aaf7-4088302c809f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "768e2bab-347b-4d90-887f-bf5692a91eb0", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -43426,28 +52610,92 @@ "related_specimen": [ { "id": "d7340d97-4ebd-4125-961a-9a5abe2f0ebb", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "58c15c00-ddad-4f65-9f03-1882b7f9a09b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "215c17d6-2035-48da-9d06-c54734042898", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "46be59da-3e8e-43cb-a4f4-6658b12f1fe9", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -43690,23 +52938,71 @@ "related_specimen": [ { "id": "eb25346e-0e28-4161-94c8-916b41f8d969", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "67289d96-8140-4ba1-9863-124950488c1d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "95525590-0eea-4017-be66-dc487b78299c", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -43929,28 +53225,92 @@ "related_specimen": [ { "id": "80eca6e9-b390-4878-a070-e40c1c19b1f4", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "1d594963-b5c3-496e-af52-5f6dbcd6910f", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "86b81c8d-ae15-477a-86fa-6e10f1263f87", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "bb0c2fd4-8ffd-4825-aaf2-e865090940c8", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -44193,23 +53553,71 @@ "related_specimen": [ { "id": "5d166131-946a-46de-b446-ea35d8b0e1a4", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "281693cb-2d6f-4a42-af26-d807ea67a191", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "1ce08042-34c7-450e-b1f5-8cdf9bfc5a77", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -44281,13 +53689,29 @@ "related_specimen": [ { "id": "f9e5d21f-2ee2-41c2-b864-f43d6a8357aa", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:58:03.635432-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -44359,13 +53783,29 @@ "related_specimen": [ { "id": "a3ca3ea8-6ea0-4585-8a50-294ca4c87a24", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:44.678712-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -44437,13 +53877,29 @@ "related_specimen": [ { "id": "78c3f61a-5719-4604-8ebe-c21057d3e416", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:13:38.880466-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -44515,13 +53971,29 @@ "related_specimen": [ { "id": "407047a0-1065-4e67-aee6-a3a66998deb8", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:54:19.535598-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -44753,23 +54225,71 @@ "related_specimen": [ { "id": "740cef36-1319-4096-8ba3-8e6fce6282da", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0c00768e-8b13-4b8e-80fc-b344740845f1", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9439bc03-9d26-454a-ba80-a0f5a4585656", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -45012,13 +54532,45 @@ "related_specimen": [ { "id": "69fe86c3-1e82-4583-9051-ffdb84224239", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ed5933bf-adaf-4bee-81fb-b1ec5782c248", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -45250,23 +54802,71 @@ "related_specimen": [ { "id": "617df1e0-b075-4610-b6d5-8850786fea70", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "27fb0ae5-d8a1-46ac-ad3e-2464c52d9cfd", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "88000b86-9334-41ef-847d-6668d17ec62b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -45509,23 +55109,71 @@ "related_specimen": [ { "id": "09b49e67-34d8-496e-b42a-5123fb516cc0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8ae503f5-a283-4bdf-8c82-de63f534bc85", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "43115789-cca5-4dc0-8377-e47b90c3f16f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -45768,23 +55416,71 @@ "related_specimen": [ { "id": "c812093b-04ce-4d3f-841d-9b81de63fc38", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "eac181d7-f8b8-4350-92aa-62d3fd1bd86b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6f150e98-8b4e-44ee-953b-1692d76c8868", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -45967,23 +55663,71 @@ "related_specimen": [ { "id": "0416608e-19db-43b8-ac11-87406b0164d0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a4b8631d-80aa-4665-86b4-0caa7241da66", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6f085b6d-6abf-4d89-a17a-89e6c7f8fcc2", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -46206,23 +55950,71 @@ "related_specimen": [ { "id": "a31ecf7e-1838-412b-ac34-6fd8810739c9", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "1737989d-8463-4761-b111-53e4fd396375", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7aa13049-917a-4d7a-bceb-3c718ec8fb7a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -46465,13 +56257,45 @@ "related_specimen": [ { "id": "9d258494-fb84-4435-aa3a-f5778ac061c5", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2da6f33b-4a9f-4cf6-ad8f-873be656a6f8", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -46703,23 +56527,71 @@ "related_specimen": [ { "id": "50e494e8-d48a-44ec-91b3-5755b42f70ee", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "dc6d258a-dba3-4186-bf89-9efb70a32365", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0b1a1f48-c58d-447a-be06-1f4e0c1c39d2", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -46962,13 +56834,45 @@ "related_specimen": [ { "id": "a49128ea-01e4-4587-845b-6b26bafa1c29", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "16b91d52-3168-44d9-bbbd-9f6e8b2582b6", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -47191,13 +57095,45 @@ "related_specimen": [ { "id": "13348e4e-8b8e-44b5-83e6-a1159a53ea35", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "251e8544-2c3c-4b31-a2b4-29b57e6ee4fd", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -47440,23 +57376,71 @@ "related_specimen": [ { "id": "f238d98a-1b53-4aae-8bdf-f85f0b9a066c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "68604eed-fd8f-4003-b9bf-ad0e1ecdf3b3", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "19c823d3-c15b-4a1c-9a27-6ce489f3b640", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -47699,23 +57683,71 @@ "related_specimen": [ { "id": "3b35e7e6-0e30-48be-9d22-d95fb49f1227", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d81234fd-4e10-469a-81e6-f23a192f1ef1", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "bd97a61f-6744-455f-88cf-2a418f2458a0", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -47938,23 +57970,71 @@ "related_specimen": [ { "id": "26c67c48-00d3-4491-b761-7941415a2c6f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b480eb37-ffe0-4626-b49d-dfc514a60886", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3f583e59-c92a-4257-8098-5d081642dea7", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -48177,23 +58257,71 @@ "related_specimen": [ { "id": "83b525ab-ad48-45fe-bbe9-54d6ce88054a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "afbf3020-1715-4e74-8224-05e316796999", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4d620a8e-517e-43b2-ad44-d9a8467e73a7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -48416,23 +58544,71 @@ "related_specimen": [ { "id": "3570ac4b-b585-4262-b54b-137a2515c689", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7ac8fb22-0a09-4b16-af8c-b5c2e90a968a", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a5c6b30f-2aa3-48bd-8415-bdce2444e49d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -48655,23 +58831,71 @@ "related_specimen": [ { "id": "39e3facf-6d13-4611-bcfa-90ef0350814d", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "be567c0a-3833-45d7-b846-d229a8e16e16", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8897e2b3-1863-43c7-a84f-fe53d12371f9", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -48914,23 +59138,71 @@ "related_specimen": [ { "id": "b9427fad-04aa-4e73-99ba-ccde04e4978b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5eacbcc3-8ac1-42bc-b3dd-53bc693d3cae", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3d9307b9-f42f-421b-bebe-ed692a5868ce", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -49173,23 +59445,71 @@ "related_specimen": [ { "id": "e0b45d74-3b6e-424f-86e7-2174d7c1245a", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "daaeaef7-3f0f-4155-908d-9aa6e536f94c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "50cca7c4-4586-43cd-a59e-3fdc646f5aba", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -49352,23 +59672,71 @@ "related_specimen": [ { "id": "f662e970-6a51-4164-8458-61e7ff054806", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "61c82e56-e64e-4fcb-bc5f-dc4fe34b6c58", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7a94106d-5604-4b73-9c54-54a72b12f52d", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -49571,23 +59939,71 @@ "related_specimen": [ { "id": "41ec6e82-6bcd-4057-a370-bfe1801e2e94", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "19c44a45-4f80-4d5a-beac-83db256a3434", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e22036a1-ed2f-44b4-8bca-bd9808611fd0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -49810,28 +60226,92 @@ "related_specimen": [ { "id": "418aadda-9f2f-43be-b171-866585aab114", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b4a36114-80d3-4f28-b85a-077dc31eb485", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3a13692e-cb77-464a-8ace-cba47f99247f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c552cf29-896d-4a47-8022-e5c57e27e70e", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -50063,23 +60543,71 @@ "related_specimen": [ { "id": "f3e5a16f-7c16-425e-8321-b6b19fd469d3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "111ad944-f78e-4ec6-967b-f05c49b49b1c", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "62fdf8f3-a028-453f-b27c-c2506be68cbe", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -50322,23 +60850,71 @@ "related_specimen": [ { "id": "fe1541c0-a239-428f-bf43-8b8b999d362e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0080b5ac-b9b2-4fef-ae51-6a6178325364", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "161b6a0e-0b50-41a1-bdf3-bd7666067454", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -50561,23 +61137,71 @@ "related_specimen": [ { "id": "f5589c89-0b94-4492-8a3c-84d58377e94f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b79164b1-7abb-4585-b23a-0e610734ea8b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0d53784e-011f-4890-9cf5-59e955dd1fea", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -50769,13 +61393,45 @@ "related_specimen": [ { "id": "6e926ab9-e086-48cb-876d-d490c46cb7f0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9c35c1ec-5ca6-4900-aa39-ab1c962b9c4d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -51018,23 +61674,71 @@ "related_specimen": [ { "id": "297ea792-1a29-44db-a14b-38513b50826f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e4157201-93f3-4f08-b3a9-dacb22671a57", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "87d8fec9-7ac3-4359-a6be-de270584ac1b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -51257,23 +61961,71 @@ "related_specimen": [ { "id": "f31d010d-cb3e-46da-9647-38fdb9d1bbc0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a6748675-5433-4f39-a578-9a1ddb8bb1b3", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0e81b0ef-6f16-4a56-9f18-8acad8bf9ccf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -51496,28 +62248,92 @@ "related_specimen": [ { "id": "dc649d39-482d-4855-b9e3-129552e5e421", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "657cf588-cca0-44c2-83b3-0e87f7a81f29", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f6130e55-1627-4d2f-bd8f-c0e778a1aa45", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3f70e2db-b313-4f3f-89e7-cd1c0acecf9b", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -51709,13 +62525,45 @@ "related_specimen": [ { "id": "d89d46ea-9a7a-4fd8-b11e-9c9ca4780119", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6fc08372-0d9d-4b3c-b656-9573fa532c99", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -51958,13 +62806,45 @@ "related_specimen": [ { "id": "027dedd3-bd53-420e-b7f2-eb5b8c26bcdc", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ff63290d-0644-4387-99bb-697150a7fb6b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -52196,23 +63076,71 @@ "related_specimen": [ { "id": "e45c81dc-4143-4e97-8212-85032c760221", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c98f1b7e-5d3c-4e07-9d9c-65c5a6ac6cd6", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7fddfc05-49ef-4ebc-8572-05059a5fc363", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -52455,23 +63383,71 @@ "related_specimen": [ { "id": "09e8433c-1f86-42c5-91c0-2512fc4a7fe9", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "eee85b30-6d16-4f53-aac1-b74f36a62d9a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "24e39735-725e-4627-82b6-c56ff33e3465", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -52634,13 +63610,45 @@ "related_specimen": [ { "id": "0c6b4631-381e-4b73-ac9e-62bbc1849ff4", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e49031dd-14f3-4f2c-8457-d0249c491ae9", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -52863,23 +63871,71 @@ "related_specimen": [ { "id": "3f9a9578-e8e6-47b7-af7b-31d9cffbfd3a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "28780b51-0b53-4d73-b399-ec90b45de0d3", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d773747d-fd09-4890-a436-9b212e19063b", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -53102,28 +64158,92 @@ "related_specimen": [ { "id": "24a2dd45-0453-4bfa-af4c-cde8cb0c0cfb", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5fe254fc-76cd-4081-a46f-574f2ec76d10", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e5ab53bf-073a-49e7-9402-8e7261d385c8", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "791203c3-4192-4844-b32a-0f21944333e1", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -53355,13 +64475,45 @@ "related_specimen": [ { "id": "d84c30b6-e217-4b2c-9dc1-16428264378d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ddad5854-74a2-4db5-94d1-41196a37be5e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -53584,28 +64736,92 @@ "related_specimen": [ { "id": "14098d2a-e40e-4f1a-bd76-f8bf7c339ee5", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d2491655-a4a1-4e4b-8f94-f50dc1c5d64c", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "cbcd3026-9f65-45c1-8fd8-d08f1b6b065e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "78a9bb84-9d21-40d2-9b0b-1ba8d888912d", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -53848,23 +65064,71 @@ "related_specimen": [ { "id": "34c0ddaa-1fcf-4e5c-b5bf-7cfae596c09d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c25592d6-b3d3-47b6-a3c5-3cbc81803152", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "1bae9a44-1ce3-45b1-9902-40faeba58120", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -54076,23 +65340,71 @@ "related_specimen": [ { "id": "904d5793-ae7f-492b-aaed-ea6cca865d63", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b1c47b2e-ba48-4f1f-b07e-f930b1135201", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9e397756-8535-40f2-9fc8-d0f1392a5e6d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -54324,23 +65636,71 @@ "related_specimen": [ { "id": "f450dbe6-4972-4c49-af97-963bcd0d0da0", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b916fa4a-1d15-4619-9d6c-1000e96b7e0d", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9491d6f0-1e3e-48e5-aabb-87704511904b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -54572,23 +65932,71 @@ "related_specimen": [ { "id": "54fda578-dfb1-4a1b-8b01-2b7e9292f387", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "66643338-ed21-460e-a1dc-b547c5b14500", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7dc1e99f-c601-48c2-8326-389d9f084e29", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -54811,23 +66219,71 @@ "related_specimen": [ { "id": "f4a14404-3545-44fc-953d-e441139e7fda", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4db1536b-23d0-48fb-91f8-248a03f58aa4", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4a485f87-1a73-42ec-af0d-0b6de2b23504", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -55059,23 +66515,71 @@ "related_specimen": [ { "id": "bbcc5141-d805-457d-bc4a-d424c8c39cb7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "01a4aa4a-f073-435c-a411-839760cbcb9f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "26026e2f-b112-4535-97ac-6956cb267e9e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -55318,23 +66822,71 @@ "related_specimen": [ { "id": "a88696d9-b36a-4fd7-b3ed-b6b31aa4094f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8f620b3e-2962-49da-bcaf-4ecfd9580923", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ddeeb19e-1929-488d-8e19-c6212b3b78fb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -55497,23 +67049,71 @@ "related_specimen": [ { "id": "b3a8b960-6807-42ec-b6a8-492d58de2b86", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "bfbfb315-632c-43e7-ae3b-61bcd82b0d3b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5e77db09-dc35-4cfa-ac78-0f7af0b742ec", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -55756,13 +67356,45 @@ "related_specimen": [ { "id": "b2ad9679-048c-43c4-9d78-45638ad5a493", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8f952c62-2404-484c-b8af-33ce60f4e024", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -55914,23 +67546,71 @@ "related_specimen": [ { "id": "76af13f8-fcb3-4324-b8aa-23ea1834c5d2", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "af7bb799-b091-45d9-a04e-074bb7840680", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ac4430c7-dbe4-432f-9763-81707431a0f0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -56153,28 +67833,92 @@ "related_specimen": [ { "id": "9308d3df-4126-470f-9dae-db9362050c29", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "979324ca-d8fa-4bbd-ad7e-1c663c5a4a9b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "162ba21b-8262-4815-9e65-5b064f0e5885", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7dafe515-fefb-4656-ab96-b72e09e041f7", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -56397,23 +68141,71 @@ "related_specimen": [ { "id": "cd2a5d45-9bae-4c96-b8dd-7ad079153a49", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "904e12f8-ab59-4ad8-8096-7b82f9388d70", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "cece12a4-5f68-4a6d-8815-e88495da08f4", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -56485,13 +68277,29 @@ "related_specimen": [ { "id": "e44b074f-5e47-4faa-bd94-7375982fbd90", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -56563,13 +68371,29 @@ "related_specimen": [ { "id": "094236a4-db5d-4e05-b020-5136ee6f4225", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -56792,28 +68616,92 @@ "related_specimen": [ { "id": "70b5b27d-3905-40de-8b70-9185cfc49d94", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5b2faa3f-c96e-42c6-81ce-a356852ea6a6", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "73d79c62-61b6-4e72-bc8d-c3fa2a344caf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "366f8ab0-ddd8-4383-9bc1-96ef342b749c", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57045,13 +68933,45 @@ "related_specimen": [ { "id": "6697dd71-5a58-4862-b26e-ea16dcc383f2", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b72390d2-f19e-493d-9a30-cd81dd232188", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57123,13 +69043,29 @@ "related_specimen": [ { "id": "72155863-300c-4515-962a-d0c332cf5b63", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:21:56.842750-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57201,13 +69137,29 @@ "related_specimen": [ { "id": "56e9e0e1-5435-4b6b-93a0-70564fe1aa27", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57279,13 +69231,29 @@ "related_specimen": [ { "id": "59d867e0-1111-4114-b47d-39b108eecf06", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57357,13 +69325,29 @@ "related_specimen": [ { "id": "68c9aea7-2d45-4200-b2e5-02aa0ab64d09", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57435,13 +69419,29 @@ "related_specimen": [ { "id": "fbd21489-29cd-4d9b-8d7c-e04342040edc", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57513,13 +69513,29 @@ "related_specimen": [ { "id": "d2ad484e-58b3-4e29-84e3-a45abb294b3a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-25T12:05:51.637331-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57591,13 +69607,29 @@ "related_specimen": [ { "id": "8b9e009a-6ead-4105-a148-8c8a44be0658", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57669,13 +69701,29 @@ "related_specimen": [ { "id": "afcf4bae-7e95-4306-9627-c9a9d6011dfa", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:31:25.700438-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57747,13 +69795,29 @@ "related_specimen": [ { "id": "a3eaae17-ef1a-442c-93cc-0fd82a8887bf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:18:52.539095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57825,13 +69889,29 @@ "related_specimen": [ { "id": "fe032782-a750-46b3-a282-26e110ed063a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57903,13 +69983,29 @@ "related_specimen": [ { "id": "cc589138-6e86-49ad-8d76-857543c02842", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:22:15.693629-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -57981,13 +70077,29 @@ "related_specimen": [ { "id": "d697e728-9813-4ff5-83eb-c7d814e07bcc", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:44.678712-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58059,13 +70171,29 @@ "related_specimen": [ { "id": "e15f8344-5f7f-4602-b2e3-8fcb0418cb8b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-28T12:05:42.341898-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58137,14 +70265,38 @@ "related_specimen": [ { "id": "425f42d0-0349-42bb-9072-cfb0bd97e922", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:00:26.233095-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58216,13 +70368,29 @@ "related_specimen": [ { "id": "3b018cb9-12c9-4445-b021-1fc93e0f74c2", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:37:30.937085-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58294,13 +70462,29 @@ "related_specimen": [ { "id": "90f2519b-17ba-40ad-baee-cb711b306a91", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58372,13 +70556,29 @@ "related_specimen": [ { "id": "ba279369-073d-4976-8439-3a318c0f0fc3", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:17:41.081467-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58450,13 +70650,29 @@ "related_specimen": [ { "id": "3eb1f15d-003c-42bc-8832-ea364ee8931b", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58528,99 +70744,37 @@ "related_specimen": [ { "id": "b33d58a0-8855-42ac-baaa-0a1e961307f4", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:42:00.849990-05:00" } }, - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "cee28001-9ebf-46a7-b387-e932076e5df8", - "identifier": [ - { - "value": "GENIE-MSK-P-0010817-T01-IM5_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "general_tissue_morphology": { "coding": [ { - "code": "Larynx", + "code": "Not Reported", "system": "GDC" } ], - "text": "Larynx" - } - } - ], - "stage": [ - { - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Not Reported", - "system": "GDC" - } - ], - "text": "not reported" - } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" + "text": "Not Reported" } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "08a27a81-561d-41f1-9d99-6266c1f230c9", - "source_material_type": "Primary Tumor", - "creation_activity": { - "date_ended": { - "date_time": "2018-10-03T04:13:38.880466-05:00" - } - }, - "general_tissue_morphology": "Not Reported" } ] }, { - "id": "de59133c-2442-490c-9f22-057c8a47ff70", + "id": "cee28001-9ebf-46a7-b387-e932076e5df8", "identifier": [ { - "value": "GENIE-MSK-P-0008518-T01-IM5_diagnosis", + "value": "GENIE-MSK-P-0010817-T01-IM5_diagnosis", "system": "GDC-submitter-id" } ], @@ -58638,11 +70792,105 @@ "site": { "coding": [ { - "code": "Oropharynx", + "code": "Larynx", "system": "GDC" } ], - "text": "Oropharynx" + "text": "Larynx" + } + } + ], + "stage": [ + { + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8070/3", + "system": "GDC" + } + ], + "text": "8070/3" + }, + "related_specimen": [ + { + "id": "08a27a81-561d-41f1-9d99-6266c1f230c9", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-10-03T04:13:38.880466-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "de59133c-2442-490c-9f22-057c8a47ff70", + "identifier": [ + { + "value": "GENIE-MSK-P-0008518-T01-IM5_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Oropharynx", + "system": "GDC" + } + ], + "text": "Oropharynx" } } ], @@ -58684,13 +70932,29 @@ "related_specimen": [ { "id": "f4e28471-79a4-456e-bba8-db331560bdb0", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:09:54.181448-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58762,13 +71026,29 @@ "related_specimen": [ { "id": "2da79fb4-bd1b-4518-a6a2-6159251d65fb", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58840,13 +71120,29 @@ "related_specimen": [ { "id": "1bd46cb2-e563-4a48-a36e-ea4f7a15173f", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:42:39.927651-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -58918,14 +71214,38 @@ "related_specimen": [ { "id": "fc50dce3-ca12-4a52-a8fd-27dcd3887746", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:46:29.991257-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -59157,23 +71477,71 @@ "related_specimen": [ { "id": "591e99ec-46f9-442d-ac20-745dccc8a52b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d0161f8c-9c53-47ad-895c-40d1be3a814e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5e4e1e21-8016-4e27-8f72-2411714203e8", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -59294,11 +71662,292 @@ "value_codeable_concept": { "coding": [ { - "code": "N2c", + "code": "N2c", + "system": "GDC" + } + ], + "text": "N2c" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Clinical Metastasis (M)", + "system": "GDC" + } + ], + "text": "Clinical Metastasis (M)" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "M0", + "system": "GDC" + } + ], + "text": "M0" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Pathological Overall", + "system": "GDC" + } + ], + "text": "Pathological Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Stage III", + "system": "GDC" + } + ], + "text": "Stage III" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Pathological Tumor (T)", + "system": "GDC" + } + ], + "text": "Pathological Tumor (T)" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "T1", + "system": "GDC" + } + ], + "text": "T1" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Pathological Node (N)", + "system": "GDC" + } + ], + "text": "Pathological Node (N)" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "N1", + "system": "GDC" + } + ], + "text": "N1" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Pathological Metastasis (M)", + "system": "GDC" + } + ], + "text": "Pathological Metastasis (M)" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "MX", + "system": "GDC" + } + ], + "text": "MX" + } + } + ] + } + ], + "morphology": { + "coding": [ + { + "code": "8072/3", + "system": "GDC" + } + ], + "text": "8072/3" + }, + "related_specimen": [ + { + "id": "882c6ec3-1f56-43c3-8a41-da060f9f5ee1", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + }, + { + "id": "bea32bd5-4068-4351-994e-09b3bf819ebb", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + } + ] + }, + { + "id": "28f3f8b9-df0c-5c03-8414-89640fa631c5", + "identifier": [ + { + "value": "TCGA-H7-A76A_diagnosis", + "system": "GDC-submitter-id" + } + ], + "condition": { + "coding": [ + { + "code": "Squamous cell carcinoma, keratinizing, NOS", + "system": "GDC" + } + ], + "text": "Squamous cell carcinoma, keratinizing, NOS" + }, + "metastatic_site": [ + { + "site": { + "coding": [ + { + "code": "Tonsil", + "system": "GDC" + } + ], + "text": "Tonsil" + } + } + ], + "stage": [ + { + "method_type": [ + { + "coding": [ + { + "code": "AJCC staging system 7th edition", + "system": "GDC" + } + ], + "text": "7th" + } + ], + "observations": [ + { + "observation_type": { + "coding": [ + { + "code": "Overall", + "system": "GDC" + } + ], + "text": "Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "not reported" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Clinical Overall", + "system": "GDC" + } + ], + "text": "Clinical Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Stage IVA", + "system": "GDC" + } + ], + "text": "Stage IVA" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Clinical Tumor (T)", + "system": "GDC" + } + ], + "text": "Clinical Tumor (T)" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "T2", + "system": "GDC" + } + ], + "text": "T2" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Clinical Node (N)", + "system": "GDC" + } + ], + "text": "Clinical Node (N)" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "N2b", "system": "GDC" } ], - "text": "N2c" + "text": "N2b" } }, { @@ -59321,26 +71970,6 @@ "text": "M0" } }, - { - "observation_type": { - "coding": [ - { - "code": "Pathological Overall", - "system": "GDC" - } - ], - "text": "Pathological Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Stage III", - "system": "GDC" - } - ], - "text": "Stage III" - } - }, { "observation_type": { "coding": [ @@ -59354,11 +71983,11 @@ "value_codeable_concept": { "coding": [ { - "code": "T1", + "code": "TX", "system": "GDC" } ], - "text": "T1" + "text": "TX" } }, { @@ -59374,11 +72003,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N1", + "code": "N2b", "system": "GDC" } ], - "text": "N1" + "text": "N2b" } }, { @@ -59407,68 +72036,115 @@ "morphology": { "coding": [ { - "code": "8072/3", + "code": "8071/3", "system": "GDC" } ], - "text": "8072/3" + "text": "8071/3" }, "related_specimen": [ { - "id": "882c6ec3-1f56-43c3-8a41-da060f9f5ee1", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "id": "78229167-1f08-416d-be98-74f757610349", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { - "id": "bea32bd5-4068-4351-994e-09b3bf819ebb", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "id": "148ec5a3-19ed-4949-bf37-9bc4e6203966", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + }, + { + "id": "452e53e7-b219-4ba7-b8ab-870e1ba4423b", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-05-17T12:19:46.292188-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "28f3f8b9-df0c-5c03-8414-89640fa631c5", + "id": "b8812861-0e19-58f0-bccf-667970cdb04c", "identifier": [ { - "value": "TCGA-H7-A76A_diagnosis", + "value": "TCGA-CR-7399_diagnosis", "system": "GDC-submitter-id" } ], "condition": { "coding": [ { - "code": "Squamous cell carcinoma, keratinizing, NOS", + "code": "Squamous cell carcinoma, NOS", "system": "GDC" } ], - "text": "Squamous cell carcinoma, keratinizing, NOS" + "text": "Squamous cell carcinoma, NOS" }, "metastatic_site": [ { "site": { "coding": [ { - "code": "Tonsil", + "code": "Larynx", "system": "GDC" } ], - "text": "Tonsil" + "text": "Larynx" } } ], "stage": [ { - "method_type": [ - { - "coding": [ - { - "code": "AJCC staging system 7th edition", - "system": "GDC" - } - ], - "text": "7th" - } - ], "observations": [ { "observation_type": { @@ -59483,11 +72159,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Not Reported", + "code": "Stage IVA", "system": "GDC" } ], - "text": "not reported" + "text": "stage iva" } }, { @@ -59523,11 +72199,11 @@ "value_codeable_concept": { "coding": [ { - "code": "T2", + "code": "T4a", "system": "GDC" } ], - "text": "T2" + "text": "T4a" } }, { @@ -59543,11 +72219,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N2b", + "code": "N2c", "system": "GDC" } ], - "text": "N2b" + "text": "N2c" } }, { @@ -59570,6 +72246,26 @@ "text": "M0" } }, + { + "observation_type": { + "coding": [ + { + "code": "Pathological Overall", + "system": "GDC" + } + ], + "text": "Pathological Overall" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "Stage IVA", + "system": "GDC" + } + ], + "text": "Stage IVA" + } + }, { "observation_type": { "coding": [ @@ -59583,11 +72279,11 @@ "value_codeable_concept": { "coding": [ { - "code": "TX", + "code": "T3", "system": "GDC" } ], - "text": "TX" + "text": "T3" } }, { @@ -59603,11 +72299,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N2b", + "code": "N2c", "system": "GDC" } ], - "text": "N2b" + "text": "N2c" } }, { @@ -59623,11 +72319,11 @@ "value_codeable_concept": { "coding": [ { - "code": "MX", + "code": "M0", "system": "GDC" } ], - "text": "MX" + "text": "M0" } } ] @@ -59636,40 +72332,62 @@ "morphology": { "coding": [ { - "code": "8071/3", + "code": "8070/3", "system": "GDC" } ], - "text": "8071/3" + "text": "8070/3" }, "related_specimen": [ { - "id": "78229167-1f08-416d-be98-74f757610349", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" - }, - { - "id": "148ec5a3-19ed-4949-bf37-9bc4e6203966", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "id": "3dd4255a-7359-4b51-8a0b-44d9e249956b", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { - "id": "452e53e7-b219-4ba7-b8ab-870e1ba4423b", - "source_material_type": "Primary Tumor", - "creation_activity": { - "date_ended": { - "date_time": "2018-05-17T12:19:46.292188-05:00" - } + "id": "05c3d8a0-47a2-44b2-b0c3-144ec0cb2673", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "b8812861-0e19-58f0-bccf-667970cdb04c", + "id": "843f33f9-e390-52bc-90c8-fba0a4557916", "identifier": [ { - "value": "TCGA-CR-7399_diagnosis", + "value": "TCGA-UF-A7JV_diagnosis", "system": "GDC-submitter-id" } ], @@ -59687,16 +72405,27 @@ "site": { "coding": [ { - "code": "Larynx", + "code": "Hypopharynx", "system": "GDC" } ], - "text": "Larynx" + "text": "Hypopharynx" } } ], "stage": [ { + "method_type": [ + { + "coding": [ + { + "code": "AJCC staging system 7th edition", + "system": "GDC" + } + ], + "text": "7th" + } + ], "observations": [ { "observation_type": { @@ -59831,11 +72560,11 @@ "value_codeable_concept": { "coding": [ { - "code": "T3", + "code": "T4a", "system": "GDC" } ], - "text": "T3" + "text": "T4a" } }, { @@ -59851,11 +72580,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N2c", + "code": "N2b", "system": "GDC" } ], - "text": "N2c" + "text": "N2b" } }, { @@ -59892,22 +72621,80 @@ }, "related_specimen": [ { - "id": "3dd4255a-7359-4b51-8a0b-44d9e249956b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "id": "c312a7a4-ba29-49a9-b4dc-876505a6a6c4", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "creation_activity": { + "date_ended": { + "date_time": "2018-05-17T12:19:46.292188-05:00" + } + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { - "id": "05c3d8a0-47a2-44b2-b0c3-144ec0cb2673", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "id": "eed0dcf3-36a2-4890-bb02-e8b56ba4d8d8", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + }, + { + "id": "a1d62ba6-696c-4693-9067-d4226a4e6316", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "843f33f9-e390-52bc-90c8-fba0a4557916", + "id": "b1c3bd39-9f13-5dba-aeeb-86271bf64b8d", "identifier": [ { - "value": "TCGA-UF-A7JV_diagnosis", + "value": "TCGA-CV-7242_diagnosis", "system": "GDC-submitter-id" } ], @@ -59925,11 +72712,11 @@ "site": { "coding": [ { - "code": "Hypopharynx", + "code": "Larynx", "system": "GDC" } ], - "text": "Hypopharynx" + "text": "Larynx" } } ], @@ -59960,11 +72747,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Stage IVA", + "code": "Stage II", "system": "GDC" } ], - "text": "stage iva" + "text": "stage ii" } }, { @@ -59980,11 +72767,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Stage IVA", + "code": "Stage III", "system": "GDC" } ], - "text": "Stage IVA" + "text": "Stage III" } }, { @@ -60000,11 +72787,11 @@ "value_codeable_concept": { "coding": [ { - "code": "T4a", + "code": "T3", "system": "GDC" } ], - "text": "T4a" + "text": "T3" } }, { @@ -60020,11 +72807,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N2c", + "code": "N0", "system": "GDC" } ], - "text": "N2c" + "text": "N0" } }, { @@ -60060,11 +72847,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Stage IVA", + "code": "Stage II", "system": "GDC" } ], - "text": "Stage IVA" + "text": "Stage II" } }, { @@ -60080,11 +72867,11 @@ "value_codeable_concept": { "coding": [ { - "code": "T4a", + "code": "T2", "system": "GDC" } ], - "text": "T4a" + "text": "T2" } }, { @@ -60100,31 +72887,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N2b", - "system": "GDC" - } - ], - "text": "N2b" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Pathological Metastasis (M)", - "system": "GDC" - } - ], - "text": "Pathological Metastasis (M)" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "M0", + "code": "N0", "system": "GDC" } ], - "text": "M0" + "text": "N0" } } ] @@ -60141,32 +72908,101 @@ }, "related_specimen": [ { - "id": "c312a7a4-ba29-49a9-b4dc-876505a6a6c4", - "source_material_type": "Primary Tumor", + "id": "4fdddf85-30de-4666-89d2-0683e9264d6d", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } + }, + { + "id": "6b4b146e-e6c5-454d-9c4f-66a6f851c3fe", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { - "id": "eed0dcf3-36a2-4890-bb02-e8b56ba4d8d8", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "id": "a45efd70-9bee-4c18-82b1-666d2c1eb781", + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { - "id": "a1d62ba6-696c-4693-9067-d4226a4e6316", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "id": "f9dea7a5-e9d2-48a6-bbc1-c5c1f8e7ee67", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "b1c3bd39-9f13-5dba-aeeb-86271bf64b8d", + "id": "de41284b-65f5-592e-99bb-9157a9509c36", "identifier": [ { - "value": "TCGA-CV-7242_diagnosis", + "value": "TCGA-T3-A92M_diagnosis", "system": "GDC-submitter-id" } ], @@ -60219,11 +73055,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Stage II", + "code": "Stage IVA", "system": "GDC" } ], - "text": "stage ii" + "text": "stage iva" } }, { @@ -60239,11 +73075,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Stage III", + "code": "Stage IVA", "system": "GDC" } ], - "text": "Stage III" + "text": "Stage IVA" } }, { @@ -60259,11 +73095,11 @@ "value_codeable_concept": { "coding": [ { - "code": "T3", + "code": "T4a", "system": "GDC" } ], - "text": "T3" + "text": "T4a" } }, { @@ -60279,11 +73115,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N0", + "code": "N2c", "system": "GDC" } ], - "text": "N0" + "text": "N2c" } }, { @@ -60319,11 +73155,11 @@ "value_codeable_concept": { "coding": [ { - "code": "Stage II", + "code": "Stage IVA", "system": "GDC" } ], - "text": "Stage II" + "text": "Stage IVA" } }, { @@ -60339,11 +73175,11 @@ "value_codeable_concept": { "coding": [ { - "code": "T2", + "code": "T4a", "system": "GDC" } ], - "text": "T2" + "text": "T4a" } }, { @@ -60359,11 +73195,31 @@ "value_codeable_concept": { "coding": [ { - "code": "N0", + "code": "N2c", "system": "GDC" } ], - "text": "N0" + "text": "N2c" + } + }, + { + "observation_type": { + "coding": [ + { + "code": "Pathological Metastasis (M)", + "system": "GDC" + } + ], + "text": "Pathological Metastasis (M)" + }, + "value_codeable_concept": { + "coding": [ + { + "code": "MX", + "system": "GDC" + } + ], + "text": "MX" } } ] @@ -60380,37 +73236,80 @@ }, "related_specimen": [ { - "id": "4fdddf85-30de-4666-89d2-0683e9264d6d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "id": "86c72a0c-24c8-4d55-9f87-6b7198a10890", + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { - "id": "6b4b146e-e6c5-454d-9c4f-66a6f851c3fe", - "source_material_type": "Primary Tumor", + "id": "cdefaeb2-3a2b-4094-b25e-0c509b62c13b", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" - }, - { - "id": "a45efd70-9bee-4c18-82b1-666d2c1eb781", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { - "id": "f9dea7a5-e9d2-48a6-bbc1-c5c1f8e7ee67", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "id": "d22843cb-8a14-4592-b339-a04cf1514205", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, { - "id": "de41284b-65f5-592e-99bb-9157a9509c36", + "id": "6bbf8ace-0b17-57e5-bf9e-2c164cb28e53", "identifier": [ { - "value": "TCGA-T3-A92M_diagnosis", + "value": "TCGA-F7-A50I_diagnosis", "system": "GDC-submitter-id" } ], @@ -60470,86 +73369,6 @@ "text": "stage iva" } }, - { - "observation_type": { - "coding": [ - { - "code": "Clinical Overall", - "system": "GDC" - } - ], - "text": "Clinical Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Stage IVA", - "system": "GDC" - } - ], - "text": "Stage IVA" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Clinical Tumor (T)", - "system": "GDC" - } - ], - "text": "Clinical Tumor (T)" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "T4a", - "system": "GDC" - } - ], - "text": "T4a" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Clinical Node (N)", - "system": "GDC" - } - ], - "text": "Clinical Node (N)" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "N2c", - "system": "GDC" - } - ], - "text": "N2c" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Clinical Metastasis (M)", - "system": "GDC" - } - ], - "text": "Clinical Metastasis (M)" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "M0", - "system": "GDC" - } - ], - "text": "M0" - } - }, { "observation_type": { "coding": [ @@ -60603,11 +73422,11 @@ "value_codeable_concept": { "coding": [ { - "code": "N2c", + "code": "N0", "system": "GDC" } ], - "text": "N2c" + "text": "N0" } }, { @@ -60623,11 +73442,11 @@ "value_codeable_concept": { "coding": [ { - "code": "MX", + "code": "M0", "system": "GDC" } ], - "text": "MX" + "text": "M0" } } ] @@ -60644,203 +73463,72 @@ }, "related_specimen": [ { - "id": "86c72a0c-24c8-4d55-9f87-6b7198a10890", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" - }, - { - "id": "cdefaeb2-3a2b-4094-b25e-0c509b62c13b", - "source_material_type": "Primary Tumor", - "creation_activity": { - "date_ended": { - "date_time": "2018-05-17T12:19:46.292188-05:00" - } - }, - "general_tissue_morphology": "Not Reported" - }, - { - "id": "d22843cb-8a14-4592-b339-a04cf1514205", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" - } - ] - }, - { - "id": "6bbf8ace-0b17-57e5-bf9e-2c164cb28e53", - "identifier": [ - { - "value": "TCGA-F7-A50I_diagnosis", - "system": "GDC-submitter-id" - } - ], - "condition": { - "coding": [ - { - "code": "Squamous cell carcinoma, NOS", - "system": "GDC" - } - ], - "text": "Squamous cell carcinoma, NOS" - }, - "metastatic_site": [ - { - "site": { + "id": "5eb175ff-1b47-463a-8f16-4b59914457bc", + "source_material_type": { "coding": [ { - "code": "Larynx", + "code": "Primary Tumor", "system": "GDC" } ], - "text": "Larynx" - } - } - ], - "stage": [ - { - "method_type": [ - { - "coding": [ - { - "code": "AJCC staging system 7th edition", - "system": "GDC" - } - ], - "text": "7th" - } - ], - "observations": [ - { - "observation_type": { - "coding": [ - { - "code": "Overall", - "system": "GDC" - } - ], - "text": "Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Stage IVA", - "system": "GDC" - } - ], - "text": "stage iva" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Pathological Overall", - "system": "GDC" - } - ], - "text": "Pathological Overall" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "Stage IVA", - "system": "GDC" - } - ], - "text": "Stage IVA" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Pathological Tumor (T)", - "system": "GDC" - } - ], - "text": "Pathological Tumor (T)" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "T4a", - "system": "GDC" - } - ], - "text": "T4a" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Pathological Node (N)", - "system": "GDC" - } - ], - "text": "Pathological Node (N)" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "N0", - "system": "GDC" - } - ], - "text": "N0" - } - }, - { - "observation_type": { - "coding": [ - { - "code": "Pathological Metastasis (M)", - "system": "GDC" - } - ], - "text": "Pathological Metastasis (M)" - }, - "value_codeable_concept": { - "coding": [ - { - "code": "M0", - "system": "GDC" - } - ], - "text": "M0" + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" } - } - ] - } - ], - "morphology": { - "coding": [ - { - "code": "8070/3", - "system": "GDC" + ], + "text": "Not Reported" } - ], - "text": "8070/3" - }, - "related_specimen": [ - { - "id": "5eb175ff-1b47-463a-8f16-4b59914457bc", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" }, { "id": "384902a7-fa03-4083-9baf-7ce114694c9d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ccd8f2ed-5a6a-460f-b692-ee7d78e29b18", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -61003,23 +73691,71 @@ "related_specimen": [ { "id": "fce64b88-8be6-4710-83be-18c9afdf13ed", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ec7fe5e6-74af-4bd2-9ecb-8e302f763b22", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "77b774a4-9456-4907-86e6-9ff2dd87b8fd", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -61171,13 +73907,45 @@ "related_specimen": [ { "id": "f1e46036-7b4f-4cca-a150-f2d8e599fdf7", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c226c7c5-64e6-4790-a420-c2f4e0196453", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -61400,23 +74168,71 @@ "related_specimen": [ { "id": "6e767fc9-0f5a-49ec-999a-cda2daeba6ff", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "47e7b839-bde5-4b66-98da-7ed6e3e7c29b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "60c8633c-16f9-4066-8aad-311b04b935e5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -61659,23 +74475,71 @@ "related_specimen": [ { "id": "d278f388-2a5f-407f-886d-961272ca28eb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "dbea2268-ac62-4ab7-aa7d-86f029fcb2df", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "76240522-a39e-48c7-80e0-241277fdb705", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -61747,13 +74611,29 @@ "related_specimen": [ { "id": "151f2c1e-f448-4fa5-9b61-81dc5c339f58", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-27T19:26:40.896040-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -61905,23 +74785,71 @@ "related_specimen": [ { "id": "2027ede3-13f5-40f6-bef6-16704981d676", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3423d96f-4c5a-40f7-8e66-3dd4b9818f52", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "25b0ae1d-2add-49b9-a5ae-99702a5c48f4", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -62164,23 +75092,71 @@ "related_specimen": [ { "id": "c03b3dfa-7b9b-4a21-9274-d174bc14440b", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "343c1ea3-2785-465f-b01a-2d609b486ef9", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d9095c8b-414f-41d4-a478-ee54d2728762", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -62252,13 +75228,29 @@ "related_specimen": [ { "id": "271c4064-6b2e-4971-853f-e3f2a1cdd74a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -62330,13 +75322,29 @@ "related_specimen": [ { "id": "34487c7a-5f9a-41b0-8ced-d7c2ce3653e2", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:54:19.535598-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -62408,13 +75416,29 @@ "related_specimen": [ { "id": "b882dbe8-5494-4092-8bad-ccca6b119775", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:09:54.181448-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -62486,13 +75510,29 @@ "related_specimen": [ { "id": "b9d46cb7-1679-4998-853f-03e5827cbb53", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:35:23.418160-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -62564,13 +75604,29 @@ "related_specimen": [ { "id": "fbb548d6-a035-43c3-99a4-7fb2892ade49", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:58:03.635432-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -62813,23 +75869,71 @@ "related_specimen": [ { "id": "7ce8968e-f693-4fa2-945a-0cea27c96ede", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f4e12699-7e71-42ba-994a-c3a9a71a95cb", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f4cf2a66-8872-41ee-8270-296d5f76265f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -63072,23 +76176,71 @@ "related_specimen": [ { "id": "f7831fa0-1f1d-4623-aba0-8117b925a1ee", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b99fa26a-da90-4b98-bea0-f0c71a1b6ea3", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8aa78dee-bc22-4d4b-86d6-60fb80358da8", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -63311,28 +76463,92 @@ "related_specimen": [ { "id": "aaa6607c-e333-4f99-b1dc-390c3cad4f1b", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d455327a-a947-4a67-8fb5-44438abe5976", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f0684e03-2d91-4e9b-9d11-a3063ccc2f34", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c8ac9749-82ff-4348-8d91-5ce677697a15", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -63555,23 +76771,71 @@ "related_specimen": [ { "id": "d018cd44-6b01-44f2-9181-81153225aab8", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8b510bc8-7b3c-4861-9a40-c2c30b7099e0", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c0c84016-117e-498c-9ed9-52e279e89e33", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -63794,23 +77058,71 @@ "related_specimen": [ { "id": "e7a7e296-3f1b-49f5-bbaa-082f918d080d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7b56068d-21e9-4879-b747-c99943e40e50", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b0d4b16c-cc81-405f-83a1-de57cb488166", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -64042,23 +77354,71 @@ "related_specimen": [ { "id": "cc710f34-9fb5-4474-84df-5427b59aa062", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ae3f666a-0c18-41c1-b00e-90cd85a2f987", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "65b091e0-fd47-4f4c-87f1-b2ba9c2766c5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -64301,23 +77661,71 @@ "related_specimen": [ { "id": "b67c34c3-8e4e-41cc-865d-43ee8c9d3d78", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "410b2727-8446-41b1-92b9-42671d118a39", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6d2f2d82-2fa5-44ea-a714-85c05b5bd255", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -64560,23 +77968,71 @@ "related_specimen": [ { "id": "a9ebdedd-056f-4bc1-abc2-7089544a1549", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4a339708-153a-4780-a265-70557765a754", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "e62166c3-871d-4b0f-999a-4f033d7cb6c7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -64808,23 +78264,71 @@ "related_specimen": [ { "id": "ae1a6096-8d51-482a-8c44-cbfdc7dd6458", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0bc27973-621c-4011-bcbd-3b7f3464389e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5e42be68-8865-4c69-8684-0f6e5c6c9b94", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -65047,28 +78551,92 @@ "related_specimen": [ { "id": "76de8a78-90b8-4928-8dc1-bf3b8157382f", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "37f4a944-d427-4f41-9d27-982a910103e8", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "05aa5c47-cbde-491e-b8d7-a60cfe1ca2d9", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6883e88c-05a5-4ae7-a43f-40d4f35a3a2d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -65291,23 +78859,71 @@ "related_specimen": [ { "id": "f70fece0-2fb1-4d8f-955b-7b9bbfeb9755", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "746322c7-fe75-4b9f-9309-93e9cfa4cb5a", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "4863312a-043e-418e-812d-2ae2a1f66f29", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -65550,13 +79166,45 @@ "related_specimen": [ { "id": "7d93ba42-9e87-4a6c-8b0d-6f185645a90a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9ca906ce-18f9-41c5-afcc-353b26fdebaa", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -65799,23 +79447,71 @@ "related_specimen": [ { "id": "5be42d60-80c3-486f-8717-801fec0c89d3", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fbceb407-e7f8-4942-8689-854f8999672c", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5df6c457-baef-451d-b1cf-eb7fa6adc602", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -66038,23 +79734,71 @@ "related_specimen": [ { "id": "7c56b9e6-8fd8-4d39-92f0-a24c80270dda", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2920ca1c-6035-4350-ada4-c60d485dbfff", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "99ca3c12-0d63-428f-8b1b-03e4a3e8e233", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -66246,13 +79990,45 @@ "related_specimen": [ { "id": "339524bc-bc1f-403c-a12f-6e8ce72fba50", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0e357973-d52d-4fc7-8099-7b87458745e2", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -66495,13 +80271,45 @@ "related_specimen": [ { "id": "81bbc439-0c8c-4d39-bef2-03901b31c50e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a76bfc3e-fa46-4a65-88e7-c644c8b20098", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -66724,23 +80532,71 @@ "related_specimen": [ { "id": "63bdeeca-a7b1-47fb-9945-c24f7513c56c", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2c2db97c-8c8d-4f1e-ab73-469238609d61", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9e25f49c-cd83-4171-9e07-51aca3fb1019", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -66932,23 +80788,71 @@ "related_specimen": [ { "id": "c807171a-4433-4246-a454-c5cf768da8aa", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5b2581d8-c087-4caa-b9ce-bc0168fbfefa", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2877214f-4aab-46cf-b052-b6e7d2662ff5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -67140,13 +81044,45 @@ "related_specimen": [ { "id": "a4dca71f-e53a-4bd0-9d1b-3381ed188a41", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "0771e98b-4e65-450d-afc2-33d4e30b3df2", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -67369,23 +81305,71 @@ "related_specimen": [ { "id": "5f14a8c0-f19e-4a67-b6dc-907196ab34f6", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "33c19ae3-107a-4b64-9906-5b775025cd8f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "bb90f8e2-c872-4ded-9d10-5110f023762f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -67628,13 +81612,45 @@ "related_specimen": [ { "id": "77234a56-cad6-4b84-aabb-032be68f7dea", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8e00c51b-cc4e-4de3-ad9d-8ffe30f2ab0b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -67866,13 +81882,45 @@ "related_specimen": [ { "id": "ac9f5493-c06b-40dd-b80d-7be718d27289", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5a5005d4-6cd9-431a-89ec-ce6d34b0fc7d", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -68095,23 +82143,71 @@ "related_specimen": [ { "id": "b4c9a3aa-151e-478b-bc18-ce793b68ae09", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "00a721c6-6cb7-4408-a63a-6dae9310a3fe", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8b73f661-e1ec-4bcb-9eea-a5e66237229a", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -68334,23 +82430,71 @@ "related_specimen": [ { "id": "adb496a1-07eb-45b9-8690-00184143300e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3fb86c71-0f8b-4022-b19f-d394401df9fe", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "97d5f4b1-b8a5-4fb1-8af6-f0e6cfc302f6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-23T13:20:20.149518-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -68593,23 +82737,71 @@ "related_specimen": [ { "id": "1e8ad4ff-09db-44f6-9527-b10ac22453d6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "661cafd9-0cf9-4c6f-b541-293bdecf3ede", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "434adba3-549a-45f7-b89b-76737678ae0e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -68841,13 +83033,45 @@ "related_specimen": [ { "id": "6237b644-9903-4f45-8b07-6c610b1342b8", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "887261fe-5b99-4722-aca7-4e63a0b63336", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -68919,13 +83143,29 @@ "related_specimen": [ { "id": "eddc8197-6d13-4eef-bb1d-06d1b8df5395", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-28T12:05:42.341898-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -68997,13 +83237,29 @@ "related_specimen": [ { "id": "f02ce49d-85b8-4704-9dbb-8e012090fbd5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:27:14.117499-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69075,13 +83331,29 @@ "related_specimen": [ { "id": "b5da1115-1fe3-49a4-892b-ef43e64dbee4", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:13:38.880466-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69153,13 +83425,29 @@ "related_specimen": [ { "id": "2bd6f2fa-881f-4287-a616-d43d33a5e551", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:07:22.808668-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69231,13 +83519,29 @@ "related_specimen": [ { "id": "a7b07575-200a-4a32-8faa-075ded8667cc", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T19:07:22.808668-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69309,13 +83613,29 @@ "related_specimen": [ { "id": "ea42167d-71c9-4eda-8153-2b207208d97d", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:13:38.880466-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69387,13 +83707,29 @@ "related_specimen": [ { "id": "5007e321-c75c-45c2-b4a7-0d3cbde5280a", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2019-05-31T18:42:00.849990-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69465,14 +83801,38 @@ "related_specimen": [ { "id": "fe72277e-ae77-486d-b5a9-844c483267eb", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:41:38.922504-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69544,13 +83904,29 @@ "related_specimen": [ { "id": "7aa50a3f-dd6c-496c-89e2-2d8d6d136acf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-02T18:01:58.729859-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69622,14 +83998,38 @@ "related_specimen": [ { "id": "9f4929bc-09a7-47b8-9720-d6f829b51a13", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T10:39:05.012118-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69701,14 +84101,38 @@ "related_specimen": [ { "id": "7f5f0ba4-3eb5-462a-8db8-31faca9d0d27", - "source_material_type": "Metastatic", - "tumor_status_at_collection": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, + "tumor_status_at_collection": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2017-06-01T09:54:06.130101-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69780,13 +84204,29 @@ "related_specimen": [ { "id": "8a18a085-a8a0-4fd0-9468-33e10fe1c55d", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:46:25.150285-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69858,13 +84298,29 @@ "related_specimen": [ { "id": "97064320-d382-4d87-a302-72490d7577d6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:27:14.117499-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -69936,13 +84392,29 @@ "related_specimen": [ { "id": "a75ac689-6228-4806-b699-874f8ec28ae1", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:50:42.610446-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70014,13 +84486,29 @@ "related_specimen": [ { "id": "f2ec974c-b952-4450-947b-11c39bbaf248", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T03:39:05.576558-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70092,13 +84580,29 @@ "related_specimen": [ { "id": "28cb9e1d-c34b-4909-a387-5a5c60bcd6e3", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70170,13 +84674,29 @@ "related_specimen": [ { "id": "b1d7b582-2302-44fb-a98f-13372ca17247", - "source_material_type": "Metastatic", + "source_material_type": { + "coding": [ + { + "code": "Metastatic", + "system": "GDC" + } + ], + "text": "Metastatic" + }, "creation_activity": { "date_ended": { "date_time": "2018-10-03T04:06:12.185212-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70248,13 +84768,29 @@ "related_specimen": [ { "id": "678dfc0e-f085-4c85-b444-8fc1604bdcfe", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2019-06-03T15:37:30.937085-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70326,13 +84862,29 @@ "related_specimen": [ { "id": "7894955b-ac0e-46ee-a5b3-c023cd1e87b6", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70404,13 +84956,29 @@ "related_specimen": [ { "id": "52beca45-8506-41fa-b0a0-3a8c24c9d7fe", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:06:57.341931-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70482,13 +85050,29 @@ "related_specimen": [ { "id": "e01da120-9c9d-4ef7-8568-525f74222dd5", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:40.150348-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70731,23 +85315,71 @@ "related_specimen": [ { "id": "44c64654-0e37-4c13-b4fa-aaf9c6644445", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "936a8a93-6559-4bf8-9c51-e81ec4f2aff7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "17a0a479-3b48-4852-ab06-dd33d6f7788a", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -70819,13 +85451,29 @@ "related_specimen": [ { "id": "85fa5941-b6df-4eea-97e1-a7b4ae310bdb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:06:57.341931-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -71017,13 +85665,45 @@ "related_specimen": [ { "id": "ece42fcc-b771-42af-92c4-39fd74b645c5", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "77be0d91-0525-439f-bb34-3a0702c81085", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -71266,23 +85946,71 @@ "related_specimen": [ { "id": "6b690841-3ad9-4919-8913-8f291ee95868", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "25588932-d586-4a17-b18e-4ede4292ce9e", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "7206e2ea-ad1d-45d4-ba3c-fc1f39fc52ea", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -71505,28 +86233,92 @@ "related_specimen": [ { "id": "2e5b2590-4227-4265-a837-8175920e4d01", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "26eac019-6e9b-4ab1-aa1b-323f76d9aef3", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ccd7a7be-3065-4f30-8d21-94bfdc0b4703", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "cc37f4d1-d8ae-4367-8abf-7c6da579d09e", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -71749,28 +86541,92 @@ "related_specimen": [ { "id": "13da732f-058d-4635-a2f0-81e73c725b8d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f84ae44b-4bb7-4841-aee0-139cd79b9680", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2e9cdad5-53ec-4b5e-8a1e-4f8abee04149", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5ec51826-98c1-49d2-a990-7a95ee636753", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -71993,23 +86849,71 @@ "related_specimen": [ { "id": "091478b2-f8c5-4ad8-9c89-06a48728fa2d", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a61be572-405b-4b16-b554-7fa6c12a48a4", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fbf59d12-7047-49b1-9002-00030c797438", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -72252,23 +87156,71 @@ "related_specimen": [ { "id": "980726e2-9e0c-4212-b5aa-69e139fc3be7", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "1c9d867a-6fba-49a1-99ba-63bd01942397", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2b803b39-f13c-4335-9845-05bb61830015", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -72511,23 +87463,71 @@ "related_specimen": [ { "id": "c4aabbde-a46a-403e-b974-7b61b964a1b8", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "99404948-9837-40eb-bf38-c1cfe1b9a88c", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "ccc0e6ba-cf8b-45e4-9f0b-dd2422b3e470", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -72759,23 +87759,71 @@ "related_specimen": [ { "id": "3f5cd265-0dd3-40c3-94b8-e92d18ce87b0", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2e1b4cf3-61fe-452c-b800-f9bc53333713", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3b3502ab-ab9f-49d7-be08-243a7022463f", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -72998,23 +88046,71 @@ "related_specimen": [ { "id": "1169973a-8575-4d2b-8da8-36a83aa5f947", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f1367475-a5f1-4a0f-aa73-5a703a3accaf", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9fbf3123-c654-4f2c-b41a-ac4dc029a5d9", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -73257,23 +88353,71 @@ "related_specimen": [ { "id": "50df1144-990e-4357-8a15-132289bce0d8", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "412fe306-9755-4efe-abb0-9af695b5691e", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "cdc66ca4-8864-4f22-bc4e-8fb5e073937f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -73496,28 +88640,92 @@ "related_specimen": [ { "id": "3e6bc216-301a-4f24-911c-8c3610e4a015", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6f55766a-d980-414a-be4a-369e93ec3436", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "b4f8ddc9-0ab4-447e-8292-5dcf8a9085ee", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "f5472b70-32c8-48b0-9051-f9b33272ffd6", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -73760,23 +88968,71 @@ "related_specimen": [ { "id": "de8517e0-d7ad-41a2-9468-bdf0106c905c", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "392cbac9-ed5a-4f0c-9270-f45278476c73", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "408c2c68-2f92-421e-b797-ecada0bfedc7", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -74008,23 +89264,71 @@ "related_specimen": [ { "id": "903ed81a-057c-41ad-93de-aaa9d9c082c5", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "d30d7d4c-0acf-4b61-9d7e-2c15e20d73a8", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "2e51af26-4d06-4b66-be71-0bebed2e4557", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -74247,23 +89551,71 @@ "related_specimen": [ { "id": "a2dd87a8-e0d1-47c1-a8d1-70b9730aa4ba", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "53450297-c715-4c54-ad7e-3152a1e16c45", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "8c099f45-3fd6-4966-8cdb-ca4b9288b1a2", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -74506,23 +89858,71 @@ "related_specimen": [ { "id": "4bed3ece-2350-4c99-bec9-3d652fbe8c9b", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "3c09f5ba-a4af-4384-948a-d6e943613f7a", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "a590a632-55b4-4be6-b2d8-6c8afbbe99ac", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -74765,23 +90165,71 @@ "related_specimen": [ { "id": "462748e0-b611-44d3-b3fd-efb762ba317b", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9b60705b-95c4-4079-a907-e4a4b65a3cf4", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "30ad1a00-b48a-47bb-8cfa-d65e4c4ba125", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -75013,23 +90461,71 @@ "related_specimen": [ { "id": "8277e744-0508-47d5-9cea-11dcf7f56d35", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "51622170-a903-43cb-bc38-4d40c7ea170f", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "fb06ae75-8516-4cdc-ba9e-093444907fc7", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -75101,13 +90597,29 @@ "related_specimen": [ { "id": "6f9eeaa3-8bd1-479c-a0fc-98317eb458dc", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-09-24T17:56:43.873530-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -75350,23 +90862,71 @@ "related_specimen": [ { "id": "4a0d79fe-9eb9-456c-b483-ccf956597a3d", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "9c02fd4a-a29a-4a44-ba96-5acb6ff11f7f", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "1077bf93-cf23-41db-925c-c633921894cc", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -75609,23 +91169,71 @@ "related_specimen": [ { "id": "4467ee1a-7188-49d6-a0d1-c8e395e6cabb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "5c2b4403-cdd4-4550-ba01-d8ebad9fcbc8", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "589cdde1-ecd5-4a7b-9cbc-3186916822ab", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] }, @@ -75848,34 +91456,98 @@ "related_specimen": [ { "id": "0e0af838-3a62-44a6-9e8e-0f9ba07730fa", - "source_material_type": "Primary Tumor", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "c22e9fe0-a052-4c6f-9fb2-e58289277e2a", - "source_material_type": "Solid Tissue Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Solid Tissue Normal", + "system": "GDC" + } + ], + "text": "Solid Tissue Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "6bd53676-487f-4661-8e01-739b3b856cee", - "source_material_type": "Blood Derived Normal", - "general_tissue_morphology": "Not Reported" + "source_material_type": { + "coding": [ + { + "code": "Blood Derived Normal", + "system": "GDC" + } + ], + "text": "Blood Derived Normal" + }, + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } }, { "id": "da9132d5-4a55-4d7a-bb7f-7990af380dcb", - "source_material_type": "Primary Tumor", + "source_material_type": { + "coding": [ + { + "code": "Primary Tumor", + "system": "GDC" + } + ], + "text": "Primary Tumor" + }, "creation_activity": { "date_ended": { "date_time": "2018-05-17T12:19:46.292188-05:00" } }, - "general_tissue_morphology": "Not Reported" + "general_tissue_morphology": { + "coding": [ + { + "code": "Not Reported", + "system": "GDC" + } + ], + "text": "Not Reported" + } } ] } ], "@context": { - "_comments": "Auto generated from crdch_model.yaml by jsonldcontextgen.py version: 0.1.1\n Generation date: 2021-11-18T18:20:30\n Schema: CRDC-H\n \n id: https://example.org/crdch\n description: \n license: https://creativecommons.org/publicdomain/zero/1.0/\n ", + "_comments": "Auto generated from crdch_model.yaml by jsonldcontextgen.py version: 0.1.1\n Generation date: 2021-11-18T18:29:32\n Schema: CRDC-H\n \n id: https://example.org/crdch\n description: \n license: https://creativecommons.org/publicdomain/zero/1.0/\n ", "@context": { "GDC": "http://example.org/gdc/", "HTAN": "http://example.org/htan/", diff --git a/head-and-mouth/diagnoses.ttl b/head-and-mouth/diagnoses.ttl index f326bb1..7b2d716 100644 --- a/head-and-mouth/diagnoses.ttl +++ b/head-and-mouth/diagnoses.ttl @@ -1,23142 +1,27060 @@ -@prefix : . -@prefix ccdh: . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "bbbf3549-d0cf-4dcc-bc92-32d12cd2c96b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD10083_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T09:54:12.244834-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "712ad6f8-8c2a-4c82-a89a-10ff849e3e9e" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2b3b0e72-0926-5ed2-89c8-ffa1585d111f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A6K1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "09b49e67-34d8-496e-b42a-5123fb516cc0" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "43115789-cca5-4dc0-8377-e47b90c3f16f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8ae503f5-a283-4bdf-8c82-de63f534bc85" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "00ed54be-bd0c-5950-9165-b08535ef9f18" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-TN-A7HI_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3ad15aca-9197-4512-8bb9-77099ae8f049" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2a081426-e4fe-4868-adc9-c14142490b81" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9808b586-4541-42a8-a72c-0c043ff568b3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e7fe03ad-184c-46be-adcb-dcfc79db3492" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-d47c6375-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7512ff60-162b-41b7-a3ed-c153d7aee073" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d284c064-ed2c-5741-b1ad-2f9fd34b6636" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-5153_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2f668e36-b359-488e-b0fc-fb7bb479f485" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f079e825-160a-40d5-97cc-1931f11c4e2e" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2dc7070a-9c70-4bb1-9634-8c934bb9c8d1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Malignant rhabdoid tumor" ; - ccdh:system "GDC" ] ; - ccdh:text "Malignant rhabdoid tumor" ] ; - ccdh:id "9a11a042-337d-5a91-b483-093f98b0b72f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TARGET-52-PARKKN_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8963/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8963/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ced7edc7-a9ff-5d30-a63d-dbed4edfe497" ; - ccdh:source_material_type "Primary Tumor" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Unknown" ; - ccdh:system "GDC" ] ; - ccdh:text "unknown" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9808f3d0-16f0-519d-8e0a-9061968bc749" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6023_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5e42be68-8865-4c69-8684-0f6e5c6c9b94" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0bc27973-621c-4011-bcbd-3b7f3464389e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ae1a6096-8d51-482a-8c44-cbfdc7dd6458" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0b96cae3-d332-4e5e-ba59-e0a6bc6573df" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0017105-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:17:41.081467-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ba279369-073d-4976-8439-3a318c0f0fc3" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0b8731f0-363a-4989-ac32-3ad093d433c4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003031-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e44b074f-5e47-4faa-bd94-7375982fbd90" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "6176f8de-0835-4f23-9ce1-85511ac4e1f9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD7774_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:50:23.633804-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bcecf093-e764-4c32-81e5-619d0e86216e" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "4679b4bd-c891-5a60-9b12-1e6bf1bb7675" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A4IF_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5eea7c58-96b4-426b-9685-15599e534730" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7bfdae74-2bf4-4ec7-b08c-acd9b9e0baf4" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "18d11972-ed5f-4c5b-9511-18b00bca7f7d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-8036-18260_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:10:26.105156-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "475098e0-9927-42fc-adf2-e280d8aec3bb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4176108f-948d-5715-afbb-cc21f3cbfaf5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5363_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5e4e1e21-8016-4e27-8f72-2411714203e8" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "591e99ec-46f9-442d-ac20-745dccc8a52b" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d0161f8c-9c53-47ad-895c-40d1be3a814e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivb" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c97d4793-3b4b-521d-a274-2d1dfeda79ae" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7398_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "251e8544-2c3c-4b31-a2b4-29b57e6ee4fd" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "13348e4e-8b8e-44b5-83e6-a1159a53ea35" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "c9269eb1-ab75-4719-8cd9-e9efd32f7d7e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-5245-16353_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:07:22.808668-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "08209047-3b7a-4295-90b0-ddc92aa1e1c9" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "fc0ee2ab-b738-49c2-b645-4b6851be5e8b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-49d6a6ea-metastasis-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c63e4630-7bb4-4f01-b9fe-94478000158a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f0b5d732-2466-4d9a-90cb-ec3084606849" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010677-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T19:11:18.668081-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e084b5e5-05ac-4229-bbe8-f640f231e1fb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d113feec-68eb-4294-b6b4-6b8e22ce56bb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0016562-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:49:52.836213-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "99c1a34d-ba04-462f-be28-bb5eac77b316" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "dc412cff-36a3-4721-b1f3-8e16ed74489d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001186-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1853a05a-8846-4da3-9509-bff587eb6e8d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cee28001-9ebf-46a7-b387-e932076e5df8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010817-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:13:38.880466-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "08a27a81-561d-41f1-9d99-6266c1f230c9" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5b91d8ab-6ed3-4c0a-a56b-8f0e151eaf5a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-000195-4559_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:06:57.341931-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "52beca45-8506-41fa-b0a0-3a8c24c9d7fe" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "18d9c548-2f10-5116-bf59-05cc53b3b5c6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7410_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a24e0ad7-668e-4bc7-ae3a-94964278a407" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "843ced6e-a9be-48ea-9313-13aa752dbbe1" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "acd6cfc3-412b-4f61-a2c7-013c61fa2efe" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "6f840d0f-a369-413c-baf1-35200313c274" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-a679ee35-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "60e15dc9-5d8b-4104-b6c3-bc0b7b3109a5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9e0b865b-296f-481f-8bc2-7bfe4642d805" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001912-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "271c4064-6b2e-4971-853f-e3f2a1cdd74a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "98a4badd-be86-5ac9-b0d9-9099d5bdcdef" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7247_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5ec51826-98c1-49d2-a990-7a95ee636753" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2e9cdad5-53ec-4b5e-8a1e-4f8abee04149" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f84ae44b-4bb7-4841-aee0-139cd79b9680" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "13da732f-058d-4635-a2f0-81e73c725b8d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0e732992-a174-4861-8e05-a6c3e21107b3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001903-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ea373411-6d3c-4ee3-b8c1-d79131847aa1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2e4427b7-e557-49c7-85ef-39a02c4a441c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-050738-234120_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:18:25.269226-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c6e1507a-83f3-4c51-8275-319d0dcd8f97" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1214a9ed-2d43-50a7-9a94-85eaa002670b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A6DA_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a2260bc1-8aa1-442c-933e-e4a05d46d802" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8b80b922-b00f-4cda-92a2-49c357aea89d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "33bf2824-d873-442f-8ae6-48274fbf4a94" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "a2cd4aae-5655-4082-956c-f5bbc733c576" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-UHN-221761-ARC1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:18:10.730001-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5103a1f3-d342-462e-9845-9703579d26f8" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "af6475d1-2529-4772-9e9e-ce83e3dc0cf8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008645-7086_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "30b0ff9c-3106-4ce0-8657-3ed59c1c8fc7" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "83e6c6d4-83d7-55d8-ab82-aba8f3e543f5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6988_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5bf33753-d3c4-4fbe-a8e0-af958efb6fd1" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ca2a45b4-1eb0-4e28-a4c8-5647bfbaa98c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4f72ee1e-37e2-4845-90de-812686a25980" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "de3c2719-988d-4266-98cd-c1139a2cc412" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0006641-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:02:01.981535-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4e6ffe6c-feee-4dca-b56d-0f2c8b498ae6" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c5df4db4-06f3-4596-98d2-3ab0e5df45b6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003711-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:54:19.535598-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7eef7c3e-d42d-4cf5-9ad1-3099b828f776" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Basaloid squamous cell carcinoma" ; - ccdh:system "GDC" ] ; - ccdh:text "Basaloid squamous cell carcinoma" ] ; - ccdh:id "35c83c03-b2ab-5f6b-a231-66a3f879a217" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-P3-A5Q5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8083/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8083/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3b3502ab-ab9f-49d7-be08-243a7022463f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3f5cd265-0dd3-40c3-94b8-e92d18ce87b0" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2e1b4cf3-61fe-452c-b800-f9bc53333713" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0be93ffc-ad62-42bb-892a-ba10c4da6f39" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0017332-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:20:07.713564-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "43637316-5d63-491d-b4cd-2caa045d8c7d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7c0c3290-5b41-50b4-b37d-536ebbac2af8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7101_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "397b08f6-f560-418b-a6e6-2d953187bd5d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8e461b7f-1bfd-476d-a948-7aadb89a41e5" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f040a5a4-e955-4e69-9f2e-ae9a4c78780a" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "79ec5357-3a44-40db-a1ba-ee282b484526" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f9a0b1dd-a13b-4a14-ac22-c9570e02ca60" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008792-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:09:54.181448-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b882dbe8-5494-4092-8bad-ccca6b119775" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "826319f7-67b5-481a-998b-781e3ded01c1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-22f8acca-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7aa50a3f-dd6c-496c-89e2-2d8d6d136acf" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d1841d22-3350-4037-918a-bb399ed85963" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-005202-1165_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "97064320-d382-4d87-a302-72490d7577d6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "dcc6b724-3a6f-43bc-9a7a-eb031a031212" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000433-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "afcf4bae-7e95-4306-9627-c9a9d6011dfa" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1d13cc0a-da04-5925-8930-693f09cd6432" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-T2-A6X0_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a4b8631d-80aa-4665-86b4-0caa7241da66" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6f085b6d-6abf-4d89-a17a-89e6c7f8fcc2" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0416608e-19db-43b8-ac11-87406b0164d0" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a00585d3-91dc-4976-87b6-d00c7caf5f5d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008528-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:09:54.181448-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "89fa0392-487d-4839-9c7e-cb82312941c7" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "3ddf3ff8-b8b0-5525-8425-dbe1c27753b6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-IQ-A61I_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "19c823d3-c15b-4a1c-9a27-6ce489f3b640" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f238d98a-1b53-4aae-8bdf-f85f0b9a066c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "68604eed-fd8f-4003-b9bf-ad0e1ecdf3b3" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "37b4b703-52d6-51dd-9cd7-3f759862a78c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A63W_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8da610b4-0a32-4ef8-9f55-1c969addd79f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e6cd0e23-4423-4ebb-b314-913419340811" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9b9dbf11-d017-4723-a76f-c25ce4a01f09" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "bd3b2bda-4737-50bb-863a-334134a31156" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A8ZA_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4db7e146-bf2a-4729-ae80-d471370b62a0" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9adfbc71-da3c-4a8e-a72f-76690e90a8ca" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f92383bc-5869-44d6-a128-60b60043d778" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "35adcfa2-f4ae-4aec-8362-097fab231545" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-000205-461_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:06:57.341931-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ab00664b-8f6a-493d-b000-89f1341dc713" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c652d5fb-652f-485c-99cd-4e3e00af1126" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000396-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2bde1811-da29-46e9-973a-45ea43387818" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4ac21d4b-c592-4afd-bfc1-278702612bd6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004838-2080_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "10d245b5-b16d-40ee-bd41-bd08a0355894" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2707217b-5a4b-404b-97de-921526581d45" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-2b4655c3-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "56e9e0e1-5435-4b6b-93a0-70564fe1aa27" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a8a92864-8cd0-5e1b-8451-ca6f3e84a857" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A6V9_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9b60705b-95c4-4079-a907-e4a4b65a3cf4" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "30ad1a00-b48a-47bb-8cfa-d65e4c4ba125" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "462748e0-b611-44d3-b3fd-efb762ba317b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "25fb47b9-2f00-4140-92bc-462b1e8447c4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-4wf609jo-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0ef8dcd6-8f67-4f29-a69d-d952df3d43b3" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "605addeb-a295-4bd2-ab90-347c41e9b1ad" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008105-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b9b1b672-a788-46eb-bc8e-a5b401d1a430" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6459d972-a02b-5a11-a7ef-12f699047036" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-5248_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0771e98b-4e65-450d-afc2-33d4e30b3df2" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a4dca71f-e53a-4bd0-9d1b-3381ed188a41" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "562417d9-1094-45a9-9621-7fc5ce203ac3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD2564_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:00:26.233095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4448e3e1-aeff-4ea0-82e4-1692b9b59414" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "40954a8e-e4c2-5604-937b-0a79ac7489d2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7261_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a7692585-a129-4671-bfe5-98342a326776" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "69a89590-eb61-41d5-b33e-e7bc5adb92bf" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b069c55b-496a-4a57-a507-1b2e1b4201ae" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "00f7bc3c-c0e7-42bf-84d7-87a8a539bd4a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c8cffdf6-7c37-5146-9bff-2cbd5a6f5bbd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7364_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6ced7677-159f-4e9f-b550-627ab9ea80f7" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a17406af-2eda-4148-8a0d-ec2ae4bd9fac" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "05d9d8f7-c21d-47ea-bb12-7de5f6709096" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD14142_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:42:51.054806-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "02402659-6c66-46ca-861c-e4c093a1a3d3" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "09912a9d-8fe7-4170-89cb-f0881ba681bb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037012-88553_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "89c7b64b-262a-440c-b2b0-b45a94097d6b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "b62e9fa2-da66-5eb2-b390-96985bc92b6b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-H7-A6C5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "875069b7-9411-4fb1-b8a2-992a052bee49" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9b557922-d796-48bd-b194-1fba8622f254" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "069b94fd-00fe-4073-bfca-3a3a8057d1f8" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "578cf44a-2d2c-416d-a428-69547378bb9b" ; - ccdh:source_material_type "Solid Tissue Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "bf8ae40c-068c-44c4-b09e-954969e83369" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0016039-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ab79d569-bc64-4639-a6a8-74bc2bbe0d0c" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d078cccf-6335-4c55-8d5e-a36e32dd8006" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004034-372_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7d1a8a2e-c9d3-4e1d-b183-3c82de7e2306" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d7d13cee-ba1b-4e36-a0a5-3f925c871020" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0013833-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:39:05.576558-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b6ddcf15-8ecb-47ca-bb29-60b9b43fa7aa" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "52fd0265-204c-4ce3-bb51-a3cbee5aca51" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-115ef99e-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6ba7ff9a-775d-4239-884f-4a303b42e4fd" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d0678ad6-4a4a-4ec8-9e5f-352c1347efc2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-a8pxs0u6-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-04T18:19:50.810302-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ab9d819a-6445-4bad-a520-3d1edf413508" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "8f722b2d-eb3e-5b8b-8b36-429137cb0a3f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7383_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "887261fe-5b99-4722-aca7-4e63a0b63336" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6237b644-9903-4f45-8b07-6c610b1342b8" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a3c1a290-626e-5e1a-b120-0153a79fadd1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-4741_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "03c9108a-5139-4bac-9641-c7dbbedef420" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8d8ddca2-6461-4a8b-a696-da0906661b9e" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a47974a3-b37e-4041-8953-5f50f8745681" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "509526cc-f60a-4e6d-8a18-2f76ba8e995c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000586-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6d54051a-c75c-40e6-9215-3e470f0d242e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f543ba05-0134-4222-bc49-da336358e2e0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0005862-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:58:03.635432-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fbb548d6-a035-43c3-99a4-7fb2892ade49" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "130676ad-54bc-4d20-9ec5-129d4688296d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD1478_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:54:59.697804-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "50977953-c3a2-4b71-b40a-3f211a269cc5" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cae73de1-65ae-48fb-a08c-355e6921dca5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006462-4354_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f632701a-5242-4839-b96d-0214c7e9a73e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4a315682-7cd0-4c42-9fd0-50ec841a059f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004723-1663_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1291884d-38d8-49cf-b16e-aeab69d83681" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6ca9116f-412c-41d9-872b-1775f3d9464c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD11803_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:01:51.025011-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3dac18fb-752c-42aa-bdad-9f91d54fb950" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b725e6d2-92c0-5585-9de7-14bb623b472e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-4738_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "51622170-a903-43cb-bc38-4d40c7ea170f" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8277e744-0508-47d5-9cea-11dcf7f56d35" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fb06ae75-8516-4cdc-ba9e-093444907fc7" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "a099ae58-fa38-4a90-82b6-c97a23b317f0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-f88a03a6-metastasis-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a9b18808-3ee9-4274-9a83-8d2fcbc16c7f" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "6f1ab30c-67b7-4a7f-b4ef-22b1221bec7d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0012422-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:17:29.664139-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e125a436-ca27-4a85-bd9d-9ca108306229" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5d448af8-7478-4252-9043-772077929480" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-023766-23966_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:44.678712-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a3ca3ea8-6ea0-4585-8a50-294ca4c87a24" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6579daca-0ec7-49e8-92e5-6a6b7c379b8d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-h39utsgs-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-04T18:19:50.810302-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1f1c82de-2931-4f38-9caf-213d5425ded1" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a0943f40-a682-4318-bc07-eea80150867b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037288-116439_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:26:11.717995-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8449ccd3-033e-4c9f-bec5-9f341264e12b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "49cde226-3d69-415f-ad98-02d190dbf75c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006446-3455_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5c19b5fa-d6eb-4d7e-b617-930e19aea484" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0a622048-699a-55f4-ba31-6c9e95e1cabd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-DQ-7590_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b8eb9edb-fce8-4e72-9cbf-c4868c04965c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "95018dba-f23d-4af0-b774-c28be60007f7" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "36fb3f52-714b-4b86-a7a5-ca4b017fd182" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "60d7b883-bf64-4777-9f6a-efaf4c4a40c4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003875-1298_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c930148f-2059-480b-960a-4efcb3c98ac1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5a687c66-0c8c-5e23-bd7c-6988abb14d66" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6021_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "edcbcb1d-23bb-4177-8f77-71071822cd89" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f1cbf326-7657-4c9b-9c8d-e2036e89fd07" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "619a1a7c-f360-4e07-aa85-812e2b1bd92f" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9e30aa6c-91e6-5dd3-9512-75c162a89913" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A8Z8_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cff6967e-e8f7-4a25-aa31-9328e4b42816" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1efb2d28-ac51-4d70-a24d-667a2b53467a" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a118da56-784d-4b67-aade-d9a7a8b49f18" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVC" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVC" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVC" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivc" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M1" ; - ccdh:system "GDC" ] ; - ccdh:text "M1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVC" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVC" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M1" ; - ccdh:system "GDC" ] ; - ccdh:text "M1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1b2f7aa9-bc17-4cfa-8d93-b5a7bdd68bfe" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0015451-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8a18a085-a8a0-4fd0-9468-33e10fe1c55d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cb7a6350-80e2-4b6e-9b86-05632255db52" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003213-4767_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a764b89e-ad60-4316-a812-24a5eec7b9dd" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f29e70db-e331-5bcb-82fc-f2e15cad5985" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7433_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5c4960e6-92f7-4576-a7d8-82a7c3d7cd5f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c2530f39-c334-4a38-b75b-b74d5cb95920" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2916fc1e-ba62-4494-8014-dfcc6dd358ea" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "6fdb9066-4bcf-42aa-81d1-585b2f2fdaf9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-6209-17288_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:10:26.105156-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0f97f0c0-2148-4c06-97a5-37a64ed1b81d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "8764fb2b-e701-53db-b137-03efa2c52637" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A6DI_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b0d4b16c-cc81-405f-83a1-de57cb488166" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7b56068d-21e9-4879-b747-c99943e40e50" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e7a7e296-3f1b-49f5-bbaa-082f918d080d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b4c405c4-ece9-4cd9-b11c-cb1f863021cb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003788-772_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f933f399-d986-43eb-bdc0-b3faf49bf513" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "83347eee-7d6a-4848-a139-a71f053e92c9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000768-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fd2acd96-a021-4fd4-b0f5-1d9f6e4448bb" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cf93d012-b0b8-57b3-8a55-7575dfde2b1d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6989_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7ac8fb22-0a09-4b16-af8c-b5c2e90a968a" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a5c6b30f-2aa3-48bd-8415-bdce2444e49d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3570ac4b-b585-4262-b54b-137a2515c689" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9be1751f-17dd-5748-a489-1b4eb3235e17" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-MZ-A5BI_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f1e46036-7b4f-4cca-a150-f2d8e599fdf7" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c226c7c5-64e6-4790-a420-c2f4e0196453" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "da5ce97d-de12-5384-a88d-a9874b39b7dc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A64Z_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Palate" ; - ccdh:system "GDC" ] ; - ccdh:text "Palate" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eb25346e-0e28-4161-94c8-916b41f8d969" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "67289d96-8140-4ba1-9863-124950488c1d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "95525590-0eea-4017-be66-dc487b78299c" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "38c088b1-bab2-4d5c-8f45-80280d1c309b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010800-9387_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b480938b-4562-4d37-a280-16cd4dc700ca" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "92f6368e-51fb-56bf-a72d-7ccc16eafb44" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5434_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "657cf588-cca0-44c2-83b3-0e87f7a81f29" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f6130e55-1627-4d2f-bd8f-c0e778a1aa45" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dc649d39-482d-4855-b9e3-129552e5e421" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3f70e2db-b313-4f3f-89e7-cd1c0acecf9b" ; - ccdh:source_material_type "Solid Tissue Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "8d28ba70-052a-42c0-9a4e-f06ea143f381" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001195-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b857d450-dfaf-4407-84e8-d3bbf843cbc3" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0501e7a7-232b-58be-9425-92f1ccd697a4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-4727_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc2d6cfa-7640-44dd-a200-68fd9f9ee69c" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a7257360-c4dd-4f59-bfb9-c8d593050146" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f102aef0-94b8-4d26-8055-35b76da9dd5f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "230d872b-0206-409c-988e-6485dae90db9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-p8qm5k95-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2d54eff7-a093-4bf0-b1c2-2f9f159e6b78" ; - ccdh:source_material_type "Not Reported" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "203f4d20-b796-4745-9bc0-6385c28ff0ba" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003320-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3a006479-c2eb-457a-b0a1-e3faebae25b9" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ac0363ed-feba-5584-802a-a8bd096fb07c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6022_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d452d59e-92ff-46ee-840d-df8a161ca9c5" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3b8fd8fb-429a-47ac-8b99-ae42a3fe968d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "952f71e6-b64c-456d-8d00-45e4118fef96" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cbdf0116-28d4-42a0-ba6e-43a8587de68f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008605-9620_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "faf18ba4-6d92-4da3-bd43-5071bb88c5e1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "842d6984-7c03-4ab6-95db-42fa2ea699db" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010671-11105_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6f9eeaa3-8bd1-479c-a0fc-98317eb458dc" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3adce70b-ce30-4b21-beeb-2a7bda73ca3d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008134-5168_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "37b86231-4224-4084-a523-800e98c4fea3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f87fc232-ea15-4a26-a863-8604cdb8bb06" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037287-88492_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "421f819b-c4ac-445f-882d-c36766f7002a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "51ca5228-56c7-5d68-9285-1bbfbe8b4492" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7370_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0e357973-d52d-4fc7-8099-7b87458745e2" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "339524bc-bc1f-403c-a12f-6e8ce72fba50" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "693a7e67-099e-5382-b7e2-e70d6d15406f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-6962_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "73d79c62-61b6-4e72-bc8d-c3fa2a344caf" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5b2faa3f-c96e-42c6-81ce-a356852ea6a6" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "366f8ab0-ddd8-4383-9bc1-96ef342b749c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "70b5b27d-3905-40de-8b70-9185cfc49d94" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "915d0d2e-63da-4723-909a-4bece5afab90" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0018175-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:39:49.045696-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d4ba57ac-0820-4d57-85a6-06122bb4559e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cb8fb063-f8b5-4748-b937-5efb6fefecfc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004149-1026_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e331b564-d79c-446d-bff2-a732dacba6bb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "d75594bb-d5e3-496f-b1c9-1743ae942c53" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008027-5967_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f0afc508-eff1-4a28-b912-3705a87d607d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "28f3f8b9-df0c-5c03-8414-89640fa631c5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-H7-A76A_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "148ec5a3-19ed-4949-bf37-9bc4e6203966" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "452e53e7-b219-4ba7-b8ab-870e1ba4423b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "78229167-1f08-416d-be98-74f757610349" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5ddc8873-1487-4787-8a1d-3b116a2db42a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010816-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:13:38.880466-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e179e193-0933-48cd-98fe-aa4e21c0ad44" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5606079e-0d29-5f59-acc3-d6de7b479a24" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A461_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "af7bb799-b091-45d9-a04e-074bb7840680" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "76af13f8-fcb3-4324-b8aa-23ea1834c5d2" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ac4430c7-dbe4-432f-9763-81707431a0f0" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ca8d9936-f4d9-465a-8640-66a91f735a60" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0018419-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:39:49.045696-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "60efb1a2-a8b1-40a7-b230-e4b532a8048b" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "96053970-fb5c-4b79-b1bd-8eb8690def1c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD1118_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:39:12.328231-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8f636ed2-41a2-4c3d-bee5-40d9755bf674" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "73adb3fc-a3c9-487c-a0d0-fa8b09707932" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-005121-1375_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eadf6e9a-c6c3-444c-8e93-8ab77ed87d09" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "cdd012e7-6539-5ffe-a4b7-b36a6233b1ec" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A6DJ_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4210ffee-2a83-4f05-8935-2687503c83d4" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "735334b4-6c30-4a7a-aa54-63f506b8e2bb" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bbee89dc-6858-45c3-a9fc-c455851f96a8" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7a67eecc-6f46-5181-8b64-c022d0fd0060" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-A5HY_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "589cdde1-ecd5-4a7b-9cbc-3186916822ab" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4467ee1a-7188-49d6-a0d1-c8e395e6cabb" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5c2b4403-cdd4-4550-ba01-d8ebad9fcbc8" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "552900c2-144c-4340-aed9-197382fafed4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD17916_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:57:41.511744-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d4c804df-7392-4267-908e-8fe8c37d00cd" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9b75ffac-0af8-40a0-9cc6-8472fbe942ef" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0015763-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d02e5c34-3c1e-4a7d-a67d-c2525ac3a734" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "b0113a66-8202-482a-ad65-dc55cdca3c27" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD8711_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:51:47.854910-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3ece7ea7-cad2-4e6d-811f-c91f63a4fca9" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fb0593eb-d74f-436d-9bc3-37f8d8285296" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009648-9028_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3c02ad20-11ec-4e71-b7e8-c29194ae502f" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f09803e3-8795-5077-84ae-bf0666bedc35" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5435_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cbcd3026-9f65-45c1-8fd8-d08f1b6b065e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "14098d2a-e40e-4f1a-bd76-f8bf7c339ee5" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d2491655-a4a1-4e4b-8f94-f50dc1c5d64c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "78a9bb84-9d21-40d2-9b0b-1ba8d888912d" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f0cdd17d-5db9-4c58-84f5-f9efcc94dcb5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0004492-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:54:19.535598-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d74d27e4-88e8-4ce3-a1ff-7658e007a49a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d234a346-038c-58a0-824d-22bfabb73218" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-MT-A51W_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "03c6ac2c-c6b6-4041-a024-f2556fab62b8" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d238e52b-b2e8-479e-b76c-a168136e0ef0" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "91e56a17-b4e8-4ef7-b587-a83bcd8c062d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e7f08842-7c61-469c-829a-feff82339bee" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008328-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6d1a6236-3625-4300-9f12-4e666cb2694a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5b518f0a-dbef-4346-b463-b59bd735a311" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009367-8081_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7230cf9f-1930-4377-bfdb-6e07cd472bc0" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Adenocarcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Adenocarcinoma, NOS" ] ; - ccdh:id "25182ec3-0d7b-44ca-82e4-f1a8d7de4a28" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD18004_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8140/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8140/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:58:46.365657-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b62fca52-48c3-4bea-b5f7-5794a1ed4f43" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9223ac2b-219b-423b-bd4f-5d28e84c8d89" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-001409-5066_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:12:32.615882-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fc3b12ce-4c74-4faa-ad8b-60ddde831901" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ad86791e-dc2b-4a82-9c74-674bc6baf268" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009352-7151_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5e386079-a9c2-4c7e-80ed-9dda270249b9" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "91287016-0fd4-5434-a010-e392bd679282" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A45Y_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "26026e2f-b112-4535-97ac-6956cb267e9e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bbcc5141-d805-457d-bc4a-d424c8c39cb7" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "01a4aa4a-f073-435c-a411-839760cbcb9f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c127a1e6-f25a-525b-949d-013bac98b38a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-DQ-5629_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cb2da33c-021a-4af5-8509-118bc1e8e0d5" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "769f3c1c-323e-4f04-9ae7-e41f484a964c" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "57ea3eed-f8e2-4310-90c0-50d89f818a12" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d20b4711-8757-5d39-a8cc-b8ece86592cd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7430_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6bd53676-487f-4661-8e01-739b3b856cee" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "da9132d5-4a55-4d7a-bb7f-7990af380dcb" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c22e9fe0-a052-4c6f-9fb2-e58289277e2a" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0e0af838-3a62-44a6-9e8e-0f9ba07730fa" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "64bd8ea3-d4cf-4e2c-9d2e-77dcadd5364b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008227-5962_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2386e3a8-c4ea-4434-af11-e60fae9630fc" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "523155c1-e181-4d6f-9873-9449a8e3c289" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-036955-74886_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9ed6f000-4643-4f65-be84-8fd380d3bc36" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f068b7ad-5b43-44f0-95b3-33ead995b8cb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010161-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:13:38.880466-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ea42167d-71c9-4eda-8153-2b207208d97d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6ce57628-3cd7-5cfd-8317-cadf76a37f43" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-7870_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f5589c89-0b94-4492-8a3c-84d58377e94f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b79164b1-7abb-4585-b23a-0e610734ea8b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0d53784e-011f-4890-9cf5-59e955dd1fea" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c58ca3ba-23a8-472b-aab3-94382be12940" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010867-8727_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d492bfd2-b37d-49c3-a8d5-40171e8442d5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b8812861-0e19-58f0-bccf-667970cdb04c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7399_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "05c3d8a0-47a2-44b2-b0c3-144ec0cb2673" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3dd4255a-7359-4b51-8a0b-44d9e249956b" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "56566536-d3a4-4103-bd5b-550ceaad2a6b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5017_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:06:53.493092-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e2edc535-6fc4-4999-aa4c-932bf58d344e" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e3d5bf4e-2856-5604-a086-3e4464a68c05" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A7JF_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f4cf2a66-8872-41ee-8270-296d5f76265f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7ce8968e-f693-4fa2-945a-0cea27c96ede" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f4e12699-7e71-42ba-994a-c3a9a71a95cb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "740bf7b0-dfdd-4930-9cc7-3790cb8808c1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0005212-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:58:03.635432-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6e2561a0-676c-4f69-9059-d49696a56c64" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2ba98ec4-5cc5-43d5-8de3-ab33d0d6779b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003996-1286_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "12d6861e-5ad9-48f7-ae61-07c7e45be5a3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2fcaff59-bc46-4971-9a75-dcbf2c85a5ca" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0013498-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:39:05.576558-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1c156e43-c8c3-4ecb-83ff-2075ebd89cd7" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "40d016b6-27a3-4e33-ad6b-f50eaa54e2fa" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008097-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f71f4733-17f4-436f-b12d-bad5b99ceba3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "faf259c7-d577-5ef8-9075-9a42f1083260" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-F7-A622_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "32056265-c5fb-4544-9f99-22b34febb805" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3901d8b6-f2f2-45e9-a40f-3ccd679f701e" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "32d7cb3d-5f5a-474a-9dcc-3b5f2dc64d22" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6fdc7de3-3d2e-459a-94ea-1dba9572f47d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-480293-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-28T12:01:45.147328-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "116b69cf-c9f3-45c6-be86-c4f22a36dcf8" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "18cabf3d-233d-5ad2-a5d3-a2a10677c99a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A4II_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a76bfc3e-fa46-4a65-88e7-c644c8b20098" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "81bbc439-0c8c-4d39-bef2-03901b31c50e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0b151db5-f3df-4cc8-9bf3-049308634116" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001794-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2da79fb4-bd1b-4518-a6a2-6159251d65fb" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0584ee86-f589-5812-9bad-03855a31693b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-4076_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d6f48bb2-379a-448d-b13d-2dfc5da91d0c" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5fe1ae56-74a5-44a9-b8d1-7f05a569bb34" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fd99fd83-4040-4738-8a5a-e42d36ecfe0e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Adenocarcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Adenocarcinoma, NOS" ] ; - ccdh:id "1c3027a0-7ae3-4ee6-a71d-b357ad841b3c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD4542_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8140/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8140/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:06:20.797099-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "de90601b-1eda-4d1a-aa41-29feebdcfd57" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "424f3fdd-09f1-57a2-99de-10c13b9be653" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-A6EP_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "661cafd9-0cf9-4c6f-b541-293bdecf3ede" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1e8ad4ff-09db-44f6-9527-b10ac22453d6" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "434adba3-549a-45f7-b89b-76737678ae0e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "6739697d-d536-5d38-813f-5a4973a97cb9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A49A_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Palate" ; - ccdh:system "GDC" ] ; - ccdh:text "Palate" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8e00c51b-cc4e-4de3-ad9d-8ffe30f2ab0b" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "77234a56-cad6-4b84-aabb-032be68f7dea" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivb" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4b" ; - ccdh:system "GDC" ] ; - ccdh:text "T4b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1e1fa97c-cb95-5810-9f22-9af6a0a42ce2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6480_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0c6b4631-381e-4b73-ac9e-62bbc1849ff4" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e49031dd-14f3-4f2c-8457-d0249c491ae9" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c1dc41f5-0fea-42e8-afdb-fabc542d0548" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0005869-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:58:03.635432-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bb6ae997-ee6b-42e0-ab0c-c9fbc64f8d9b" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "8bd7b118-92b1-4443-8753-f779c82ef116" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-035615-74950_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-27T19:26:40.896040-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "151f2c1e-f448-4fa5-9b61-81dc5c339f58" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d4b595ef-5e2f-4722-bf4e-48bb831bc057" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-002065-124_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:12:32.615882-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "172019a6-18cf-4532-89ec-9f4ec83dee30" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "28979d39-3da1-556a-9b82-2a9953b57989" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-P3-A5QF_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "903ed81a-057c-41ad-93de-aaa9d9c082c5" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2e51af26-4d06-4b66-be71-0bebed2e4557" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d30d7d4c-0acf-4b61-9d7e-2c15e20d73a8" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c0bc6849-2b35-4465-9d65-38c3a21a9a25" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0019226-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:42:00.849990-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b33d58a0-8855-42ac-baaa-0a1e961307f4" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "de41284b-65f5-592e-99bb-9157a9509c36" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-T3-A92M_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "86c72a0c-24c8-4d55-9f87-6b7198a10890" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d22843cb-8a14-4592-b339-a04cf1514205" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cdefaeb2-3a2b-4094-b25e-0c509b62c13b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b8f93296-f293-4af4-83bd-6ae35aebe59c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010368-9817_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "094236a4-db5d-4e05-b020-5136ee6f4225" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "85d63c6e-a6c1-47a5-92a9-216719073a4a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004072-413_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9a26d9df-9ab2-48df-ada8-8bd8455cccd6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9233f502-9580-4801-915e-732ca0f26a2c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-050720-203425_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:18:25.269226-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c1353660-3a6c-4a01-8800-d52a40b6ed68" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1ad86ae6-e1df-4578-9639-e768e6711e61" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008033-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "28cb9e1d-c34b-4909-a387-5a5c60bcd6e3" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "706b1290-3a85-54ea-a123-e8bd14b085bc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6012_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "badeaed0-2625-4a4d-bb95-d295e2c32c01" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8b2588c8-4261-492b-b173-2490a5de668f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e23c7006-1a13-4211-8920-47548641e574" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d2a0bb97-195f-422a-969f-0342485cf8c6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010743-8938_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1f6b16e8-e1f4-462a-ac25-700c915f464f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9e74f3f5-ab22-55d9-a79e-9884f3b0f109" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5374_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "88000b86-9334-41ef-847d-6668d17ec62b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "617df1e0-b075-4610-b6d5-8850786fea70" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "27fb0ae5-d8a1-46ac-ad3e-2464c52d9cfd" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "491f9f68-fb39-4d17-a75d-90d14e801df2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD15095_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:44:57.662014-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ae6cd26b-98b2-46a9-917b-cecd94358907" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "0e8b9b8f-041a-4d83-8af0-503b7d84e00a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD4383_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:07:26.436903-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ea5776ba-c4cc-4d4b-9e33-573ea824853a" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f14b2d60-39ff-428e-bfb9-a33f4d3242ee" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002193-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f2f48558-d331-431f-a14d-845efe0c6ce9" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1dc5e826-3f32-4d4d-8e2c-00fdbd76b393" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010503-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:13:38.880466-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "78c3f61a-5719-4604-8ebe-c21057d3e416" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "10fdde54-4aab-4498-925c-38ccd8df431d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0015591-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d2928928-ad9f-46d3-89a5-a00131eaec79" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "8723983c-94ff-55df-8165-6fd5937b5462" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A63T_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b477dfb8-c039-49d5-9a0e-912946dc3ad1" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "74606f8c-46a7-453e-acfd-91203aec6df7" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "75c0a7b6-3e82-4ce9-8856-dd3475affe87" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "47de90b5-a5ed-5ce0-ada8-7f2c8e621913" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A641_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0c14d932-3b44-48fa-8974-db6e01464851" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc3866fe-2690-4354-a548-10189054b85d" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "744cbf84-554d-4cba-aa4f-4c1e5e28a1ee" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e61558f0-d90a-5bd0-8485-ba159dba3010" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-7862_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "091478b2-f8c5-4ad8-9c89-06a48728fa2d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fbf59d12-7047-49b1-9002-00030c797438" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a61be572-405b-4b16-b554-7fa6c12a48a4" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Basaloid squamous cell carcinoma" ; - ccdh:system "GDC" ] ; - ccdh:text "Basaloid squamous cell carcinoma" ] ; - ccdh:id "fb148e0b-2d1c-57ff-acd6-4f2208af3ce3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A4IH_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8083/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8083/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eff60f0d-e3c1-4a93-9026-c0764c70ba9f" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f87efb5e-24f5-4d2b-b6b3-987bbda30e03" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "f904a635-80a1-579a-8f1f-0aa288492b45" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A8YP_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a9ebdedd-056f-4bc1-abc2-7089544a1549" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4a339708-153a-4780-a265-70557765a754" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e62166c3-871d-4b0f-999a-4f033d7cb6c7" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivb" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "dac87ff6-12f3-553f-a6cb-fae679002ff0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-4722_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "47e7b839-bde5-4b66-98da-7ed6e3e7c29b" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "60c8633c-16f9-4066-8aad-311b04b935e5" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6e767fc9-0f5a-49ec-999a-cda2daeba6ff" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "87e9b232-8b59-573b-9758-c7b5456d6fc0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7248_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "24a2dd45-0453-4bfa-af4c-cde8cb0c0cfb" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5fe254fc-76cd-4081-a46f-574f2ec76d10" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e5ab53bf-073a-49e7-9402-8e7261d385c8" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "791203c3-4192-4844-b32a-0f21944333e1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "26bc85c7-5376-467d-a880-4c415ba3b3a5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0014015-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:39:05.576558-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "968b2133-a7b0-4d2f-8949-f6ff299f1219" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "430602f6-cd8b-48d1-b519-dee691fc9c20" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003106-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "78b77808-ec88-4e6b-8393-decaa7bba86d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "247e1e60-27cf-4f37-9a1c-8db3284dcb56" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008904-6911_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "075795d3-4e6e-4edb-95ee-f4d7ca56b337" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1906d9ae-58dd-4b92-892f-6ff61788d171" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-005398-2604_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "adbb22ae-5402-4918-a4d0-b54e2f114253" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "155ca101-ad45-4f50-b9ac-45908daffab8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003009-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f8de95dc-1011-4b86-9a46-28bc46465195" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "1674c3b2-c0b1-4395-9822-81016a649ad8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-4664-11636_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:07:22.808668-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2bd6f2fa-881f-4287-a616-d43d33a5e551" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "8a0ce16a-46ec-433a-9679-e76ca74240fc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5506_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:41:09.015209-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "14f00898-8aaa-4008-9eac-0959333c3525" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3f0b65d8-182e-57af-87b9-29e59fcdaab4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-F7-8298_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "94c71079-a453-4a4c-b52a-ab686bc83b65" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8f5a4b47-4c69-4295-a576-fd3e558754a5" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3f2ed4ae-5b71-48d9-b120-4f7bfd4b34c4" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "72d80059-302c-57fe-89fa-10045543f0ad" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A6V1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b2ad9679-048c-43c4-9d78-45638ad5a493" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8f952c62-2404-484c-b8af-33ce60f4e024" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e980228b-ecef-406e-91da-09bc06d5ad04" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-000968-1363_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:06:57.341931-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "37ecc052-0274-45dd-98db-fb0d5476fa16" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "78608de5-dd5b-43da-8934-e0b6fa924ab4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-4493-11651_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:07:22.808668-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8955be34-dfc4-4a5e-9636-f27ccef4318a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "415b0c86-82b5-46c1-b51b-00e701add732" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008675-7728_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b1a78f00-1eeb-4c1b-838f-fb8453112c5a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "be59114f-e2eb-4d06-824e-7aa867673eda" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004755-1862_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "255bbe44-dce0-4905-86bb-317144348172" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b588dad7-169a-5ecf-885b-580be11d01cb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6992_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ce0b9c55-baeb-4ca8-9235-51a836a4b58f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b86352a7-2987-4743-aa3c-1895c438641a" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7a5921a4-5714-44e7-8ebd-048031b32b88" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "20b2ca7d-bce3-44c1-a0db-ef271aca97bc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD2717_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T09:58:58.753780-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "69907c44-c952-482a-a307-44efd82a16dd" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "23193585-2a17-41cb-b577-8044058658ea" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-8k5ygy35-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5db1c5e8-ddbb-4057-a059-6acf46826258" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "7c9e489a-67bb-5aef-92cb-b776ab07f413" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-A6EQ_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "041d7de0-fdee-4f6b-9945-058f8bab509c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "43a91c60-f1f5-4b10-b0ee-c55afadac481" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "37e8e5f5-0edb-420a-9f32-a2e167ef4cf4" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "86e71958-485e-53c6-831a-c456ec617b7b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-HD-7229_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9fbf3123-c654-4f2c-b41a-ac4dc029a5d9" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f1367475-a5f1-4a0f-aa73-5a703a3accaf" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1169973a-8575-4d2b-8da8-36a83aa5f947" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "dabe6d0e-8f19-43d7-9e3d-02a6a24556c8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002411-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e1e98bc8-81b8-45f0-8289-6c306defeaef" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a71bc3c7-5807-5766-8487-c3dbc27484cb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-5243_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6fc08372-0d9d-4b3c-b656-9573fa532c99" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d89d46ea-9a7a-4fd8-b11e-9c9ca4780119" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "664c73af-7fd8-43bf-9a1c-1109c71a303a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-6a5b9e32-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-04T18:19:50.810302-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e6616639-64a7-4462-9676-1b2420f371d6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3cd3b53e-38ff-454f-8b3a-d7942696429f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0015915-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f48ed568-6c4b-4746-b480-139ed3ab5794" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "80571628-74cc-4067-b16e-40cc5b040560" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0020147-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-02T20:58:03.565619-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "10e9e747-568c-4276-9275-1f1d7cb30f81" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f6106a03-d94d-5b31-969b-ddd1d6ac23f7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-8596_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "226992b4-f81f-49f5-a1da-37ab1742779b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "51eeba12-4cfb-4842-ad6c-e49cfe5ef207" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b8077f12-81e6-49f1-aa69-a4b6f5825534" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "afec3d92-5a3c-5b04-a2f1-49031942cc1d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A6IH_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5f210369-1839-4f18-b081-974efc7de032" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0d0194eb-d83f-4028-9b4b-3308c0207133" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "63b4690f-f247-4874-9923-e96375c56a01" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivb" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4b" ; - ccdh:system "GDC" ] ; - ccdh:text "T4b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7c2fbcc8-56e0-508a-84f8-97fb3ad6a8ab" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6011_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "afbf3020-1715-4e74-8224-05e316796999" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "83b525ab-ad48-45fe-bbe9-54d6ce88054a" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4d620a8e-517e-43b2-ad44-d9a8467e73a7" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "8d12f0ed-6345-50f9-aad6-68ae3ab8dbb1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-RS-A6TP_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "281693cb-2d6f-4a42-af26-d807ea67a191" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1ce08042-34c7-450e-b1f5-8cdf9bfc5a77" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5d166131-946a-46de-b446-ea35d8b0e1a4" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4a037aae-de5b-5ac6-875f-b86b71ff50ee" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-4078_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2027ede3-13f5-40f6-bef6-16704981d676" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "25b0ae1d-2add-49b9-a5ae-99702a5c48f4" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3423d96f-4c5a-40f7-8e66-3dd4b9818f52" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1fdbf271-8b0c-5d7b-bacf-d883e0d0d054" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5360_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0c00768e-8b13-4b8e-80fc-b344740845f1" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9439bc03-9d26-454a-ba80-a0f5a4585656" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "740cef36-1319-4096-8ba3-8e6fce6282da" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b5616ad7-8322-44c9-8b64-01314decc5a5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-9df16b49-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3dc819bf-5af3-4be1-a892-974d670975c9" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0ab5d8a1-108f-450c-89bd-efd0c4d285ea" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003059-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1303ddf5-cd55-47c9-9f93-c09d7bbf2f80" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5a82f834-a2f8-4d61-a816-c410213556b4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000319-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d0ef535c-d0ed-471d-a1a6-3cf9600d37cb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "35b1cfb8-bac8-5abb-85dc-1761cd25e90c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-P3-A5Q6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b929bf9b-34a0-4fa3-9bd5-49f8097c573e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "73005780-ea15-4353-b6f7-c26865d3f4d0" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1ac65133-fc2b-4b41-a101-eacd225f71b1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "696fd614-355c-42d4-b318-9d4a0d23ee17" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-001641-3996_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:12:32.615882-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "14dd72d1-596c-42c6-a5aa-c3220dc6fc21" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "576b4319-20fe-4dd8-82b1-c34a70bd2182" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-596e5ce8-metastasis-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7889cf51-be9b-4193-b057-5f348fca10db" ; - ccdh:source_material_type "Not Reported" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "eac797ee-ffad-5c80-8f0a-7e95590e118d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7389_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6e926ab9-e086-48cb-876d-d490c46cb7f0" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9c35c1ec-5ca6-4900-aa39-ab1c962b9c4d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "48e8dd81-ed4d-5c54-af66-84e86477d5c8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A6DL_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "256469d0-5f36-4966-bf4f-3b4297e55f43" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bd90f967-84dd-48cd-aec0-9de9a76df7a9" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dc102dcf-3f48-49e2-8a6f-cfdc34f8ed0f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T0" ; - ccdh:system "GDC" ] ; - ccdh:text "T0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "bd3c4df6-90f0-58df-8713-51ca36d74124" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A6V3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "97657453-6a97-4879-9440-fd0eea9d5f33" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "285e2354-8efd-4951-87cf-0e188d11423e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "dd691506-83cb-50c1-ae0a-2583d57079d3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A499_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9ca906ce-18f9-41c5-afcc-353b26fdebaa" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7d93ba42-9e87-4a6c-8b0d-6f185645a90a" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4c9f5000-dbac-4497-b434-57036c18a022" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008669-7093_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c0927894-b73f-4930-b147-e079caeb60e5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "73fd5157-4aa2-5b2e-852b-889d058a6f8f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5366_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "62fdf8f3-a028-453f-b27c-c2506be68cbe" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f3e5a16f-7c16-425e-8321-b6b19fd469d3" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "111ad944-f78e-4ec6-967b-f05c49b49b1c" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fc929f30-0322-43c4-b12f-ddff9d8a2335" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010590-8636_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "175e9244-58cb-4b1a-9614-a4fb1c0e6603" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "e89ecbde-44e3-5db5-be20-af6cddaa4e92" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-T2-A6X2_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fe1541c0-a239-428f-bf43-8b8b999d362e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "161b6a0e-0b50-41a1-bdf3-bd7666067454" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0080b5ac-b9b2-4fef-ae51-6a6178325364" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6cba02c0-48e0-4424-964c-a104a6652d07" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-007903-6035_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fbd21489-29cd-4d9b-8d7c-e04342040edc" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "1fdf9d03-4341-4aaa-b47a-98f1221816ea" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD3249_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:00:26.233095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "425f42d0-0349-42bb-9072-cfb0bd97e922" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "589f8f36-79a2-513f-a83e-cd707818b834" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-HD-A634_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c25592d6-b3d3-47b6-a3c5-3cbc81803152" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1bae9a44-1ce3-45b1-9902-40faeba58120" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "34c0ddaa-1fcf-4e5c-b5bf-7cfae596c09d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c061cf11-1e3a-5906-b58b-2b5530a456fd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-6870_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5bf05a41-3a19-445b-96bd-439b9cac01eb" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-23T13:20:20.149518-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc1be5d1-ea6a-4e7d-822b-51887dab88b6" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e6af426a-d899-44ef-96a8-92bd76a0ea3a" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M1" ; - ccdh:system "GDC" ] ; - ccdh:text "M1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVC" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVC" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "39076d27-3e66-4f32-a646-08d8e866bb8c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-5201a20a-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "68c9aea7-2d45-4200-b2e5-02aa0ab64d09" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "60a003d8-42fa-4981-8fa8-a96a6f4205ad" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0019316-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:43:52.092583-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b3eb534b-6441-4294-809a-ab6963d9aa39" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "82cf8f30-edc0-444a-9607-498f1f4fc6a5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-NKI-ETWO-SK3U_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T17:51:39.178920-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "92e24628-56bc-4c65-9c4b-76c589943948" ; - ccdh:source_material_type "Not Reported" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5a157d1d-a316-4b42-8444-63e22ee704ec" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-065d55ae-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7128ab9a-3a2d-4df6-8604-829406ab3bed" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "43aa2ba4-d59e-4e9f-9b1f-009fba8ee08a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-4754-15863_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:07:22.808668-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c3431e69-82eb-4eef-9e13-312bfde95103" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "309da786-ca2c-4c3a-8907-5e690f375f54" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008800-T02-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:09:54.181448-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5dec4e0d-afbd-4ad6-8acc-00b5ad113a03" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2a826dce-5a83-46e6-8ff0-9c7597ff54d4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-673077-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-28T12:05:42.341898-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a5fa104a-bb1e-4e7d-a740-607fc803f4f3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "094085f3-01f3-4992-b559-832c897a704f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003374-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e868826f-a629-4839-bc5f-5383b74aac12" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "be57683f-0245-4929-89d2-98740dc99b8c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-011271-11674_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fe032782-a750-46b3-a282-26e110ed063a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c7db86f3-b6c1-59db-961c-534b91393b19" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6010_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cece12a4-5f68-4a6d-8815-e88495da08f4" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cd2a5d45-9bae-4c96-b8dd-7ad079153a49" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "904e12f8-ab59-4ad8-8096-7b82f9388d70" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ] ] . - -[] a ccdh:dict . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0722d8c6-5481-4736-a9ea-24253edffa93" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-005284-2016_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f02ce49d-85b8-4704-9dbb-8e012090fbd5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5fddab5d-aebe-4b6a-9812-a6edc05c51cc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008897-6910_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f8a73605-d802-4364-aa6e-5d23691f92cf" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3439abcc-0169-490c-8794-73e53b937d7c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037577-74790_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4121fe4a-1ae9-41e4-954d-88c88d047d9c" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b0f16df9-9556-4ff1-b8b8-afabece2fd14" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-UHN-071596-ARC1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:18:10.730001-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5cdc6f40-9b5f-4dc0-9082-a9500c3e5af4" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c239680c-7353-50f5-a155-33973562e904" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A45W_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7202ca4b-6caf-4f4d-adc9-4c59b00cbdc3" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f9ae08e7-9166-4699-801a-4bed11f72dc2" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fe66156a-b3ea-4ed1-a5ca-68a3664c3505" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0bf30179-24b0-4b0e-856d-7226a72eb3e0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-052973-173599_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:20:30.865187-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b39fb248-8053-47b7-aa2c-d69335f218ce" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "acb41bec-39c8-477f-8cc2-b8c982bf5b2a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD9755_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:57:54.983619-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2b14983f-b848-45de-9881-5dc4f483f7a4" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "fe440219-2351-41cb-a0d1-e22bc73d4aa0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD941_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:46:27.877516-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5e91c356-4431-478f-8033-99442bcdcb95" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6c55b480-1444-4ae1-a079-72287e8794a4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0017687-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:37:32.909734-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "52f200af-cd9b-4d63-91fc-7bf44c67c537" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "54c68cb3-653c-5035-829e-11c7b3853119" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7089_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f2e436bd-bbc1-4b1d-9a55-e2a83a1bb510" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "267e43c1-bf99-430a-b077-147985fb7e64" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7f11de1e-f75d-4476-a179-b50a84a45a78" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a6c24a00-67fd-4a1c-a371-b6e387dcea61" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cbfef8ff-181a-4048-a571-f78fd34799ef" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037220-88689_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9f95c03c-4c29-47c7-8bff-47c3014a61b5" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3f8fca8c-e8c8-4032-a0ac-488e49fd623d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-023359-23864_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:44.678712-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9eb7cb20-106f-4668-9ef4-c0344e8df3c1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "11688639-0783-576d-ac58-40e8e3a19be6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A49C_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7758f04c-0e07-4e8a-882d-ece76469f433" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "34b36112-f260-4bf4-90b7-0cebc5988b59" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e978fb2f-2b7c-4ac7-b4c0-fa527f8c4ffb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-090186-282458_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:52:12.528526-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1bee9751-cbcd-46d2-97ac-bbe9f4495f2c" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e7406302-5dd6-45b1-ae98-a8094c495943" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD13780_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:40:26.338588-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c9bccdb4-1bd0-44e0-bfb0-7588611ab01b" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ada2a9ee-43ec-4198-b1e4-bb0c62102973" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003061-9096_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7d368af5-dc58-4ddb-af35-cbc63bd638e4" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "99aa5d5b-c650-47f5-b485-da3d78661529" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0018925-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:42:00.849990-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5007e321-c75c-45c2-b4a7-0d3cbde5280a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e769c390-13f6-4054-8182-017360bcfdca" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004469-15_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ee78495d-54c1-4d73-93d7-06034b0c7bd0" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b7c4b294-1897-5001-8494-cedac0a7f991" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5440_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "28780b51-0b53-4d73-b399-ec90b45de0d3" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d773747d-fd09-4890-a436-9b212e19063b" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3f9a9578-e8e6-47b7-af7b-31d9cffbfd3a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2457e378-c4bb-516f-8966-82e1453eafd7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A460_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b1c47b2e-ba48-4f1f-b07e-f930b1135201" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9e397756-8535-40f2-9fc8-d0f1392a5e6d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "904d5793-ae7f-492b-aaed-ea6cca865d63" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2b051980-b5b7-4b1d-900c-9705c24b2a78" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009287-6605_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "781e0bea-f234-496c-915c-c163fc8de24b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "39fa27e5-b36f-50e5-b173-1bb73a1ba5ba" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-6826_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7aa13049-917a-4d7a-bceb-3c718ec8fb7a" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a31ecf7e-1838-412b-ac34-6fd8810739c9" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1737989d-8463-4761-b111-53e4fd396375" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "99aab93f-633d-4ce6-8ccf-36cb05c5d2cc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0007575-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b1d7b582-2302-44fb-a98f-13372ca17247" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c1cb359f-50c5-527d-941f-328d1d34f062" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-IQ-7630_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bd97a61f-6744-455f-88cf-2a418f2458a0" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d81234fd-4e10-469a-81e6-f23a192f1ef1" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3b35e7e6-0e30-48be-9d22-d95fb49f1227" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Adenocarcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Adenocarcinoma, NOS" ] ; - ccdh:id "78daf8d2-f74b-4d9e-9ffe-79e90425ad3c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD7638_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8140/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8140/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:47:53.195932-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a4ae0499-714f-4d0b-95b5-e085bb652117" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Basaloid squamous cell carcinoma" ; - ccdh:system "GDC" ] ; - ccdh:text "Basaloid squamous cell carcinoma" ] ; - ccdh:id "b4c1dd26-92ca-5bf7-b861-bff7f68e8436" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-P3-A6SW_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8083/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8083/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "50e494e8-d48a-44ec-91b3-5755b42f70ee" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0b1a1f48-c58d-447a-be06-1f4e0c1c39d2" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dc6d258a-dba3-4186-bf89-9efb70a32365" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivb" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "96e73819-3b05-4a68-90bb-ceb60d419d50" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006296-6704_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "51ca54fe-f436-4a88-a11d-ab0781666edf" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fac833bd-36d8-5306-b322-92106575bfe1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5430_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5bae7161-8838-4b10-9210-02deaae4b9c1" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5d293d68-61ae-49ad-bfcc-e0bdb91cc29e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "72f98dc0-3fcb-47a4-8c7a-52a7cd9d3fdf" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4151c76f-9dcb-4451-a99b-889e0024f8b9" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e4e39ca9-5e45-497f-b616-8e4d9edf9431" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-3876b32c-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "59d867e0-1111-4114-b47d-39b108eecf06" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ad265c45-3ba4-4f8a-afcd-70d7f2e79751" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009344-6546_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b993e287-e823-4843-b182-3bf775dfb489" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5976f296-bcb7-49a6-8db6-8620875f12e3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008036-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "257963cb-44bc-4946-ac72-7a1bb02f6af9" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d4b70019-403e-5a16-b7aa-5ed71d54a517" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6473_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ed96ee9b-cf03-4eaa-b783-07b739e3a648" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a9e7990e-7daa-4c79-a836-ac1ad63aaa37" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "274578bf-55cd-4807-9c8e-573db026da1d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002592-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a75ac689-6228-4806-b699-874f8ec28ae1" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e792cf88-dfe7-5130-ab9d-df59b3ed1b3b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7421_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6766e43d-12fd-49ba-bdde-c19bb71d329d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "40583cb5-46f0-4966-82c7-4149f14581d4" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ef81caac-1fdd-43dd-80a3-4e18eb35271e" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6ea3680f-baf2-53a3-8308-ae9dfd6ceb1e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5355_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "256d61e1-54c4-4250-bd17-5bb82496f5f4" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "63535469-d402-4ba2-9ab5-986e6ed80f55" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c2ef7833-c2fa-446c-a12e-f353c744b1e4" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cf36baf2-10e8-523f-9dd9-0f9c938be574" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-4223_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3285f0ab-61e2-4235-b0ac-af1718ca1874" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "75430612-09bb-4d6f-9304-62a5b517d424" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "82db742d-885d-4788-b509-474715ae183b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6b76278a-cb58-4308-bfef-fa1902a02375" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010467-10870_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "02cf8f79-3109-423e-b290-9b0cf112e827" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "4228d736-f7fe-4ef9-8bce-39b8c6c3bc70" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010459-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:13:38.880466-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d69183b2-2961-45f3-a4db-3d32d08f6abb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "396ba806-81a2-43e2-be95-276cdeee09e3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0003049-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "162d69ba-adac-4884-9d98-3bc70cdb72a7" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f8933756-4001-4c7b-94c7-2d8964ffda9e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-005118-1198_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "430338db-7df9-43c8-be80-6ef5a6b98899" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9461c5ae-cbec-5810-b0a6-9644168accb4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-4723_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f4a14404-3545-44fc-953d-e441139e7fda" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4a485f87-1a73-42ec-af0d-0b6de2b23504" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4db1536b-23d0-48fb-91f8-248a03f58aa4" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ea23b8a9-c2fd-5392-8625-a26662cdf0ef" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7404_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a0723862-62f9-4770-b415-e8f52c447e7a" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a39131b9-e7c7-4385-a1b9-d8a0a0950337" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "47d4038e-908a-40b8-8a91-7bdcc4421624" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-007857-7172_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "01a0cb84-c716-4134-aa16-ef008ae30469" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5baa4771-eb6d-56d1-821a-33157bf79573" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-7866_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fb5ba525-1658-4f8b-81f8-8d7ec3727773" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "736c3c8c-ff9f-4892-860f-04665a1f344b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "af5d22cc-87f4-4b91-97bc-7103bc07adcc" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e1518a49-5ef2-41ca-ac88-edc88e8ec241" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-e8aa0080-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "baf6aa81-4b32-4d7f-8557-5942a0febb91" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "9b998038-9a23-4348-a5f7-e2d3126e118c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD14936_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:46:29.991257-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fc50dce3-ca12-4a52-a8fd-27dcd3887746" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fd3fbe29-2fa3-41f7-99c9-51d3d05ff5b4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003147-99_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "13654c9a-afcc-4635-9885-8418a318ac7a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "583cb32e-5e1c-4f3a-bdef-035629e3eb57" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5451_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:40:28.865821-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a8ae1d5d-04b7-4012-9bf5-70a664f325ee" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2c09a792-df0e-513e-a9a2-7e363de6435e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-F7-A623_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bb90f8e2-c872-4ded-9d10-5110f023762f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "33c19ae3-107a-4b64-9906-5b775025cd8f" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5f14a8c0-f19e-4a67-b6dc-907196ab34f6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "11781aec-74e7-44bc-86ce-9941aa62b6f7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-1594-3307_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:00:11.934564-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4cb8fa37-e3cd-4d7e-bb34-67ffdf228d78" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "6284d2ec-e8b6-5cce-957d-f55704379de9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-TN-A7HJ_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cdc66ca4-8864-4f22-bc4e-8fb5e073937f" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "412fe306-9755-4efe-abb0-9af695b5691e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "50df1144-990e-4357-8a15-132289bce0d8" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "07feaa02-95ec-48b9-83ff-ddd765c8ca9d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0006098-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:02:01.981535-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eca4b442-f9d1-4018-94cb-158757bd3bea" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "24e37f06-2587-52ee-bcb3-40688978538e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-A6UM_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c4aabbde-a46a-403e-b974-7b61b964a1b8" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "99404948-9837-40eb-bf38-c1cfe1b9a88c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ccc0e6ba-cf8b-45e4-9f0b-dd2422b3e470" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6dd63ec3-e88a-4da9-be07-0d11a1768dbf" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0004416-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:54:19.535598-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "34487c7a-5f9a-41b0-8ced-d7c2ce3653e2" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "fcd7326c-3bf2-425a-b117-f1e5f6910db9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-c9c06784-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "43bdb66c-6b5a-4a1c-9d44-2717ecc981ed" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "bad7f79b-abec-4d69-8c30-3abd1a5f31d9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-UHN-700007-ARC1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:21:56.842750-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "72155863-300c-4515-962a-d0c332cf5b63" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "43cceeb5-008a-58cb-b219-34c3ac43e86f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A497_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bea32bd5-4068-4351-994e-09b3bf819ebb" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "882c6ec3-1f56-43c3-8a41-da060f9f5ee1" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1fe06c82-aa43-44ac-a091-8dec17e796ba" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037687-158970_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:26:11.717995-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "98e2382a-2d7b-445d-83ff-1dc53d66db12" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "d0d35a5e-572f-4cae-a0df-67ce30803048" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD14308_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:41:59.431029-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "32112d7c-2b29-485d-86c3-6b995450ec8c" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f0a3480b-d52a-5db1-b03f-693a9bad5cfc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-5559_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8c925c97-a7e0-44b3-ac62-b365e89975f0" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fbea64f9-b46b-4af1-bfb2-1791d93977b6" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "43fbb037-8ba4-4ba3-8458-71a027eda822" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "90bcf4eb-dd05-5d4d-b666-6947b36143d8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-A6ES_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "59ddae84-32f9-40c0-9d9f-e3b883ab5c47" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0ebb072d-0596-4deb-8607-2548b0396fb0" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f99dc3bf-e91d-4011-b62a-2653b53417f0" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "36009b16-600e-42f9-9509-783c76c5b88d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-034499-159099_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:37:30.937085-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bce047a2-b5b7-4ccf-8bf9-406d8c87d7a3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "95d85e5a-b82c-59f8-b7ad-710e019cdebc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-TN-A7HL_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1077bf93-cf23-41db-925c-c633921894cc" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9c02fd4a-a29a-4a44-ba96-5acb6ff11f7f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4a0d79fe-9eb9-456c-b483-ccf956597a3d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "bddca644-5ced-5789-8d31-c00df9f776ad" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-A74Q_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "343c1ea3-2785-465f-b01a-2d609b486ef9" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d9095c8b-414f-41d4-a478-ee54d2728762" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c03b3dfa-7b9b-4a21-9274-d174bc14440b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6d395db6-3f58-4c4a-82dd-9b3b9c35fc8f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004670-873_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3396e2a0-10bb-43b3-b5be-7980064889e0" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "45ebf5cb-a072-582b-8ace-7cd198806bc2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-F7-7848_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b99fa26a-da90-4b98-bea0-f0c71a1b6ea3" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8aa78dee-bc22-4d4b-86d6-60fb80358da8" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f7831fa0-1f1d-4623-aba0-8117b925a1ee" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "18a6869d-fcbd-526c-a71f-7f5145b12278" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7440_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bb0c2fd4-8ffd-4825-aaf2-e865090940c8" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "86b81c8d-ae15-477a-86fa-6e10f1263f87" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1d594963-b5c3-496e-af52-5f6dbcd6910f" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "80eca6e9-b390-4878-a070-e40c1c19b1f4" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d5b740be-4c9a-4bec-835a-4cd0b394ded4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006383-3525_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1a1294ab-79bf-4e29-b958-cd6c3b25a984" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f41a7343-e52e-5f4b-b902-ccd3275b00b9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-DQ-7589_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e22036a1-ed2f-44b4-8bca-bd9808611fd0" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "41ec6e82-6bcd-4057-a370-bfe1801e2e94" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "19c44a45-4f80-4d5a-beac-83db256a3434" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVC" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVC" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M1" ; - ccdh:system "GDC" ] ; - ccdh:text "M1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "59b73fbd-93ab-5cbb-b052-82d5e66a4c16" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-5249_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6697dd71-5a58-4862-b26e-ea16dcc383f2" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b72390d2-f19e-493d-9a30-cd81dd232188" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "4f1912bc-3704-49b0-b916-6d0e99463553" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5075_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:07:48.972608-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dbf24e2a-1a10-4dfb-be35-8021f82b947c" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "d50387b2-938c-480c-8287-6c8754e06278" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-6686-17868_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:10:26.105156-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2022f8c2-108a-4919-bbcf-1dd1ba4fa10b" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "556216dd-a648-5f7e-a4b1-8f8688a354b6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-4217_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5eacbcc3-8ac1-42bc-b3dd-53bc693d3cae" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b9427fad-04aa-4e73-99ba-ccde04e4978b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3d9307b9-f42f-421b-bebe-ed692a5868ce" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ce63ab25-f6d3-475c-abca-986d8d91b869" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0019055-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:42:00.849990-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b5793531-8ec1-4bd9-9544-57844ebee0a6" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "1d93a53e-6030-43c7-b479-9faa6fc8febf" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-002633-5917_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a8ec3306-0190-4e13-94d1-e269b8479a1d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7ed3e77f-cc81-56cb-b573-cc6df309ff48" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-4227_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0e81b0ef-6f16-4a56-9f18-8acad8bf9ccf" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a6748675-5433-4f39-a578-9a1ddb8bb1b3" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f31d010d-cb3e-46da-9647-38fdb9d1bbc0" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c18fbc5a-880d-5f56-8466-527763c437d6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A45Z_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f844574a-cb7f-4f66-83d4-ee0ca41a63d1" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "866bc103-c5bc-4365-8ef6-40064b33046d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fc3d6178-acc8-4e4f-b935-3cc1f6c0f304" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c1111640-7729-436a-9b46-88c0ab534b96" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-832679ee-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9590434b-5b17-4ee8-b109-7ebb737252ef" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "57e78d94-5a02-499e-953f-e5539884009b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-036456-74857_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-27T19:26:40.896040-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6f3b4fcf-0519-439f-b3e9-6a0678745885" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "601e60c5-25a1-41e7-a47e-2a069cb8e099" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD11228_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T09:56:48.362532-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b62623cd-3d81-4e48-bba4-7df880930106" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "126d74e6-2981-5aea-80e7-62ec5cff609a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-4739_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b916fa4a-1d15-4619-9d6c-1000e96b7e0d" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9491d6f0-1e3e-48e5-aabb-87704511904b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f450dbe6-4972-4c49-af97-963bcd0d0da0" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "bd9d72bf-8331-5bd7-a4bc-1522518d3fb7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A468_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7dc1e99f-c601-48c2-8326-389d9f084e29" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "54fda578-dfb1-4a1b-8b01-2b7e9292f387" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "66643338-ed21-460e-a1dc-b547c5b14500" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ea9b7e18-cbc5-4588-8b59-d32af85db2c0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-052774-173461_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:20:30.865187-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f37609a0-84b8-4203-9497-9f60cc8be539" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b7c8a51e-1403-54ce-a94e-ca7cfc05c21b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-HD-7754_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3fb86c71-0f8b-4022-b19f-d394401df9fe" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-23T13:20:20.149518-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "97d5f4b1-b8a5-4fb1-8af6-f0e6cfc302f6" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "adb496a1-07eb-45b9-8690-00184143300e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "675831ed-0976-4fdb-87da-15a7a85ba6b5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-9bb5e551-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b2ee3f62-a9d8-4f49-bc51-1d3f17d63b14" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a37311af-d40e-5c8f-ba14-b3b2ae22e486" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6997_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b4c9a3aa-151e-478b-bc18-ce793b68ae09" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "00a721c6-6cb7-4408-a63a-6dae9310a3fe" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8b73f661-e1ec-4bcb-9eea-a5e66237229a" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ed6cd70d-8278-4da3-9067-ab74bc051381" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-007474-4132_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T18:54:47.858087-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7946822e-6d72-4013-8be2-f3ffb0487d65" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "48994484-82cc-51ba-a8b6-6f4663599d40" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6478_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dfbc5ddf-a361-4d72-ba8d-5615ca644357" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a26d04d0-1501-4cc7-afea-154a89cff0ff" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d7acd35e-0ca1-42f0-932c-a3cdd6f8d09b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037833-36073_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8f775235-6026-40f6-b156-cc3711222412" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b23327de-182a-555c-9323-77d5bd3dd453" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7415_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b7d03ca7-f518-4587-a54f-03896e53b167" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "72f5520a-28f0-4be6-afe0-6bee4de5b69a" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "106c7016-9bf6-415a-a0fc-3722a1aaf2c6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "52d5ae11-4bb0-53aa-bff7-31190888f8ff" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-5247_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "950233c0-c1ca-4b69-8e3f-a6072dbc7e6a" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "43739161-8083-4740-a670-1a334a87ca7e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "64881717-bcb2-532a-b0af-395ba5c62c2e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6481_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e9a39a90-6401-4a9f-baa5-606e8b5176f6" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "04652163-a674-446f-9e86-607de19e4c34" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f9e5f978-310f-4011-86bd-f468da998bd3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0015030-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:42:39.927651-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e3362d03-8d6c-4be0-b1a6-5ce9c230f4f0" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "066a4a47-3b4a-582d-984d-476fa8a4fc57" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7422_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9e25f49c-cd83-4171-9e07-51aca3fb1019" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2c2db97c-8c8d-4f1e-ab73-469238609d61" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "63bdeeca-a7b1-47fb-9945-c24f7513c56c" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "28fc2416-e276-4a4c-963f-1ff59d64fb44" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-a947c792-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cb69d223-6e16-4e94-8a35-b1197a261b19" ; - ccdh:source_material_type "Not Reported" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "982f892f-104c-4948-8788-6c77775e53a7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-013165-23146_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:44.678712-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "27e33c39-2025-4573-9b0c-1bc774566bfa" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "22e091bf-8af8-5910-9664-c73e7b5f44fb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6487_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "027dedd3-bd53-420e-b7f2-eb5b8c26bcdc" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ff63290d-0644-4387-99bb-697150a7fb6b" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2edff908-b791-5c44-b0ed-cdbad3c1a249" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7418_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "26eac019-6e9b-4ab1-aa1b-323f76d9aef3" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2e5b2590-4227-4265-a837-8175920e4d01" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ccd7a7be-3065-4f30-8d21-94bfdc0b4703" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc37f4d1-d8ae-4367-8abf-7c6da579d09e" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "bb2f0211-8bd8-5667-a49f-0e507f10e863" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7424_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "162ba21b-8262-4815-9e65-5b064f0e5885" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7dafe515-fefb-4656-ab96-b72e09e041f7" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9308d3df-4126-470f-9dae-db9362050c29" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "979324ca-d8fa-4bbd-ad7e-1c663c5a4a9b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4f08ca0e-bd9c-425c-9137-a8bc3654ff09" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0004619-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:54:19.535598-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "407047a0-1065-4e67-aee6-a3a66998deb8" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b9143400-abdf-5f03-9771-ebafe5bb5d43" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7371_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ac9f5493-c06b-40dd-b80d-7be718d27289" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5a5005d4-6cd9-431a-89ec-ce6d34b0fc7d" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Malignant rhabdoid tumor" ; - ccdh:system "GDC" ] ; - ccdh:text "Malignant rhabdoid tumor" ] ; - ccdh:id "cbc897af-ab20-50cf-b397-5bdaeadb4691" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TARGET-52-PASAMZ_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8963/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8963/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e5a4af40-c272-5aeb-942c-4be4614b4cfd" ; - ccdh:source_material_type "Primary Tumor" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Unknown" ; - ccdh:system "GDC" ] ; - ccdh:text "unknown" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "972c3046-1f6c-40fc-a83a-3b200148a683" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5830_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:39:05.012118-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ed2a5846-de67-40c3-9074-3adc9edfb0b0" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4e9b9fad-2d73-4867-b7f8-8e42769ea41e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009088-5942_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc6054a8-ec09-42af-be24-4041b7be75cc" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "58498007-02e8-41fb-b884-2383b5eb1414" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-007582-3990_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:44:49.261364-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f198873e-fb8b-4ddb-8d79-1fcf1bb1d764" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1da5c51a-ee25-51a6-a4c2-27d8fdcbe24e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5365_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "665d4bff-603c-497b-816f-c98784665d0f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "665d66ad-54ee-478e-bdd0-85d77980fb3e" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1ed245de-fea4-42c9-9197-773bcd12d2a8" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M1" ; - ccdh:system "GDC" ] ; - ccdh:text "M1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVC" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVC" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivb" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "e2403080-b7b5-4d13-b62e-9b7293a45058" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002484-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "89363cf2-b8d0-48cd-97e5-4cd68ed372d3" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "748313dd-50be-45e2-9d94-75752dd6e783" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD10965_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T09:58:58.476597-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "97354824-7fe1-472e-ac48-74ad10e5da51" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3f296a63-9ea9-4648-a621-c8fe8a6d631e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-cbxznf5u-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e0559edf-8fa9-43f1-acbb-7964ea0c33d3" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c4b50b5a-dee5-481b-8c34-5584abba267f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-UHN-614933-ARC1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:18:10.730001-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "09f9d0e6-10af-4224-a875-8d1e99e90eb5" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5c73649d-f112-401e-a47c-785337555930" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-JHU-02535-03020_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T23:09:11.890404-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d34c6f0f-6b69-4820-8dc8-90d8d54ff7c4" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "37ac68db-02ec-42d2-92bc-d7d2f4c33bf8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008078-6166_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f2c471a5-55a3-4180-be7d-c3560efade4b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "8932404c-6adc-4b1d-81fb-fdb4dbb32ddd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008185-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3a9e0ea1-fb4f-47bd-bf6c-831f7101b005" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "becd7cb0-9352-5c38-856c-fcfa539fdea3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5431_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "39e3facf-6d13-4611-bcfa-90ef0350814d" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8897e2b3-1863-43c7-a84f-fe53d12371f9" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "be567c0a-3833-45d7-b846-d229a8e16e16" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d68e9ec8-d562-49e0-abf1-ebc41a0f439a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006509-3496_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T18:54:47.858087-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3e441a98-f869-414d-9732-4b4037711d5e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c8d65c8c-9299-49bc-bfe0-97c19ff35fd2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037050-88705_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "58a5858d-4740-4da1-8959-43d7b05ae1ea" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f7e49651-4dc5-50d9-af24-de743caf866b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6482_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "92173f97-b46a-4950-8cd8-6729ab9522c5" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3a24aaeb-37ce-4508-81d5-e531aac8a167" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c2494ea4-5db2-5716-9afd-096e152b592c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5356_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fb9d2ba0-7673-4587-ab69-0059fce2f671" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cf684788-d8e6-49da-8421-b2dbf040a529" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bcb5da85-78d6-4519-9740-378587b1bd37" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "e71fe2d8-2dc3-45b4-bc48-25b118a6f909" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD2206_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T09:54:31.122378-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "68742842-28e9-49db-b49d-79c73ad4ef0c" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "b03c5a4b-9dd8-4186-b8d5-a65acb317474" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD3459_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:04:01.286185-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c54fca3a-3919-4ac7-81b6-f1cf955f47a7" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a08be31b-24b0-5fb3-b49d-955fcce7603c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-6827_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c53d6135-c614-45f4-8f41-49b20ed4a549" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2ef80e58-961d-45d6-ac3a-a520be3728c9" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "460e7821-2712-4d74-b5a1-b2883b3197ca" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "da37f4a4-3f09-4771-a1a0-9b2ce6e0df03" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD2161_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T09:54:06.130101-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7f5f0ba4-3eb5-462a-8db8-31faca9d0d27" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d2b0be44-b12f-443f-9d48-3e26ea1ed386" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD7867_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:48:10.807261-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1fc039e3-94d1-4fe2-9d51-796dce543f9f" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d9cc35a1-8103-5f6b-8d97-cc64c564c677" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A7JH_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1c9d867a-6fba-49a1-99ba-63bd01942397" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "980726e2-9e0c-4212-b5aa-69e139fc3be7" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2b803b39-f13c-4335-9845-05bb61830015" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "27b201c5-0310-4f7a-835c-31fde311cde6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0020040-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-02T20:58:03.565619-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8738d7cc-e80c-4a00-bc4e-fee451f4b19f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Malignant rhabdoid tumor" ; - ccdh:system "GDC" ] ; - ccdh:text "Malignant rhabdoid tumor" ] ; - ccdh:id "d1368e23-4a00-5b0c-ad28-56a5a4dbd833" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TARGET-52-PATYUA_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8963/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8963/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "83a37c0f-ac29-558c-b7dc-a9fcfed82b61" ; - ccdh:source_material_type "Primary Tumor" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Unknown" ; - ccdh:system "GDC" ] ; - ccdh:text "unknown" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "efe7297e-9961-4ac3-b247-a9322e18240c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD16071_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:51:38.104730-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "542b7dd6-20ad-4719-bece-768060ddab97" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "12b8aa2a-5f0f-4d64-9cc0-ff4a65619c10" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003438-7875_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8ccd1ad3-a277-468d-ae44-03e6c1964c3d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "530535a6-b47e-48ce-b312-54c3003c14ad" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002854-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ad472d22-bccd-401b-ab2d-0ab7a31c7b73" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cf19d9da-2868-599e-9281-91b9e064078d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7374_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "77be0d91-0525-439f-bb34-3a0702c81085" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ece42fcc-b771-42af-92c4-39fd74b645c5" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "89e61c6e-3fb5-494b-81b3-7280119fefc9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-011185-11116_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "25bebf87-88d5-4cd5-b2d7-3f2b7c1a0a02" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "00fbc722-7387-437d-b859-3d35c86e02fc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-040b2fef-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "25007740-c3ea-41f0-a9dc-52de44cb9faa" ; - ccdh:source_material_type "Not Reported" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "366df7ed-b836-4cb0-9146-75d22e0ca019" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009836-7821_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "356353d1-c8db-4f97-b1d2-0b895cb42266" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c508644c-d496-4647-a065-4e0077d99b67" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008357-5599_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "80c31730-c365-4f43-ae30-d082f4c7f67a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fa79bd3b-f6c7-48c1-93af-5b6fb08de876" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003292-1283_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a3eaae17-ef1a-442c-93cc-0fd82a8887bf" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0b894a71-55ca-4246-bdf3-4d36622b203c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0007622-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8b9e009a-6ead-4105-a148-8c8a44be0658" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "6252ba82-08cf-4a88-892e-bd2847842225" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0009588-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:09:54.181448-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0fd4a1fd-2313-475e-ae01-d424516e42c9" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "155420b6-0bc4-42f0-a28d-863e56f9e200" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD864_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:06:58.520537-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "24318871-5bfe-4bbe-8df8-9e415558ae47" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4c3c3952-6e85-4fd3-bc05-81c91ce3faef" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003978-789_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "10935163-56ad-43d1-af91-1846aa5922eb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d55686fe-0423-4b01-9719-ade00bed3004" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0009761-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:09:54.181448-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "64dd4e81-f01b-4846-b306-20b7cd7d9340" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b1c3bd39-9f13-5dba-aeeb-86271bf64b8d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7242_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4fdddf85-30de-4666-89d2-0683e9264d6d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f9dea7a5-e9d2-48a6-bbc1-c5c1f8e7ee67" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a45efd70-9bee-4c18-82b1-666d2c1eb781" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6b4b146e-e6c5-454d-9c4f-66a6f851c3fe" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f50b7ab8-f114-470f-81b0-35ddd9246c46" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-034356-130499_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:37:30.937085-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "21a0707d-357c-4ea4-aec8-1227b8997cbb" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "26a2438a-f914-4865-9784-a9a47150cb4e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010260-9348_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0d696183-2cc4-4f33-9973-04537cb86276" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7c7482aa-6349-58c9-ab17-6c69acbd579e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7388_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c6aafc51-6295-494f-9bf2-1e4f43a72ae0" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f27e3255-bc73-4943-8201-5245b85c4ee5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "de59133c-2442-490c-9f22-057c8a47ff70" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0008518-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:09:54.181448-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f4e28471-79a4-456e-bba8-db331560bdb0" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3896106f-2770-565a-b872-0d61198bb107" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5442_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Palate" ; - ccdh:system "GDC" ] ; - ccdh:text "Palate" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ec885af4-3513-4790-ab1f-6ecc94b6115d" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "26243d14-e401-4ca4-92e7-aee13c9e6e47" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "698208bb-7272-4ad5-9cc0-909cb669bdaf" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d852d062-d7e0-559b-8492-da2b0abe8415" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6470_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "afb7ea63-2959-4e53-95ea-7a032dcb5a8b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "aa121605-a2c9-43fc-a836-8ec6c42b99de" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "b0179bcd-bda0-42ff-8654-61f3fe576e73" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD12050_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:03:00.815411-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0a8dd963-c724-4a77-b662-5f711ac88607" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a69046f9-49c2-4846-a394-ffebf61b0340" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-001847-1155_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:12:32.615882-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ae00c91b-f03b-41fa-bd2f-d6fde4338cf1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5db2900f-3088-48fa-ad1c-8dbba6bedbef" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0017777-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:37:32.909734-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dc326cf0-cb20-4f0a-968a-28c6923319dd" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0099f9fb-0d9a-46a0-a86f-c10dd58ad440" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD8066_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:51:17.672127-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dc97ccf6-b026-45ac-a658-fb44806230a1" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "68a8cfd1-e890-4bd7-931b-33636e8cf10b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000668-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5c9ff077-5620-4611-a58c-fdd8ed98b2db" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cf507905-7cf2-408b-a08e-b703df54147f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-NKI-DYRQ-CX3U_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T17:51:39.178920-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "36b762ea-ade4-4e7a-b824-0fdadd0e33ef" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9c1cd7ed-46f5-4809-a898-22cc0e15cd64" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-438c3609-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bc168208-ee4f-4a50-8ddf-b72b0dd59da2" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "30984445-18bb-4b5a-be50-8bed548e6e00" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-007662-3905_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T18:54:47.858087-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "46f8b134-ad13-42d1-b3c7-6b2d8cf77f90" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "155a3146-d68b-4058-abe2-3ae8713641ce" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-5361-16435_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:07:22.808668-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a7b07575-200a-4a32-8faa-075ded8667cc" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "fac35228-e5eb-403f-a9fd-c88a2518c7c1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009544-8452_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "933ddbda-c8bb-4e81-9342-9d7379bd6332" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "81f6058e-7aef-4ed0-b7c4-a0f1ff8a52b6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-036373-130403_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:37:30.937085-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3b018cb9-12c9-4445-b021-1fc93e0f74c2" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0c55f80d-c82c-4554-916f-6b117978b3fc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000454-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5c3a5e81-481c-430b-9c70-f2d61a77568d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "21b7042c-de33-572f-a77e-98db817efd44" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6492_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Palate" ; - ccdh:system "GDC" ] ; - ccdh:text "Palate" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2da6f33b-4a9f-4cf6-ad8f-873be656a6f8" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9d258494-fb84-4435-aa3a-f5778ac061c5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cde79cd2-3aab-48ed-81a1-259a3cd21002" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-122614-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-28T12:01:45.147328-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "71ba3119-c343-43f0-84db-4ba8787d316b" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4dbbefaa-8e8e-4a44-943b-48687f123673" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010088-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:13:38.880466-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b5da1115-1fe3-49a4-892b-ef43e64dbee4" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e68bc170-6152-4c90-9b9b-e31856495716" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0005506-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:58:03.635432-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b5f4b393-678a-4964-b625-19c8099cde13" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7bfa067f-69be-4a58-a8a7-98963ee8c589" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-493620-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-28T12:01:45.147328-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "57a1d12e-9ead-43ed-8990-0fecb573d3cf" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4b90baa1-cf87-5186-9101-0464aec143d3" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-A4IG_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c029272a-feef-4a11-9566-092c16b40eef" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ce469c00-b5c0-4d7c-875b-092c5b6ac289" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2" ; - ccdh:system "GDC" ] ; - ccdh:text "N2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "20846d6c-1a34-5e01-a531-f9c783416c3e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-MZ-A6I9_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0551272d-7e05-435c-92b3-918cde4d14ee" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f32ce523-c60e-4a86-bfa0-eeb4f3b2d83a" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "396f116a-bede-472e-847d-435a77dfa7dc" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "022d6f9b-38da-5bfb-8bd9-e800361481a0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-A6EK_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ad47c17b-e21c-4aed-aac6-8a062c6b5e42" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b3a55bcd-1f88-4d25-9f95-5ef7393d6cf0" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0a64b28d-8dde-4eaf-bac5-217406cbc4c6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "f773f13c-c661-46fd-8bd1-56dae4502465" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-8057-18231_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:10:26.105156-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2af6ce71-3d6c-4da8-8b75-f0ae49f95bd2" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "e071dcbc-10af-49bd-86cb-b1c8ec549487" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0017414-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:20:07.713564-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ff1a3e50-533b-4228-a8fb-93af76ca4b59" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "310c112e-7e2f-4987-a515-fe213ae70986" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002198-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b9d46cb7-1679-4998-853f-03e5827cbb53" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "22080645-9bd1-4303-ae61-8228c254dc24" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002746-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c74deddd-6181-4108-baf3-4d750d877606" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "640dafcd-ca8f-4305-bd40-240ff476b75e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006707-2784_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T18:54:47.858087-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "53e7103c-42c4-41cc-948c-b8e23271bee9" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "53ddd4d3-8e0e-4e6f-9cd1-fe6c9c5eb114" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0006525-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:02:01.981535-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "379984ec-2e8f-4c3e-9153-1ec8adc17770" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cf973339-e31d-4fb3-833e-f954634d95ee" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0014965-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:42:39.927651-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1bd46cb2-e563-4a48-a36e-ea4f7a15173f" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a433a5fa-fd34-4ab5-a117-29614a2c7f9a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0013513-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:39:05.576558-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f2ec974c-b952-4450-947b-11c39bbaf248" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f351c260-09d7-594c-8347-292ae6f65f1f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A49B_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "16b91d52-3168-44d9-bbbd-9f6e8b2582b6" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a49128ea-01e4-4587-845b-6b26bafa1c29" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "cecde3bd-c011-5cd9-8071-912a0f342eb8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A7JJ_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "392cbac9-ed5a-4f0c-9270-f45278476c73" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "408c2c68-2f92-421e-b797-ecada0bfedc7" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "de8517e0-d7ad-41a2-9468-bdf0106c905c" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a276fc76-237c-5574-9fc6-4b309ce35829" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-6935_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "37f4a944-d427-4f41-9d27-982a910103e8" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6883e88c-05a5-4ae7-a43f-40d4f35a3a2d" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "05aa5c47-cbde-491e-b8d7-a60cfe1ca2d9" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "76de8a78-90b8-4928-8dc1-bf3b8157382f" ; - ccdh:source_material_type "Solid Tissue Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "db8fb969-2213-4290-94de-c3680cd314f7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD16283_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:51:28.078592-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0d4e791a-4a50-4c58-a8a5-88e5bf4d7c9c" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6b3df15b-f5c6-4c79-923c-572688a90a50" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD1220_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:57:01.408534-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2bbdf4c4-88a1-4358-a88a-5daa2a9a506d" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4bcd5e25-adf6-5fe2-b07f-05d72b7b22a1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-P3-A6T6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3147ba3d-b1fd-4e40-82e1-56429f2389d6" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "127b2222-93b1-4870-93f2-867d8e69d015" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6f0b02c4-6efb-4104-89e1-2e76811b6afc" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d957f533-9896-5f0b-a9ee-90335d733f67" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BB-7864_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1477b393-8acf-4550-86a7-6570c0d7d583" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f3c568ae-ad12-4155-a652-8e16e5276bda" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4775330f-0409-4bb2-a096-a3d1eb0180d1" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6bbf8ace-0b17-57e5-bf9e-2c164cb28e53" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-F7-A50I_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ccd8f2ed-5a6a-460f-b692-ee7d78e29b18" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5eb175ff-1b47-463a-8f16-4b59914457bc" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "384902a7-fa03-4083-9baf-7ce114694c9d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "545abbb1-03c0-4b81-af21-3ebb7a5bb299" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD4812_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:06:53.493092-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4288c5a9-610c-4b1f-b102-2b96b49a6fd8" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5ba2b63c-b0c8-4304-820c-9b04ebb5a7fc" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-002837-2078_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fb20acec-aeb5-4591-b114-0834c6629db7" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6307ff41-9bb5-438d-8789-a73b41303d64" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-036509-75021_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-27T19:26:40.896040-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ba40b824-5fe9-4a73-b7f0-9b371af64f65" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "af8fdb73-f4a3-5b32-b9d5-6f9d39a97856" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-6824_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "10c45c93-36f6-4085-8bc8-f46dfdedca1f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4d8bbfbd-1a39-4630-a1e5-3bc6abb01949" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2e1366b9-95b7-4a0d-81f0-7ec14e4f4592" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c0bf8ccd-6f3b-5ede-b3ce-a63ad584ab1b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-DQ-7595_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "387e8df2-f053-4cbe-aae8-5727d215f904" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "52e0aaf1-d93b-42f8-b0e3-f6b4a3d0bd1e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c522234a-c0b1-427a-8992-84fcfc9389ef" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b27a395e-c9b4-5903-afcf-90ba31fcdeb2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-HD-7753_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-25T15:20:17.640379-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "698f639f-c34a-4f21-8306-26002008804f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e723f1bb-73a3-4d65-bd25-de76138515e9" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7fb56f25-873d-475c-9db6-f0be3945d926" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3c0d1fbc-508c-4cad-a9eb-a848fc20ac76" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006868-2957_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T18:54:47.858087-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "abf5cf5e-2352-4ba7-9a91-cbefe78ae28e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a66ce9f9-d7d0-5f2e-b0c0-73f306f68236" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-6869_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-23T13:20:20.149518-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2f9729e6-edea-4612-82b3-01251317074a" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f4ed2c84-39f8-4ab3-8762-a9920acc2432" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0aaa8bba-f4a5-4158-b9b4-a02244b5f6f7" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "04081703-b701-4765-8309-0a204a48c183" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-201710-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-28T12:01:45.147328-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc51bca3-858a-4ac3-b48a-c4d273b2329c" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cac9736c-3015-486b-b69a-906d2bcbac13" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-a20580bb-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cf3feb17-3b74-4d84-8395-c4af9b8f4514" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5cb1278d-4b33-401c-b200-b4408788c927" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-002669-7683_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4d69eeb9-81bd-4146-9a4a-3ca86c789272" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ea4330da-9d29-4e64-8197-55a50ee283dd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001557-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "90c9d5f2-ca54-4084-99e7-e9407e364b12" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "65bd5ce4-bf44-4994-824e-f21701449f73" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-NKI-HMII-Q9EY_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T17:51:39.178920-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cb629447-dbb7-49c7-a88a-435b6b6decda" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3f9675d2-ad2f-5a88-af81-e7e9b5744c1a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7437_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d7340d97-4ebd-4125-961a-9a5abe2f0ebb" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "215c17d6-2035-48da-9d06-c54734042898" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "46be59da-3e8e-43cb-a4f4-6658b12f1fe9" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "58c15c00-ddad-4f65-9f03-1882b7f9a09b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9eeeccb6-c3a5-4008-a87c-006d2e1efa9f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008672-7091_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6db9d94f-7868-4a64-b9b4-a5b95747c317" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1ddea2fe-7874-5d31-b1fe-2cb2b0de542f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-KU-A6H7_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "840d3da5-0493-460a-b5a9-4285e1a2ad37" ; - ccdh:source_material_type "Metastatic" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b4074f91-5478-4117-bee5-ed164e4d38c2" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "61eec5b6-925d-434b-a318-b22fc21c9ffe" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e4439379-d930-4b9a-b498-3b75e569f8ad" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5d8267c6-4156-5145-b6e3-49c68f8cabfb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5361_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c807171a-4433-4246-a454-c5cf768da8aa" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5b2581d8-c087-4caa-b9ce-bc0168fbfefa" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2877214f-4aab-46cf-b052-b6e7d2662ff5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c34f7850-ab91-4173-b716-b487c290ec78" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0012862-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:39:05.576558-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "59d43c02-f731-4a7f-97ae-c3d7dac2d5e0" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "671671bc-dbf4-4e15-b978-6aceaac1533f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0016761-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:17:41.081467-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0d989563-7a49-49e9-9417-4b607d661ab4" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "03f214c1-e688-473f-b84b-5864f56a6a3a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-001000-1570_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:06:57.341931-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "016681b7-82cb-404f-a175-8cb6d3f6bc62" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "bcef8cad-3d18-4cd2-b839-5fddd16311f1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0000945-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:31:25.700438-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2ba57cf3-fd06-4f99-9ad7-447a164b9586" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fc136a78-0ba0-5a79-a4f9-d5d692e61222" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7402_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b86e8a21-6937-4299-89f6-05f51888f5d8" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dfdf096f-9577-4e8f-8e98-9b808e417ccc" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "09912911-2865-490c-aaca-89f4cc1bee36" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008390-5815_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7894955b-ac0e-46ee-a5b3-c023cd1e87b6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a4332fc7-aee9-497b-99ba-5c1d548a7623" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037277-88571_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-25T12:05:51.637331-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d2ad484e-58b3-4e29-84e3-a45abb294b3a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "09ac3334-b77e-56e2-a46b-57faf703f1fb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-7385_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4c4a6867-babe-4032-a639-a9b31cdddc6c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d1553b1a-bc1e-4dcf-a273-b3effabe380b" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "881c2131-1f0d-4b11-8b3a-626918ad5566" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0013652-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:39:05.576558-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4c4f2c9b-d2db-42ab-898d-7d6c8c8e4a6e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3f9d8932-dc6a-4225-b085-953225ae22ad" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0007407-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cd1a65bd-7bc3-4c1e-9d5e-792938c2fc5a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "eaa3ca60-5565-429d-8c4b-a0a6ef7d9fa6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003114-1605_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9e503ae6-5765-4fe6-9a28-eac5a3a93a13" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "65645e51-3cea-4c45-a029-ecd7cef6c8ad" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-001639-6186_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:12:32.615882-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b1a851b3-94bf-4652-82d3-cc6133cd1565" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6788d692-193d-5d61-975f-1a79e54439ff" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-6516_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c3c82c51-0200-44c8-b5aa-050084983398" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c129394b-3c04-4a6a-b4ea-d56d96bf28ef" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2d8d11be-421d-4f96-b5d6-4cbc632f11f3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9d41e68e-c648-42ea-9320-6e08b9b5dd4c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-007598-4084_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T18:54:47.858087-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "87d18b2c-1241-43b3-b7aa-24442a047ade" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f7be786a-80e5-5c78-af12-715c8cdd318f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A718_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a88696d9-b36a-4fd7-b3ed-b6b31aa4094f" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8f620b3e-2962-49da-bcaf-4ecfd9580923" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ddeeb19e-1929-488d-8e19-c6212b3b78fb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "75ebf700-6ff1-4980-a420-41df37dd2c42" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0018608-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:39:49.045696-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e4d9ec72-9281-4b2e-841d-06d84634968d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "80c00d5c-1297-43e4-bbcc-cc895915ec2a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-51823bc5-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8d24d0d3-ec37-4b8e-9c31-e23965637da9" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "100193fa-11a9-4abd-9bcb-b1688eefaf5e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008981-6260_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8fe03287-0b1e-4750-9006-58059562a243" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "9076e2ad-9cef-4efc-99d7-387d250445ee" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-025889-116451_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:37:30.937085-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "678dfc0e-f085-4c85-b444-8fc1604bdcfe" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fbf35ed3-c5af-4591-88be-e9971b7d40f6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-053418-203556_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:20:30.865187-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a3b9c3f7-8499-4c17-92f9-274b1ee52764" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Basaloid squamous cell carcinoma" ; - ccdh:system "GDC" ] ; - ccdh:text "Basaloid squamous cell carcinoma" ] ; - ccdh:id "f4e541cc-a71e-55b3-ad08-3eeb8d00f2b0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-KU-A66S_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8083/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8083/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4bed3ece-2350-4c99-bec9-3d652fbe8c9b" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a590a632-55b4-4be6-b2d8-6c8afbbe99ac" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3c09f5ba-a4af-4384-948a-d6e943613f7a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ae2f70f2-dd19-493b-b6ea-bbe2cbe507cd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0014898-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:42:39.927651-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d7332e8a-d17d-497f-9b44-cc7992f48739" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a47bda97-0952-47fa-9a6e-277baa8762a9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-004713-938_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc589138-6e86-49ad-8d76-857543c02842" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c96ca96a-8046-4381-a767-1119705c5500" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008037-6376_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:11:14.458475-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f5e6b025-48ca-4fd5-b657-ae622bc9de02" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "6d9a9668-da18-4c45-a108-8b0b058ec47c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006284-4777_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:27:14.117499-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6b2d8256-f78a-4ac8-b0c3-a97a03410b59" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c9ea5a2b-8b14-5745-b9c3-c93c9abe468f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-A45O_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "77b774a4-9456-4907-86e6-9ff2dd87b8fd" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ec7fe5e6-74af-4bd2-9ecb-8e302f763b22" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fce64b88-8be6-4710-83be-18c9afdf13ed" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "8b48f2a0-f69b-547c-a9df-35b18ec7bb5a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A63U_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "812b8ee1-096a-40ff-914d-9957644b7d11" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b4430e0f-983c-454d-926e-a33fcb4cd02c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a6af965f-ae37-421d-98d6-a69ce62213ac" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "af2c06c6-b5cb-4369-906f-727e8e00e459" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-005169-1136_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "104530ac-b606-41bc-93e4-5734f176d3bb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a4f6276a-b3cc-45f9-9fb8-30edd56ad4ea" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-011620-10763_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:44.678712-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d697e728-9813-4ff5-83eb-c7d814e07bcc" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Adenocarcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Adenocarcinoma, NOS" ] ; - ccdh:id "5d2d67d1-4611-4a18-9a66-89823aaa8e3c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD6426_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8140/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8140/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:44:57.790971-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bdc73f48-dc0b-487d-abbe-e3a977b6830a" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "49934fcd-822a-4e1f-ab12-46ef9216779d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0009754-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:09:54.181448-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7c2babfc-9948-4332-8c28-096971073c2e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4943c82a-30d2-4c85-a233-032a49ca801d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008342-5809_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e01da120-9c9d-4ef7-8568-525f74222dd5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "d2578ad3-da53-4f9a-a3b7-043e9c01a282" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD17065_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:54:42.853523-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c84c230b-7953-4d86-ba93-255ab2242ce7" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "843f33f9-e390-52bc-90c8-fba0a4557916" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A7JV_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a1d62ba6-696c-4693-9067-d4226a4e6316" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c312a7a4-ba29-49a9-b4dc-876505a6a6c4" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eed0dcf3-36a2-4890-bb02-e8b56ba4d8d8" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1f6860df-38fb-5519-8ec9-3068b0476cf2" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-4735_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "feb21d9d-394f-402d-8659-eb15bb95f0db" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a2caeab5-55a4-412f-a647-0112f48bbbe7" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fbb300fa-8793-42da-a68e-4570ae2e5186" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "81d9c62a-5f07-4409-aad8-4f9e02b90669" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0015745-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cd31b18a-5019-4a94-8966-a1160e544684" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, spindle cell" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, spindle cell" ] ; - ccdh:id "d80aa9c7-2a22-57da-87ef-750dd4c0b494" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-IQ-A61O_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8074/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8074/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "09e8433c-1f86-42c5-91c0-2512fc4a7fe9" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "24e39735-725e-4627-82b6-c56ff33e3465" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eee85b30-6d16-4f53-aac1-b74f36a62d9a" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1137ba9a-12d3-4b2d-a3a4-d95de8bcf49a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-8191e4ea-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "783e6c97-20aa-4c8b-a7e1-ae0d8f7af28d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2602d676-8c2e-5bdd-9790-a0a072d3f670" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-DQ-7596_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "61c82e56-e64e-4fcb-bc5f-dc4fe34b6c58" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7a94106d-5604-4b73-9c54-54a72b12f52d" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f662e970-6a51-4164-8458-61e7ff054806" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d0fdd332-a86e-4d6e-b93f-97937926a834" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0019630-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-31T18:43:52.092583-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bbc31a15-3dc6-479c-bd5a-9c1950705ca4" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "49e46e5d-46b8-41f2-954e-c3c7b563a55b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-041937-203493_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:28:08.827884-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1108ef37-87b6-4b62-82f3-5e799fc4fb52" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4e06969c-5592-59ad-b006-09cb82ce6cc9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-6517_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a2dd87a8-e0d1-47c1-a8d1-70b9730aa4ba" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8c099f45-3fd6-4966-8cdb-ca4b9288b1a2" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "53450297-c715-4c54-ad7e-3152a1e16c45" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4d192f26-a2c4-537b-b8b5-1473a759882c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A7J9_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fbceb407-e7f8-4942-8689-854f8999672c" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5be42d60-80c3-486f-8717-801fec0c89d3" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5df6c457-baef-451d-b1cf-eb7fa6adc602" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "9d69f6a3-4edb-54e3-a840-ff1ff0aefb30" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A7JK_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "56c76698-7155-4f7a-9f9e-4fb62c673599" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "90e4a976-0d97-47ef-aa29-295c2afeb31b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "15776f80-0722-45a8-bc97-cc209cef631b" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "bfc1721c-c0de-54b3-9170-781b78cafd44" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-6868_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0469c4d4-58ff-411d-9bf4-8d8bbe31d7c5" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ad04d034-7fff-4073-8c1f-97fac3d0bbdb" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d660bc61-4016-4f52-98c3-72de5459946a" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "TX" ; - ccdh:system "GDC" ] ; - ccdh:text "TX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b56e8d53-a875-5676-8d2d-f095f8b899af" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5444_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4deea4a5-4d54-48b2-9a46-68eea668283b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8cc840ea-3053-41a2-a325-6e86f3deeec6" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "61380e29-a7ae-4e29-b69a-d56f234f1ba0" ; - ccdh:source_material_type "Solid Tissue Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Malignant rhabdoid tumor" ; - ccdh:system "GDC" ] ; - ccdh:text "Malignant rhabdoid tumor" ] ; - ccdh:id "33c5c040-da3f-5e5f-8d13-ab9eff88f833" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TARGET-52-PASCDH_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8963/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8963/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1d3eef26-a725-51f7-95fa-139d1a7da76e" ; - ccdh:source_material_type "Blood Derived Normal" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "da724216-c1fe-5420-9e73-3a9d4b52bf1c" ; - ccdh:source_material_type "Primary Tumor" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Unknown" ; - ccdh:system "GDC" ] ; - ccdh:text "unknown" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "0f72e73b-f462-4eef-9d1e-95e83c1f2aaf" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5362_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:39:05.012118-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9f4929bc-09a7-47b8-9720-d6f829b51a13" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Malignant rhabdoid tumor" ; - ccdh:system "GDC" ] ; - ccdh:text "Malignant rhabdoid tumor" ] ; - ccdh:id "d813126a-5e28-5c5a-8730-598f0d047584" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TARGET-52-PATBLF_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8963/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8963/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ac3e795d-69a1-57f5-9dec-5b59e2523091" ; - ccdh:source_material_type "Blood Derived Normal" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eb5eeeae-6bd7-511e-9f13-51531684c774" ; - ccdh:source_material_type "Primary Tumor" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Unknown" ; - ccdh:system "GDC" ] ; - ccdh:text "unknown" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "27fbdde4-c58a-46d7-a96f-918b64fe5b51" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-037700-159036_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:26:11.717995-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "50b8e07c-b892-4fac-bf59-9e093e2d74d3" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c0dca6b0-81eb-598e-9514-f23513df1ab8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A71D_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "87d8fec9-7ac3-4359-a6be-de270584ac1b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e4157201-93f3-4f08-b3a9-dacb22671a57" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "297ea792-1a29-44db-a14b-38513b50826f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "192c4be7-66ba-416a-abfb-1a88e63e7be4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-534918-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-28T12:05:42.341898-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e15f8344-5f7f-4602-b2e3-8fcb0418cb8b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a84b9519-37b2-4311-ac32-8151ae7261e7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-090167-282584_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:52:12.528526-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "0f1ec484-9205-42f4-9696-815dae75b073" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c8b3a37f-01ec-481e-9460-0bcac22cc002" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-18076aef-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "960fe012-e237-42c8-a3e0-d02853ce3818" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "2326f9b7-e2e8-487a-acd4-b00bc9967a8e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-6597-17790_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:10:26.105156-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "35f0c152-0c87-42bb-a1b7-b306e66514f5" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3ef5f7db-6234-5c11-96d5-fdb6cf8ad63e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5978_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b801368a-b10a-4a42-bda8-5df8216b532f" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7560ec6d-e0f2-4b55-88bf-62e7173126a1" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b33eba98-6a89-4454-9a53-94999cd5003c" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N3" ; - ccdh:system "GDC" ] ; - ccdh:text "N3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ivb" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVB" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVB" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "ca8f5806-a2af-45ee-8217-e6dfc4d0b229" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0012391-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:17:29.664139-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3c8fe733-1711-4d4a-a64c-b94788eda279" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "59ca6acf-5527-4fa2-8bb2-658029b9c67f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009312-6572_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "667948dc-d9bd-4813-922b-69468835c551" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "43212ae1-0d0a-411e-8ae0-61de91147afe" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-006740-7890_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T18:54:47.858087-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5f316e98-9980-4841-b297-f07b3e87004f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1fa242e0-09fa-5f9b-b6ec-b07d25fd21cd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-P3-A6SX_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ae3f666a-0c18-41c1-b00e-90cd85a2f987" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "cc710f34-9fb5-4474-84df-5427b59aa062" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "65b091e0-fd47-4f4c-87f1-b2ba9c2766c5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "0ea10d4e-1809-4763-b440-8e077ecab3e5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD17629_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:55:27.721574-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "9ab974e3-bc94-4f83-b7dc-82285f5b4b69" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "26ffab97-fa9a-5135-b283-8c4aebe51a26" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7250_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3e6bc216-301a-4f24-911c-8c3610e4a015" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b4f8ddc9-0ab4-447e-8292-5dcf8a9085ee" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f5472b70-32c8-48b0-9051-f9b33272ffd6" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6f55766a-d980-414a-be4a-369e93ec3436" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "d670dce6-9fa8-402a-8b79-081ec26ebe25" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-000843-6962_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:06:57.341931-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "85fa5941-b6df-4eea-97e1-a7b4ae310bdb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "770f08b4-6ea7-4cb0-a423-75909447e60c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-518360-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-04T13:56:37.232985-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "75fdf08c-00e0-42dd-a21c-62cceb7bf00f" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "eb8958ba-0798-5ab3-b4f4-258d441d7e03" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-P3-A6T5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c98f1b7e-5d3c-4e07-9d9c-65c5a6ac6cd6" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e45c81dc-4143-4e97-8212-85032c760221" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7fddfc05-49ef-4ebc-8572-05059a5fc363" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "f2f2d6b1-7233-433d-b34f-62a8d4e50b0c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0015645-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8a8010f9-2193-4604-9425-da6e5512ebef" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Adenocarcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Adenocarcinoma, NOS" ] ; - ccdh:id "215314e4-f8c7-47e1-8993-f126c49bd1a8" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD7896_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8140/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8140/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:49:07.730023-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d3811cf5-8f54-4344-9efc-2f42c49e4e67" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "812129f0-3b47-5ede-9062-237e0c0be7c5" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-BA-5555_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "99ca3c12-0d63-428f-8b1b-03e4a3e8e233" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7c56b9e6-8fd8-4d39-92f0-a24c80270dda" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2920ca1c-6035-4350-ada4-c60d485dbfff" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "f7044868-4f81-56df-87a1-58bd49f9c8cd" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A6V7_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ed5933bf-adaf-4bee-81fb-b1ec5782c248" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "69fe86c3-1e82-4583-9051-ffdb84224239" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "f1143020-2e95-4028-a2bf-c03a5ba6ea4e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD14041_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:41:38.922504-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fe72277e-ae77-486d-b5a9-844c483267eb" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "426ed511-e284-4ddd-9809-312805a88905" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD3816_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:01:59.757092-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3fa16cbf-829f-4097-ac9f-d8016c40c618" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "12d5265d-8eb5-4122-9e4d-976bdc0ded08" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002469-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ed3acbbc-fb24-4be6-b09c-e0b6f4d9814f" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "f3270d37-2d06-4867-973e-54e8ea28208b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0002787-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:50:42.610446-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3eb1f15d-003c-42bc-8832-ea364ee8931b" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "2dd60fd1-68e1-519b-af66-00c32d0cb6d4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A8ZB_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "44c64654-0e37-4c13-b4fa-aaf9c6644445" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "936a8a93-6559-4bf8-9c51-e81ec4f2aff7" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "17a0a479-3b48-4852-ab06-dd33d6f7788a" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "b5b027c4-6ae8-4c42-9ffc-46738ec336b9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-VICC-671452-unk-1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-28T12:05:42.341898-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eddc8197-6d13-4eef-bb1d-06d1b8df5395" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "a6576ff2-b9cf-40dd-8da4-ca829d762cc0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-001449-6594_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:12:32.615882-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4ec8fe70-22ad-4f62-893d-f95d77dd37f5" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "32bc08a5-7441-4dfc-b13c-9e193e5a7ac9" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001682-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b2a64027-92cc-4961-9c27-821fff58c5ca" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "24058118-f7b3-53d4-b24b-07a2ac2e66b1" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-5369_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Palate" ; - ccdh:system "GDC" ] ; - ccdh:text "Palate" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8d31f35c-9178-447d-9a2b-acc305fab407" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "11d697ec-f451-4102-a908-e44f48ab0800" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b4c02606-0f86-46e4-9daf-dc7dbcd60d78" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "e87ea1cc-7728-4592-9eeb-04d09e11660b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0005082-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:58:03.635432-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f9e5d21f-2ee2-41c2-b864-f43d6a8357aa" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7747a88f-1a9b-5833-9442-af0b1350bb4f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-6013_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d018cd44-6b01-44f2-9181-81153225aab8" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c0c84016-117e-498c-9ed9-52e279e89e33" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8b510bc8-7b3c-4861-9a40-c2c30b7099e0" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5c70e571-fbe5-407f-aea2-9f740e6f5d2a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-002399-7809_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:12:32.615882-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d57d8dd7-f0d5-4c3e-9ac7-cc23e2aa77d7" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "aa6e25a1-2d85-423b-a149-8cf11a6947f7" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010697-8404_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "22ef8279-1519-4099-ae13-ff430645c992" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "cceca036-354c-59e4-ad7a-886865aada46" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7245_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d455327a-a947-4a67-8fb5-44438abe5976" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c8ac9749-82ff-4348-8d91-5ce677697a15" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f0684e03-2d91-4e9b-9d11-a3063ccc2f34" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "aaa6607c-e333-4f99-b1dc-390c3cad4f1b" ; - ccdh:source_material_type "Solid Tissue Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "11f5b868-a6eb-4575-b5d4-54cd8a406293" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-027923-87624_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:44.678712-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4e763f63-0494-4b2f-9f6a-c9461c7e7b1e" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "05282f77-9656-428f-9517-9edc96cb7360" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0007543-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:06:12.185212-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "025ae6c3-bdbe-4db0-ac71-56df7e80ea0d" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "7bbdbf5a-baf7-55b4-bd8d-89e213744a26" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A6VC_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "76240522-a39e-48c7-80e0-241277fdb705" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "dbea2268-ac62-4ab7-aa7d-86f029fcb2df" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d278f388-2a5f-407f-886d-961272ca28eb" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2c" ; - ccdh:system "GDC" ] ; - ccdh:text "N2c" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "8c624d17-a588-40ee-9902-ed694d794814" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD1281_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:02:30.028866-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a1fe6dde-024f-4487-8838-24fda3505cc3" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "494e7724-f0c8-44b8-a4f9-8e6cc9a2c095" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-NKI-FGHG-R6TZ_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T17:51:39.178920-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e91ef1f0-a986-44d2-8880-fbef0afe91d8" ; - ccdh:source_material_type "Not Reported" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "232f3bad-3cb2-5b4a-91e2-71f37a7eff72" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-UF-A71B_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Gum" ; - ccdh:system "GDC" ] ; - ccdh:text "Gum" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5c464f43-4aa0-4203-8828-5fc4cb13cf42" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "df66e44f-3130-4d7b-a1d9-2d90f96b4c7e" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3a4af2fc-6443-4644-9da0-fee722e6d5c6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4" ; - ccdh:system "GDC" ] ; - ccdh:text "T4" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "ce0e772c-45e6-4686-9db5-f88e05e2f713" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD12118_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:00:58.377064-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fb315485-9a4d-42a8-8e1b-8cc97c708f1d" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "8bc744c9-1120-41c6-a782-3bda1bbfa2ce" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0012578-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:17:29.664139-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "31be6816-e615-4939-8c64-c523db6a438e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "1ebf1ce6-31bd-4c8e-b3e0-f70d47cdc527" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0016351-T01-IM6_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:46:25.150285-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "90f2519b-17ba-40ad-baee-cb711b306a91" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "a1439fe2-31b2-4a31-973f-fbeeb13a965f" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0001405-T01-IM3_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T03:35:23.418160-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5dcad3f6-29d1-4043-8bf8-c8ceb17c5ec4" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0cf011bf-054a-4eea-aacc-b963ff83734a" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-007960-5976_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c353a3fb-dad8-4a6c-acd3-4121eb21b98e" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c70dbc51-07bb-49a1-bffc-ea639cf09e66" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5893_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:40:08.863452-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3c1903f3-2a52-46cf-872e-060ba3a092e3" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f73d9c17-c497-5025-84d8-e9adaf48a245" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-MT-A67G_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6b690841-3ad9-4919-8913-8f291ee95868" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "25588932-d586-4a17-b18e-4ede4292ce9e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "7206e2ea-ad1d-45d4-ba3c-fc1f39fc52ea" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ce208b92-611f-5ffc-8a6f-b01b91e7b58b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6474_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ddad5854-74a2-4db5-94d1-41196a37be5e" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "d84c30b6-e217-4b2c-9dc1-16428264378d" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2a" ; - ccdh:system "GDC" ] ; - ccdh:text "N2a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "64017f79-8293-4fd3-8af0-bf01eb6cf49c" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-UHN-653571-ARC1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:21:56.842750-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5349f1ac-ad8d-437f-a9e7-30b2323bd11f" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "6759d804-a7db-43ed-a3ae-db633fdc7cdb" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MSK-P-0010241-T01-IM5_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-03T04:13:38.880466-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "856fab11-14d9-4e8c-af8a-65684ca39418" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c1887ffe-1e7a-4584-a9cb-897604949138" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD7475_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:48:10.807261-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b82784b8-217d-487f-b2f6-4435ebc09885" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "4fdd25bc-4056-47f1-8eb9-7e572313ba5d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-009927-9027_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.308719-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c65b0cad-f2f5-40f2-a523-60374faf390a" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "533bd04a-5e63-4ae1-a929-487ae3597956" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD5852_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:39:25.573239-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f7b249aa-b35a-4e08-87b6-e9a79d75edbd" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "45950ba0-9179-4304-9bf7-1a43880d000b" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-010940-9514_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:43.873530-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8642c059-a648-4ced-977f-45d6e6496e7b" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "c975f49b-ba03-4e22-bcf1-7aef636601ef" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD3546_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:01:38.093247-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "42ef0174-6a5e-4804-ae6e-5d0122cb51c5" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "f44a9ab8-f121-59c5-8087-567864266629" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CN-A63Y_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e0b45d74-3b6e-424f-86e7-2174d7c1245a" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "daaeaef7-3f0f-4155-908d-9aa6e536f94c" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "50cca7c4-4586-43cd-a59e-3fdc646f5aba" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "MX" ; - ccdh:system "GDC" ] ; - ccdh:text "MX" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "388e26e6-e8e6-527b-929e-24ff75edc9b4" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5441_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3f583e59-c92a-4257-8098-5d081642dea7" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "26c67c48-00d3-4491-b761-7941415a2c6f" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b480eb37-ffe0-4626-b49d-dfc514a60886" ; - ccdh:source_material_type "Solid Tissue Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iva" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T4a" ; - ccdh:system "GDC" ] ; - ccdh:text "T4a" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "5202e65a-e9af-58ee-8960-9190089fb197" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CR-6467_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "2d9ad43c-f177-455e-9b63-1b9ffdc672d9" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5ef4d047-5a84-4e03-acf5-02029d8a4cf2" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Malignant rhabdoid tumor" ; - ccdh:system "GDC" ] ; - ccdh:text "Malignant rhabdoid tumor" ] ; - ccdh:id "2e79ab38-e511-5e60-8c81-1584d28a909e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TARGET-52-PASVDP_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Lip" ; - ccdh:system "GDC" ] ; - ccdh:text "Lip" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8963/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8963/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a28e1682-4703-527b-bd4e-81f86fa6f35a" ; - ccdh:source_material_type "Blood Derived Normal" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2016-02-17T11:50:17.531058-06:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "fd9ff1de-6856-5a42-ad32-2e3aa28dc2d7" ; - ccdh:source_material_type "Primary Tumor" ; - ccdh:specific_tissue_morphology "Rhabdoid tumor (kidney) (RT)" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Unknown" ; - ccdh:system "GDC" ] ; - ccdh:text "unknown" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "fb2076bc-c2ef-4566-ab26-c6c6fcd212ed" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-GRCC-b3db0c02-sample-a_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:01:58.729859-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "01b01d59-07d3-481d-b466-bf77a916a0db" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3bd2d2d4-7d4a-51f3-bfaf-4153b96110ae" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5443_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "746322c7-fe75-4b9f-9309-93e9cfa4cb5a" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "f70fece0-2fb1-4d8f-955b-7b9bbfeb9755" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "4863312a-043e-418e-812d-2ae2a1f66f29" ; - ccdh:source_material_type "Solid Tissue Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N1" ; - ccdh:system "GDC" ] ; - ccdh:text "N1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3cb5d51d-2566-4b1f-ad4f-57520007e73d" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-050743-203353_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-06-03T15:18:25.269226-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c862481b-aaaf-41d4-9c29-188760a43dd8" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "0b9b2b22-2fe6-5569-99ea-4647a15e68a0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-7177_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "21152590-1224-410e-aaf7-4088302c809f" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "e850a80d-1b50-4ab6-ab36-1d1a5e697d7e" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ddb758e6-20a8-4a28-ba98-798de978154f" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "768e2bab-347b-4d90-887f-bf5692a91eb0" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "NX" ; - ccdh:system "GDC" ] ; - ccdh:text "NX" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Basaloid squamous cell carcinoma" ; - ccdh:system "GDC" ] ; - ccdh:text "Basaloid squamous cell carcinoma" ] ; - ccdh:id "fd9653a3-00f4-593c-a8e5-81ed124ee898" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-AA3J_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8083/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8083/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6d2f2d82-2fa5-44ea-a714-85c05b5bd255" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b67c34c3-8e4e-41cc-865d-43ee8c9d3d78" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "410b2727-8446-41b1-92b9-42671d118a39" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "stage i" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage I" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage I" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "3d039654-a9ad-4641-b459-bd7ccd1ec1b6" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-NKI-MCU4-LAZM_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2019-05-29T19:51:14.064673-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b34b2488-73cb-480c-a1ac-c2ef5b89c5f0" ; - ccdh:source_material_type "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "31489596-1797-567e-814f-ec85278ee342" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-CV-5432_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c552cf29-896d-4a47-8022-e5c57e27e70e" ; - ccdh:source_material_type "Solid Tissue Normal" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "418aadda-9f2f-43be-b171-866585aab114" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b4a36114-80d3-4f28-b85a-077dc31eb485" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "3a13692e-cb77-464a-8ace-cba47f99247f" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T3" ; - ccdh:system "GDC" ] ; - ccdh:text "T3" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "stage iii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage III" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage III" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; - ccdh:id "514322a5-47cf-5d99-8ae8-f4466bbad28e" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-QK-A6IF_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Tonsil" ; - ccdh:system "GDC" ] ; - ccdh:text "Tonsil" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8072/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8072/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "b3a8b960-6807-42ec-b6a8-492d58de2b86" ; - ccdh:source_material_type "Blood Derived Normal" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "5e77db09-dc35-4cfa-ac78-0f7af0b742ec" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "bfbfb315-632c-43e7-ae3b-61bcd82b0d3b" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage IVA" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage IVA" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T1" ; - ccdh:system "GDC" ] ; - ccdh:text "T1" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N2b" ; - ccdh:system "GDC" ] ; - ccdh:text "N2b" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "64ba1bbd-bf72-4700-97be-0bc054876c84" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-005062-1372_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Hypopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Hypopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:22:15.693629-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "a0deb101-019f-46d7-8cb2-ee98c9d7aa92" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "c740d9c9-bb4f-4ae0-9920-43267c9bc180" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD14561_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T10:42:22.825295-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "97cac184-023d-4aaf-9637-cc34969471cb" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "ad342355-cfa9-458f-8723-7a099368b797" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-008794-7198_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:56:40.150348-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "536ca98b-7415-49d8-84c2-dca4b5070ff6" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "d8e6b6ed-5c11-4a78-b25a-07f23305bb40" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-MDA-6285-17334_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T19:10:26.105156-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8479ff0a-fce8-4f4e-8d00-6775d1e9cb00" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "c1551a30-c8b7-4ba5-b5ed-044b55587a38" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003078-318_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "1647be39-e387-4457-a1c0-83483d25ea5e" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, keratinizing, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, keratinizing, NOS" ] ; - ccdh:id "b07c0682-d50b-5680-97fc-8e709e21c064" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "TCGA-D6-8568_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Larynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Larynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8071/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8071/3" ] ; - ccdh:related_specimen [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "eac181d7-f8b8-4350-92aa-62d3fd1bd86b" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-05-17T12:19:46.292188-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "6f150e98-8b4e-44ee-953b-1692d76c8868" ; - ccdh:source_material_type "Primary Tumor" ], - [ ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "c812093b-04ce-4d3f-841d-9b81de63fc38" ; - ccdh:source_material_type "Blood Derived Normal" ] ; - ccdh:stage [ ccdh:method_type [ ccdh:coding [ ccdh:code "AJCC staging system 7th edition" ; - ccdh:system "GDC" ] ; - ccdh:text "7th" ] ; - ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "stage ii" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Stage II" ; - ccdh:system "GDC" ] ; - ccdh:text "Stage II" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Clinical Tumor (T)" ; - ccdh:system "GDC" ] ; - ccdh:text "Clinical Tumor (T)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "T2" ; - ccdh:system "GDC" ] ; - ccdh:text "T2" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Metastasis (M)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Metastasis (M)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "M0" ; - ccdh:system "GDC" ] ; - ccdh:text "M0" ] ], - [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Pathological Node (N)" ; - ccdh:system "GDC" ] ; - ccdh:text "Pathological Node (N)" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "N0" ; - ccdh:system "GDC" ] ; - ccdh:text "N0" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, undifferentiated, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, undifferentiated, NOS" ] ; - ccdh:id "43aa2337-12ee-410b-9182-0de9352057f0" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "AD3230_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8020/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8020/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2017-06-01T09:59:56.723939-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "900eabba-ab2e-4b0b-9738-db52f9203db9" ; - ccdh:source_material_type "Metastatic" ; - ccdh:tumor_status_at_collection "Metastatic" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Carcinoma, NOS" ] ; - ccdh:id "08272717-6b2b-4734-9674-4bec2662bd32" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-UHN-523097-ARC1_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Nasopharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Nasopharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8010/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8010/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-10-02T18:18:10.730001-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "ffef8dac-d99c-4426-ad9e-f4e3947fe1c1" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . - -[] ccdh:condition [ ccdh:coding [ ccdh:code "Squamous cell carcinoma, NOS" ; - ccdh:system "GDC" ] ; - ccdh:text "Squamous cell carcinoma, NOS" ] ; - ccdh:id "59474381-516a-4be2-8b74-7fe5804ec371" ; - ccdh:identifier [ ccdh:system "GDC-submitter-id" ; - ccdh:value "GENIE-DFCI-003795-3691_diagnosis" ] ; - ccdh:metastatic_site [ ccdh:site [ ccdh:coding [ ccdh:code "Oropharynx" ; - ccdh:system "GDC" ] ; - ccdh:text "Oropharynx" ] ] ; - ccdh:morphology [ ccdh:coding [ ccdh:code "8070/3" ; - ccdh:system "GDC" ] ; - ccdh:text "8070/3" ] ; - ccdh:related_specimen [ ccdh:creation_activity [ ccdh:date_ended [ ccdh:date_time "2018-09-24T17:18:52.539095-05:00" ] ] ; - ccdh:general_tissue_morphology "Not Reported" ; - ccdh:id "8212fb32-9c81-4bf1-ab6b-337196acdf90" ; - ccdh:source_material_type "Primary Tumor" ] ; - ccdh:stage [ ccdh:observations [ ccdh:observation_type [ ccdh:coding [ ccdh:code "Overall" ; - ccdh:system "GDC" ] ; - ccdh:text "Overall" ] ; - ccdh:value_codeable_concept [ ccdh:coding [ ccdh:code "Not Reported" ; - ccdh:system "GDC" ] ; - ccdh:text "not reported" ] ] ] . +@prefix : . +@prefix crdch: . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e7f08842-7c61-469c-829a-feff82339bee" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008328-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6d1a6236-3625-4300-9f12-4e666cb2694a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "40d016b6-27a3-4e33-ad6b-f50eaa54e2fa" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008097-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f71f4733-17f4-436f-b12d-bad5b99ceba3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d20b4711-8757-5d39-a8cc-b8ece86592cd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7430_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6bd53676-487f-4661-8e01-739b3b856cee" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0e0af838-3a62-44a6-9e8e-0f9ba07730fa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c22e9fe0-a052-4c6f-9fb2-e58289277e2a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "da9132d5-4a55-4d7a-bb7f-7990af380dcb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c7db86f3-b6c1-59db-961c-534b91393b19" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6010_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cece12a4-5f68-4a6d-8815-e88495da08f4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "904e12f8-ab59-4ad8-8096-7b82f9388d70" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cd2a5d45-9bae-4c96-b8dd-7ad079153a49" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c0bc6849-2b35-4465-9d65-38c3a21a9a25" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0019226-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:42:00.849990-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b33d58a0-8855-42ac-baaa-0a1e961307f4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5d8267c6-4156-5145-b6e3-49c68f8cabfb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5361_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2877214f-4aab-46cf-b052-b6e7d2662ff5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5b2581d8-c087-4caa-b9ce-bc0168fbfefa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c807171a-4433-4246-a454-c5cf768da8aa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f9a0b1dd-a13b-4a14-ac22-c9570e02ca60" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008792-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:09:54.181448-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b882dbe8-5494-4092-8bad-ccca6b119775" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "43aa2337-12ee-410b-9182-0de9352057f0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD3230_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T09:59:56.723939-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "900eabba-ab2e-4b0b-9738-db52f9203db9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d2b0be44-b12f-443f-9d48-3e26ea1ed386" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD7867_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:48:10.807261-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1fc039e3-94d1-4fe2-9d51-796dce543f9f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "ce0e772c-45e6-4686-9db5-f88e05e2f713" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD12118_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:00:58.377064-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fb315485-9a4d-42a8-8e1b-8cc97c708f1d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "6759d804-a7db-43ed-a3ae-db633fdc7cdb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010241-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:13:38.880466-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "856fab11-14d9-4e8c-af8a-65684ca39418" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "bddca644-5ced-5789-8d31-c00df9f776ad" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-A74Q_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c03b3dfa-7b9b-4a21-9274-d174bc14440b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "343c1ea3-2785-465f-b01a-2d609b486ef9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d9095c8b-414f-41d4-a478-ee54d2728762" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "40954a8e-e4c2-5604-937b-0a79ac7489d2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7261_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a7692585-a129-4671-bfe5-98342a326776" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b069c55b-496a-4a57-a507-1b2e1b4201ae" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "00f7bc3c-c0e7-42bf-84d7-87a8a539bd4a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "69a89590-eb61-41d5-b33e-e7bc5adb92bf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "cecde3bd-c011-5cd9-8071-912a0f342eb8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A7JJ_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "de8517e0-d7ad-41a2-9468-bdf0106c905c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "392cbac9-ed5a-4f0c-9270-f45278476c73" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "408c2c68-2f92-421e-b797-ecada0bfedc7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c8d65c8c-9299-49bc-bfe0-97c19ff35fd2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037050-88705_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "58a5858d-4740-4da1-8959-43d7b05ae1ea" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "8b48f2a0-f69b-547c-a9df-35b18ec7bb5a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A63U_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b4430e0f-983c-454d-926e-a33fcb4cd02c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a6af965f-ae37-421d-98d6-a69ce62213ac" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "812b8ee1-096a-40ff-914d-9957644b7d11" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "becd7cb0-9352-5c38-856c-fcfa539fdea3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5431_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "39e3facf-6d13-4611-bcfa-90ef0350814d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "be567c0a-3833-45d7-b846-d229a8e16e16" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8897e2b3-1863-43c7-a84f-fe53d12371f9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "af6475d1-2529-4772-9e9e-ce83e3dc0cf8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008645-7086_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "30b0ff9c-3106-4ce0-8657-3ed59c1c8fc7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "65bd5ce4-bf44-4994-824e-f21701449f73" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-NKI-HMII-Q9EY_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T17:51:39.178920-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cb629447-dbb7-49c7-a88a-435b6b6decda" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "552900c2-144c-4340-aed9-197382fafed4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD17916_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:57:41.511744-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d4c804df-7392-4267-908e-8fe8c37d00cd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "afec3d92-5a3c-5b04-a2f1-49031942cc1d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A6IH_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "63b4690f-f247-4874-9923-e96375c56a01" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5f210369-1839-4f18-b081-974efc7de032" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0d0194eb-d83f-4028-9b4b-3308c0207133" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "stage ivb" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4b" ; + crdch:system "GDC" ] ; + crdch:text "T4b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d4b595ef-5e2f-4722-bf4e-48bb831bc057" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-002065-124_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:12:32.615882-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "172019a6-18cf-4532-89ec-9f4ec83dee30" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "cdd012e7-6539-5ffe-a4b7-b36a6233b1ec" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A6DJ_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "735334b4-6c30-4a7a-aa54-63f506b8e2bb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4210ffee-2a83-4f05-8935-2687503c83d4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bbee89dc-6858-45c3-a9fc-c455851f96a8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6dd63ec3-e88a-4da9-be07-0d11a1768dbf" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0004416-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:54:19.535598-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "34487c7a-5f9a-41b0-8ced-d7c2ce3653e2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "bd3c4df6-90f0-58df-8713-51ca36d74124" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A6V3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "285e2354-8efd-4951-87cf-0e188d11423e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "97657453-6a97-4879-9440-fd0eea9d5f33" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "45950ba0-9179-4304-9bf7-1a43880d000b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010940-9514_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8642c059-a648-4ced-977f-45d6e6496e7b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cceca036-354c-59e4-ad7a-886865aada46" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7245_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f0684e03-2d91-4e9b-9d11-a3063ccc2f34" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d455327a-a947-4a67-8fb5-44438abe5976" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "aaa6607c-e333-4f99-b1dc-390c3cad4f1b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c8ac9749-82ff-4348-8d91-5ce677697a15" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0e732992-a174-4861-8e05-a6c3e21107b3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001903-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ea373411-6d3c-4ee3-b8c1-d79131847aa1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "155a3146-d68b-4058-abe2-3ae8713641ce" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-5361-16435_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:07:22.808668-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a7b07575-200a-4a32-8faa-075ded8667cc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1fdbf271-8b0c-5d7b-bacf-d883e0d0d054" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5360_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0c00768e-8b13-4b8e-80fc-b344740845f1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9439bc03-9d26-454a-ba80-a0f5a4585656" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "740cef36-1319-4096-8ba3-8e6fce6282da" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "022d6f9b-38da-5bfb-8bd9-e800361481a0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-A6EK_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0a64b28d-8dde-4eaf-bac5-217406cbc4c6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ad47c17b-e21c-4aed-aac6-8a062c6b5e42" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b3a55bcd-1f88-4d25-9f95-5ef7393d6cf0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ada2a9ee-43ec-4198-b1e4-bb0c62102973" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003061-9096_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7d368af5-dc58-4ddb-af35-cbc63bd638e4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "37ac68db-02ec-42d2-92bc-d7d2f4c33bf8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008078-6166_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f2c471a5-55a3-4180-be7d-c3560efade4b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "589f8f36-79a2-513f-a83e-cd707818b834" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-HD-A634_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "34c0ddaa-1fcf-4e5c-b5bf-7cfae596c09d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c25592d6-b3d3-47b6-a3c5-3cbc81803152" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1bae9a44-1ce3-45b1-9902-40faeba58120" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9b75ffac-0af8-40a0-9cc6-8472fbe942ef" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0015763-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d02e5c34-3c1e-4a7d-a67d-c2525ac3a734" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "80571628-74cc-4067-b16e-40cc5b040560" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0020147-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-02T20:58:03.565619-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "10e9e747-568c-4276-9275-1f1d7cb30f81" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a6576ff2-b9cf-40dd-8da4-ca829d762cc0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-001449-6594_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:12:32.615882-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4ec8fe70-22ad-4f62-893d-f95d77dd37f5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1906d9ae-58dd-4b92-892f-6ff61788d171" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-005398-2604_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "adbb22ae-5402-4918-a4d0-b54e2f114253" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5976f296-bcb7-49a6-8db6-8620875f12e3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008036-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "257963cb-44bc-4946-ac72-7a1bb02f6af9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] a crdch:dict . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0b151db5-f3df-4cc8-9bf3-049308634116" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001794-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2da79fb4-bd1b-4518-a6a2-6159251d65fb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "094085f3-01f3-4992-b559-832c897a704f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003374-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e868826f-a629-4839-bc5f-5383b74aac12" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "18d9c548-2f10-5116-bf59-05cc53b3b5c6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7410_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a24e0ad7-668e-4bc7-ae3a-94964278a407" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "acd6cfc3-412b-4f61-a2c7-013c61fa2efe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "843ced6e-a9be-48ea-9313-13aa752dbbe1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d284c064-ed2c-5741-b1ad-2f9fd34b6636" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-5153_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2f668e36-b359-488e-b0fc-fb7bb479f485" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2dc7070a-9c70-4bb1-9634-8c934bb9c8d1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f079e825-160a-40d5-97cc-1931f11c4e2e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a8a92864-8cd0-5e1b-8451-ca6f3e84a857" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A6V9_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "30ad1a00-b48a-47bb-8cfa-d65e4c4ba125" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9b60705b-95c4-4079-a907-e4a4b65a3cf4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "462748e0-b611-44d3-b3fd-efb762ba317b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "45ebf5cb-a072-582b-8ace-7cd198806bc2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-F7-7848_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f7831fa0-1f1d-4623-aba0-8117b925a1ee" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b99fa26a-da90-4b98-bea0-f0c71a1b6ea3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8aa78dee-bc22-4d4b-86d6-60fb80358da8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cf36baf2-10e8-523f-9dd9-0f9c938be574" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-4223_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "82db742d-885d-4788-b509-474715ae183b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3285f0ab-61e2-4235-b0ac-af1718ca1874" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "75430612-09bb-4d6f-9304-62a5b517d424" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "982f892f-104c-4948-8788-6c77775e53a7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-013165-23146_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:44.678712-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "27e33c39-2025-4573-9b0c-1bc774566bfa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f44a9ab8-f121-59c5-8087-567864266629" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A63Y_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "daaeaef7-3f0f-4155-908d-9aa6e536f94c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e0b45d74-3b6e-424f-86e7-2174d7c1245a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "50cca7c4-4586-43cd-a59e-3fdc646f5aba" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "b62e9fa2-da66-5eb2-b390-96985bc92b6b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-H7-A6C5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "069b94fd-00fe-4073-bfca-3a3a8057d1f8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "875069b7-9411-4fb1-b8a2-992a052bee49" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9b557922-d796-48bd-b194-1fba8622f254" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "578cf44a-2d2c-416d-a428-69547378bb9b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c061cf11-1e3a-5906-b58b-2b5530a456fd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-6870_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5bf05a41-3a19-445b-96bd-439b9cac01eb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-23T13:20:20.149518-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc1be5d1-ea6a-4e7d-822b-51887dab88b6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e6af426a-d899-44ef-96a8-92bd76a0ea3a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M1" ; + crdch:system "GDC" ] ; + crdch:text "M1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVC" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVC" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1b2f7aa9-bc17-4cfa-8d93-b5a7bdd68bfe" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0015451-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8a18a085-a8a0-4fd0-9468-33e10fe1c55d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "748313dd-50be-45e2-9d94-75752dd6e783" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD10965_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T09:58:58.476597-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "97354824-7fe1-472e-ac48-74ad10e5da51" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "27fbdde4-c58a-46d7-a96f-918b64fe5b51" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037700-159036_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:26:11.717995-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "50b8e07c-b892-4fac-bf59-9e093e2d74d3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1e1fa97c-cb95-5810-9f22-9af6a0a42ce2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6480_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0c6b4631-381e-4b73-ac9e-62bbc1849ff4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e49031dd-14f3-4f2c-8457-d0249c491ae9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "90bcf4eb-dd05-5d4d-b666-6947b36143d8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-A6ES_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f99dc3bf-e91d-4011-b62a-2653b53417f0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "59ddae84-32f9-40c0-9d9f-e3b883ab5c47" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0ebb072d-0596-4deb-8607-2548b0396fb0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a84b9519-37b2-4311-ac32-8151ae7261e7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-090167-282584_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:52:12.528526-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0f1ec484-9205-42f4-9696-815dae75b073" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "30984445-18bb-4b5a-be50-8bed548e6e00" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-007662-3905_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T18:54:47.858087-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "46f8b134-ad13-42d1-b3c7-6b2d8cf77f90" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f73d9c17-c497-5025-84d8-e9adaf48a245" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-MT-A67G_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6b690841-3ad9-4919-8913-8f291ee95868" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7206e2ea-ad1d-45d4-ba3c-fc1f39fc52ea" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "25588932-d586-4a17-b18e-4ede4292ce9e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5ddc8873-1487-4787-8a1d-3b116a2db42a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010816-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:13:38.880466-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e179e193-0933-48cd-98fe-aa4e21c0ad44" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "d0d35a5e-572f-4cae-a0df-67ce30803048" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD14308_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:41:59.431029-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "32112d7c-2b29-485d-86c3-6b995450ec8c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a0943f40-a682-4318-bc07-eea80150867b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037288-116439_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:26:11.717995-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8449ccd3-033e-4c9f-bec5-9f341264e12b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "be57683f-0245-4929-89d2-98740dc99b8c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-011271-11674_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fe032782-a750-46b3-a282-26e110ed063a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "11688639-0783-576d-ac58-40e8e3a19be6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A49C_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7758f04c-0e07-4e8a-882d-ece76469f433" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "34b36112-f260-4bf4-90b7-0cebc5988b59" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2b3b0e72-0926-5ed2-89c8-ffa1585d111f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A6K1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "09b49e67-34d8-496e-b42a-5123fb516cc0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "43115789-cca5-4dc0-8377-e47b90c3f16f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8ae503f5-a283-4bdf-8c82-de63f534bc85" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5a687c66-0c8c-5e23-bd7c-6988abb14d66" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6021_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f1cbf326-7657-4c9b-9c8d-e2036e89fd07" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "edcbcb1d-23bb-4177-8f77-71071822cd89" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "619a1a7c-f360-4e07-aa85-812e2b1bd92f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d68e9ec8-d562-49e0-abf1-ebc41a0f439a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006509-3496_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T18:54:47.858087-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3e441a98-f869-414d-9732-4b4037711d5e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2457e378-c4bb-516f-8966-82e1453eafd7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A460_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "904d5793-ae7f-492b-aaed-ea6cca865d63" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b1c47b2e-ba48-4f1f-b07e-f930b1135201" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9e397756-8535-40f2-9fc8-d0f1392a5e6d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "81f6058e-7aef-4ed0-b7c4-a0f1ff8a52b6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-036373-130403_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:37:30.937085-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3b018cb9-12c9-4445-b021-1fc93e0f74c2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "c975f49b-ba03-4e22-bcf1-7aef636601ef" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD3546_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:01:38.093247-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "42ef0174-6a5e-4804-ae6e-5d0122cb51c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2fcaff59-bc46-4971-9a75-dcbf2c85a5ca" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0013498-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:39:05.576558-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1c156e43-c8c3-4ecb-83ff-2075ebd89cd7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c96ca96a-8046-4381-a767-1119705c5500" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008037-6376_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:11:14.458475-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f5e6b025-48ca-4fd5-b657-ae622bc9de02" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a00585d3-91dc-4976-87b6-d00c7caf5f5d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008528-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:09:54.181448-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "89fa0392-487d-4839-9c7e-cb82312941c7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "b0179bcd-bda0-42ff-8654-61f3fe576e73" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD12050_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:03:00.815411-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0a8dd963-c724-4a77-b662-5f711ac88607" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ae2f70f2-dd19-493b-b6ea-bbe2cbe507cd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0014898-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:42:39.927651-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d7332e8a-d17d-497f-9b44-cc7992f48739" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "583cb32e-5e1c-4f3a-bdef-035629e3eb57" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5451_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:40:28.865821-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a8ae1d5d-04b7-4012-9bf5-70a664f325ee" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "47de90b5-a5ed-5ce0-ada8-7f2c8e621913" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A641_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0c14d932-3b44-48fa-8974-db6e01464851" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc3866fe-2690-4354-a548-10189054b85d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "744cbf84-554d-4cba-aa4f-4c1e5e28a1ee" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "72d80059-302c-57fe-89fa-10045543f0ad" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A6V1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b2ad9679-048c-43c4-9d78-45638ad5a493" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8f952c62-2404-484c-b8af-33ce60f4e024" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1dc5e826-3f32-4d4d-8e2c-00fdbd76b393" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010503-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:13:38.880466-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "78c3f61a-5719-4604-8ebe-c21057d3e416" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "6252ba82-08cf-4a88-892e-bd2847842225" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0009588-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:09:54.181448-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0fd4a1fd-2313-475e-ae01-d424516e42c9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f0a3480b-d52a-5db1-b03f-693a9bad5cfc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-5559_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fbea64f9-b46b-4af1-bfb2-1791d93977b6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "43fbb037-8ba4-4ba3-8458-71a027eda822" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8c925c97-a7e0-44b3-ac62-b365e89975f0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "192c4be7-66ba-416a-abfb-1a88e63e7be4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-534918-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-28T12:05:42.341898-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e15f8344-5f7f-4602-b2e3-8fcb0418cb8b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b23327de-182a-555c-9323-77d5bd3dd453" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7415_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b7d03ca7-f518-4587-a54f-03896e53b167" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "106c7016-9bf6-415a-a0fc-3722a1aaf2c6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "72f5520a-28f0-4be6-afe0-6bee4de5b69a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b8812861-0e19-58f0-bccf-667970cdb04c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7399_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "05c3d8a0-47a2-44b2-b0c3-144ec0cb2673" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3dd4255a-7359-4b51-8a0b-44d9e249956b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "80c00d5c-1297-43e4-bbcc-cc895915ec2a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-51823bc5-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8d24d0d3-ec37-4b8e-9c31-e23965637da9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b7c4b294-1897-5001-8494-cedac0a7f991" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5440_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "28780b51-0b53-4d73-b399-ec90b45de0d3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3f9a9578-e8e6-47b7-af7b-31d9cffbfd3a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d773747d-fd09-4890-a436-9b212e19063b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e68bc170-6152-4c90-9b9b-e31856495716" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0005506-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:58:03.635432-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b5f4b393-678a-4964-b625-19c8099cde13" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c652d5fb-652f-485c-99cd-4e3e00af1126" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000396-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2bde1811-da29-46e9-973a-45ea43387818" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "af8fdb73-f4a3-5b32-b9d5-6f9d39a97856" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-6824_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "10c45c93-36f6-4085-8bc8-f46dfdedca1f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4d8bbfbd-1a39-4630-a1e5-3bc6abb01949" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2e1366b9-95b7-4a0d-81f0-7ec14e4f4592" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c1887ffe-1e7a-4584-a9cb-897604949138" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD7475_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:48:10.807261-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b82784b8-217d-487f-b2f6-4435ebc09885" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d2a0bb97-195f-422a-969f-0342485cf8c6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010743-8938_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1f6b16e8-e1f4-462a-ac25-700c915f464f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a47bda97-0952-47fa-9a6e-277baa8762a9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004713-938_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc589138-6e86-49ad-8d76-857543c02842" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ea4330da-9d29-4e64-8197-55a50ee283dd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001557-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "90c9d5f2-ca54-4084-99e7-e9407e364b12" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "35adcfa2-f4ae-4aec-8362-097fab231545" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-000205-461_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:06:57.341931-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ab00664b-8f6a-493d-b000-89f1341dc713" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f351c260-09d7-594c-8347-292ae6f65f1f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A49B_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "16b91d52-3168-44d9-bbbd-9f6e8b2582b6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a49128ea-01e4-4587-845b-6b26bafa1c29" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0b9b2b22-2fe6-5569-99ea-4647a15e68a0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7177_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e850a80d-1b50-4ab6-ab36-1d1a5e697d7e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "768e2bab-347b-4d90-887f-bf5692a91eb0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ddb758e6-20a8-4a28-ba98-798de978154f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "21152590-1224-410e-aaf7-4088302c809f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "232f3bad-3cb2-5b4a-91e2-71f37a7eff72" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A71B_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5c464f43-4aa0-4203-8828-5fc4cb13cf42" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "df66e44f-3130-4d7b-a1d9-2d90f96b4c7e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3a4af2fc-6443-4644-9da0-fee722e6d5c6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1ddea2fe-7874-5d31-b1fe-2cb2b0de542f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-KU-A6H7_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b4074f91-5478-4117-bee5-ed164e4d38c2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e4439379-d930-4b9a-b498-3b75e569f8ad" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "840d3da5-0493-460a-b5a9-4285e1a2ad37" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "61eec5b6-925d-434b-a318-b22fc21c9ffe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1da5c51a-ee25-51a6-a4c2-27d8fdcbe24e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5365_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "665d66ad-54ee-478e-bdd0-85d77980fb3e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "665d4bff-603c-497b-816f-c98784665d0f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1ed245de-fea4-42c9-9197-773bcd12d2a8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVC" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVC" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M1" ; + crdch:system "GDC" ] ; + crdch:text "M1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "stage ivb" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e4e39ca9-5e45-497f-b616-8e4d9edf9431" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-3876b32c-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "59d867e0-1111-4114-b47d-39b108eecf06" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "37b4b703-52d6-51dd-9cd7-3f759862a78c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A63W_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9b9dbf11-d017-4723-a76f-c25ce4a01f09" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8da610b4-0a32-4ef8-9f55-1c969addd79f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e6cd0e23-4423-4ebb-b314-913419340811" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fa79bd3b-f6c7-48c1-93af-5b6fb08de876" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003292-1283_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a3eaae17-ef1a-442c-93cc-0fd82a8887bf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c1551a30-c8b7-4ba5-b5ed-044b55587a38" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003078-318_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1647be39-e387-4457-a1c0-83483d25ea5e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e978fb2f-2b7c-4ac7-b4c0-fa527f8c4ffb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-090186-282458_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:52:12.528526-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1bee9751-cbcd-46d2-97ac-bbe9f4495f2c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "09912a9d-8fe7-4170-89cb-f0881ba681bb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037012-88553_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "89c7b64b-262a-440c-b2b0-b45a94097d6b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "de59133c-2442-490c-9f22-057c8a47ff70" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008518-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:09:54.181448-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f4e28471-79a4-456e-bba8-db331560bdb0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "bfc1721c-c0de-54b3-9170-781b78cafd44" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-6868_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d660bc61-4016-4f52-98c3-72de5459946a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ad04d034-7fff-4073-8c1f-97fac3d0bbdb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0469c4d4-58ff-411d-9bf4-8d8bbe31d7c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "696fd614-355c-42d4-b318-9d4a0d23ee17" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-001641-3996_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:12:32.615882-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "14dd72d1-596c-42c6-a5aa-c3220dc6fc21" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cbfef8ff-181a-4048-a571-f78fd34799ef" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037220-88689_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9f95c03c-4c29-47c7-8bff-47c3014a61b5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d852d062-d7e0-559b-8492-da2b0abe8415" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6470_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "aa121605-a2c9-43fc-a836-8ec6c42b99de" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "afb7ea63-2959-4e53-95ea-7a032dcb5a8b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Malignant rhabdoid tumor" ; + crdch:system "GDC" ] ; + crdch:text "Malignant rhabdoid tumor" ] ; + crdch:id "9a11a042-337d-5a91-b483-093f98b0b72f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TARGET-52-PARKKN_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8963/3" ; + crdch:system "GDC" ] ; + crdch:text "8963/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ced7edc7-a9ff-5d30-a63d-dbed4edfe497" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Unknown" ; + crdch:system "GDC" ] ; + crdch:text "unknown" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5c70e571-fbe5-407f-aea2-9f740e6f5d2a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-002399-7809_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:12:32.615882-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d57d8dd7-f0d5-4c3e-9ac7-cc23e2aa77d7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "e89ecbde-44e3-5db5-be20-af6cddaa4e92" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-T2-A6X2_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fe1541c0-a239-428f-bf43-8b8b999d362e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "161b6a0e-0b50-41a1-bdf3-bd7666067454" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0080b5ac-b9b2-4fef-ae51-6a6178325364" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ad265c45-3ba4-4f8a-afcd-70d7f2e79751" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009344-6546_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b993e287-e823-4843-b182-3bf775dfb489" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "8a0ce16a-46ec-433a-9679-e76ca74240fc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5506_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:41:09.015209-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "14f00898-8aaa-4008-9eac-0959333c3525" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0ab5d8a1-108f-450c-89bd-efd0c4d285ea" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003059-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1303ddf5-cd55-47c9-9f93-c09d7bbf2f80" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5db2900f-3088-48fa-ad1c-8dbba6bedbef" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0017777-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:37:32.909734-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dc326cf0-cb20-4f0a-968a-28c6923319dd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7c0c3290-5b41-50b4-b37d-536ebbac2af8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7101_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f040a5a4-e955-4e69-9f2e-ae9a4c78780a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "79ec5357-3a44-40db-a1ba-ee282b484526" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "397b08f6-f560-418b-a6e6-2d953187bd5d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8e461b7f-1bfd-476d-a948-7aadb89a41e5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "640dafcd-ca8f-4305-bd40-240ff476b75e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006707-2784_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T18:54:47.858087-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "53e7103c-42c4-41cc-948c-b8e23271bee9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1ebf1ce6-31bd-4c8e-b3e0-f70d47cdc527" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0016351-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "90f2519b-17ba-40ad-baee-cb711b306a91" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a69046f9-49c2-4846-a394-ffebf61b0340" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-001847-1155_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:12:32.615882-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ae00c91b-f03b-41fa-bd2f-d6fde4338cf1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "59ca6acf-5527-4fa2-8bb2-658029b9c67f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009312-6572_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "667948dc-d9bd-4813-922b-69468835c551" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "20b2ca7d-bce3-44c1-a0db-ef271aca97bc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD2717_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T09:58:58.753780-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "69907c44-c952-482a-a307-44efd82a16dd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b9143400-abdf-5f03-9771-ebafe5bb5d43" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7371_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5a5005d4-6cd9-431a-89ec-ce6d34b0fc7d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ac9f5493-c06b-40dd-b80d-7be718d27289" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "9b998038-9a23-4348-a5f7-e2d3126e118c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD14936_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:46:29.991257-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fc50dce3-ca12-4a52-a8fd-27dcd3887746" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "00fbc722-7387-437d-b859-3d35c86e02fc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-040b2fef-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "25007740-c3ea-41f0-a9dc-52de44cb9faa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "24e37f06-2587-52ee-bcb3-40688978538e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-A6UM_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ccc0e6ba-cf8b-45e4-9f0b-dd2422b3e470" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "99404948-9837-40eb-bf38-c1cfe1b9a88c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c4aabbde-a46a-403e-b974-7b61b964a1b8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c70dbc51-07bb-49a1-bffc-ea639cf09e66" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5893_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:40:08.863452-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3c1903f3-2a52-46cf-872e-060ba3a092e3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f7e49651-4dc5-50d9-af24-de743caf866b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6482_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "92173f97-b46a-4950-8cd8-6729ab9522c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3a24aaeb-37ce-4508-81d5-e531aac8a167" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9e0b865b-296f-481f-8bc2-7bfe4642d805" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001912-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "271c4064-6b2e-4971-853f-e3f2a1cdd74a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ed6cd70d-8278-4da3-9067-ab74bc051381" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-007474-4132_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T18:54:47.858087-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7946822e-6d72-4013-8be2-f3ffb0487d65" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a4f6276a-b3cc-45f9-9fb8-30edd56ad4ea" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-011620-10763_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:44.678712-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d697e728-9813-4ff5-83eb-c7d814e07bcc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "96e73819-3b05-4a68-90bb-ceb60d419d50" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006296-6704_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "51ca54fe-f436-4a88-a11d-ab0781666edf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0c55f80d-c82c-4554-916f-6b117978b3fc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000454-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5c3a5e81-481c-430b-9c70-f2d61a77568d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "07feaa02-95ec-48b9-83ff-ddd765c8ca9d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0006098-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:02:01.981535-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eca4b442-f9d1-4018-94cb-158757bd3bea" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "10fdde54-4aab-4498-925c-38ccd8df431d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0015591-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d2928928-ad9f-46d3-89a5-a00131eaec79" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3cb5d51d-2566-4b1f-ad4f-57520007e73d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-050743-203353_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:18:25.269226-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c862481b-aaaf-41d4-9c29-188760a43dd8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "0f72e73b-f462-4eef-9d1e-95e83c1f2aaf" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5362_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:39:05.012118-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9f4929bc-09a7-47b8-9720-d6f829b51a13" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "18a6869d-fcbd-526c-a71f-7f5145b12278" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7440_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bb0c2fd4-8ffd-4825-aaf2-e865090940c8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "86b81c8d-ae15-477a-86fa-6e10f1263f87" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "80eca6e9-b390-4878-a070-e40c1c19b1f4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1d594963-b5c3-496e-af52-5f6dbcd6910f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9223ac2b-219b-423b-bd4f-5d28e84c8d89" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-001409-5066_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:12:32.615882-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fc3b12ce-4c74-4faa-ad8b-60ddde831901" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7747a88f-1a9b-5833-9442-af0b1350bb4f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6013_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d018cd44-6b01-44f2-9181-81153225aab8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c0c84016-117e-498c-9ed9-52e279e89e33" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8b510bc8-7b3c-4861-9a40-c2c30b7099e0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "dc412cff-36a3-4721-b1f3-8e16ed74489d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001186-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1853a05a-8846-4da3-9509-bff587eb6e8d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "dac87ff6-12f3-553f-a6cb-fae679002ff0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-4722_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "60c8633c-16f9-4066-8aad-311b04b935e5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6e767fc9-0f5a-49ec-999a-cda2daeba6ff" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "47e7b839-bde5-4b66-98da-7ed6e3e7c29b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9e74f3f5-ab22-55d9-a79e-9884f3b0f109" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5374_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "88000b86-9334-41ef-847d-6668d17ec62b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "27fb0ae5-d8a1-46ac-ad3e-2464c52d9cfd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "617df1e0-b075-4610-b6d5-8850786fea70" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3c0d1fbc-508c-4cad-a9eb-a848fc20ac76" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006868-2957_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T18:54:47.858087-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "abf5cf5e-2352-4ba7-9a91-cbefe78ae28e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e61558f0-d90a-5bd0-8485-ba159dba3010" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-7862_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a61be572-405b-4b16-b554-7fa6c12a48a4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "091478b2-f8c5-4ad8-9c89-06a48728fa2d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fbf59d12-7047-49b1-9002-00030c797438" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d234a346-038c-58a0-824d-22bfabb73218" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-MT-A51W_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "03c6ac2c-c6b6-4041-a024-f2556fab62b8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "91e56a17-b4e8-4ef7-b587-a83bcd8c062d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d238e52b-b2e8-479e-b76c-a168136e0ef0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "22080645-9bd1-4303-ae61-8228c254dc24" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002746-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c74deddd-6181-4108-baf3-4d750d877606" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "08272717-6b2b-4734-9674-4bec2662bd32" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-UHN-523097-ARC1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:18:10.730001-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ffef8dac-d99c-4426-ad9e-f4e3947fe1c1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f0cdd17d-5db9-4c58-84f5-f9efcc94dcb5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0004492-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:54:19.535598-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d74d27e4-88e8-4ce3-a1ff-7658e007a49a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "dd691506-83cb-50c1-ae0a-2583d57079d3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A499_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9ca906ce-18f9-41c5-afcc-353b26fdebaa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7d93ba42-9e87-4a6c-8b0d-6f185645a90a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "523155c1-e181-4d6f-9873-9449a8e3c289" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-036955-74886_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9ed6f000-4643-4f65-be84-8fd380d3bc36" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f6106a03-d94d-5b31-969b-ddd1d6ac23f7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-8596_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b8077f12-81e6-49f1-aa69-a4b6f5825534" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "226992b4-f81f-49f5-a1da-37ab1742779b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "51eeba12-4cfb-4842-ad6c-e49cfe5ef207" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Basaloid squamous cell carcinoma" ; + crdch:system "GDC" ] ; + crdch:text "Basaloid squamous cell carcinoma" ] ; + crdch:id "fb148e0b-2d1c-57ff-acd6-4f2208af3ce3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A4IH_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8083/3" ; + crdch:system "GDC" ] ; + crdch:text "8083/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f87efb5e-24f5-4d2b-b6b3-987bbda30e03" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eff60f0d-e3c1-4a93-9026-c0764c70ba9f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "6fdb9066-4bcf-42aa-81d1-585b2f2fdaf9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-6209-17288_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:10:26.105156-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0f97f0c0-2148-4c06-97a5-37a64ed1b81d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6ce57628-3cd7-5cfd-8317-cadf76a37f43" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-7870_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0d53784e-011f-4890-9cf5-59e955dd1fea" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f5589c89-0b94-4492-8a3c-84d58377e94f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b79164b1-7abb-4585-b23a-0e610734ea8b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d670dce6-9fa8-402a-8b79-081ec26ebe25" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-000843-6962_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:06:57.341931-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "85fa5941-b6df-4eea-97e1-a7b4ae310bdb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "af2c06c6-b5cb-4369-906f-727e8e00e459" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-005169-1136_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "104530ac-b606-41bc-93e4-5734f176d3bb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3f9675d2-ad2f-5a88-af81-e7e9b5744c1a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7437_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "215c17d6-2035-48da-9d06-c54734042898" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "58c15c00-ddad-4f65-9f03-1882b7f9a09b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "46be59da-3e8e-43cb-a4f4-6658b12f1fe9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d7340d97-4ebd-4125-961a-9a5abe2f0ebb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3ef5f7db-6234-5c11-96d5-fdb6cf8ad63e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5978_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b33eba98-6a89-4454-9a53-94999cd5003c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b801368a-b10a-4a42-bda8-5df8216b532f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7560ec6d-e0f2-4b55-88bf-62e7173126a1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "stage ivb" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1ad86ae6-e1df-4578-9639-e768e6711e61" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008033-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "28cb9e1d-c34b-4909-a387-5a5c60bcd6e3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4d192f26-a2c4-537b-b8b5-1473a759882c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A7J9_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5df6c457-baef-451d-b1cf-eb7fa6adc602" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5be42d60-80c3-486f-8717-801fec0c89d3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fbceb407-e7f8-4942-8689-854f8999672c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1214a9ed-2d43-50a7-9a94-85eaa002670b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A6DA_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "33bf2824-d873-442f-8ae6-48274fbf4a94" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a2260bc1-8aa1-442c-933e-e4a05d46d802" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8b80b922-b00f-4cda-92a2-49c357aea89d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "38c088b1-bab2-4d5c-8f45-80280d1c309b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010800-9387_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b480938b-4562-4d37-a280-16cd4dc700ca" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c127a1e6-f25a-525b-949d-013bac98b38a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-DQ-5629_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "57ea3eed-f8e2-4310-90c0-50d89f818a12" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cb2da33c-021a-4af5-8509-118bc1e8e0d5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "769f3c1c-323e-4f04-9ae7-e41f484a964c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "812129f0-3b47-5ede-9062-237e0c0be7c5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-5555_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "99ca3c12-0d63-428f-8b1b-03e4a3e8e233" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7c56b9e6-8fd8-4d39-92f0-a24c80270dda" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2920ca1c-6035-4350-ada4-c60d485dbfff" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9e30aa6c-91e6-5dd3-9512-75c162a89913" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A8Z8_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1efb2d28-ac51-4d70-a24d-667a2b53467a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cff6967e-e8f7-4a25-aa31-9328e4b42816" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a118da56-784d-4b67-aade-d9a7a8b49f18" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVC" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVC" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M1" ; + crdch:system "GDC" ] ; + crdch:text "M1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVC" ; + crdch:system "GDC" ] ; + crdch:text "stage ivc" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVC" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVC" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M1" ; + crdch:system "GDC" ] ; + crdch:text "M1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f8933756-4001-4c7b-94c7-2d8964ffda9e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-005118-1198_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "430338db-7df9-43c8-be80-6ef5a6b98899" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "27b201c5-0310-4f7a-835c-31fde311cde6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0020040-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-02T20:58:03.565619-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8738d7cc-e80c-4a00-bc4e-fee451f4b19f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "bf8ae40c-068c-44c4-b09e-954969e83369" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0016039-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ab79d569-bc64-4639-a6a8-74bc2bbe0d0c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b5b027c4-6ae8-4c42-9ffc-46738ec336b9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-671452-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-28T12:05:42.341898-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eddc8197-6d13-4eef-bb1d-06d1b8df5395" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "6f1ab30c-67b7-4a7f-b4ef-22b1221bec7d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0012422-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:17:29.664139-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e125a436-ca27-4a85-bd9d-9ca108306229" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "05d9d8f7-c21d-47ea-bb12-7de5f6709096" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD14142_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:42:51.054806-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "02402659-6c66-46ca-861c-e4c093a1a3d3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cb8fb063-f8b5-4748-b937-5efb6fefecfc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004149-1026_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e331b564-d79c-446d-bff2-a732dacba6bb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b4c405c4-ece9-4cd9-b11c-cb1f863021cb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003788-772_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f933f399-d986-43eb-bdc0-b3faf49bf513" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fac833bd-36d8-5306-b322-92106575bfe1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5430_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5bae7161-8838-4b10-9210-02deaae4b9c1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4151c76f-9dcb-4451-a99b-889e0024f8b9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "72f98dc0-3fcb-47a4-8c7a-52a7cd9d3fdf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5d293d68-61ae-49ad-bfcc-e0bdb91cc29e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6459d972-a02b-5a11-a7ef-12f699047036" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-5248_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a4dca71f-e53a-4bd0-9d1b-3381ed188a41" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0771e98b-4e65-450d-afc2-33d4e30b3df2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "d75594bb-d5e3-496f-b1c9-1743ae942c53" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008027-5967_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f0afc508-eff1-4a28-b912-3705a87d607d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "20846d6c-1a34-5e01-a531-f9c783416c3e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-MZ-A6I9_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0551272d-7e05-435c-92b3-918cde4d14ee" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "396f116a-bede-472e-847d-435a77dfa7dc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f32ce523-c60e-4a86-bfa0-eeb4f3b2d83a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "82cf8f30-edc0-444a-9607-498f1f4fc6a5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-NKI-ETWO-SK3U_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T17:51:39.178920-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "92e24628-56bc-4c65-9c4b-76c589943948" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "556216dd-a648-5f7e-a4b1-8f8688a354b6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-4217_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5eacbcc3-8ac1-42bc-b3dd-53bc693d3cae" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b9427fad-04aa-4e73-99ba-ccde04e4978b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3d9307b9-f42f-421b-bebe-ed692a5868ce" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "7c9e489a-67bb-5aef-92cb-b776ab07f413" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-A6EQ_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "37e8e5f5-0edb-420a-9f32-a2e167ef4cf4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "041d7de0-fdee-4f6b-9945-058f8bab509c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "43a91c60-f1f5-4b10-b0ee-c55afadac481" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "60a003d8-42fa-4981-8fa8-a96a6f4205ad" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0019316-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:43:52.092583-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b3eb534b-6441-4294-809a-ab6963d9aa39" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3f8fca8c-e8c8-4032-a0ac-488e49fd623d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-023359-23864_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:44.678712-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9eb7cb20-106f-4668-9ef4-c0344e8df3c1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0722d8c6-5481-4736-a9ea-24253edffa93" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-005284-2016_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f02ce49d-85b8-4704-9dbb-8e012090fbd5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "8d28ba70-052a-42c0-9a4e-f06ea143f381" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001195-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b857d450-dfaf-4407-84e8-d3bbf843cbc3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "fac35228-e5eb-403f-a9fd-c88a2518c7c1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009544-8452_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "933ddbda-c8bb-4e81-9342-9d7379bd6332" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "31489596-1797-567e-814f-ec85278ee342" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5432_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c552cf29-896d-4a47-8022-e5c57e27e70e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3a13692e-cb77-464a-8ace-cba47f99247f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "418aadda-9f2f-43be-b171-866585aab114" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b4a36114-80d3-4f28-b85a-077dc31eb485" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "100193fa-11a9-4abd-9bcb-b1688eefaf5e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008981-6260_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8fe03287-0b1e-4750-9006-58059562a243" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "de41284b-65f5-592e-99bb-9157a9509c36" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-T3-A92M_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d22843cb-8a14-4592-b339-a04cf1514205" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cdefaeb2-3a2b-4094-b25e-0c509b62c13b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "86c72a0c-24c8-4d55-9f87-6b7198a10890" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Adenocarcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Adenocarcinoma, NOS" ] ; + crdch:id "78daf8d2-f74b-4d9e-9ffe-79e90425ad3c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD7638_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8140/3" ; + crdch:system "GDC" ] ; + crdch:text "8140/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:47:53.195932-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a4ae0499-714f-4d0b-95b5-e085bb652117" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "52d5ae11-4bb0-53aa-bff7-31190888f8ff" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-5247_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "950233c0-c1ca-4b69-8e3f-a6072dbc7e6a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "43739161-8083-4740-a670-1a334a87ca7e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "d2578ad3-da53-4f9a-a3b7-043e9c01a282" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD17065_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:54:42.853523-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c84c230b-7953-4d86-ba93-255ab2242ce7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "efe7297e-9961-4ac3-b247-a9322e18240c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD16071_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:51:38.104730-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "542b7dd6-20ad-4719-bece-768060ddab97" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1d13cc0a-da04-5925-8930-693f09cd6432" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-T2-A6X0_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a4b8631d-80aa-4665-86b4-0caa7241da66" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0416608e-19db-43b8-ac11-87406b0164d0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6f085b6d-6abf-4d89-a17a-89e6c7f8fcc2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f41a7343-e52e-5f4b-b902-ccd3275b00b9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-DQ-7589_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e22036a1-ed2f-44b4-8bca-bd9808611fd0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "19c44a45-4f80-4d5a-beac-83db256a3434" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "41ec6e82-6bcd-4057-a370-bfe1801e2e94" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M1" ; + crdch:system "GDC" ] ; + crdch:text "M1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVC" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVC" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "491f9f68-fb39-4d17-a75d-90d14e801df2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD15095_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:44:57.662014-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ae6cd26b-98b2-46a9-917b-cecd94358907" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "75ebf700-6ff1-4980-a420-41df37dd2c42" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0018608-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:39:49.045696-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e4d9ec72-9281-4b2e-841d-06d84634968d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "bcef8cad-3d18-4cd2-b839-5fddd16311f1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000945-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2ba57cf3-fd06-4f99-9ad7-447a164b9586" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "bad7f79b-abec-4d69-8c30-3abd1a5f31d9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-UHN-700007-ARC1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:21:56.842750-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "72155863-300c-4515-962a-d0c332cf5b63" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b0f16df9-9556-4ff1-b8b8-afabece2fd14" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-UHN-071596-ARC1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:18:10.730001-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5cdc6f40-9b5f-4dc0-9082-a9500c3e5af4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7c2fbcc8-56e0-508a-84f8-97fb3ad6a8ab" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6011_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "afbf3020-1715-4e74-8224-05e316796999" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4d620a8e-517e-43b2-ad44-d9a8467e73a7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "83b525ab-ad48-45fe-bbe9-54d6ce88054a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "388e26e6-e8e6-527b-929e-24ff75edc9b4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5441_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b480eb37-ffe0-4626-b49d-dfc514a60886" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "26c67c48-00d3-4491-b761-7941415a2c6f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3f583e59-c92a-4257-8098-5d081642dea7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "530535a6-b47e-48ce-b312-54c3003c14ad" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002854-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ad472d22-bccd-401b-ab2d-0ab7a31c7b73" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d113feec-68eb-4294-b6b4-6b8e22ce56bb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0016562-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:49:52.836213-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "99c1a34d-ba04-462f-be28-bb5eac77b316" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "1674c3b2-c0b1-4395-9822-81016a649ad8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-4664-11636_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:07:22.808668-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2bd6f2fa-881f-4287-a616-d43d33a5e551" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9be1751f-17dd-5748-a489-1b4eb3235e17" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-MZ-A5BI_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c226c7c5-64e6-4790-a420-c2f4e0196453" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f1e46036-7b4f-4cca-a150-f2d8e599fdf7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "be59114f-e2eb-4d06-824e-7aa867673eda" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004755-1862_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "255bbe44-dce0-4905-86bb-317144348172" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2a826dce-5a83-46e6-8ff0-9c7597ff54d4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-673077-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-28T12:05:42.341898-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a5fa104a-bb1e-4e7d-a740-607fc803f4f3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "c740d9c9-bb4f-4ae0-9920-43267c9bc180" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD14561_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:42:22.825295-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "97cac184-023d-4aaf-9637-cc34969471cb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "8bd7b118-92b1-4443-8753-f779c82ef116" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-035615-74950_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-27T19:26:40.896040-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "151f2c1e-f448-4fa5-9b61-81dc5c339f58" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e7fe03ad-184c-46be-adcb-dcfc79db3492" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-d47c6375-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7512ff60-162b-41b7-a3ed-c153d7aee073" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c2494ea4-5db2-5716-9afd-096e152b592c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5356_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fb9d2ba0-7673-4587-ab69-0059fce2f671" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bcb5da85-78d6-4519-9740-378587b1bd37" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cf684788-d8e6-49da-8421-b2dbf040a529" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "92f6368e-51fb-56bf-a72d-7ccc16eafb44" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5434_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "657cf588-cca0-44c2-83b3-0e87f7a81f29" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3f70e2db-b313-4f3f-89e7-cd1c0acecf9b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dc649d39-482d-4855-b9e3-129552e5e421" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f6130e55-1627-4d2f-bd8f-c0e778a1aa45" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "48994484-82cc-51ba-a8b6-6f4663599d40" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6478_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a26d04d0-1501-4cc7-afea-154a89cff0ff" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dfbc5ddf-a361-4d72-ba8d-5615ca644357" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cf93d012-b0b8-57b3-8a55-7575dfde2b1d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6989_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a5c6b30f-2aa3-48bd-8415-bdce2444e49d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3570ac4b-b585-4262-b54b-137a2515c689" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7ac8fb22-0a09-4b16-af8c-b5c2e90a968a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "52fd0265-204c-4ce3-bb51-a3cbee5aca51" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-115ef99e-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6ba7ff9a-775d-4239-884f-4a303b42e4fd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f14b2d60-39ff-428e-bfb9-a33f4d3242ee" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002193-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f2f48558-d331-431f-a14d-845efe0c6ce9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6bbf8ace-0b17-57e5-bf9e-2c164cb28e53" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-F7-A50I_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "384902a7-fa03-4083-9baf-7ce114694c9d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ccd8f2ed-5a6a-460f-b692-ee7d78e29b18" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5eb175ff-1b47-463a-8f16-4b59914457bc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2b051980-b5b7-4b1d-900c-9705c24b2a78" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009287-6605_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "781e0bea-f234-496c-915c-c163fc8de24b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "430602f6-cd8b-48d1-b519-dee691fc9c20" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003106-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "78b77808-ec88-4e6b-8393-decaa7bba86d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "4228d736-f7fe-4ef9-8bce-39b8c6c3bc70" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010459-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:13:38.880466-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d69183b2-2961-45f3-a4db-3d32d08f6abb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "881c2131-1f0d-4b11-8b3a-626918ad5566" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0013652-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:39:05.576558-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4c4f2c9b-d2db-42ab-898d-7d6c8c8e4a6e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "826319f7-67b5-481a-998b-781e3ded01c1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-22f8acca-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7aa50a3f-dd6c-496c-89e2-2d8d6d136acf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "49cde226-3d69-415f-ad98-02d190dbf75c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006446-3455_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5c19b5fa-d6eb-4d7e-b617-930e19aea484" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "675831ed-0976-4fdb-87da-15a7a85ba6b5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-9bb5e551-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b2ee3f62-a9d8-4f49-bc51-1d3f17d63b14" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "26bc85c7-5376-467d-a880-4c415ba3b3a5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0014015-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:39:05.576558-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "968b2133-a7b0-4d2f-8949-f6ff299f1219" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "57e78d94-5a02-499e-953f-e5539884009b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-036456-74857_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-27T19:26:40.896040-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6f3b4fcf-0519-439f-b3e9-6a0678745885" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "e2403080-b7b5-4d13-b62e-9b7293a45058" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002484-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "89363cf2-b8d0-48cd-97e5-4cd68ed372d3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0be93ffc-ad62-42bb-892a-ba10c4da6f39" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0017332-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:20:07.713564-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "43637316-5d63-491d-b4cd-2caa045d8c7d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ad86791e-dc2b-4a82-9c74-674bc6baf268" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009352-7151_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5e386079-a9c2-4c7e-80ed-9dda270249b9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0b8731f0-363a-4989-ac32-3ad093d433c4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003031-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e44b074f-5e47-4faa-bd94-7375982fbd90" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f29e70db-e331-5bcb-82fc-f2e15cad5985" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7433_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c2530f39-c334-4a38-b75b-b74d5cb95920" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2916fc1e-ba62-4494-8014-dfcc6dd358ea" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5c4960e6-92f7-4576-a7d8-82a7c3d7cd5f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "43cceeb5-008a-58cb-b219-34c3ac43e86f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A497_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bea32bd5-4068-4351-994e-09b3bf819ebb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "882c6ec3-1f56-43c3-8a41-da060f9f5ee1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "54c68cb3-653c-5035-829e-11c7b3853119" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7089_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7f11de1e-f75d-4476-a179-b50a84a45a78" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f2e436bd-bbc1-4b1d-9a55-e2a83a1bb510" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "267e43c1-bf99-430a-b077-147985fb7e64" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a6c24a00-67fd-4a1c-a371-b6e387dcea61" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "203f4d20-b796-4745-9bc0-6385c28ff0ba" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003320-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3a006479-c2eb-457a-b0a1-e3faebae25b9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d1841d22-3350-4037-918a-bb399ed85963" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-005202-1165_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "97064320-d382-4d87-a302-72490d7577d6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "26a2438a-f914-4865-9784-a9a47150cb4e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010260-9348_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0d696183-2cc4-4f33-9973-04537cb86276" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5baa4771-eb6d-56d1-821a-33157bf79573" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-7866_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "af5d22cc-87f4-4b91-97bc-7103bc07adcc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "736c3c8c-ff9f-4892-860f-04665a1f344b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fb5ba525-1658-4f8b-81f8-8d7ec3727773" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "8c624d17-a588-40ee-9902-ed694d794814" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD1281_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:02:30.028866-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a1fe6dde-024f-4487-8838-24fda3505cc3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "56566536-d3a4-4103-bd5b-550ceaad2a6b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5017_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:06:53.493092-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e2edc535-6fc4-4999-aa4c-932bf58d344e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fc136a78-0ba0-5a79-a4f9-d5d692e61222" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7402_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b86e8a21-6937-4299-89f6-05f51888f5d8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dfdf096f-9577-4e8f-8e98-9b808e417ccc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d5b740be-4c9a-4bec-835a-4cd0b394ded4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006383-3525_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1a1294ab-79bf-4e29-b958-cd6c3b25a984" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "fe440219-2351-41cb-a0d1-e22bc73d4aa0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD941_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:46:27.877516-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5e91c356-4431-478f-8033-99442bcdcb95" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e792cf88-dfe7-5130-ab9d-df59b3ed1b3b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7421_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ef81caac-1fdd-43dd-80a3-4e18eb35271e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "40583cb5-46f0-4966-82c7-4149f14581d4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6766e43d-12fd-49ba-bdde-c19bb71d329d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "db8fb969-2213-4290-94de-c3680cd314f7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD16283_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:51:28.078592-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0d4e791a-4a50-4c58-a8a5-88e5bf4d7c9c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "247e1e60-27cf-4f37-9a1c-8db3284dcb56" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008904-6911_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "075795d3-4e6e-4edb-95ee-f4d7ca56b337" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ac0363ed-feba-5584-802a-a8bd096fb07c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6022_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3b8fd8fb-429a-47ac-8b99-ae42a3fe968d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d452d59e-92ff-46ee-840d-df8a161ca9c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "952f71e6-b64c-456d-8d00-45e4118fef96" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "09ac3334-b77e-56e2-a46b-57faf703f1fb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7385_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d1553b1a-bc1e-4dcf-a273-b3effabe380b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4c4a6867-babe-4032-a639-a9b31cdddc6c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3bd2d2d4-7d4a-51f3-bfaf-4153b96110ae" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5443_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f70fece0-2fb1-4d8f-955b-7b9bbfeb9755" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4863312a-043e-418e-812d-2ae2a1f66f29" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "746322c7-fe75-4b9f-9309-93e9cfa4cb5a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4e06969c-5592-59ad-b006-09cb82ce6cc9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-6517_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "53450297-c715-4c54-ad7e-3152a1e16c45" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a2dd87a8-e0d1-47c1-a8d1-70b9730aa4ba" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8c099f45-3fd6-4966-8cdb-ca4b9288b1a2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3f0b65d8-182e-57af-87b9-29e59fcdaab4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-F7-8298_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8f5a4b47-4c69-4295-a576-fd3e558754a5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "94c71079-a453-4a4c-b52a-ab686bc83b65" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3f2ed4ae-5b71-48d9-b120-4f7bfd4b34c4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4c3c3952-6e85-4fd3-bc05-81c91ce3faef" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003978-789_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "10935163-56ad-43d1-af91-1846aa5922eb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3f296a63-9ea9-4648-a621-c8fe8a6d631e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-cbxznf5u-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e0559edf-8fa9-43f1-acbb-7964ea0c33d3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6d9a9668-da18-4c45-a108-8b0b058ec47c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006284-4777_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6b2d8256-f78a-4ac8-b0c3-a97a03410b59" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5a157d1d-a316-4b42-8444-63e22ee704ec" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-065d55ae-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7128ab9a-3a2d-4df6-8604-829406ab3bed" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f7be786a-80e5-5c78-af12-715c8cdd318f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A718_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ddeeb19e-1929-488d-8e19-c6212b3b78fb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8f620b3e-2962-49da-bcaf-4ecfd9580923" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a88696d9-b36a-4fd7-b3ed-b6b31aa4094f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c1cb359f-50c5-527d-941f-328d1d34f062" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-IQ-7630_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3b35e7e6-0e30-48be-9d22-d95fb49f1227" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d81234fd-4e10-469a-81e6-f23a192f1ef1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bd97a61f-6744-455f-88cf-2a418f2458a0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5c73649d-f112-401e-a47c-785337555930" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-JHU-02535-03020_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T23:09:11.890404-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d34c6f0f-6b69-4820-8dc8-90d8d54ff7c4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Adenocarcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Adenocarcinoma, NOS" ] ; + crdch:id "215314e4-f8c7-47e1-8993-f126c49bd1a8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD7896_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8140/3" ; + crdch:system "GDC" ] ; + crdch:text "8140/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:49:07.730023-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d3811cf5-8f54-4344-9efc-2f42c49e4e67" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9c1cd7ed-46f5-4809-a898-22cc0e15cd64" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-438c3609-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bc168208-ee4f-4a50-8ddf-b72b0dd59da2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "4679b4bd-c891-5a60-9b12-1e6bf1bb7675" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A4IF_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5eea7c58-96b4-426b-9685-15599e534730" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7bfdae74-2bf4-4ec7-b08c-acd9b9e0baf4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c8cffdf6-7c37-5146-9bff-2cbd5a6f5bbd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7364_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a17406af-2eda-4148-8a0d-ec2ae4bd9fac" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6ced7677-159f-4e9f-b550-627ab9ea80f7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "98a4badd-be86-5ac9-b0d9-9099d5bdcdef" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7247_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5ec51826-98c1-49d2-a990-7a95ee636753" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2e9cdad5-53ec-4b5e-8a1e-4f8abee04149" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f84ae44b-4bb7-4841-aee0-139cd79b9680" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "13da732f-058d-4635-a2f0-81e73c725b8d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "11781aec-74e7-44bc-86ce-9941aa62b6f7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-1594-3307_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:00:11.934564-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4cb8fa37-e3cd-4d7e-bb34-67ffdf228d78" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b725e6d2-92c0-5585-9de7-14bb623b472e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-4738_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8277e744-0508-47d5-9cea-11dcf7f56d35" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "51622170-a903-43cb-bc38-4d40c7ea170f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fb06ae75-8516-4cdc-ba9e-093444907fc7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f543ba05-0134-4222-bc49-da336358e2e0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0005862-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:58:03.635432-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fbb548d6-a035-43c3-99a4-7fb2892ade49" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "664c73af-7fd8-43bf-9a1c-1109c71a303a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-6a5b9e32-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-04T18:19:50.810302-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e6616639-64a7-4462-9676-1b2420f371d6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b8f93296-f293-4af4-83bd-6ae35aebe59c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010368-9817_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "094236a4-db5d-4e05-b020-5136ee6f4225" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4a037aae-de5b-5ac6-875f-b86b71ff50ee" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-4078_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2027ede3-13f5-40f6-bef6-16704981d676" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3423d96f-4c5a-40f7-8e66-3dd4b9818f52" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "25b0ae1d-2add-49b9-a5ae-99702a5c48f4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3d039654-a9ad-4641-b459-bd7ccd1ec1b6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-NKI-MCU4-LAZM_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-29T19:51:14.064673-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b34b2488-73cb-480c-a1ac-c2ef5b89c5f0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "1fdf9d03-4341-4aaa-b47a-98f1221816ea" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD3249_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:00:26.233095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "425f42d0-0349-42bb-9072-cfb0bd97e922" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "8932404c-6adc-4b1d-81fb-fdb4dbb32ddd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008185-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3a9e0ea1-fb4f-47bd-bf6c-831f7101b005" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2c09a792-df0e-513e-a9a2-7e363de6435e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-F7-A623_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "33c19ae3-107a-4b64-9906-5b775025cd8f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bb90f8e2-c872-4ded-9d10-5110f023762f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5f14a8c0-f19e-4a67-b6dc-907196ab34f6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6c55b480-1444-4ae1-a079-72287e8794a4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0017687-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:37:32.909734-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "52f200af-cd9b-4d63-91fc-7bf44c67c537" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "32bc08a5-7441-4dfc-b13c-9e193e5a7ac9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001682-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b2a64027-92cc-4961-9c27-821fff58c5ca" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "a2cd4aae-5655-4082-956c-f5bbc733c576" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-UHN-221761-ARC1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:18:10.730001-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5103a1f3-d342-462e-9845-9703579d26f8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "39076d27-3e66-4f32-a646-08d8e866bb8c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-5201a20a-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "68c9aea7-2d45-4200-b2e5-02aa0ab64d09" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "514322a5-47cf-5d99-8ae8-f4466bbad28e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A6IF_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bfbfb315-632c-43e7-ae3b-61bcd82b0d3b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b3a8b960-6807-42ec-b6a8-492d58de2b86" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5e77db09-dc35-4cfa-ac78-0f7af0b742ec" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "6739697d-d536-5d38-813f-5a4973a97cb9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A49A_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Palate" ; + crdch:system "GDC" ] ; + crdch:text "Palate" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8e00c51b-cc4e-4de3-ad9d-8ffe30f2ab0b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "77234a56-cad6-4b84-aabb-032be68f7dea" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4b" ; + crdch:system "GDC" ] ; + crdch:text "T4b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "stage ivb" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "64bd8ea3-d4cf-4e2c-9d2e-77dcadd5364b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008227-5962_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2386e3a8-c4ea-4434-af11-e60fae9630fc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5202e65a-e9af-58ee-8960-9190089fb197" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6467_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5ef4d047-5a84-4e03-acf5-02029d8a4cf2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2d9ad43c-f177-455e-9b63-1b9ffdc672d9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d7acd35e-0ca1-42f0-932c-a3cdd6f8d09b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037833-36073_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8f775235-6026-40f6-b156-cc3711222412" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "da5ce97d-de12-5384-a88d-a9874b39b7dc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A64Z_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Palate" ; + crdch:system "GDC" ] ; + crdch:text "Palate" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eb25346e-0e28-4161-94c8-916b41f8d969" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "95525590-0eea-4017-be66-dc487b78299c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "67289d96-8140-4ba1-9863-124950488c1d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cb7a6350-80e2-4b6e-9b86-05632255db52" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003213-4767_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a764b89e-ad60-4316-a812-24a5eec7b9dd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "58498007-02e8-41fb-b884-2383b5eb1414" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-007582-3990_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:44:49.261364-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f198873e-fb8b-4ddb-8d79-1fcf1bb1d764" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4176108f-948d-5715-afbb-cc21f3cbfaf5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5363_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "591e99ec-46f9-442d-ac20-745dccc8a52b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d0161f8c-9c53-47ad-895c-40d1be3a814e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5e4e1e21-8016-4e27-8f72-2411714203e8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "stage ivb" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3896106f-2770-565a-b872-0d61198bb107" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5442_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Palate" ; + crdch:system "GDC" ] ; + crdch:text "Palate" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "698208bb-7272-4ad5-9cc0-909cb669bdaf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "26243d14-e401-4ca4-92e7-aee13c9e6e47" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ec885af4-3513-4790-ab1f-6ecc94b6115d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "36009b16-600e-42f9-9509-783c76c5b88d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-034499-159099_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:37:30.937085-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bce047a2-b5b7-4ccf-8bf9-406d8c87d7a3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4ac21d4b-c592-4afd-bfc1-278702612bd6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004838-2080_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "10d245b5-b16d-40ee-bd41-bd08a0355894" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "eb8958ba-0798-5ab3-b4f4-258d441d7e03" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-P3-A6T5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e45c81dc-4143-4e97-8212-85032c760221" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c98f1b7e-5d3c-4e07-9d9c-65c5a6ac6cd6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7fddfc05-49ef-4ebc-8572-05059a5fc363" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d0678ad6-4a4a-4ec8-9e5f-352c1347efc2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-a8pxs0u6-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-04T18:19:50.810302-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ab9d819a-6445-4bad-a520-3d1edf413508" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "59b73fbd-93ab-5cbb-b052-82d5e66a4c16" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-5249_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6697dd71-5a58-4862-b26e-ea16dcc383f2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b72390d2-f19e-493d-9a30-cd81dd232188" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f09803e3-8795-5077-84ae-bf0666bedc35" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5435_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d2491655-a4a1-4e4b-8f94-f50dc1c5d64c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cbcd3026-9f65-45c1-8fd8-d08f1b6b065e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "78a9bb84-9d21-40d2-9b0b-1ba8d888912d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "14098d2a-e40e-4f1a-bd76-f8bf7c339ee5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a66ce9f9-d7d0-5f2e-b0c0-73f306f68236" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-6869_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-23T13:20:20.149518-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2f9729e6-edea-4612-82b3-01251317074a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f4ed2c84-39f8-4ab3-8762-a9920acc2432" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0aaa8bba-f4a5-4158-b9b4-a02244b5f6f7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6fdc7de3-3d2e-459a-94ea-1dba9572f47d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-480293-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-28T12:01:45.147328-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "116b69cf-c9f3-45c6-be86-c4f22a36dcf8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "64017f79-8293-4fd3-8af0-bf01eb6cf49c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-UHN-653571-ARC1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:21:56.842750-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5349f1ac-ad8d-437f-a9e7-30b2323bd11f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "155ca101-ad45-4f50-b9ac-45908daffab8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003009-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f8de95dc-1011-4b86-9a46-28bc46465195" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "21b7042c-de33-572f-a77e-98db817efd44" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6492_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Palate" ; + crdch:system "GDC" ] ; + crdch:text "Palate" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2da6f33b-4a9f-4cf6-ad8f-873be656a6f8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9d258494-fb84-4435-aa3a-f5778ac061c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "6284d2ec-e8b6-5cce-957d-f55704379de9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-TN-A7HJ_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "50df1144-990e-4357-8a15-132289bce0d8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cdc66ca4-8864-4f22-bc4e-8fb5e073937f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "412fe306-9755-4efe-abb0-9af695b5691e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4b90baa1-cf87-5186-9101-0464aec143d3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A4IG_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c029272a-feef-4a11-9566-092c16b40eef" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ce469c00-b5c0-4d7c-875b-092c5b6ac289" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "87e9b232-8b59-573b-9758-c7b5456d6fc0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7248_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "791203c3-4192-4844-b32a-0f21944333e1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "24a2dd45-0453-4bfa-af4c-cde8cb0c0cfb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e5ab53bf-073a-49e7-9402-8e7261d385c8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5fe254fc-76cd-4081-a46f-574f2ec76d10" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "59474381-516a-4be2-8b74-7fe5804ec371" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003795-3691_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8212fb32-9c81-4bf1-ab6b-337196acdf90" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "b0113a66-8202-482a-ad65-dc55cdca3c27" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD8711_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:51:47.854910-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3ece7ea7-cad2-4e6d-811f-c91f63a4fca9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "605addeb-a295-4bd2-ab90-347c41e9b1ad" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008105-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b9b1b672-a788-46eb-bc8e-a5b401d1a430" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "03f214c1-e688-473f-b84b-5864f56a6a3a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-001000-1570_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:06:57.341931-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "016681b7-82cb-404f-a175-8cb6d3f6bc62" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fc929f30-0322-43c4-b12f-ddff9d8a2335" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010590-8636_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "175e9244-58cb-4b1a-9614-a4fb1c0e6603" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "83347eee-7d6a-4848-a139-a71f053e92c9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000768-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fd2acd96-a021-4fd4-b0f5-1d9f6e4448bb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "601e60c5-25a1-41e7-a47e-2a069cb8e099" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD11228_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T09:56:48.362532-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b62623cd-3d81-4e48-bba4-7df880930106" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d4b70019-403e-5a16-b7aa-5ed71d54a517" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6473_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ed96ee9b-cf03-4eaa-b783-07b739e3a648" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a9e7990e-7daa-4c79-a836-ac1ad63aaa37" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c9ea5a2b-8b14-5745-b9c3-c93c9abe468f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A45O_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "77b774a4-9456-4907-86e6-9ff2dd87b8fd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ec7fe5e6-74af-4bd2-9ecb-8e302f763b22" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fce64b88-8be6-4710-83be-18c9afdf13ed" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5b518f0a-dbef-4346-b463-b59bd735a311" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009367-8081_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7230cf9f-1930-4377-bfdb-6e07cd472bc0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7ed3e77f-cc81-56cb-b573-cc6df309ff48" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-4227_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a6748675-5433-4f39-a578-9a1ddb8bb1b3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f31d010d-cb3e-46da-9647-38fdb9d1bbc0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0e81b0ef-6f16-4a56-9f18-8acad8bf9ccf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ca8d9936-f4d9-465a-8640-66a91f735a60" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0018419-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:39:49.045696-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "60efb1a2-a8b1-40a7-b230-e4b532a8048b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "494e7724-f0c8-44b8-a4f9-8e6cc9a2c095" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-NKI-FGHG-R6TZ_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T17:51:39.178920-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e91ef1f0-a986-44d2-8880-fbef0afe91d8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "f2f2d6b1-7233-433d-b34f-62a8d4e50b0c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0015645-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8a8010f9-2193-4604-9425-da6e5512ebef" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "acb41bec-39c8-477f-8cc2-b8c982bf5b2a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD9755_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:57:54.983619-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2b14983f-b848-45de-9881-5dc4f483f7a4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "28979d39-3da1-556a-9b82-2a9953b57989" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-P3-A5QF_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "903ed81a-057c-41ad-93de-aaa9d9c082c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d30d7d4c-0acf-4b61-9d7e-2c15e20d73a8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2e51af26-4d06-4b66-be71-0bebed2e4557" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9461c5ae-cbec-5810-b0a6-9644168accb4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-4723_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4a485f87-1a73-42ec-af0d-0b6de2b23504" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f4a14404-3545-44fc-953d-e441139e7fda" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4db1536b-23d0-48fb-91f8-248a03f58aa4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "d50387b2-938c-480c-8287-6c8754e06278" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-6686-17868_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:10:26.105156-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2022f8c2-108a-4919-bbcf-1dd1ba4fa10b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Malignant rhabdoid tumor" ; + crdch:system "GDC" ] ; + crdch:text "Malignant rhabdoid tumor" ] ; + crdch:id "d1368e23-4a00-5b0c-ad28-56a5a4dbd833" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TARGET-52-PATYUA_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8963/3" ; + crdch:system "GDC" ] ; + crdch:text "8963/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "83a37c0f-ac29-558c-b7dc-a9fcfed82b61" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Unknown" ; + crdch:system "GDC" ] ; + crdch:text "unknown" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6579daca-0ec7-49e8-92e5-6a6b7c379b8d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-h39utsgs-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-04T18:19:50.810302-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1f1c82de-2931-4f38-9caf-213d5425ded1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "843f33f9-e390-52bc-90c8-fba0a4557916" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A7JV_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a1d62ba6-696c-4693-9067-d4226a4e6316" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c312a7a4-ba29-49a9-b4dc-876505a6a6c4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eed0dcf3-36a2-4890-bb02-e8b56ba4d8d8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7c7482aa-6349-58c9-ab17-6c69acbd579e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7388_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f27e3255-bc73-4943-8201-5245b85c4ee5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c6aafc51-6295-494f-9bf2-1e4f43a72ae0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "b03c5a4b-9dd8-4186-b8d5-a65acb317474" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD3459_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:04:01.286185-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c54fca3a-3919-4ac7-81b6-f1cf955f47a7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "25fb47b9-2f00-4140-92bc-462b1e8447c4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-4wf609jo-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0ef8dcd6-8f67-4f29-a69d-d952df3d43b3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2e4427b7-e557-49c7-85ef-39a02c4a441c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-050738-234120_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:18:25.269226-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c6e1507a-83f3-4c51-8275-319d0dcd8f97" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ea9b7e18-cbc5-4588-8b59-d32af85db2c0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-052774-173461_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:20:30.865187-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f37609a0-84b8-4203-9497-9f60cc8be539" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cf19d9da-2868-599e-9281-91b9e064078d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7374_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ece42fcc-b771-42af-92c4-39fd74b645c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "77be0d91-0525-439f-bb34-3a0702c81085" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4a315682-7cd0-4c42-9fd0-50ec841a059f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004723-1663_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1291884d-38d8-49cf-b16e-aeab69d83681" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "230d872b-0206-409c-988e-6485dae90db9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-p8qm5k95-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2d54eff7-a093-4bf0-b1c2-2f9f159e6b78" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b27a395e-c9b4-5903-afcf-90ba31fcdeb2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-HD-7753_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e723f1bb-73a3-4d65-bd25-de76138515e9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7fb56f25-873d-475c-9db6-f0be3945d926" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-25T15:20:17.640379-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "698f639f-c34a-4f21-8306-26002008804f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "842d6984-7c03-4ab6-95db-42fa2ea699db" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010671-11105_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6f9eeaa3-8bd1-479c-a0fc-98317eb458dc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "faf259c7-d577-5ef8-9075-9a42f1083260" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-F7-A622_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "32d7cb3d-5f5a-474a-9dcc-3b5f2dc64d22" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3901d8b6-f2f2-45e9-a40f-3ccd679f701e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "32056265-c5fb-4544-9f99-22b34febb805" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, spindle cell" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, spindle cell" ] ; + crdch:id "d80aa9c7-2a22-57da-87ef-750dd4c0b494" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-IQ-A61O_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8074/3" ; + crdch:system "GDC" ] ; + crdch:text "8074/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "24e39735-725e-4627-82b6-c56ff33e3465" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eee85b30-6d16-4f53-aac1-b74f36a62d9a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "09e8433c-1f86-42c5-91c0-2512fc4a7fe9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2707217b-5a4b-404b-97de-921526581d45" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-2b4655c3-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "56e9e0e1-5435-4b6b-93a0-70564fe1aa27" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cee28001-9ebf-46a7-b387-e932076e5df8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010817-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:13:38.880466-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "08a27a81-561d-41f1-9d99-6266c1f230c9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "28fc2416-e276-4a4c-963f-1ff59d64fb44" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-a947c792-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cb69d223-6e16-4e94-8a35-b1197a261b19" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7bfa067f-69be-4a58-a8a7-98963ee8c589" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-493620-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-28T12:01:45.147328-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "57a1d12e-9ead-43ed-8990-0fecb573d3cf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "415b0c86-82b5-46c1-b51b-00e701add732" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008675-7728_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b1a78f00-1eeb-4c1b-838f-fb8453112c5a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9eeeccb6-c3a5-4008-a87c-006d2e1efa9f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008672-7091_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6db9d94f-7868-4a64-b9b4-a5b95747c317" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "39fa27e5-b36f-50e5-b173-1bb73a1ba5ba" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-6826_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1737989d-8463-4761-b111-53e4fd396375" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7aa13049-917a-4d7a-bceb-3c718ec8fb7a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a31ecf7e-1838-412b-ac34-6fd8810739c9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cde79cd2-3aab-48ed-81a1-259a3cd21002" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-122614-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-28T12:01:45.147328-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "71ba3119-c343-43f0-84db-4ba8787d316b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0501e7a7-232b-58be-9425-92f1ccd697a4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-4727_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a7257360-c4dd-4f59-bfb9-c8d593050146" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f102aef0-94b8-4d26-8055-35b76da9dd5f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc2d6cfa-7640-44dd-a200-68fd9f9ee69c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "706b1290-3a85-54ea-a123-e8bd14b085bc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6012_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "badeaed0-2625-4a4d-bb95-d295e2c32c01" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e23c7006-1a13-4211-8920-47548641e574" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8b2588c8-4261-492b-b173-2490a5de668f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "65645e51-3cea-4c45-a029-ecd7cef6c8ad" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-001639-6186_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:12:32.615882-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b1a851b3-94bf-4652-82d3-cc6133cd1565" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ea23b8a9-c2fd-5392-8625-a26662cdf0ef" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7404_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a39131b9-e7c7-4385-a1b9-d8a0a0950337" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a0723862-62f9-4770-b415-e8f52c447e7a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "a1439fe2-31b2-4a31-973f-fbeeb13a965f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0001405-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5dcad3f6-29d1-4043-8bf8-c8ceb17c5ec4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "bb2f0211-8bd8-5667-a49f-0e507f10e863" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7424_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9308d3df-4126-470f-9dae-db9362050c29" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "162ba21b-8262-4815-9e65-5b064f0e5885" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "979324ca-d8fa-4bbd-ad7e-1c663c5a4a9b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7dafe515-fefb-4656-ab96-b72e09e041f7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f068b7ad-5b43-44f0-95b3-33ead995b8cb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010161-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:13:38.880466-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ea42167d-71c9-4eda-8153-2b207208d97d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e1518a49-5ef2-41ca-ac88-edc88e8ec241" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-e8aa0080-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "baf6aa81-4b32-4d7f-8557-5942a0febb91" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6307ff41-9bb5-438d-8789-a73b41303d64" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-036509-75021_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-27T19:26:40.896040-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ba40b824-5fe9-4a73-b7f0-9b371af64f65" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "e071dcbc-10af-49bd-86cb-b1c8ec549487" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0017414-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:20:07.713564-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ff1a3e50-533b-4228-a8fb-93af76ca4b59" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c5df4db4-06f3-4596-98d2-3ab0e5df45b6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003711-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:54:19.535598-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7eef7c3e-d42d-4cf5-9ad1-3099b828f776" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "18cabf3d-233d-5ad2-a5d3-a2a10677c99a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A4II_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a76bfc3e-fa46-4a65-88e7-c644c8b20098" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "81bbc439-0c8c-4d39-bef2-03901b31c50e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cf507905-7cf2-408b-a08e-b703df54147f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-NKI-DYRQ-CX3U_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T17:51:39.178920-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "36b762ea-ade4-4e7a-b824-0fdadd0e33ef" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f9e5f978-310f-4011-86bd-f468da998bd3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0015030-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:42:39.927651-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e3362d03-8d6c-4be0-b1a6-5ce9c230f4f0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Basaloid squamous cell carcinoma" ; + crdch:system "GDC" ] ; + crdch:text "Basaloid squamous cell carcinoma" ] ; + crdch:id "b4c1dd26-92ca-5bf7-b861-bff7f68e8436" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-P3-A6SW_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8083/3" ; + crdch:system "GDC" ] ; + crdch:text "8083/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0b1a1f48-c58d-447a-be06-1f4e0c1c39d2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dc6d258a-dba3-4186-bf89-9efb70a32365" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "50e494e8-d48a-44ec-91b3-5755b42f70ee" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "stage ivb" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Adenocarcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Adenocarcinoma, NOS" ] ; + crdch:id "25182ec3-0d7b-44ca-82e4-f1a8d7de4a28" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD18004_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8140/3" ; + crdch:system "GDC" ] ; + crdch:text "8140/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:58:46.365657-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b62fca52-48c3-4bea-b5f7-5794a1ed4f43" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a276fc76-237c-5574-9fc6-4b309ce35829" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-6935_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6883e88c-05a5-4ae7-a43f-40d4f35a3a2d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "76de8a78-90b8-4928-8dc1-bf3b8157382f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "37f4a944-d427-4f41-9d27-982a910103e8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "05aa5c47-cbde-491e-b8d7-a60cfe1ca2d9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a433a5fa-fd34-4ab5-a117-29614a2c7f9a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0013513-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:39:05.576558-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f2ec974c-b952-4450-947b-11c39bbaf248" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "bbbf3549-d0cf-4dcc-bc92-32d12cd2c96b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD10083_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T09:54:12.244834-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "712ad6f8-8c2a-4c82-a89a-10ff849e3e9e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1f6860df-38fb-5519-8ec9-3068b0476cf2" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-4735_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "feb21d9d-394f-402d-8659-eb15bb95f0db" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fbb300fa-8793-42da-a68e-4570ae2e5186" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a2caeab5-55a4-412f-a647-0112f48bbbe7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4f08ca0e-bd9c-425c-9137-a8bc3654ff09" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0004619-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:54:19.535598-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "407047a0-1065-4e67-aee6-a3a66998deb8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "eaa3ca60-5565-429d-8c4b-a0a6ef7d9fa6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003114-1605_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9e503ae6-5765-4fe6-9a28-eac5a3a93a13" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "48e8dd81-ed4d-5c54-af66-84e86477d5c8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A6DL_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bd90f967-84dd-48cd-aec0-9de9a76df7a9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "256469d0-5f36-4966-bf4f-3b4297e55f43" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dc102dcf-3f48-49e2-8a6f-cfdc34f8ed0f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T0" ; + crdch:system "GDC" ] ; + crdch:text "T0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3adce70b-ce30-4b21-beeb-2a7bda73ca3d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008134-5168_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "37b86231-4224-4084-a523-800e98c4fea3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5a82f834-a2f8-4d61-a816-c410213556b4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000319-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d0ef535c-d0ed-471d-a1a6-3cf9600d37cb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "12b8aa2a-5f0f-4d64-9cc0-ff4a65619c10" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003438-7875_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8ccd1ad3-a277-468d-ae44-03e6c1964c3d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "73fd5157-4aa2-5b2e-852b-889d058a6f8f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5366_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "62fdf8f3-a028-453f-b27c-c2506be68cbe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f3e5a16f-7c16-425e-8321-b6b19fd469d3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "111ad944-f78e-4ec6-967b-f05c49b49b1c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6d395db6-3f58-4c4a-82dd-9b3b9c35fc8f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004670-873_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3396e2a0-10bb-43b3-b5be-7980064889e0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c34f7850-ab91-4173-b716-b487c290ec78" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0012862-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:39:05.576558-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "59d43c02-f731-4a7f-97ae-c3d7dac2d5e0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cbdf0116-28d4-42a0-ba6e-43a8587de68f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008605-9620_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "faf18ba4-6d92-4da3-bd43-5071bb88c5e1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d957f533-9896-5f0b-a9ee-90335d733f67" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-7864_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1477b393-8acf-4550-86a7-6570c0d7d583" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f3c568ae-ad12-4155-a652-8e16e5276bda" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4775330f-0409-4bb2-a096-a3d1eb0180d1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "eac797ee-ffad-5c80-8f0a-7e95590e118d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7389_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9c35c1ec-5ca6-4900-aa39-ab1c962b9c4d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6e926ab9-e086-48cb-876d-d490c46cb7f0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "26ffab97-fa9a-5135-b283-8c4aebe51a26" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7250_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3e6bc216-301a-4f24-911c-8c3610e4a015" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6f55766a-d980-414a-be4a-369e93ec3436" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b4f8ddc9-0ab4-447e-8292-5dcf8a9085ee" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f5472b70-32c8-48b0-9051-f9b33272ffd6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "43aa2ba4-d59e-4e9f-9b1f-009fba8ee08a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-4754-15863_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:07:22.808668-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c3431e69-82eb-4eef-9e13-312bfde95103" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a4332fc7-aee9-497b-99ba-5c1d548a7623" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037277-88571_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d2ad484e-58b3-4e29-84e3-a45abb294b3a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Basaloid squamous cell carcinoma" ; + crdch:system "GDC" ] ; + crdch:text "Basaloid squamous cell carcinoma" ] ; + crdch:id "f4e541cc-a71e-55b3-ad08-3eeb8d00f2b0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-KU-A66S_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8083/3" ; + crdch:system "GDC" ] ; + crdch:text "8083/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3c09f5ba-a4af-4384-948a-d6e943613f7a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4bed3ece-2350-4c99-bec9-3d652fbe8c9b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a590a632-55b4-4be6-b2d8-6c8afbbe99ac" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "8723983c-94ff-55df-8165-6fd5937b5462" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A63T_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b477dfb8-c039-49d5-9a0e-912946dc3ad1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "75c0a7b6-3e82-4ce9-8856-dd3475affe87" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "74606f8c-46a7-453e-acfd-91203aec6df7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "a099ae58-fa38-4a90-82b6-c97a23b317f0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-f88a03a6-metastasis-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a9b18808-3ee9-4274-9a83-8d2fcbc16c7f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0b96cae3-d332-4e5e-ba59-e0a6bc6573df" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0017105-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:17:41.081467-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ba279369-073d-4976-8439-3a318c0f0fc3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ce208b92-611f-5ffc-8a6f-b01b91e7b58b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6474_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ddad5854-74a2-4db5-94d1-41196a37be5e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d84c30b6-e217-4b2c-9dc1-16428264378d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fb0593eb-d74f-436d-9bc3-37f8d8285296" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009648-9028_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3c02ad20-11ec-4e71-b7e8-c29194ae502f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c0dca6b0-81eb-598e-9514-f23513df1ab8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A71D_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "87d8fec9-7ac3-4359-a6be-de270584ac1b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e4157201-93f3-4f08-b3a9-dacb22671a57" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "297ea792-1a29-44db-a14b-38513b50826f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "49934fcd-822a-4e1f-ab12-46ef9216779d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0009754-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:09:54.181448-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7c2babfc-9948-4332-8c28-096971073c2e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0b894a71-55ca-4246-bdf3-4d36622b203c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0007622-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8b9e009a-6ead-4105-a148-8c8a44be0658" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "2326f9b7-e2e8-487a-acd4-b00bc9967a8e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-6597-17790_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:10:26.105156-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "35f0c152-0c87-42bb-a1b7-b306e66514f5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "770f08b4-6ea7-4cb0-a423-75909447e60c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-518360-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-04T13:56:37.232985-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "75fdf08c-00e0-42dd-a21c-62cceb7bf00f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "8d12f0ed-6345-50f9-aad6-68ae3ab8dbb1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-RS-A6TP_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "281693cb-2d6f-4a42-af26-d807ea67a191" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1ce08042-34c7-450e-b1f5-8cdf9bfc5a77" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5d166131-946a-46de-b446-ea35d8b0e1a4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Malignant rhabdoid tumor" ; + crdch:system "GDC" ] ; + crdch:text "Malignant rhabdoid tumor" ] ; + crdch:id "33c5c040-da3f-5e5f-8d13-ab9eff88f833" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TARGET-52-PASCDH_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8963/3" ; + crdch:system "GDC" ] ; + crdch:text "8963/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "da724216-c1fe-5420-9e73-3a9d4b52bf1c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1d3eef26-a725-51f7-95fa-139d1a7da76e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Unknown" ; + crdch:system "GDC" ] ; + crdch:text "unknown" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "309da786-ca2c-4c3a-8907-5e690f375f54" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0008800-T02-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:09:54.181448-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5dec4e0d-afbd-4ad6-8acc-00b5ad113a03" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "28f3f8b9-df0c-5c03-8414-89640fa631c5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-H7-A76A_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "452e53e7-b219-4ba7-b8ab-870e1ba4423b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "148ec5a3-19ed-4949-bf37-9bc4e6203966" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "78229167-1f08-416d-be98-74f757610349" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "6f840d0f-a369-413c-baf1-35200313c274" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-a679ee35-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "60e15dc9-5d8b-4104-b6c3-bc0b7b3109a5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5ba2b63c-b0c8-4304-820c-9b04ebb5a7fc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-002837-2078_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fb20acec-aeb5-4591-b114-0834c6629db7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "05282f77-9656-428f-9517-9edc96cb7360" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0007543-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "025ae6c3-bdbe-4db0-ac71-56df7e80ea0d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "09912911-2865-490c-aaca-89f4cc1bee36" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008390-5815_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7894955b-ac0e-46ee-a5b3-c023cd1e87b6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "1d93a53e-6030-43c7-b479-9faa6fc8febf" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-002633-5917_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a8ec3306-0190-4e13-94d1-e269b8479a1d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fb2076bc-c2ef-4566-ab26-c6c6fcd212ed" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-b3db0c02-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "01b01d59-07d3-481d-b466-bf77a916a0db" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "99aa5d5b-c650-47f5-b485-da3d78661529" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0018925-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:42:00.849990-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5007e321-c75c-45c2-b4a7-0d3cbde5280a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c18fbc5a-880d-5f56-8466-527763c437d6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A45Z_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "866bc103-c5bc-4365-8ef6-40064b33046d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f844574a-cb7f-4f66-83d4-ee0ca41a63d1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fc3d6178-acc8-4e4f-b935-3cc1f6c0f304" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "8bc744c9-1120-41c6-a782-3bda1bbfa2ce" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0012578-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:17:29.664139-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "31be6816-e615-4939-8c64-c523db6a438e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d7d13cee-ba1b-4e36-a0a5-3f925c871020" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0013833-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:39:05.576558-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b6ddcf15-8ecb-47ca-bb29-60b9b43fa7aa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c0bf8ccd-6f3b-5ede-b3ce-a63ad584ab1b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-DQ-7595_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "387e8df2-f053-4cbe-aae8-5727d215f904" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c522234a-c0b1-427a-8992-84fcfc9389ef" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "52e0aaf1-d93b-42f8-b0e3-f6b4a3d0bd1e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0099f9fb-0d9a-46a0-a86f-c10dd58ad440" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD8066_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:51:17.672127-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dc97ccf6-b026-45ac-a658-fb44806230a1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "dcc6b724-3a6f-43bc-9a7a-eb031a031212" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000433-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "afcf4bae-7e95-4306-9627-c9a9d6011dfa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1fa242e0-09fa-5f9b-b6ec-b07d25fd21cd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-P3-A6SX_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ae3f666a-0c18-41c1-b00e-90cd85a2f987" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc710f34-9fb5-4474-84df-5427b59aa062" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "65b091e0-fd47-4f4c-87f1-b2ba9c2766c5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Basaloid squamous cell carcinoma" ; + crdch:system "GDC" ] ; + crdch:text "Basaloid squamous cell carcinoma" ] ; + crdch:id "fd9653a3-00f4-593c-a8e5-81ed124ee898" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-AA3J_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8083/3" ; + crdch:system "GDC" ] ; + crdch:text "8083/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6d2f2d82-2fa5-44ea-a714-85c05b5bd255" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b67c34c3-8e4e-41cc-865d-43ee8c9d3d78" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "410b2727-8446-41b1-92b9-42671d118a39" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "bd9d72bf-8331-5bd7-a4bc-1522518d3fb7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A468_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "54fda578-dfb1-4a1b-8b01-2b7e9292f387" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7dc1e99f-c601-48c2-8326-389d9f084e29" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "66643338-ed21-460e-a1dc-b547c5b14500" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "693a7e67-099e-5382-b7e2-e70d6d15406f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-6962_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5b2faa3f-c96e-42c6-81ce-a356852ea6a6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "70b5b27d-3905-40de-8b70-9185cfc49d94" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "366f8ab0-ddd8-4383-9bc1-96ef342b749c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "73d79c62-61b6-4e72-bc8d-c3fa2a344caf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c8b3a37f-01ec-481e-9460-0bcac22cc002" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-18076aef-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "960fe012-e237-42c8-a3e0-d02853ce3818" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "130676ad-54bc-4d20-9ec5-129d4688296d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD1478_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:54:59.697804-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "50977953-c3a2-4b71-b40a-3f211a269cc5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "d8e6b6ed-5c11-4a78-b25a-07f23305bb40" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-6285-17334_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:10:26.105156-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8479ff0a-fce8-4f4e-8d00-6775d1e9cb00" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "6176f8de-0835-4f23-9ce1-85511ac4e1f9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD7774_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:50:23.633804-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bcecf093-e764-4c32-81e5-619d0e86216e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a3c1a290-626e-5e1a-b120-0153a79fadd1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-4741_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8d8ddca2-6461-4a8b-a696-da0906661b9e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a47974a3-b37e-4041-8953-5f50f8745681" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "03c9108a-5139-4bac-9641-c7dbbedef420" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c508644c-d496-4647-a065-4e0077d99b67" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008357-5599_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "80c31730-c365-4f43-ae30-d082f4c7f67a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "562417d9-1094-45a9-9621-7fc5ce203ac3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD2564_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:00:26.233095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4448e3e1-aeff-4ea0-82e4-1692b9b59414" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "95d85e5a-b82c-59f8-b7ad-710e019cdebc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-TN-A7HL_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9c02fd4a-a29a-4a44-ba96-5acb6ff11f7f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1077bf93-cf23-41db-925c-c633921894cc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4a0d79fe-9eb9-456c-b483-ccf956597a3d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7bbdbf5a-baf7-55b4-bd8d-89e213744a26" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A6VC_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "76240522-a39e-48c7-80e0-241277fdb705" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d278f388-2a5f-407f-886d-961272ca28eb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dbea2268-ac62-4ab7-aa7d-86f029fcb2df" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "576b4319-20fe-4dd8-82b1-c34a70bd2182" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-596e5ce8-metastasis-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7889cf51-be9b-4193-b057-5f348fca10db" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Malignant rhabdoid tumor" ; + crdch:system "GDC" ] ; + crdch:text "Malignant rhabdoid tumor" ] ; + crdch:id "cbc897af-ab20-50cf-b397-5bdaeadb4691" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TARGET-52-PASAMZ_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8963/3" ; + crdch:system "GDC" ] ; + crdch:text "8963/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e5a4af40-c272-5aeb-942c-4be4614b4cfd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Unknown" ; + crdch:system "GDC" ] ; + crdch:text "unknown" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "53ddd4d3-8e0e-4e6f-9cd1-fe6c9c5eb114" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0006525-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:02:01.981535-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "379984ec-2e8f-4c3e-9153-1ec8adc17770" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9808f3d0-16f0-519d-8e0a-9061968bc749" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6023_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0bc27973-621c-4011-bcbd-3b7f3464389e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5e42be68-8865-4c69-8684-0f6e5c6c9b94" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ae1a6096-8d51-482a-8c44-cbfdc7dd6458" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6ea3680f-baf2-53a3-8308-ae9dfd6ceb1e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5355_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "63535469-d402-4ba2-9ab5-986e6ed80f55" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "256d61e1-54c4-4250-bd17-5bb82496f5f4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c2ef7833-c2fa-446c-a12e-f353c744b1e4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3cd3b53e-38ff-454f-8b3a-d7942696429f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0015915-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f48ed568-6c4b-4746-b480-139ed3ab5794" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "fc0ee2ab-b738-49c2-b645-4b6851be5e8b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-49d6a6ea-metastasis-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c63e4630-7bb4-4f01-b9fe-94478000158a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1137ba9a-12d3-4b2d-a3a4-d95de8bcf49a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-8191e4ea-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "783e6c97-20aa-4c8b-a7e1-ae0d8f7af28d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "64881717-bcb2-532a-b0af-395ba5c62c2e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6481_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "04652163-a674-446f-9e86-607de19e4c34" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e9a39a90-6401-4a9f-baa5-606e8b5176f6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "7a67eecc-6f46-5181-8b64-c022d0fd0060" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BB-A5HY_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4467ee1a-7188-49d6-a0d1-c8e395e6cabb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5c2b4403-cdd4-4550-ba01-d8ebad9fcbc8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "589cdde1-ecd5-4a7b-9cbc-3186916822ab" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c239680c-7353-50f5-a155-33973562e904" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A45W_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fe66156a-b3ea-4ed1-a5ca-68a3664c3505" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f9ae08e7-9166-4699-801a-4bed11f72dc2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7202ca4b-6caf-4f4d-adc9-4c59b00cbdc3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f87fc232-ea15-4a26-a863-8604cdb8bb06" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037287-88492_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "421f819b-c4ac-445f-882d-c36766f7002a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "740bf7b0-dfdd-4930-9cc7-3790cb8808c1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0005212-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:58:03.635432-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6e2561a0-676c-4f69-9059-d49696a56c64" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "8f722b2d-eb3e-5b8b-8b36-429137cb0a3f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7383_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "887261fe-5b99-4722-aca7-4e63a0b63336" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6237b644-9903-4f45-8b07-6c610b1342b8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "11f5b868-a6eb-4575-b5d4-54cd8a406293" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-027923-87624_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:44.678712-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4e763f63-0494-4b2f-9f6a-c9461c7e7b1e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "396ba806-81a2-43e2-be95-276cdeee09e3" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0003049-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "162d69ba-adac-4884-9d98-3bc70cdb72a7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "22e091bf-8af8-5910-9664-c73e7b5f44fb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-6487_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "027dedd3-bd53-420e-b7f2-eb5b8c26bcdc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ff63290d-0644-4387-99bb-697150a7fb6b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6b76278a-cb58-4308-bfef-fa1902a02375" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010467-10870_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "02cf8f79-3109-423e-b290-9b0cf112e827" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "78608de5-dd5b-43da-8934-e0b6fa924ab4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-4493-11651_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:07:22.808668-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8955be34-dfc4-4a5e-9636-f27ccef4318a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "35b1cfb8-bac8-5abb-85dc-1761cd25e90c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-P3-A5Q6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1ac65133-fc2b-4b41-a101-eacd225f71b1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "73005780-ea15-4353-b6f7-c26865d3f4d0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b929bf9b-34a0-4fa3-9bd5-49f8097c573e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c1111640-7729-436a-9b46-88c0ab534b96" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-832679ee-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9590434b-5b17-4ee8-b109-7ebb737252ef" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "0e8b9b8f-041a-4d83-8af0-503b7d84e00a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD4383_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:07:26.436903-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ea5776ba-c4cc-4d4b-9e33-573ea824853a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "96053970-fb5c-4b79-b1bd-8eb8690def1c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD1118_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:39:12.328231-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8f636ed2-41a2-4c3d-bee5-40d9755bf674" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2edff908-b791-5c44-b0ed-cdbad3c1a249" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7418_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "26eac019-6e9b-4ab1-aa1b-323f76d9aef3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2e5b2590-4227-4265-a837-8175920e4d01" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc37f4d1-d8ae-4367-8abf-7c6da579d09e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ccd7a7be-3065-4f30-8d21-94bfdc0b4703" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "64ba1bbd-bf72-4700-97be-0bc054876c84" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-005062-1372_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a0deb101-019f-46d7-8cb2-ee98c9d7aa92" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "c9269eb1-ab75-4719-8cd9-e9efd32f7d7e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-5245-16353_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:07:22.808668-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "08209047-3b7a-4295-90b0-ddc92aa1e1c9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "3ddf3ff8-b8b0-5525-8425-dbe1c27753b6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-IQ-A61I_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "19c823d3-c15b-4a1c-9a27-6ce489f3b640" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "68604eed-fd8f-4003-b9bf-ad0e1ecdf3b3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f238d98a-1b53-4aae-8bdf-f85f0b9a066c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0584ee86-f589-5812-9bad-03855a31693b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-4076_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5fe1ae56-74a5-44a9-b8d1-7f05a569bb34" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fd99fd83-4040-4738-8a5a-e42d36ecfe0e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d6f48bb2-379a-448d-b13d-2dfc5da91d0c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "066a4a47-3b4a-582d-984d-476fa8a4fc57" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7422_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9e25f49c-cd83-4171-9e07-51aca3fb1019" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "63bdeeca-a7b1-47fb-9945-c24f7513c56c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2c2db97c-8c8d-4f1e-ab73-469238609d61" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "f773f13c-c661-46fd-8bd1-56dae4502465" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-8057-18231_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:10:26.105156-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2af6ce71-3d6c-4da8-8b75-f0ae49f95bd2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Malignant rhabdoid tumor" ; + crdch:system "GDC" ] ; + crdch:text "Malignant rhabdoid tumor" ] ; + crdch:id "d813126a-5e28-5c5a-8730-598f0d047584" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TARGET-52-PATBLF_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8963/3" ; + crdch:system "GDC" ] ; + crdch:text "8963/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ac3e795d-69a1-57f5-9dec-5b59e2523091" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eb5eeeae-6bd7-511e-9f13-51531684c774" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Unknown" ; + crdch:system "GDC" ] ; + crdch:text "unknown" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c58ca3ba-23a8-472b-aab3-94382be12940" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010867-8727_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d492bfd2-b37d-49c3-a8d5-40171e8442d5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4bcd5e25-adf6-5fe2-b07f-05d72b7b22a1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-P3-A6T6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Gum" ; + crdch:system "GDC" ] ; + crdch:text "Gum" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6f0b02c4-6efb-4104-89e1-2e76811b6afc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3147ba3d-b1fd-4e40-82e1-56429f2389d6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "127b2222-93b1-4870-93f2-867d8e69d015" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "0ea10d4e-1809-4763-b440-8e077ecab3e5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD17629_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:55:27.721574-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9ab974e3-bc94-4f83-b7dc-82285f5b4b69" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "81d9c62a-5f07-4409-aad8-4f9e02b90669" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0015745-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:46:25.150285-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cd31b18a-5019-4a94-8966-a1160e544684" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "91287016-0fd4-5434-a010-e392bd679282" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A45Y_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "01a4aa4a-f073-435c-a411-839760cbcb9f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bbcc5141-d805-457d-bc4a-d424c8c39cb7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "26026e2f-b112-4535-97ac-6956cb267e9e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "85d63c6e-a6c1-47a5-92a9-216719073a4a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004072-413_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9a26d9df-9ab2-48df-ada8-8bd8455cccd6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a71bc3c7-5807-5766-8487-c3dbc27484cb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-5243_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d89d46ea-9a7a-4fd8-b11e-9c9ca4780119" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6fc08372-0d9d-4b3c-b656-9573fa532c99" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "366df7ed-b836-4cb0-9146-75d22e0ca019" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009836-7821_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "356353d1-c8db-4f97-b1d2-0b895cb42266" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "99aab93f-633d-4ce6-8ccf-36cb05c5d2cc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0007575-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b1d7b582-2302-44fb-a98f-13372ca17247" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c4b50b5a-dee5-481b-8c34-5584abba267f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-UHN-614933-ARC1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:18:10.730001-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "09f9d0e6-10af-4224-a875-8d1e99e90eb5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "dabe6d0e-8f19-43d7-9e3d-02a6a24556c8" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002411-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e1e98bc8-81b8-45f0-8289-6c306defeaef" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d55686fe-0423-4b01-9719-ade00bed3004" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0009761-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:09:54.181448-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "64dd4e81-f01b-4846-b306-20b7cd7d9340" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b1c3bd39-9f13-5dba-aeeb-86271bf64b8d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-7242_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a45efd70-9bee-4c18-82b1-666d2c1eb781" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4fdddf85-30de-4666-89d2-0683e9264d6d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6b4b146e-e6c5-454d-9c4f-66a6f851c3fe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f9dea7a5-e9d2-48a6-bbc1-c5c1f8e7ee67" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0cf011bf-054a-4eea-aacc-b963ff83734a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-007960-5976_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c353a3fb-dad8-4a6c-acd3-4121eb21b98e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6b3df15b-f5c6-4c79-923c-572688a90a50" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD1220_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:57:01.408534-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2bbdf4c4-88a1-4358-a88a-5daa2a9a506d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "18d11972-ed5f-4c5b-9511-18b00bca7f7d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MDA-8036-18260_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T19:10:26.105156-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "475098e0-9927-42fc-adf2-e280d8aec3bb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2602d676-8c2e-5bdd-9790-a0a072d3f670" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-DQ-7596_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "61c82e56-e64e-4fcb-bc5f-dc4fe34b6c58" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7a94106d-5604-4b73-9c54-54a72b12f52d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f662e970-6a51-4164-8458-61e7ff054806" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "e71fe2d8-2dc3-45b4-bc48-25b118a6f909" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD2206_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T09:54:31.122378-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "68742842-28e9-49db-b49d-79c73ad4ef0c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cac9736c-3015-486b-b69a-906d2bcbac13" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-a20580bb-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cf3feb17-3b74-4d84-8395-c4af9b8f4514" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "51ca5228-56c7-5d68-9285-1bbfbe8b4492" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7370_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0e357973-d52d-4fc7-8099-7b87458745e2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "339524bc-bc1f-403c-a12f-6e8ce72fba50" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Adenocarcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Adenocarcinoma, NOS" ] ; + crdch:id "5d2d67d1-4611-4a18-9a66-89823aaa8e3c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD6426_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8140/3" ; + crdch:system "GDC" ] ; + crdch:text "8140/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:44:57.790971-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bdc73f48-dc0b-487d-abbe-e3a977b6830a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5fddab5d-aebe-4b6a-9812-a6edc05c51cc" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008897-6910_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f8a73605-d802-4364-aa6e-5d23691f92cf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f0b5d732-2466-4d9a-90cb-ec3084606849" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010677-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T19:11:18.668081-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e084b5e5-05ac-4229-bbe8-f640f231e1fb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "274578bf-55cd-4807-9c8e-573db026da1d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002592-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a75ac689-6228-4806-b699-874f8ec28ae1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6cba02c0-48e0-4424-964c-a104a6652d07" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-007903-6035_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fbd21489-29cd-4d9b-8d7c-e04342040edc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "915d0d2e-63da-4723-909a-4bece5afab90" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0018175-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:39:49.045696-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "d4ba57ac-0820-4d57-85a6-06122bb4559e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e87ea1cc-7728-4592-9eeb-04d09e11660b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0005082-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:58:03.635432-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f9e5d21f-2ee2-41c2-b864-f43d6a8357aa" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3f9d8932-dc6a-4225-b085-953225ae22ad" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0007407-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:06:12.185212-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cd1a65bd-7bc3-4c1e-9d5e-792938c2fc5a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "f7044868-4f81-56df-87a1-58bd49f9c8cd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-A6V7_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "69fe86c3-1e82-4583-9051-ffdb84224239" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ed5933bf-adaf-4bee-81fb-b1ec5782c248" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2dd60fd1-68e1-519b-af66-00c32d0cb6d4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A8ZB_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "44c64654-0e37-4c13-b4fa-aaf9c6644445" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "17a0a479-3b48-4852-ab06-dd33d6f7788a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "936a8a93-6559-4bf8-9c51-e81ec4f2aff7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "310c112e-7e2f-4987-a515-fe213ae70986" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002198-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b9d46cb7-1679-4998-853f-03e5827cbb53" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "86e71958-485e-53c6-831a-c456ec617b7b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-HD-7229_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f1367475-a5f1-4a0f-aa73-5a703a3accaf" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9fbf3123-c654-4f2c-b41a-ac4dc029a5d9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1169973a-8575-4d2b-8da8-36a83aa5f947" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "aa6e25a1-2d85-423b-a149-8cf11a6947f7" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-010697-8404_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "22ef8279-1519-4099-ae13-ff430645c992" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "24058118-f7b3-53d4-b24b-07a2ac2e66b1" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-5369_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Palate" ; + crdch:system "GDC" ] ; + crdch:text "Palate" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8d31f35c-9178-447d-9a2b-acc305fab407" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b4c02606-0f86-46e4-9daf-dc7dbcd60d78" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "11d697ec-f451-4102-a908-e44f48ab0800" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e769c390-13f6-4054-8182-017360bcfdca" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004469-15_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ee78495d-54c1-4d73-93d7-06034b0c7bd0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "533bd04a-5e63-4ae1-a929-487ae3597956" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5852_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:39:25.573239-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f7b249aa-b35a-4e08-87b6-e9a79d75edbd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cae73de1-65ae-48fb-a08c-355e6921dca5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006462-4354_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:27:14.117499-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f632701a-5242-4839-b96d-0214c7e9a73e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0bf30179-24b0-4b0e-856d-7226a72eb3e0" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-052973-173599_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:20:30.865187-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b39fb248-8053-47b7-aa2c-d69335f218ce" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "23193585-2a17-41cb-b577-8044058658ea" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-8k5ygy35-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5db1c5e8-ddbb-4057-a059-6acf46826258" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c97d4793-3b4b-521d-a274-2d1dfeda79ae" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CR-7398_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "251e8544-2c3c-4b31-a2b4-29b57e6ee4fd" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "13348e4e-8b8e-44b5-83e6-a1159a53ea35" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "60d7b883-bf64-4777-9f6a-efaf4c4a40c4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003875-1298_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c930148f-2059-480b-960a-4efcb3c98ac1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "972c3046-1f6c-40fc-a83a-3b200148a683" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5830_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:39:05.012118-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ed2a5846-de67-40c3-9074-3adc9edfb0b0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d0fdd332-a86e-4d6e-b93f-97937926a834" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0019630-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:43:52.092583-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bbc31a15-3dc6-479c-bd5a-9c1950705ca4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "fcd7326c-3bf2-425a-b117-f1e5f6910db9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-c9c06784-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "43bdb66c-6b5a-4a1c-9d44-2717ecc981ed" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "426ed511-e284-4ddd-9809-312805a88905" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD3816_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:01:59.757092-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3fa16cbf-829f-4097-ac9f-d8016c40c618" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5606079e-0d29-5f59-acc3-d6de7b479a24" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-A461_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ac4430c7-dbe4-432f-9763-81707431a0f0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "76af13f8-fcb3-4324-b8aa-23ea1834c5d2" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "af7bb799-b091-45d9-a04e-074bb7840680" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "ca8f5806-a2af-45ee-8217-e6dfc4d0b229" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0012391-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:17:29.664139-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3c8fe733-1711-4d4a-a64c-b94788eda279" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b588dad7-169a-5ecf-885b-580be11d01cb" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6992_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b86352a7-2987-4743-aa3c-1895c438641a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7a5921a4-5714-44e7-8ebd-048031b32b88" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ce0b9c55-baeb-4ca8-9235-51a836a4b58f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b5616ad7-8322-44c9-8b64-01314decc5a5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-GRCC-9df16b49-sample-a_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-02T18:01:58.729859-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3dc819bf-5af3-4be1-a892-974d670975c9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e7406302-5dd6-45b1-ae98-a8094c495943" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD13780_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:40:26.338588-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c9bccdb4-1bd0-44e0-bfb0-7588611ab01b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "cf973339-e31d-4fb3-833e-f954634d95ee" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0014965-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:42:39.927651-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1bd46cb2-e563-4a48-a36e-ea4f7a15173f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "da37f4a4-3f09-4771-a1a0-9b2ce6e0df03" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD2161_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T09:54:06.130101-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7f5f0ba4-3eb5-462a-8db8-31faca9d0d27" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "2ba98ec4-5cc5-43d5-8de3-ab33d0d6779b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003996-1286_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "12d6861e-5ad9-48f7-ae61-07c7e45be5a3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4fdd25bc-4056-47f1-8eb9-7e572313ba5d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009927-9027_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c65b0cad-f2f5-40f2-a523-60374faf390a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "8764fb2b-e701-53db-b137-03efa2c52637" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A6DI_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e7a7e296-3f1b-49f5-bbaa-082f918d080d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b0d4b16c-cc81-405f-83a1-de57cb488166" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7b56068d-21e9-4879-b747-c99943e40e50" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "424f3fdd-09f1-57a2-99de-10c13b9be653" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-A6EP_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1e8ad4ff-09db-44f6-9527-b10ac22453d6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "661cafd9-0cf9-4c6f-b541-293bdecf3ede" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "434adba3-549a-45f7-b89b-76737678ae0e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "stage iii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "671671bc-dbf4-4e15-b978-6aceaac1533f" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0016761-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:17:41.081467-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "0d989563-7a49-49e9-9417-4b607d661ab4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a08be31b-24b0-5fb3-b49d-955fcce7603c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-6827_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2ef80e58-961d-45d6-ac3a-a520be3728c9" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "460e7821-2712-4d74-b5a1-b2883b3197ca" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c53d6135-c614-45f4-8f41-49b20ed4a549" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "49e46e5d-46b8-41f2-954e-c3c7b563a55b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-041937-203493_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:28:08.827884-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1108ef37-87b6-4b62-82f3-5e799fc4fb52" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "de3c2719-988d-4266-98cd-c1139a2cc412" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0006641-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:02:01.981535-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4e6ffe6c-feee-4dca-b56d-0f2c8b498ae6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "f1143020-2e95-4028-a2bf-c03a5ba6ea4e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD14041_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:41:38.922504-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fe72277e-ae77-486d-b5a9-844c483267eb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "509526cc-f60a-4e6d-8a18-2f76ba8e995c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000586-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6d54051a-c75c-40e6-9215-3e470f0d242e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "a37311af-d40e-5c8f-ba14-b3b2ae22e486" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6997_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8b73f661-e1ec-4bcb-9eea-a5e66237229a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b4c9a3aa-151e-478b-bc18-ce793b68ae09" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "00a721c6-6cb7-4408-a63a-6dae9310a3fe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T3" ; + crdch:system "GDC" ] ; + crdch:text "T3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2c" ; + crdch:system "GDC" ] ; + crdch:text "N2c" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "89e61c6e-3fb5-494b-81b3-7280119fefc9" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-011185-11116_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.873530-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "25bebf87-88d5-4cd5-b2d7-3f2b7c1a0a02" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fbf35ed3-c5af-4591-88be-e9971b7d40f6" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-053418-203556_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:20:30.865187-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a3b9c3f7-8499-4c17-92f9-274b1ee52764" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "04081703-b701-4765-8309-0a204a48c183" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-VICC-201710-unk-1_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-28T12:01:45.147328-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc51bca3-858a-4ac3-b48a-c4d273b2329c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "9d69f6a3-4edb-54e3-a840-ff1ff0aefb30" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A7JK_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "90e4a976-0d97-47ef-aa29-295c2afeb31b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "56c76698-7155-4f7a-9f9e-4fb62c673599" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "15776f80-0722-45a8-bc97-cc209cef631b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ce63ab25-f6d3-475c-abca-986d8d91b869" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0019055-T01-IM6_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-05-31T18:42:00.849990-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b5793531-8ec1-4bd9-9544-57844ebee0a6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "12d5265d-8eb5-4122-9e4d-976bdc0ded08" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002469-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:35:23.418160-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ed3acbbc-fb24-4be6-b09c-e0b6f4d9814f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "155420b6-0bc4-42f0-a28d-863e56f9e200" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD864_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:06:58.520537-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "24318871-5bfe-4bbe-8df8-9e415558ae47" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "545abbb1-03c0-4b81-af21-3ebb7a5bb299" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD4812_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:06:53.493092-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4288c5a9-610c-4b1f-b102-2b96b49a6fd8" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Adenocarcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Adenocarcinoma, NOS" ] ; + crdch:id "1c3027a0-7ae3-4ee6-a71d-b357ad841b3c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD4542_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8140/3" ; + crdch:system "GDC" ] ; + crdch:text "8140/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:06:20.797099-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "de90601b-1eda-4d1a-aa41-29feebdcfd57" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6788d692-193d-5d61-975f-1a79e54439ff" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-6516_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c129394b-3c04-4a6a-b4ea-d56d96bf28ef" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c3c82c51-0200-44c8-b5aa-050084983398" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2d8d11be-421d-4f96-b5d6-4cbc632f11f3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage III" ; + crdch:system "GDC" ] ; + crdch:text "Stage III" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "stage i" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "73adb3fc-a3c9-487c-a0d0-fa8b09707932" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-005121-1375_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Hypopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Hypopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eadf6e9a-c6c3-444c-8e93-8ab77ed87d09" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "b07c0682-d50b-5680-97fc-8e709e21c064" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-D6-8568_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c812093b-04ce-4d3f-841d-9b81de63fc38" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "6f150e98-8b4e-44ee-953b-1692d76c8868" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "eac181d7-f8b8-4350-92aa-62d3fd1bd86b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "stage ii" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage II" ; + crdch:system "GDC" ] ; + crdch:text "Stage II" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, keratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, keratinizing, NOS" ] ; + crdch:id "f904a635-80a1-579a-8f1f-0aa288492b45" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-BA-A8YP_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8071/3" ; + crdch:system "GDC" ] ; + crdch:text "8071/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4a339708-153a-4780-a265-70557765a754" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a9ebdedd-056f-4bc1-abc2-7089544a1549" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e62166c3-871d-4b0f-999a-4f033d7cb6c7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVB" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4" ; + crdch:system "GDC" ] ; + crdch:text "T4" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N3" ; + crdch:system "GDC" ] ; + crdch:text "N3" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVB" ; + crdch:system "GDC" ] ; + crdch:text "stage ivb" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "6ca9116f-412c-41d9-872b-1775f3d9464c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD11803_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:01:51.025011-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3dac18fb-752c-42aa-bdad-9f91d54fb950" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4dbbefaa-8e8e-4a44-943b-48687f123673" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0010088-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T04:13:38.880466-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b5da1115-1fe3-49a4-892b-ef43e64dbee4" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ] ; + crdch:id "00ed54be-bd0c-5950-9165-b08535ef9f18" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-TN-A7HI_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8072/3" ; + crdch:system "GDC" ] ; + crdch:text "8072/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2a081426-e4fe-4868-adc9-c14142490b81" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9808b586-4541-42a8-a72c-0c043ff568b3" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3ad15aca-9197-4512-8bb9-77099ae8f049" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage I" ; + crdch:system "GDC" ] ; + crdch:text "Stage I" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "83e6c6d4-83d7-55d8-ab82-aba8f3e543f5" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-6988_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4f72ee1e-37e2-4845-90de-812686a25980" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5bf33753-d3c4-4fbe-a8e0-af958efb6fd1" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "ca2a45b4-1eb0-4e28-a4c8-5647bfbaa98c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "bd3b2bda-4737-50bb-863a-334134a31156" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-QK-A8ZA_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f92383bc-5869-44d6-a128-60b60043d778" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4db7e146-bf2a-4729-ae80-d471370b62a0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9adfbc71-da3c-4a8e-a72f-76690e90a8ca" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Malignant rhabdoid tumor" ; + crdch:system "GDC" ] ; + crdch:text "Malignant rhabdoid tumor" ] ; + crdch:id "2e79ab38-e511-5e60-8c81-1584d28a909e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TARGET-52-PASVDP_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Lip" ; + crdch:system "GDC" ] ; + crdch:text "Lip" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8963/3" ; + crdch:system "GDC" ] ; + crdch:text "8963/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a28e1682-4703-527b-bd4e-81f86fa6f35a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2016-02-17T11:50:17.531058-06:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "fd9ff1de-6856-5a42-ad32-2e3aa28dc2d7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ; + crdch:specific_tissue_morphology [ crdch:coding [ crdch:code "Rhabdoid tumor (kidney) (RT)" ; + crdch:system "GDC" ] ; + crdch:text "Rhabdoid tumor (kidney) (RT)" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Unknown" ; + crdch:system "GDC" ] ; + crdch:text "unknown" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e980228b-ecef-406e-91da-09bc06d5ad04" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-000968-1363_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:06:57.341931-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "37ecc052-0274-45dd-98db-fb0d5476fa16" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, undifferentiated, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, undifferentiated, NOS" ] ; + crdch:id "4f1912bc-3704-49b0-b916-6d0e99463553" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "AD5075_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8020/3" ; + crdch:system "GDC" ] ; + crdch:text "8020/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2017-06-01T10:07:48.972608-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "dbf24e2a-1a10-4dfb-be35-8021f82b947c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ; + crdch:tumor_status_at_collection [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4c9f5000-dbac-4497-b434-57036c18a022" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008669-7093_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c0927894-b73f-4930-b147-e079caeb60e5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "f3270d37-2d06-4867-973e-54e8ea28208b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0002787-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:50:42.610446-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3eb1f15d-003c-42bc-8832-ea364ee8931b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5cb1278d-4b33-401c-b200-b4408788c927" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-002669-7683_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4d69eeb9-81bd-4146-9a4a-3ca86c789272" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "47d4038e-908a-40b8-8a91-7bdcc4421624" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-007857-7172_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "01a0cb84-c716-4134-aa16-ef008ae30469" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b7c8a51e-1403-54ce-a94e-ca7cfc05c21b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-HD-7754_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "adb496a1-07eb-45b9-8690-00184143300e" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-23T13:20:20.149518-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "97d5f4b1-b8a5-4fb1-8af6-f0e6cfc302f6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3fb86c71-0f8b-4022-b19f-d394401df9fe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5b91d8ab-6ed3-4c0a-a56b-8f0e151eaf5a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-000195-4559_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:06:57.341931-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "52beca45-8506-41fa-b0a0-3a8c24c9d7fe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "ad342355-cfa9-458f-8723-7a099368b797" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008794-7198_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "536ca98b-7415-49d8-84c2-dca4b5070ff6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "fd3fbe29-2fa3-41f7-99c9-51d3d05ff5b4" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-003147-99_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:18:52.539095-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "13654c9a-afcc-4635-9885-8418a318ac7a" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "1fe06c82-aa43-44ac-a091-8dec17e796ba" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037687-158970_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:26:11.717995-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "98e2382a-2d7b-445d-83ff-1dc53d66db12" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "3439abcc-0169-490c-8794-73e53b937d7c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-037577-74790_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-25T12:05:51.637331-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4121fe4a-1ae9-41e4-954d-88c88d047d9c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "e3d5bf4e-2856-5604-a086-3e4464a68c05" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A7JF_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7ce8968e-f693-4fa2-945a-0cea27c96ede" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f4e12699-7e71-42ba-994a-c3a9a71a95cb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f4cf2a66-8872-41ee-8270-296d5f76265f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2a" ; + crdch:system "GDC" ] ; + crdch:text "N2a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4e9b9fad-2d73-4867-b7f8-8e42769ea41e" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-009088-5942_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:43.308719-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "cc6054a8-ec09-42af-be24-4041b7be75cc" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "c1dc41f5-0fea-42e8-afdb-fabc542d0548" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0005869-T01-IM5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:58:03.635432-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "bb6ae997-ee6b-42e0-ab0c-c9fbc64f8d9b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "f50b7ab8-f114-470f-81b0-35ddd9246c46" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-034356-130499_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:37:30.937085-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "21a0707d-357c-4ea4-aec8-1227b8997cbb" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Metastatic" ; + crdch:system "GDC" ] ; + crdch:text "Metastatic" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "126d74e6-2981-5aea-80e7-62ec5cff609a" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CN-4739_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "f450dbe6-4972-4c49-af97-963bcd0d0da0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b916fa4a-1d15-4619-9d6c-1000e96b7e0d" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "9491d6f0-1e3e-48e5-aabb-87704511904b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d078cccf-6335-4c55-8d5e-a36e32dd8006" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-004034-372_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:22:15.693629-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "7d1a8a2e-c9d3-4e1d-b183-3c82de7e2306" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "b56e8d53-a875-5676-8d2d-f095f8b899af" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-CV-5444_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "61380e29-a7ae-4e29-b69a-d56f234f1ba0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Solid Tissue Normal" ; + crdch:system "GDC" ] ; + crdch:text "Solid Tissue Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "8cc840ea-3053-41a2-a325-6e86f3deeec6" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "4deea4a5-4d54-48b2-9a46-68eea668283b" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N1" ; + crdch:system "GDC" ] ; + crdch:text "N1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "5d448af8-7478-4252-9043-772077929480" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-023766-23966_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:44.678712-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "a3ca3ea8-6ea0-4585-8a50-294ca4c87a24" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Basaloid squamous cell carcinoma" ; + crdch:system "GDC" ] ; + crdch:text "Basaloid squamous cell carcinoma" ] ; + crdch:id "35c83c03-b2ab-5f6b-a231-66a3f879a217" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-P3-A5Q5_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8083/3" ; + crdch:system "GDC" ] ; + crdch:text "8083/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3f5cd265-0dd3-40c3-94b8-e92d18ce87b0" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "3b3502ab-ab9f-49d7-be08-243a7022463f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2e1b4cf3-61fe-452c-b800-f9bc53333713" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T2" ; + crdch:system "GDC" ] ; + crdch:text "T2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "MX" ; + crdch:system "GDC" ] ; + crdch:text "MX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2" ; + crdch:system "GDC" ] ; + crdch:text "N2" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9233f502-9580-4801-915e-732ca0f26a2c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-050720-203425_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:18:25.269226-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "c1353660-3a6c-4a01-8800-d52a40b6ed68" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "4943c82a-30d2-4c85-a233-032a49ca801d" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-008342-5809_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T17:56:40.150348-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "e01da120-9c9d-4ef7-8568-525f74222dd5" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "43212ae1-0d0a-411e-8ae0-61de91147afe" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-006740-7890_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T18:54:47.858087-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5f316e98-9980-4841-b297-f07b3e87004f" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9076e2ad-9cef-4efc-99d7-387d250445ee" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-025889-116451_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2019-06-03T15:37:30.937085-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "678dfc0e-f085-4c85-b444-8fc1604bdcfe" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "9d41e68e-c648-42ea-9320-6e08b9b5dd4c" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-DFCI-007598-4084_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Oropharynx" ; + crdch:system "GDC" ] ; + crdch:text "Oropharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-09-24T18:54:47.858087-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "87d18b2c-1241-43b3-b7aa-24442a047ade" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Carcinoma, NOS" ] ; + crdch:id "68a8cfd1-e890-4bd7-931b-33636e8cf10b" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "GENIE-MSK-P-0000668-T01-IM3_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Nasopharynx" ; + crdch:system "GDC" ] ; + crdch:text "Nasopharynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8010/3" ; + crdch:system "GDC" ] ; + crdch:text "8010/3" ] ; + crdch:related_specimen [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-10-03T03:31:25.700438-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "5c9ff077-5620-4611-a58c-fdd8ed98b2db" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "d9cc35a1-8103-5f6b-8d97-cc64c564c677" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-UF-A7JH_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Larynx" ; + crdch:system "GDC" ] ; + crdch:text "Larynx" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "2b803b39-f13c-4335-9845-05bb61830015" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "980726e2-9e0c-4212-b5aa-69e139fc3be7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "1c9d867a-6fba-49a1-99ba-63bd01942397" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "stage iva" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Overall" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N0" ; + crdch:system "GDC" ] ; + crdch:text "N0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T4a" ; + crdch:system "GDC" ] ; + crdch:text "T4a" ] ] ] . + +[] crdch:condition [ crdch:coding [ crdch:code "Squamous cell carcinoma, NOS" ; + crdch:system "GDC" ] ; + crdch:text "Squamous cell carcinoma, NOS" ] ; + crdch:id "0a622048-699a-55f4-ba31-6c9e95e1cabd" ; + crdch:identifier [ crdch:system "GDC-submitter-id" ; + crdch:value "TCGA-DQ-7590_diagnosis" ] ; + crdch:metastatic_site [ crdch:site [ crdch:coding [ crdch:code "Tonsil" ; + crdch:system "GDC" ] ; + crdch:text "Tonsil" ] ] ; + crdch:morphology [ crdch:coding [ crdch:code "8070/3" ; + crdch:system "GDC" ] ; + crdch:text "8070/3" ] ; + crdch:related_specimen [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "36fb3f52-714b-4b86-a7a5-ca4b017fd182" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ], + [ crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "95018dba-f23d-4af0-b774-c28be60007f7" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Blood Derived Normal" ; + crdch:system "GDC" ] ; + crdch:text "Blood Derived Normal" ] ], + [ crdch:creation_activity [ crdch:date_ended [ crdch:date_time "2018-05-17T12:19:46.292188-05:00"^^ ] ] ; + crdch:general_tissue_morphology [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "Not Reported" ] ; + crdch:id "b8eb9edb-fce8-4e72-9cbf-c4868c04965c" ; + crdch:source_material_type [ crdch:coding [ crdch:code "Primary Tumor" ; + crdch:system "GDC" ] ; + crdch:text "Primary Tumor" ] ] ; + crdch:stage [ crdch:method_type [ crdch:coding [ crdch:code "AJCC staging system 7th edition" ; + crdch:system "GDC" ] ; + crdch:text "7th" ] ; + crdch:observations [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "T1" ; + crdch:system "GDC" ] ; + crdch:text "T1" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Overall" ; + crdch:system "GDC" ] ; + crdch:text "Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Not Reported" ; + crdch:system "GDC" ] ; + crdch:text "not reported" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Metastasis (M)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Metastasis (M)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "M0" ; + crdch:system "GDC" ] ; + crdch:text "M0" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "N2b" ; + crdch:system "GDC" ] ; + crdch:text "N2b" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Clinical Overall" ; + crdch:system "GDC" ] ; + crdch:text "Clinical Overall" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "Stage IVA" ; + crdch:system "GDC" ] ; + crdch:text "Stage IVA" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Node (N)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Node (N)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "NX" ; + crdch:system "GDC" ] ; + crdch:text "NX" ] ], + [ crdch:observation_type [ crdch:coding [ crdch:code "Pathological Tumor (T)" ; + crdch:system "GDC" ] ; + crdch:text "Pathological Tumor (T)" ] ; + crdch:value_codeable_concept [ crdch:coding [ crdch:code "TX" ; + crdch:system "GDC" ] ; + crdch:text "TX" ] ] ] . diff --git a/head-and-mouth/test_load.py b/head-and-mouth/test_load.py index 3c4eac2..8345b3a 100644 --- a/head-and-mouth/test_load.py +++ b/head-and-mouth/test_load.py @@ -14,6 +14,9 @@ CRDCH_YAML_URI = 'https://raw.githubusercontent.com/cancerDHC/ccdhmodel/v1.1/model/schema/crdch_model.yaml' def codeable_concept(text, system, code): + if code is None: + return None + return ccdh.CodeableConcept( text=text, coding=ccdh.Coding( @@ -154,10 +157,10 @@ def transform_sample_to_specimen(sample): A method for transforming a GDC Sample into CCDH Specimen. """ specimen = ccdh.Specimen(id=sample.get('sample_id')) - specimen.source_material_type = sample.get('sample_type') - specimen.general_tissue_morphology = sample.get('tissue_type') - specimen.specific_tissue_morphology = sample.get('tumor_code') - specimen.tumor_status_at_collection = sample.get('tumor_descriptor') + specimen.source_material_type = codeable_concept(sample.get('sample_type'), 'GDC', sample.get('sample_type')) + specimen.general_tissue_morphology = codeable_concept(sample.get('tissue_type'), 'GDC', sample.get('tissue_type')) + specimen.specific_tissue_morphology = codeable_concept(sample.get('tumor_code'), 'GDC', sample.get('tumor_code')) + specimen.tumor_status_at_collection = codeable_concept(sample.get('tumor_descriptor'), 'GDC', sample.get('tumor_descriptor')) specimen.creation_activity = ccdh.SpecimenCreationActivity( date_ended=ccdh.TimePoint( date_time=sample.get('created_datetime') @@ -305,8 +308,8 @@ def test_transform_gdc_data(): f.write(as_json_str) # Convert JSON-LD into Turtle. - # g = rdflib.Graph() - # g.parse(data=as_json_str, format="json-ld") - # rdf_as_turtle = g.serialize(format="turtle").decode() - # with open('head-and-mouth/diagnoses.ttl', 'w') as file: - # file.write(rdf_as_turtle) + g = rdflib.Graph() + g.parse(data=as_json_str, format="json-ld") + rdf_as_turtle = g.serialize(format="turtle").decode() + with open('head-and-mouth/diagnoses.ttl', 'w') as file: + file.write(rdf_as_turtle) From 9c73483f0ca921e3d4a4081d30b894c21cb17908 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Fri, 19 Nov 2021 15:50:11 -0500 Subject: [PATCH 08/18] Added note to a relevent LinkML issue. --- head-and-mouth/test_load.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/head-and-mouth/test_load.py b/head-and-mouth/test_load.py index 8345b3a..ac5fa9c 100644 --- a/head-and-mouth/test_load.py +++ b/head-and-mouth/test_load.py @@ -280,6 +280,8 @@ def test_transform_gdc_data(): assert len(gdc_head_and_mouth) > 0, "At least one GDC Head and Mouth case loaded." + # For now we download this from the web, but the YAML file might eventually be + # added to the project file itself: https://github.com/linkml/linkml/issues/475 jsonldContext = ContextGenerator(CRDCH_YAML_URI).serialize() jsonldContextAsDict = json.loads(jsonldContext) assert type(jsonldContextAsDict) is dict From 41522b9f898fd516bbf65ad11a97f520c1b1e602 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 14:38:43 -0500 Subject: [PATCH 09/18] Replaced and rearranged Poetry dependencies. --- .github/workflows/pytest.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 22413d2..dcd742b 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -17,14 +17,19 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Poetry uses: snok/install-poetry@v1 - - name: Install dependencies - run: | - python -m pip install --upgrade pipenv flake8 wheel - id: cache-poetry uses: actions/cache@v1 with: path: ~/.local key: ${{ runner.os }}-python-${{ matrix.python-version }}-poetry-${{ hashFiles('**/poetry.lock') }} + + #---------------------------------------------- + # install dependencies if cache does not exist + #---------------------------------------------- + - name: Install dependencies + if: steps.cache-poetry.outputs.cache-hit != 'true' + run: poetry install --no-interaction --no-root + - name: Test with pytest run: | poetry install From 17cb4d06644b871e51f0de1fbd12f0559aafc36c Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 14:54:54 -0500 Subject: [PATCH 10/18] Got rid of the cache-hit check. This seems unnecessary: even if we hit the cache, the versions of the files in the Poetry config and lock files might have changed, and so require re-installation. --- .github/workflows/pytest.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index dcd742b..a857957 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -27,7 +27,6 @@ jobs: # install dependencies if cache does not exist #---------------------------------------------- - name: Install dependencies - if: steps.cache-poetry.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root - name: Test with pytest From 2331291fc9b4601bf5ab27665e25f3fcc4bf6a08 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 14:59:46 -0500 Subject: [PATCH 11/18] Removed redundant poetry installs. --- .github/workflows/pytest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index a857957..a54dbb7 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -31,8 +31,8 @@ jobs: - name: Test with pytest run: | - poetry install poetry run pytest -svvv + - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names From 820153b0cf90b421c2ff3bff2454d21b6fa9aa8a Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 15:03:00 -0500 Subject: [PATCH 12/18] Added repository and README. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index cd6af31..47d0d21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,8 @@ name = "crdch_example_workflows" version = "0.1.0" description = "Example workflows and data for the CRDCH model" authors = ["Gaurav Vaidya "] +readme = "README.md" +repository = "https://github.com/cancerDHC/example-data" [tool.poetry.dependencies] python = ">=3.7.1,<4.0" From a5de29d1b37d7476d0c0bd419a8103b5194e4528 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 15:45:35 -0500 Subject: [PATCH 13/18] Modified Python version to sync with ccdhmodel. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 47d0d21..e8bfbef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" repository = "https://github.com/cancerDHC/example-data" [tool.poetry.dependencies] -python = ">=3.7.1,<4.0" +python = ">=3.7,<4.0" linkml = "^1.1.13" jsonschema = "^4.2.1" jupyter = "^1.0.0" From ecd2bb7a3716c81a0abead00580b180083482f61 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 16:36:21 -0500 Subject: [PATCH 14/18] Added flake8. --- poetry.lock | 103 ++++++++++++++++++++++++++++--------------------- pyproject.toml | 1 + 2 files changed, 61 insertions(+), 43 deletions(-) diff --git a/poetry.lock b/poetry.lock index 458e94d..39011a8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -252,6 +252,20 @@ category = "main" optional = false python-versions = ">=3.6" +[[package]] +name = "flake8" +version = "4.0.1" +description = "the modular source code checker: pep8 pyflakes and co" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +importlib-metadata = {version = "<4.3", markers = "python_version < \"3.8\""} +mccabe = ">=0.6.0,<0.7.0" +pycodestyle = ">=2.8.0,<2.9.0" +pyflakes = ">=2.4.0,<2.5.0" + [[package]] name = "frozendict" version = "2.0.7" @@ -310,7 +324,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [[package]] name = "importlib-metadata" -version = "4.8.2" +version = "4.2.0" description = "Read metadata from Python packages" category = "main" optional = false @@ -322,8 +336,7 @@ zipp = ">=0.5" [package.extras] docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] -perf = ["ipython"] -testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pep517", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy", "importlib-resources (>=1.3)"] +testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pep517", "pyfakefs", "flufl.flake8", "pytest-black (>=0.3.7)", "pytest-mypy", "importlib-resources (>=1.3)"] [[package]] name = "importlib-resources" @@ -774,6 +787,14 @@ python-versions = ">=3.5" [package.dependencies] traitlets = "*" +[[package]] +name = "mccabe" +version = "0.6.1" +description = "McCabe checker, plugin for flake8" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "mdit-py-plugins" version = "0.2.8" @@ -925,14 +946,6 @@ docs = ["sphinx", "nbsphinx", "sphinxcontrib-github-alt", "sphinx-rtd-theme", "m json-logging = ["json-logging"] test = ["pytest", "coverage", "requests", "nbval", "selenium", "pytest-cov", "requests-unixsocket"] -[[package]] -name = "numpy" -version = "1.21.1" -description = "NumPy is the fundamental package for array computing with Python." -category = "main" -optional = false -python-versions = ">=3.7" - [[package]] name = "numpy" version = "1.21.4" @@ -1115,6 +1128,14 @@ category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +[[package]] +name = "pycodestyle" +version = "2.8.0" +description = "Python style guide checker" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + [[package]] name = "pycparser" version = "2.21" @@ -1138,6 +1159,14 @@ typing-extensions = ">=3.7.4.3" dotenv = ["python-dotenv (>=0.10.4)"] email = ["email-validator (>=1.0.3)"] +[[package]] +name = "pyflakes" +version = "2.4.0" +description = "passive checker of Python programs" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + [[package]] name = "pygments" version = "2.10.0" @@ -1818,8 +1847,8 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" -python-versions = ">=3.7.1,<4.0" -content-hash = "5df3881b02714e46ff84ced5b520baabd3c955fb2ca47bdd1b8ae4a157a2d89e" +python-versions = ">=3.7,<4.0" +content-hash = "0f12ef85bb52c1084907a62d0f496b92970debfee6a6dc58880cd2c1755feaa4" [metadata.files] alabaster = [ @@ -2000,6 +2029,10 @@ et-xmlfile = [ {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, ] +flake8 = [ + {file = "flake8-4.0.1-py2.py3-none-any.whl", hash = "sha256:479b1304f72536a55948cb40a32dce8bb0ffe3501e26eaf292c7e60eb5e0428d"}, + {file = "flake8-4.0.1.tar.gz", hash = "sha256:806e034dda44114815e23c16ef92f95c91e4c71100ff52813adf7132a6ad870d"}, +] frozendict = [ {file = "frozendict-2.0.7-py3-none-any.whl", hash = "sha256:d650f9cf3d2c5438b1631488a975a49b3bdd12c7a97eec59b85e57821eebf28a"}, {file = "frozendict-2.0.7.tar.gz", hash = "sha256:a68f609d1af67da80b45519fdcfca2d60249c0a8c96e68279c1b6ddd92128204"}, @@ -2073,8 +2106,8 @@ imagesize = [ {file = "imagesize-1.3.0.tar.gz", hash = "sha256:cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d"}, ] importlib-metadata = [ - {file = "importlib_metadata-4.8.2-py3-none-any.whl", hash = "sha256:53ccfd5c134223e497627b9815d5030edf77d2ed573922f7a0b8f8bb81a1c100"}, - {file = "importlib_metadata-4.8.2.tar.gz", hash = "sha256:75bdec14c397f528724c1bfd9709d660b33a4d2e77387a3358f20b848bb5e5fb"}, + {file = "importlib_metadata-4.2.0-py3-none-any.whl", hash = "sha256:057e92c15bc8d9e8109738a48db0ccb31b4d9d5cfbee5a8670879a30be66304b"}, + {file = "importlib_metadata-4.2.0.tar.gz", hash = "sha256:b7e52a1f8dec14a75ea73e0891f3060099ca1d8e6a462a4dff11c3e119ea1b31"}, ] importlib-resources = [ {file = "importlib_resources-5.4.0-py3-none-any.whl", hash = "sha256:33a95faed5fc19b4bc16b29a6eeae248a3fe69dd55d4d229d2b480e23eeaad45"}, @@ -2319,6 +2352,10 @@ matplotlib-inline = [ {file = "matplotlib-inline-0.1.3.tar.gz", hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee"}, {file = "matplotlib_inline-0.1.3-py3-none-any.whl", hash = "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c"}, ] +mccabe = [ + {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, + {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, +] mdit-py-plugins = [ {file = "mdit-py-plugins-0.2.8.tar.gz", hash = "sha256:5991cef645502e80a5388ec4fc20885d2313d4871e8b8e320ca2de14ac0c015f"}, {file = "mdit_py_plugins-0.2.8-py3-none-any.whl", hash = "sha256:1833bf738e038e35d89cb3a07eb0d227ed647ce7dd357579b65343740c6d249c"}, @@ -2352,34 +2389,6 @@ notebook = [ {file = "notebook-6.4.6.tar.gz", hash = "sha256:7bcdf79bd1cda534735bd9830d2cbedab4ee34d8fe1df6e7b946b3aab0902ba3"}, ] numpy = [ - {file = "numpy-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38e8648f9449a549a7dfe8d8755a5979b45b3538520d1e735637ef28e8c2dc50"}, - {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fd7d7409fa643a91d0a05c7554dd68aa9c9bb16e186f6ccfe40d6e003156e33a"}, - {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a75b4498b1e93d8b700282dc8e655b8bd559c0904b3910b144646dbbbc03e062"}, - {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1412aa0aec3e00bc23fbb8664d76552b4efde98fb71f60737c83efbac24112f1"}, - {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e46ceaff65609b5399163de5893d8f2a82d3c77d5e56d976c8b5fb01faa6b671"}, - {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c6a2324085dd52f96498419ba95b5777e40b6bcbc20088fddb9e8cbb58885e8e"}, - {file = "numpy-1.21.1-cp37-cp37m-win32.whl", hash = "sha256:73101b2a1fef16602696d133db402a7e7586654682244344b8329cdcbbb82172"}, - {file = "numpy-1.21.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7a708a79c9a9d26904d1cca8d383bf869edf6f8e7650d85dbc77b041e8c5a0f8"}, - {file = "numpy-1.21.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95b995d0c413f5d0428b3f880e8fe1660ff9396dcd1f9eedbc311f37b5652e16"}, - {file = "numpy-1.21.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:635e6bd31c9fb3d475c8f44a089569070d10a9ef18ed13738b03049280281267"}, - {file = "numpy-1.21.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a3d5fb89bfe21be2ef47c0614b9c9c707b7362386c9a3ff1feae63e0267ccb6"}, - {file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a326af80e86d0e9ce92bcc1e65c8ff88297de4fa14ee936cb2293d414c9ec63"}, - {file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:791492091744b0fe390a6ce85cc1bf5149968ac7d5f0477288f78c89b385d9af"}, - {file = "numpy-1.21.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0318c465786c1f63ac05d7c4dbcecd4d2d7e13f0959b01b534ea1e92202235c5"}, - {file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a513bd9c1551894ee3d31369f9b07460ef223694098cf27d399513415855b68"}, - {file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:91c6f5fc58df1e0a3cc0c3a717bb3308ff850abdaa6d2d802573ee2b11f674a8"}, - {file = "numpy-1.21.1-cp38-cp38-win32.whl", hash = "sha256:978010b68e17150db8765355d1ccdd450f9fc916824e8c4e35ee620590e234cd"}, - {file = "numpy-1.21.1-cp38-cp38-win_amd64.whl", hash = "sha256:9749a40a5b22333467f02fe11edc98f022133ee1bfa8ab99bda5e5437b831214"}, - {file = "numpy-1.21.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d7a4aeac3b94af92a9373d6e77b37691b86411f9745190d2c351f410ab3a791f"}, - {file = "numpy-1.21.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9e7912a56108aba9b31df688a4c4f5cb0d9d3787386b87d504762b6754fbb1b"}, - {file = "numpy-1.21.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:25b40b98ebdd272bc3020935427a4530b7d60dfbe1ab9381a39147834e985eac"}, - {file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a92c5aea763d14ba9d6475803fc7904bda7decc2a0a68153f587ad82941fec1"}, - {file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05a0f648eb28bae4bcb204e6fd14603de2908de982e761a2fc78efe0f19e96e1"}, - {file = "numpy-1.21.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f01f28075a92eede918b965e86e8f0ba7b7797a95aa8d35e1cc8821f5fc3ad6a"}, - {file = "numpy-1.21.1-cp39-cp39-win32.whl", hash = "sha256:88c0b89ad1cc24a5efbb99ff9ab5db0f9a86e9cc50240177a571fbe9c2860ac2"}, - {file = "numpy-1.21.1-cp39-cp39-win_amd64.whl", hash = "sha256:01721eefe70544d548425a07c80be8377096a54118070b8a62476866d5208e33"}, - {file = "numpy-1.21.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2d4d1de6e6fb3d28781c73fbde702ac97f03d79e4ffd6598b880b2d95d62ead4"}, - {file = "numpy-1.21.1.zip", hash = "sha256:dff4af63638afcc57a3dfb9e4b26d434a7a602d225b42d746ea7fe2edf1342fd"}, {file = "numpy-1.21.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8890b3360f345e8360133bc078d2dacc2843b6ee6059b568781b15b97acbe39f"}, {file = "numpy-1.21.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:69077388c5a4b997442b843dbdc3a85b420fb693ec8e33020bb24d647c164fa5"}, {file = "numpy-1.21.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e89717274b41ebd568cd7943fc9418eeb49b1785b66031bc8a7f6300463c5898"}, @@ -2497,6 +2506,10 @@ py = [ {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, ] +pycodestyle = [ + {file = "pycodestyle-2.8.0-py2.py3-none-any.whl", hash = "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20"}, + {file = "pycodestyle-2.8.0.tar.gz", hash = "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"}, +] pycparser = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -2525,6 +2538,10 @@ pydantic = [ {file = "pydantic-1.8.2-py3-none-any.whl", hash = "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833"}, {file = "pydantic-1.8.2.tar.gz", hash = "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b"}, ] +pyflakes = [ + {file = "pyflakes-2.4.0-py2.py3-none-any.whl", hash = "sha256:3bb3a3f256f4b7968c9c788781e4ff07dce46bdf12339dcda61053375426ee2e"}, + {file = "pyflakes-2.4.0.tar.gz", hash = "sha256:05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c"}, +] pygments = [ {file = "Pygments-2.10.0-py3-none-any.whl", hash = "sha256:b8e67fe6af78f492b3c4b3e2970c0624cbf08beb1e493b2c99b9fa1b67a20380"}, {file = "Pygments-2.10.0.tar.gz", hash = "sha256:f398865f7eb6874156579fdf36bc840a03cab64d1cde9e93d68f46a425ec52c6"}, diff --git a/pyproject.toml b/pyproject.toml index e8bfbef..a97b5b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ crdch-model = "^1.1.5" pandas = "^1.3.4" [tool.poetry.dev-dependencies] +flake8 = "^4.0.1" [build-system] requires = ["poetry-core>=1.0.0"] From 786ca80fdc4d9fced3cea9fbb264b7313c0e4ab0 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 16:41:40 -0500 Subject: [PATCH 15/18] Installed black; cleaned code with black. --- head-and-mouth/test_load.py | 468 ++++++++++++++++++++++++------------ poetry.lock | 168 ++++++++----- pyproject.toml | 2 +- 3 files changed, 425 insertions(+), 213 deletions(-) diff --git a/head-and-mouth/test_load.py b/head-and-mouth/test_load.py index ac5fa9c..ab176f0 100644 --- a/head-and-mouth/test_load.py +++ b/head-and-mouth/test_load.py @@ -11,22 +11,18 @@ import crdch_model as ccdh # The URI where the CRDCH YAML file is located. -CRDCH_YAML_URI = 'https://raw.githubusercontent.com/cancerDHC/ccdhmodel/v1.1/model/schema/crdch_model.yaml' +CRDCH_YAML_URI = "https://raw.githubusercontent.com/cancerDHC/ccdhmodel/v1.1/model/schema/crdch_model.yaml" + def codeable_concept(text, system, code): if code is None: return None - return ccdh.CodeableConcept( - text=text, - coding=ccdh.Coding( - system=system, - code=code - ) - ) + return ccdh.CodeableConcept(text=text, coding=ccdh.Coding(system=system, code=code)) + def create_body_site(site_name): - """ Create a CCDH BodySite based on the name of a site in the human body.""" + """Create a CCDH BodySite based on the name of a site in the human body.""" # Accept 'None'. if site_name is None: @@ -34,120 +30,156 @@ def create_body_site(site_name): # Some body sites are not currently included in the CCDH model. We will need to translate these sites # into values that *are* included in the CCDH model. - site_mappings = { - 'Larynx, NOS': ccdh.EnumCRDCHBodySiteSite.Larynx.text - } + site_mappings = {"Larynx, NOS": ccdh.EnumCRDCHBodySiteSite.Larynx.text} # Map values if needed. Otherwise, pass them through unmapped. if site_name in site_mappings: - return ccdh.BodySite(site=codeable_concept(site_name, 'GDC', site_mappings[site_name])) + return ccdh.BodySite( + site=codeable_concept(site_name, "GDC", site_mappings[site_name]) + ) - return ccdh.BodySite(site=codeable_concept(site_name, 'GDC', site_name)) + return ccdh.BodySite(site=codeable_concept(site_name, "GDC", site_name)) def test_create_body_site(): - #with pytest.raises(ValueError): + # with pytest.raises(ValueError): # create_body_site('Laryn') - body_site_larynx = create_body_site('Larynx') - body_site_larynx_nos = create_body_site('Larynx, NOS') + body_site_larynx = create_body_site("Larynx") + body_site_larynx_nos = create_body_site("Larynx, NOS") assert type(body_site_larynx) is ccdh.BodySite - assert body_site_larynx.site.coding[0].code == ccdh.EnumCRDCHBodySiteSite.Larynx.text + assert ( + body_site_larynx.site.coding[0].code == ccdh.EnumCRDCHBodySiteSite.Larynx.text + ) assert type(body_site_larynx_nos) is ccdh.BodySite - assert body_site_larynx_nos.site.coding[0].code == ccdh.EnumCRDCHBodySiteSite.Larynx.text + assert ( + body_site_larynx_nos.site.coding[0].code + == ccdh.EnumCRDCHBodySiteSite.Larynx.text + ) def create_stage_observation(type, value): - """ Create a CCDHCancerStageObservation from a type of observation and a codeable concept.""" + """Create a CCDHCancerStageObservation from a type of observation and a codeable concept.""" # As with the body site example above, we need to map GDC values into the values # allowed under the CCDH model. stage_mappings = { - 'not reported': 'Not Reported', - 'unknown': 'Unknown', - 'stage i': 'Stage I', - 'stage ii': 'Stage II', - 'stage iii': 'Stage III', - 'stage iva': 'Stage IVA', - 'stage ivb': 'Stage IVB', - 'stage ivc': 'Stage IVC', + "not reported": "Not Reported", + "unknown": "Unknown", + "stage i": "Stage I", + "stage ii": "Stage II", + "stage iii": "Stage III", + "stage iva": "Stage IVA", + "stage ivb": "Stage IVB", + "stage ivc": "Stage IVC", } if value in stage_mappings: return ccdh.CancerStageObservation( - observation_type=codeable_concept(type, 'GDC', type), - value_codeable_concept=codeable_concept(value, 'GDC', stage_mappings[value]) + observation_type=codeable_concept(type, "GDC", type), + value_codeable_concept=codeable_concept( + value, "GDC", stage_mappings[value] + ), ) return ccdh.CancerStageObservation( - observation_type=codeable_concept(type, 'GDC', type), - value_codeable_concept=codeable_concept(value, 'GDC', value) + observation_type=codeable_concept(type, "GDC", type), + value_codeable_concept=codeable_concept(value, "GDC", value), ) def test_create_stage_observation(): - obs1 = create_stage_observation('Pathological Node (N)', 'Stage III') + obs1 = create_stage_observation("Pathological Node (N)", "Stage III") assert type(obs1) is ccdh.CancerStageObservation - assert obs1.observation_type.coding[0].code == 'Pathological Node (N)' - assert obs1.value_codeable_concept.coding[0].code == 'Stage III' + assert obs1.observation_type.coding[0].code == "Pathological Node (N)" + assert obs1.value_codeable_concept.coding[0].code == "Stage III" # Both observation type and value_codeable_concept are enumerations. - #with pytest.raises(ValueError): + # with pytest.raises(ValueError): # create_stage_observation('Pathological Node', 'Stage III') - #with pytest.raises(ValueError): + # with pytest.raises(ValueError): # create_stage_observation('Pathological Node (N)', 'Stage XI') def create_stage_from_gdc(diagnosis): cancer_stage_method_type = None - if diagnosis.get('ajcc_staging_system_edition') == '7th': - cancer_stage_method_type = codeable_concept('7th', 'GDC', 'AJCC staging system 7th edition') + if diagnosis.get("ajcc_staging_system_edition") == "7th": + cancer_stage_method_type = codeable_concept( + "7th", "GDC", "AJCC staging system 7th edition" + ) # Create an observation set - obs = ccdh.CancerStageObservationSet( - method_type=cancer_stage_method_type - ) + obs = ccdh.CancerStageObservationSet(method_type=cancer_stage_method_type) # Add observations for every type of observation in the GDC diagnosis. - if diagnosis.get('tumor_stage') is not None: - obs.observations.append(create_stage_observation('Overall', diagnosis.get('tumor_stage'))) + if diagnosis.get("tumor_stage") is not None: + obs.observations.append( + create_stage_observation("Overall", diagnosis.get("tumor_stage")) + ) - if diagnosis.get('ajcc_clinical_stage') is not None: - obs.observations.append(create_stage_observation('Clinical Overall', diagnosis.get('ajcc_clinical_stage'))) + if diagnosis.get("ajcc_clinical_stage") is not None: + obs.observations.append( + create_stage_observation( + "Clinical Overall", diagnosis.get("ajcc_clinical_stage") + ) + ) - if diagnosis.get('ajcc_clinical_t') is not None: - obs.observations.append(create_stage_observation('Clinical Tumor (T)', diagnosis.get('ajcc_clinical_t'))) + if diagnosis.get("ajcc_clinical_t") is not None: + obs.observations.append( + create_stage_observation( + "Clinical Tumor (T)", diagnosis.get("ajcc_clinical_t") + ) + ) - if diagnosis.get('ajcc_clinical_n') is not None: - obs.observations.append(create_stage_observation('Clinical Node (N)', diagnosis.get('ajcc_clinical_n'))) + if diagnosis.get("ajcc_clinical_n") is not None: + obs.observations.append( + create_stage_observation( + "Clinical Node (N)", diagnosis.get("ajcc_clinical_n") + ) + ) - if diagnosis.get('ajcc_clinical_m') is not None: - obs.observations.append(create_stage_observation('Clinical Metastasis (M)', diagnosis.get('ajcc_clinical_m'))) + if diagnosis.get("ajcc_clinical_m") is not None: + obs.observations.append( + create_stage_observation( + "Clinical Metastasis (M)", diagnosis.get("ajcc_clinical_m") + ) + ) - if diagnosis.get('ajcc_pathologic_stage') is not None: + if diagnosis.get("ajcc_pathologic_stage") is not None: obs.observations.append( - create_stage_observation('Pathological Overall', diagnosis.get('ajcc_pathologic_stage'))) + create_stage_observation( + "Pathological Overall", diagnosis.get("ajcc_pathologic_stage") + ) + ) - if diagnosis.get('ajcc_pathologic_t') is not None: - obs.observations.append(create_stage_observation('Pathological Tumor (T)', diagnosis.get('ajcc_pathologic_t'))) + if diagnosis.get("ajcc_pathologic_t") is not None: + obs.observations.append( + create_stage_observation( + "Pathological Tumor (T)", diagnosis.get("ajcc_pathologic_t") + ) + ) - if diagnosis.get('ajcc_pathologic_n') is not None: - obs.observations.append(create_stage_observation('Pathological Node (N)', diagnosis.get('ajcc_pathologic_n'))) + if diagnosis.get("ajcc_pathologic_n") is not None: + obs.observations.append( + create_stage_observation( + "Pathological Node (N)", diagnosis.get("ajcc_pathologic_n") + ) + ) - if diagnosis.get('ajcc_pathologic_m') is not None: + if diagnosis.get("ajcc_pathologic_m") is not None: obs.observations.append( - create_stage_observation('Pathological Metastasis (M)', diagnosis.get('ajcc_pathologic_m'))) + create_stage_observation( + "Pathological Metastasis (M)", diagnosis.get("ajcc_pathologic_m") + ) + ) return obs def test_create_stage_from_gdc(): - diag1 = { - 'ajcc_staging_system_edition': '7th', - 'ajcc_pathologic_stage': 'Stage III' - } + diag1 = {"ajcc_staging_system_edition": "7th", "ajcc_pathologic_stage": "Stage III"} stage = create_stage_from_gdc(diag1) assert type(stage) is ccdh.CancerStageObservationSet @@ -156,40 +188,56 @@ def transform_sample_to_specimen(sample): """ A method for transforming a GDC Sample into CCDH Specimen. """ - specimen = ccdh.Specimen(id=sample.get('sample_id')) - specimen.source_material_type = codeable_concept(sample.get('sample_type'), 'GDC', sample.get('sample_type')) - specimen.general_tissue_morphology = codeable_concept(sample.get('tissue_type'), 'GDC', sample.get('tissue_type')) - specimen.specific_tissue_morphology = codeable_concept(sample.get('tumor_code'), 'GDC', sample.get('tumor_code')) - specimen.tumor_status_at_collection = codeable_concept(sample.get('tumor_descriptor'), 'GDC', sample.get('tumor_descriptor')) + specimen = ccdh.Specimen(id=sample.get("sample_id")) + specimen.source_material_type = codeable_concept( + sample.get("sample_type"), "GDC", sample.get("sample_type") + ) + specimen.general_tissue_morphology = codeable_concept( + sample.get("tissue_type"), "GDC", sample.get("tissue_type") + ) + specimen.specific_tissue_morphology = codeable_concept( + sample.get("tumor_code"), "GDC", sample.get("tumor_code") + ) + specimen.tumor_status_at_collection = codeable_concept( + sample.get("tumor_descriptor"), "GDC", sample.get("tumor_descriptor") + ) specimen.creation_activity = ccdh.SpecimenCreationActivity( - date_ended=ccdh.TimePoint( - date_time=sample.get('created_datetime') - ) + date_ended=ccdh.TimePoint(date_time=sample.get("created_datetime")) ) return specimen def transform_diagnosis(diagnosis, case): - samples = list(filter(lambda x: x is not None, map(transform_sample_to_specimen, case.get('samples') or []))) + samples = list( + filter( + lambda x: x is not None, + map(transform_sample_to_specimen, case.get("samples") or []), + ) + ) ccdh_diagnosis = ccdh.Diagnosis( - id=diagnosis.get('diagnosis_id'), - condition=codeable_concept(diagnosis.get('primary_diagnosis'), 'GDC', diagnosis.get('primary_diagnosis')), - morphology=codeable_concept(diagnosis.get('morphology'), 'GDC', diagnosis.get('morphology')), - grade=diagnosis.get('grade'), + id=diagnosis.get("diagnosis_id"), + condition=codeable_concept( + diagnosis.get("primary_diagnosis"), + "GDC", + diagnosis.get("primary_diagnosis"), + ), + morphology=codeable_concept( + diagnosis.get("morphology"), "GDC", diagnosis.get("morphology") + ), + grade=diagnosis.get("grade"), stage=create_stage_from_gdc(diagnosis), # diagnosis_date=ccdh.TimePoint(date_time=diagnosis.get('year_of_diagnosis')), related_specimen=samples, identifier=[ ccdh.Identifier( - system='GDC-submitter-id', - value=diagnosis.get('submitter_id') + system="GDC-submitter-id", value=diagnosis.get("submitter_id") ) - ] + ], ) - if 'primary_site' in case and case['primary_site'] != '': - body_site = create_body_site(case['primary_site']) + if "primary_site" in case and case["primary_site"] != "": + body_site = create_body_site(case["primary_site"]) if body_site is not None: ccdh_diagnosis.metastatic_site.append(body_site) @@ -202,80 +250,187 @@ def test_transform_diagnosis(): """ # This is a case from GDC: https://portal.gdc.cancer.gov/cases/422a72e7-fe76-411d-b59e-1f0f0812c3cf - case1 = {'aliquot_ids': ['96f09bc8-a194-482c-bd17-baf28739e4f8'], 'case_id': '422a72e7-fe76-411d-b59e-1f0f0812c3cf', - 'created_datetime': '2018-09-13T13:42:10.444091-05:00', 'days_to_lost_to_followup': None, 'diagnoses': [ - {'age_at_diagnosis': None, 'ajcc_clinical_m': None, 'ajcc_clinical_n': None, 'ajcc_clinical_stage': None, - 'ajcc_clinical_t': None, 'ajcc_pathologic_m': None, 'ajcc_pathologic_n': None, - 'ajcc_pathologic_stage': None, 'ajcc_pathologic_t': None, 'ajcc_staging_system_edition': None, - 'anaplasia_present': None, 'anaplasia_present_type': None, 'ann_arbor_b_symptoms': None, - 'ann_arbor_clinical_stage': None, 'ann_arbor_extranodal_involvement': None, - 'ann_arbor_pathologic_stage': None, 'best_overall_response': None, 'breslow_thickness': None, - 'burkitt_lymphoma_clinical_variant': None, 'child_pugh_classification': None, - 'circumferential_resection_margin': None, 'classification_of_tumor': None, 'cog_liver_stage': None, - 'cog_neuroblastoma_risk_group': None, 'cog_renal_stage': None, 'cog_rhabdomyosarcoma_risk_group': None, - 'created_datetime': '2018-09-22T00:57:04.451898-05:00', 'days_to_best_overall_response': None, - 'days_to_diagnosis': None, 'days_to_last_follow_up': None, 'days_to_last_known_disease_status': None, - 'days_to_recurrence': None, 'diagnosis_id': '842d6984-7c03-4ab6-95db-42fa2ea699db', - 'enneking_msts_grade': None, 'enneking_msts_metastasis': None, 'enneking_msts_stage': None, - 'enneking_msts_tumor_site': None, 'esophageal_columnar_dysplasia_degree': None, - 'esophageal_columnar_metaplasia_present': None, 'figo_stage': None, - 'first_symptom_prior_to_diagnosis': None, 'gastric_esophageal_junction_involvement': None, - 'gleason_grade_group': None, 'goblet_cells_columnar_mucosa_present': None, 'gross_tumor_weight': None, - 'icd_10_code': None, 'igcccg_stage': None, 'inpc_grade': None, 'inpc_histologic_group': None, - 'inrg_stage': None, 'inss_stage': None, 'international_prognostic_index': None, 'irs_group': None, - 'irs_stage': None, 'ishak_fibrosis_score': None, 'iss_stage': None, - 'largest_extrapelvic_peritoneal_focus': None, 'last_known_disease_status': 'not reported', - 'laterality': None, 'lymph_nodes_positive': None, 'lymph_nodes_tested': None, - 'lymphatic_invasion_present': None, 'masaoka_stage': None, - 'medulloblastoma_molecular_classification': None, 'metastasis_at_diagnosis': None, - 'metastasis_at_diagnosis_site': None, 'method_of_diagnosis': None, 'micropapillary_features': None, - 'mitosis_karyorrhexis_index': None, 'mitotic_count': None, 'morphology': '8070/3', - 'non_nodal_regional_disease': None, 'non_nodal_tumor_deposits': None, 'ovarian_specimen_status': None, - 'ovarian_surface_involvement': None, 'percent_tumor_invasion': None, 'perineural_invasion_present': None, - 'peripancreatic_lymph_nodes_positive': None, 'peripancreatic_lymph_nodes_tested': None, - 'peritoneal_fluid_cytological_status': None, 'primary_diagnosis': 'Squamous cell carcinoma, NOS', - 'primary_gleason_grade': None, 'prior_malignancy': None, 'prior_treatment': None, - 'progression_or_recurrence': 'not reported', 'residual_disease': None, 'secondary_gleason_grade': None, - 'site_of_resection_or_biopsy': 'Larynx, NOS', 'state': 'released', - 'submitter_id': 'GENIE-DFCI-010671-11105_diagnosis', 'supratentorial_localization': None, - 'synchronous_malignancy': None, 'tissue_or_organ_of_origin': 'Larynx, NOS', - 'tumor_confined_to_organ_of_origin': None, 'tumor_focality': None, 'tumor_grade': 'Not Reported', - 'tumor_largest_dimension_diameter': None, 'tumor_regression_grade': None, 'tumor_stage': 'not reported', - 'updated_datetime': '2019-11-18T13:54:59.294543-06:00', 'vascular_invasion_present': None, - 'vascular_invasion_type': None, 'weiss_assessment_score': None, 'wilms_tumor_histologic_subtype': None, - 'year_of_diagnosis': None}], 'diagnosis_ids': ['842d6984-7c03-4ab6-95db-42fa2ea699db'], - 'disease_type': 'Squamous Cell Neoplasms', 'id': '422a72e7-fe76-411d-b59e-1f0f0812c3cf', - 'index_date': 'Initial Genomic Sequencing', 'lost_to_followup': None, 'primary_site': 'Larynx', - 'sample_ids': ['6f9eeaa3-8bd1-479c-a0fc-98317eb458dc'], 'samples': [ - {'biospecimen_anatomic_site': None, 'biospecimen_laterality': None, 'catalog_reference': None, - 'composition': None, 'created_datetime': '2018-09-24T17:56:43.873530-05:00', 'current_weight': None, - 'days_to_collection': None, 'days_to_sample_procurement': None, 'diagnosis_pathologically_confirmed': None, - 'distance_normal_to_tumor': None, 'distributor_reference': None, 'freezing_method': None, - 'growth_rate': None, 'initial_weight': None, 'intermediate_dimension': None, 'is_ffpe': None, - 'longest_dimension': None, 'method_of_sample_procurement': None, 'oct_embedded': None, - 'passage_count': None, 'pathology_report_uuid': None, 'preservation_method': None, - 'sample_id': '6f9eeaa3-8bd1-479c-a0fc-98317eb458dc', 'sample_type': 'Primary Tumor', - 'sample_type_id': None, 'shortest_dimension': None, 'state': 'released', - 'submitter_id': 'GENIE-DFCI-010671-11105', 'time_between_clamping_and_freezing': None, - 'time_between_excision_and_freezing': None, 'tissue_type': 'Not Reported', 'tumor_code': None, - 'tumor_code_id': None, 'tumor_descriptor': None, 'updated_datetime': '2019-11-18T13:54:59.294543-06:00'}], - 'state': 'released', 'submitter_aliquot_ids': ['GENIE-DFCI-010671-11105_aliquot'], - 'submitter_diagnosis_ids': ['GENIE-DFCI-010671-11105_diagnosis'], 'submitter_id': 'GENIE-DFCI-010671', - 'submitter_sample_ids': ['GENIE-DFCI-010671-11105'], - 'updated_datetime': '2019-11-18T13:54:59.294543-06:00'} - - assert case1['primary_site'] == 'Larynx' - - diagnosis = transform_diagnosis(case1['diagnoses'][0], case1) + case1 = { + "aliquot_ids": ["96f09bc8-a194-482c-bd17-baf28739e4f8"], + "case_id": "422a72e7-fe76-411d-b59e-1f0f0812c3cf", + "created_datetime": "2018-09-13T13:42:10.444091-05:00", + "days_to_lost_to_followup": None, + "diagnoses": [ + { + "age_at_diagnosis": None, + "ajcc_clinical_m": None, + "ajcc_clinical_n": None, + "ajcc_clinical_stage": None, + "ajcc_clinical_t": None, + "ajcc_pathologic_m": None, + "ajcc_pathologic_n": None, + "ajcc_pathologic_stage": None, + "ajcc_pathologic_t": None, + "ajcc_staging_system_edition": None, + "anaplasia_present": None, + "anaplasia_present_type": None, + "ann_arbor_b_symptoms": None, + "ann_arbor_clinical_stage": None, + "ann_arbor_extranodal_involvement": None, + "ann_arbor_pathologic_stage": None, + "best_overall_response": None, + "breslow_thickness": None, + "burkitt_lymphoma_clinical_variant": None, + "child_pugh_classification": None, + "circumferential_resection_margin": None, + "classification_of_tumor": None, + "cog_liver_stage": None, + "cog_neuroblastoma_risk_group": None, + "cog_renal_stage": None, + "cog_rhabdomyosarcoma_risk_group": None, + "created_datetime": "2018-09-22T00:57:04.451898-05:00", + "days_to_best_overall_response": None, + "days_to_diagnosis": None, + "days_to_last_follow_up": None, + "days_to_last_known_disease_status": None, + "days_to_recurrence": None, + "diagnosis_id": "842d6984-7c03-4ab6-95db-42fa2ea699db", + "enneking_msts_grade": None, + "enneking_msts_metastasis": None, + "enneking_msts_stage": None, + "enneking_msts_tumor_site": None, + "esophageal_columnar_dysplasia_degree": None, + "esophageal_columnar_metaplasia_present": None, + "figo_stage": None, + "first_symptom_prior_to_diagnosis": None, + "gastric_esophageal_junction_involvement": None, + "gleason_grade_group": None, + "goblet_cells_columnar_mucosa_present": None, + "gross_tumor_weight": None, + "icd_10_code": None, + "igcccg_stage": None, + "inpc_grade": None, + "inpc_histologic_group": None, + "inrg_stage": None, + "inss_stage": None, + "international_prognostic_index": None, + "irs_group": None, + "irs_stage": None, + "ishak_fibrosis_score": None, + "iss_stage": None, + "largest_extrapelvic_peritoneal_focus": None, + "last_known_disease_status": "not reported", + "laterality": None, + "lymph_nodes_positive": None, + "lymph_nodes_tested": None, + "lymphatic_invasion_present": None, + "masaoka_stage": None, + "medulloblastoma_molecular_classification": None, + "metastasis_at_diagnosis": None, + "metastasis_at_diagnosis_site": None, + "method_of_diagnosis": None, + "micropapillary_features": None, + "mitosis_karyorrhexis_index": None, + "mitotic_count": None, + "morphology": "8070/3", + "non_nodal_regional_disease": None, + "non_nodal_tumor_deposits": None, + "ovarian_specimen_status": None, + "ovarian_surface_involvement": None, + "percent_tumor_invasion": None, + "perineural_invasion_present": None, + "peripancreatic_lymph_nodes_positive": None, + "peripancreatic_lymph_nodes_tested": None, + "peritoneal_fluid_cytological_status": None, + "primary_diagnosis": "Squamous cell carcinoma, NOS", + "primary_gleason_grade": None, + "prior_malignancy": None, + "prior_treatment": None, + "progression_or_recurrence": "not reported", + "residual_disease": None, + "secondary_gleason_grade": None, + "site_of_resection_or_biopsy": "Larynx, NOS", + "state": "released", + "submitter_id": "GENIE-DFCI-010671-11105_diagnosis", + "supratentorial_localization": None, + "synchronous_malignancy": None, + "tissue_or_organ_of_origin": "Larynx, NOS", + "tumor_confined_to_organ_of_origin": None, + "tumor_focality": None, + "tumor_grade": "Not Reported", + "tumor_largest_dimension_diameter": None, + "tumor_regression_grade": None, + "tumor_stage": "not reported", + "updated_datetime": "2019-11-18T13:54:59.294543-06:00", + "vascular_invasion_present": None, + "vascular_invasion_type": None, + "weiss_assessment_score": None, + "wilms_tumor_histologic_subtype": None, + "year_of_diagnosis": None, + } + ], + "diagnosis_ids": ["842d6984-7c03-4ab6-95db-42fa2ea699db"], + "disease_type": "Squamous Cell Neoplasms", + "id": "422a72e7-fe76-411d-b59e-1f0f0812c3cf", + "index_date": "Initial Genomic Sequencing", + "lost_to_followup": None, + "primary_site": "Larynx", + "sample_ids": ["6f9eeaa3-8bd1-479c-a0fc-98317eb458dc"], + "samples": [ + { + "biospecimen_anatomic_site": None, + "biospecimen_laterality": None, + "catalog_reference": None, + "composition": None, + "created_datetime": "2018-09-24T17:56:43.873530-05:00", + "current_weight": None, + "days_to_collection": None, + "days_to_sample_procurement": None, + "diagnosis_pathologically_confirmed": None, + "distance_normal_to_tumor": None, + "distributor_reference": None, + "freezing_method": None, + "growth_rate": None, + "initial_weight": None, + "intermediate_dimension": None, + "is_ffpe": None, + "longest_dimension": None, + "method_of_sample_procurement": None, + "oct_embedded": None, + "passage_count": None, + "pathology_report_uuid": None, + "preservation_method": None, + "sample_id": "6f9eeaa3-8bd1-479c-a0fc-98317eb458dc", + "sample_type": "Primary Tumor", + "sample_type_id": None, + "shortest_dimension": None, + "state": "released", + "submitter_id": "GENIE-DFCI-010671-11105", + "time_between_clamping_and_freezing": None, + "time_between_excision_and_freezing": None, + "tissue_type": "Not Reported", + "tumor_code": None, + "tumor_code_id": None, + "tumor_descriptor": None, + "updated_datetime": "2019-11-18T13:54:59.294543-06:00", + } + ], + "state": "released", + "submitter_aliquot_ids": ["GENIE-DFCI-010671-11105_aliquot"], + "submitter_diagnosis_ids": ["GENIE-DFCI-010671-11105_diagnosis"], + "submitter_id": "GENIE-DFCI-010671", + "submitter_sample_ids": ["GENIE-DFCI-010671-11105"], + "updated_datetime": "2019-11-18T13:54:59.294543-06:00", + } + + assert case1["primary_site"] == "Larynx" + + diagnosis = transform_diagnosis(case1["diagnoses"][0], case1) assert type(diagnosis) is ccdh.Diagnosis - assert diagnosis.id == '842d6984-7c03-4ab6-95db-42fa2ea699db' - assert diagnosis.metastatic_site == [create_body_site('Larynx')] + assert diagnosis.id == "842d6984-7c03-4ab6-95db-42fa2ea699db" + assert diagnosis.metastatic_site == [create_body_site("Larynx")] + def test_transform_gdc_data(): """ Transform the GDC JSON data into JSON-LD. """ - with open('head-and-mouth/gdc-head-and-mouth.json') as file: + with open("head-and-mouth/gdc-head-and-mouth.json") as file: gdc_head_and_mouth = json.load(file) assert len(gdc_head_and_mouth) > 0, "At least one GDC Head and Mouth case loaded." @@ -288,7 +443,7 @@ def test_transform_gdc_data(): diagnoses = [] for case in gdc_head_and_mouth: - for diagnosis in case['diagnoses']: + for diagnosis in case["diagnoses"]: diagnosis_as_obj = transform_diagnosis(diagnosis, case) diagnoses.append(diagnosis_as_obj) as_json_str = json_dumper.dumps(diagnosis_as_obj, jsonldContextAsDict) @@ -298,20 +453,19 @@ def test_transform_gdc_data(): # logging.warning(f'Diagnosis {diagnosis} from case {case} transformed into {diagnosis_as_obj}') - as_json_str = json_dumper.dumps({ - '@graph': diagnoses, - '@context': jsonldContextAsDict - }) + as_json_str = json_dumper.dumps( + {"@graph": diagnoses, "@context": jsonldContextAsDict} + ) assert type(as_json_str) is str as_json = json.loads(as_json_str) assert type(as_json) is dict - with open('./head-and-mouth/diagnoses.jsonld', 'w') as f: + with open("./head-and-mouth/diagnoses.jsonld", "w") as f: f.write(as_json_str) # Convert JSON-LD into Turtle. g = rdflib.Graph() g.parse(data=as_json_str, format="json-ld") rdf_as_turtle = g.serialize(format="turtle").decode() - with open('head-and-mouth/diagnoses.ttl', 'w') as file: + with open("head-and-mouth/diagnoses.ttl", "w") as file: file.write(rdf_as_turtle) diff --git a/poetry.lock b/poetry.lock index 39011a8..1c10683 100644 --- a/poetry.lock +++ b/poetry.lock @@ -101,6 +101,33 @@ category = "main" optional = false python-versions = "*" +[[package]] +name = "black" +version = "21.12b0" +description = "The uncompromising code formatter." +category = "main" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +click = ">=7.1.2" +mypy-extensions = ">=0.4.3" +pathspec = ">=0.9.0,<1" +platformdirs = ">=2" +tomli = ">=0.2.6,<2.0.0" +typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""} +typing-extensions = [ + {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}, + {version = "!=3.10.0.1", markers = "python_version >= \"3.10\""}, +] + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +python2 = ["typed-ast (>=1.4.3)"] +uvloop = ["uvloop (>=0.15.2)"] + [[package]] name = "bleach" version = "4.1.0" @@ -252,20 +279,6 @@ category = "main" optional = false python-versions = ">=3.6" -[[package]] -name = "flake8" -version = "4.0.1" -description = "the modular source code checker: pep8 pyflakes and co" -category = "dev" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -importlib-metadata = {version = "<4.3", markers = "python_version < \"3.8\""} -mccabe = ">=0.6.0,<0.7.0" -pycodestyle = ">=2.8.0,<2.9.0" -pyflakes = ">=2.4.0,<2.5.0" - [[package]] name = "frozendict" version = "2.0.7" @@ -787,14 +800,6 @@ python-versions = ">=3.5" [package.dependencies] traitlets = "*" -[[package]] -name = "mccabe" -version = "0.6.1" -description = "McCabe checker, plugin for flake8" -category = "dev" -optional = false -python-versions = "*" - [[package]] name = "mdit-py-plugins" version = "0.2.8" @@ -819,6 +824,14 @@ category = "main" optional = false python-versions = "*" +[[package]] +name = "mypy-extensions" +version = "0.4.3" +description = "Experimental type system extensions for programs checked with the mypy typechecker." +category = "main" +optional = false +python-versions = "*" + [[package]] name = "myst-parser" version = "0.15.2" @@ -1025,6 +1038,14 @@ python-versions = ">=3.6" qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] testing = ["docopt", "pytest (<6.0.0)"] +[[package]] +name = "pathspec" +version = "0.9.0" +description = "Utility library for gitignore style pattern matching of file paths." +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" + [[package]] name = "pexpect" version = "4.8.0" @@ -1044,6 +1065,18 @@ category = "main" optional = false python-versions = "*" +[[package]] +name = "platformdirs" +version = "2.4.0" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"] +test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] + [[package]] name = "pluggy" version = "1.0.0" @@ -1128,14 +1161,6 @@ category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -[[package]] -name = "pycodestyle" -version = "2.8.0" -description = "Python style guide checker" -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" - [[package]] name = "pycparser" version = "2.21" @@ -1159,14 +1184,6 @@ typing-extensions = ">=3.7.4.3" dotenv = ["python-dotenv (>=0.10.4)"] email = ["email-validator (>=1.0.3)"] -[[package]] -name = "pyflakes" -version = "2.4.0" -description = "passive checker of Python programs" -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - [[package]] name = "pygments" version = "2.10.0" @@ -1747,6 +1764,14 @@ category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +[[package]] +name = "tomli" +version = "1.2.2" +description = "A lil' TOML parser" +category = "main" +optional = false +python-versions = ">=3.6" + [[package]] name = "tornado" version = "6.1" @@ -1766,6 +1791,14 @@ python-versions = ">=3.7" [package.extras] test = ["pytest"] +[[package]] +name = "typed-ast" +version = "1.5.1" +description = "a fork of Python 2 and 3 ast modules with type comment support" +category = "main" +optional = false +python-versions = ">=3.6" + [[package]] name = "typing-extensions" version = "4.0.0" @@ -1848,7 +1881,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" python-versions = ">=3.7,<4.0" -content-hash = "0f12ef85bb52c1084907a62d0f496b92970debfee6a6dc58880cd2c1755feaa4" +content-hash = "8cbd93a8ec1d482be37131cf5354c1458ae2fc6db3fa240bb1b76c7feea23ef1" [metadata.files] alabaster = [ @@ -1899,6 +1932,10 @@ backcall = [ {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, ] +black = [ + {file = "black-21.12b0-py3-none-any.whl", hash = "sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f"}, + {file = "black-21.12b0.tar.gz", hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3"}, +] bleach = [ {file = "bleach-4.1.0-py2.py3-none-any.whl", hash = "sha256:4d2651ab93271d1129ac9cbc679f524565cc8a1b791909c4a51eac4446a15994"}, {file = "bleach-4.1.0.tar.gz", hash = "sha256:0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da"}, @@ -2029,10 +2066,6 @@ et-xmlfile = [ {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, ] -flake8 = [ - {file = "flake8-4.0.1-py2.py3-none-any.whl", hash = "sha256:479b1304f72536a55948cb40a32dce8bb0ffe3501e26eaf292c7e60eb5e0428d"}, - {file = "flake8-4.0.1.tar.gz", hash = "sha256:806e034dda44114815e23c16ef92f95c91e4c71100ff52813adf7132a6ad870d"}, -] frozendict = [ {file = "frozendict-2.0.7-py3-none-any.whl", hash = "sha256:d650f9cf3d2c5438b1631488a975a49b3bdd12c7a97eec59b85e57821eebf28a"}, {file = "frozendict-2.0.7.tar.gz", hash = "sha256:a68f609d1af67da80b45519fdcfca2d60249c0a8c96e68279c1b6ddd92128204"}, @@ -2352,10 +2385,6 @@ matplotlib-inline = [ {file = "matplotlib-inline-0.1.3.tar.gz", hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee"}, {file = "matplotlib_inline-0.1.3-py3-none-any.whl", hash = "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c"}, ] -mccabe = [ - {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, - {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, -] mdit-py-plugins = [ {file = "mdit-py-plugins-0.2.8.tar.gz", hash = "sha256:5991cef645502e80a5388ec4fc20885d2313d4871e8b8e320ca2de14ac0c015f"}, {file = "mdit_py_plugins-0.2.8-py3-none-any.whl", hash = "sha256:1833bf738e038e35d89cb3a07eb0d227ed647ce7dd357579b65343740c6d249c"}, @@ -2364,6 +2393,10 @@ mistune = [ {file = "mistune-0.8.4-py2.py3-none-any.whl", hash = "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4"}, {file = "mistune-0.8.4.tar.gz", hash = "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"}, ] +mypy-extensions = [ + {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, + {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, +] myst-parser = [ {file = "myst-parser-0.15.2.tar.gz", hash = "sha256:f7f3b2d62db7655cde658eb5d62b2ec2a4631308137bd8d10f296a40d57bbbeb"}, {file = "myst_parser-0.15.2-py3-none-any.whl", hash = "sha256:40124b6f27a4c42ac7f06b385e23a9dcd03d84801e9c7130b59b3729a554b1f9"}, @@ -2465,6 +2498,10 @@ parso = [ {file = "parso-0.8.2-py2.py3-none-any.whl", hash = "sha256:a8c4922db71e4fdb90e0d0bc6e50f9b273d3397925e5e60a717e719201778d22"}, {file = "parso-0.8.2.tar.gz", hash = "sha256:12b83492c6239ce32ff5eed6d3639d6a536170723c6f3f1506869f1ace413398"}, ] +pathspec = [ + {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, + {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, +] pexpect = [ {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, @@ -2473,6 +2510,10 @@ pickleshare = [ {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, ] +platformdirs = [ + {file = "platformdirs-2.4.0-py3-none-any.whl", hash = "sha256:8868bbe3c3c80d42f20156f22e7131d2fb321f5bc86a2a345375c6481a67021d"}, + {file = "platformdirs-2.4.0.tar.gz", hash = "sha256:367a5e80b3d04d2428ffa76d33f124cf11e8fff2acdaa9b43d545f5c7d661ef2"}, +] pluggy = [ {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, @@ -2506,10 +2547,6 @@ py = [ {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, ] -pycodestyle = [ - {file = "pycodestyle-2.8.0-py2.py3-none-any.whl", hash = "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20"}, - {file = "pycodestyle-2.8.0.tar.gz", hash = "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"}, -] pycparser = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -2538,10 +2575,6 @@ pydantic = [ {file = "pydantic-1.8.2-py3-none-any.whl", hash = "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833"}, {file = "pydantic-1.8.2.tar.gz", hash = "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b"}, ] -pyflakes = [ - {file = "pyflakes-2.4.0-py2.py3-none-any.whl", hash = "sha256:3bb3a3f256f4b7968c9c788781e4ff07dce46bdf12339dcda61053375426ee2e"}, - {file = "pyflakes-2.4.0.tar.gz", hash = "sha256:05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c"}, -] pygments = [ {file = "Pygments-2.10.0-py3-none-any.whl", hash = "sha256:b8e67fe6af78f492b3c4b3e2970c0624cbf08beb1e493b2c99b9fa1b67a20380"}, {file = "Pygments-2.10.0.tar.gz", hash = "sha256:f398865f7eb6874156579fdf36bc840a03cab64d1cde9e93d68f46a425ec52c6"}, @@ -2871,6 +2904,10 @@ toml = [ {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] +tomli = [ + {file = "tomli-1.2.2-py3-none-any.whl", hash = "sha256:f04066f68f5554911363063a30b108d2b5a5b1a010aa8b6132af78489fe3aade"}, + {file = "tomli-1.2.2.tar.gz", hash = "sha256:c6ce0015eb38820eaf32b5db832dbc26deb3dd427bd5f6556cf0acac2c214fee"}, +] tornado = [ {file = "tornado-6.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32"}, {file = "tornado-6.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c"}, @@ -2918,6 +2955,27 @@ traitlets = [ {file = "traitlets-5.1.1-py3-none-any.whl", hash = "sha256:2d313cc50a42cd6c277e7d7dc8d4d7fedd06a2c215f78766ae7b1a66277e0033"}, {file = "traitlets-5.1.1.tar.gz", hash = "sha256:059f456c5a7c1c82b98c2e8c799f39c9b8128f6d0d46941ee118daace9eb70c7"}, ] +typed-ast = [ + {file = "typed_ast-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d8314c92414ce7481eee7ad42b353943679cf6f30237b5ecbf7d835519e1212"}, + {file = "typed_ast-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b53ae5de5500529c76225d18eeb060efbcec90ad5e030713fe8dab0fb4531631"}, + {file = "typed_ast-1.5.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:24058827d8f5d633f97223f5148a7d22628099a3d2efe06654ce872f46f07cdb"}, + {file = "typed_ast-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a6d495c1ef572519a7bac9534dbf6d94c40e5b6a608ef41136133377bba4aa08"}, + {file = "typed_ast-1.5.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:de4ecae89c7d8b56169473e08f6bfd2df7f95015591f43126e4ea7865928677e"}, + {file = "typed_ast-1.5.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:256115a5bc7ea9e665c6314ed6671ee2c08ca380f9d5f130bd4d2c1f5848d695"}, + {file = "typed_ast-1.5.1-cp36-cp36m-win_amd64.whl", hash = "sha256:7c42707ab981b6cf4b73490c16e9d17fcd5227039720ca14abe415d39a173a30"}, + {file = "typed_ast-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:71dcda943a471d826ea930dd449ac7e76db7be778fcd722deb63642bab32ea3f"}, + {file = "typed_ast-1.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4f30a2bcd8e68adbb791ce1567fdb897357506f7ea6716f6bbdd3053ac4d9471"}, + {file = "typed_ast-1.5.1-cp37-cp37m-win_amd64.whl", hash = "sha256:ca9e8300d8ba0b66d140820cf463438c8e7b4cdc6fd710c059bfcfb1531d03fb"}, + {file = "typed_ast-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9caaf2b440efb39ecbc45e2fabde809cbe56272719131a6318fd9bf08b58e2cb"}, + {file = "typed_ast-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c9bcad65d66d594bffab8575f39420fe0ee96f66e23c4d927ebb4e24354ec1af"}, + {file = "typed_ast-1.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:591bc04e507595887160ed7aa8d6785867fb86c5793911be79ccede61ae96f4d"}, + {file = "typed_ast-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:a80d84f535642420dd17e16ae25bb46c7f4c16ee231105e7f3eb43976a89670a"}, + {file = "typed_ast-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:38cf5c642fa808300bae1281460d4f9b7617cf864d4e383054a5ef336e344d32"}, + {file = "typed_ast-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5b6ab14c56bc9c7e3c30228a0a0b54b915b1579613f6e463ba6f4eb1382e7fd4"}, + {file = "typed_ast-1.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a2b8d7007f6280e36fa42652df47087ac7b0a7d7f09f9468f07792ba646aac2d"}, + {file = "typed_ast-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:b6d17f37f6edd879141e64a5db17b67488cfeffeedad8c5cec0392305e9bc775"}, + {file = "typed_ast-1.5.1.tar.gz", hash = "sha256:484137cab8ecf47e137260daa20bafbba5f4e3ec7fda1c1e69ab299b75fa81c5"}, +] typing-extensions = [ {file = "typing_extensions-4.0.0-py3-none-any.whl", hash = "sha256:829704698b22e13ec9eaf959122315eabb370b0884400e9818334d8b677023d9"}, {file = "typing_extensions-4.0.0.tar.gz", hash = "sha256:2cdf80e4e04866a9b3689a51869016d36db0814d84b8d8a568d22781d45d27ed"}, diff --git a/pyproject.toml b/pyproject.toml index a97b5b0..200cd04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,9 +16,9 @@ PyLD = "^2.0.3" pip = "^21.3.1" crdch-model = "^1.1.5" pandas = "^1.3.4" +black = "^21.12b0" [tool.poetry.dev-dependencies] -flake8 = "^4.0.1" [build-system] requires = ["poetry-core>=1.0.0"] From 959e3231ddb45527dc4793c4a6f1f974938364db Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 16:43:09 -0500 Subject: [PATCH 16/18] Added black[jupyter] and standardized code. --- GDC to CCDH conversion.ipynb | 233 ++++++++++-------- .../CDA example for subject 09CO022.ipynb | 64 +++-- .../Head and Mouth Cancer Datasets.ipynb | 37 +-- poetry.lock | 16 +- pyproject.toml | 2 +- 5 files changed, 197 insertions(+), 155 deletions(-) diff --git a/GDC to CCDH conversion.ipynb b/GDC to CCDH conversion.ipynb index 13e8d8b..1434e99 100644 --- a/GDC to CCDH conversion.ipynb +++ b/GDC to CCDH conversion.ipynb @@ -600,9 +600,9 @@ "import json\n", "import pandas\n", "\n", - "with open('head-and-mouth/gdc-head-and-mouth.json') as file:\n", + "with open(\"head-and-mouth/gdc-head-and-mouth.json\") as file:\n", " gdc_head_and_mouth = json.load(file)\n", - " \n", + "\n", "pandas.DataFrame(gdc_head_and_mouth)" ] }, @@ -654,11 +654,17 @@ "print(f\"Documentation for Specimen: {ccdh.Specimen.__doc__}\")\n", "\n", "# Documentation for an enumeration.\n", - "print(f\"Documentation for Specimen.specimen_type: {ccdh.EnumCCDHSpecimenSpecimenType.__doc__}\")\n", + "print(\n", + " f\"Documentation for Specimen.specimen_type: {ccdh.EnumCCDHSpecimenSpecimenType.__doc__}\"\n", + ")\n", "\n", "# List of permissible values for Specimen.specimen_type\n", "print(\"Permissible values in enumeration Specimen.specimen_type:\")\n", - "pvalues = [pv for key, pv in ccdh.EnumCCDHSpecimenSpecimenType.__dict__.items() if isinstance(pv, ccdh.PermissibleValue)]\n", + "pvalues = [\n", + " pv\n", + " for key, pv in ccdh.EnumCCDHSpecimenSpecimenType.__dict__.items()\n", + " if isinstance(pv, ccdh.PermissibleValue)\n", + "]\n", "for pv in pvalues:\n", " print(f' - Value \"{pv.text}\": {pv.description}')" ] @@ -704,35 +710,34 @@ ], "source": [ "def create_body_site(site_name):\n", - " \"\"\" Create a CCDH BodySite based on the name of a site in the human body.\"\"\"\n", - " \n", + " \"\"\"Create a CCDH BodySite based on the name of a site in the human body.\"\"\"\n", + "\n", " # Accept 'None'.\n", " if site_name is None:\n", " return None\n", - " \n", + "\n", " # Some body sites are not currently included in the CCDH model. We will need to translate these sites\n", " # into values that *are* included in the CCDH model.\n", - " site_mappings = {\n", - " 'Larynx, NOS': ccdh.EnumCCDHBodySiteSite.Larynx\n", - " }\n", - " \n", + " site_mappings = {\"Larynx, NOS\": ccdh.EnumCCDHBodySiteSite.Larynx}\n", + "\n", " # Map values if needed. Otherwise, pass them through unmapped.\n", " if site_name in site_mappings:\n", " return ccdh.BodySite(site=(site_mappings[site_name]))\n", - " \n", + "\n", " return ccdh.BodySite(site=site_name)\n", "\n", + "\n", "# Try to create a body site for a site name not currently included in the CCDH model.\n", "try:\n", - " create_body_site('Laryn') # Note misspelling.\n", + " create_body_site(\"Laryn\") # Note misspelling.\n", "except ValueError as v:\n", - " print(f'Could not create BodySite: {v}')\n", + " print(f\"Could not create BodySite: {v}\")\n", "\n", "# Using a valid name generates no errors.\n", - "create_body_site('Larynx') \n", + "create_body_site(\"Larynx\")\n", "\n", "# Using a mapped name generates no errors, as it is mapped to a valid name.\n", - "create_body_site('Larynx, NOS')" + "create_body_site(\"Larynx, NOS\")" ] }, { @@ -764,75 +769,107 @@ ], "source": [ "def create_stage_observation(type, value):\n", - " \"\"\" Create a CCDHCancerStageObservation from a type of observation and a codeable concept.\"\"\"\n", + " \"\"\"Create a CCDHCancerStageObservation from a type of observation and a codeable concept.\"\"\"\n", " # As with the body site example above, we need to map GDC values into the values\n", " # allowed under the CCDH model.\n", " stage_mappings = {\n", - " 'not reported': 'Not Reported',\n", - " 'unknown': 'Unknown',\n", - " 'stage i': 'Stage I',\n", - " 'stage ii': 'Stage II',\n", - " 'stage iii': 'Stage III',\n", - " 'stage iva': 'Stage IVA',\n", - " 'stage ivb': 'Stage IVB',\n", - " 'stage ivc': 'Stage IVC',\n", + " \"not reported\": \"Not Reported\",\n", + " \"unknown\": \"Unknown\",\n", + " \"stage i\": \"Stage I\",\n", + " \"stage ii\": \"Stage II\",\n", + " \"stage iii\": \"Stage III\",\n", + " \"stage iva\": \"Stage IVA\",\n", + " \"stage ivb\": \"Stage IVB\",\n", + " \"stage ivc\": \"Stage IVC\",\n", " }\n", - " \n", + "\n", " if value in stage_mappings:\n", " return ccdh.CancerStageObservation(\n", - " observation_type=type,\n", - " valueCodeableConcept=stage_mappings[value]\n", + " observation_type=type, valueCodeableConcept=stage_mappings[value]\n", " )\n", - " \n", + "\n", " return ccdh.CancerStageObservation(\n", - " observation_type=type,\n", - " valueCodeableConcept=value\n", + " observation_type=type, valueCodeableConcept=value\n", " )\n", "\n", + "\n", "def create_stage_from_gdc(diagnosis):\n", " cancer_stage_method_type = None\n", - " if diagnosis.get('ajcc_staging_system_edition') == '7th':\n", - " cancer_stage_method_type = 'AJCC staging system 7th edition'\n", + " if diagnosis.get(\"ajcc_staging_system_edition\") == \"7th\":\n", + " cancer_stage_method_type = \"AJCC staging system 7th edition\"\n", + "\n", + " # Create an observation set\n", + " obs = ccdh.CancerStageObservationSet(method_type=cancer_stage_method_type)\n", "\n", - " # Create an observation set \n", - " obs = ccdh.CancerStageObservationSet(\n", - " method_type=cancer_stage_method_type\n", - " )\n", - " \n", " # Add observations for every type of observation in the GDC diagnosis.\n", - " if diagnosis.get('tumor_stage') is not None:\n", - " obs.observations.append(create_stage_observation('Overall', diagnosis.get('tumor_stage')))\n", - " \n", - " if diagnosis.get('ajcc_clinical_stage') is not None:\n", - " obs.observations.append(create_stage_observation('Clinical Overall', diagnosis.get('ajcc_clinical_stage')))\n", - " \n", - " if diagnosis.get('ajcc_clinical_t') is not None:\n", - " obs.observations.append(create_stage_observation('Clinical Tumor (T)', diagnosis.get('ajcc_clinical_t')))\n", - " \n", - " if diagnosis.get('ajcc_clinical_n') is not None:\n", - " obs.observations.append(create_stage_observation('Clinical Node (N)', diagnosis.get('ajcc_clinical_n')))\n", - " \n", - " if diagnosis.get('ajcc_clinical_m') is not None:\n", - " obs.observations.append(create_stage_observation('Clinical Metastasis (M)', diagnosis.get('ajcc_clinical_m')))\n", - " \n", - " if diagnosis.get('ajcc_pathologic_stage') is not None:\n", - " obs.observations.append(create_stage_observation('Pathological Overall', diagnosis.get('ajcc_pathologic_stage')))\n", - " \n", - " if diagnosis.get('ajcc_pathologic_t') is not None:\n", - " obs.observations.append(create_stage_observation('Pathological Tumor (T)', diagnosis.get('ajcc_pathologic_t')))\n", - " \n", - " if diagnosis.get('ajcc_pathologic_n') is not None:\n", - " obs.observations.append(create_stage_observation('Pathological Node (N)', diagnosis.get('ajcc_pathologic_n')))\n", - " \n", - " if diagnosis.get('ajcc_pathologic_m') is not None:\n", - " obs.observations.append(create_stage_observation('Pathological Metastasis (M)', diagnosis.get('ajcc_pathologic_m')))\n", - " \n", + " if diagnosis.get(\"tumor_stage\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\"Overall\", diagnosis.get(\"tumor_stage\"))\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_clinical_stage\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Clinical Overall\", diagnosis.get(\"ajcc_clinical_stage\")\n", + " )\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_clinical_t\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Clinical Tumor (T)\", diagnosis.get(\"ajcc_clinical_t\")\n", + " )\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_clinical_n\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Clinical Node (N)\", diagnosis.get(\"ajcc_clinical_n\")\n", + " )\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_clinical_m\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Clinical Metastasis (M)\", diagnosis.get(\"ajcc_clinical_m\")\n", + " )\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_pathologic_stage\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Pathological Overall\", diagnosis.get(\"ajcc_pathologic_stage\")\n", + " )\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_pathologic_t\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Pathological Tumor (T)\", diagnosis.get(\"ajcc_pathologic_t\")\n", + " )\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_pathologic_n\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Pathological Node (N)\", diagnosis.get(\"ajcc_pathologic_n\")\n", + " )\n", + " )\n", + "\n", + " if diagnosis.get(\"ajcc_pathologic_m\") is not None:\n", + " obs.observations.append(\n", + " create_stage_observation(\n", + " \"Pathological Metastasis (M)\", diagnosis.get(\"ajcc_pathologic_m\")\n", + " )\n", + " )\n", + "\n", " return obs\n", "\n", + "\n", "# Test transform with the diagnosis from the first loaded case.\n", "# Note that the resulting CancerStageObservationSet contains descriptions for the concepts included in it.\n", "# example_observation_set = create_stage_from_gdc(gdc_head_and_mouth[131]['diagnoses'][0], ccdh.Subject(id='1234'))\n", - "example_observation_set = create_stage_from_gdc(gdc_head_and_mouth[131]['diagnoses'][0])\n", + "example_observation_set = create_stage_from_gdc(gdc_head_and_mouth[131][\"diagnoses\"][0])\n", "example_observation_set" ] }, @@ -961,20 +998,19 @@ " \"\"\"\n", " A method for transforming a GDC Sample into CCDH Specimen.\n", " \"\"\"\n", - " specimen = ccdh.Specimen(id = sample.get('sample_id'))\n", - " specimen.source_material_type = sample.get('sample_type')\n", - " specimen.general_tissue_morphology = sample.get('tissue_type')\n", - " specimen.specific_tissue_morphology = sample.get('tumor_code')\n", - " specimen.tumor_status_at_collection = sample.get('tumor_descriptor')\n", + " specimen = ccdh.Specimen(id=sample.get(\"sample_id\"))\n", + " specimen.source_material_type = sample.get(\"sample_type\")\n", + " specimen.general_tissue_morphology = sample.get(\"tissue_type\")\n", + " specimen.specific_tissue_morphology = sample.get(\"tumor_code\")\n", + " specimen.tumor_status_at_collection = sample.get(\"tumor_descriptor\")\n", " specimen.creation_activity = ccdh.SpecimenCreationActivity(\n", - " date_ended=ccdh.TimePoint(\n", - " dateTime=sample.get('created_datetime')\n", - " )\n", + " date_ended=ccdh.TimePoint(dateTime=sample.get(\"created_datetime\"))\n", " )\n", " return specimen\n", "\n", + "\n", "# Let's try creating a test specimen.\n", - "test_specimen = transform_sample_to_specimen(gdc_head_and_mouth[2]['samples'][0])\n", + "test_specimen = transform_sample_to_specimen(gdc_head_and_mouth[2][\"samples\"][0])\n", "test_specimen" ] }, @@ -1097,33 +1133,31 @@ "source": [ "def transform_diagnosis(diagnosis, case):\n", " ccdh_diagnosis = ccdh.Diagnosis(\n", - " id=diagnosis.get('diagnosis_id'),\n", - " condition=diagnosis.get('primary_diagnosis'),\n", - " morphology=diagnosis.get('morphology'),\n", - " grade=diagnosis.get('grade'),\n", + " id=diagnosis.get(\"diagnosis_id\"),\n", + " condition=diagnosis.get(\"primary_diagnosis\"),\n", + " morphology=diagnosis.get(\"morphology\"),\n", + " grade=diagnosis.get(\"grade\"),\n", " stage=create_stage_from_gdc(diagnosis),\n", - " year_at_diagnosis=diagnosis.get('year_of_diagnosis'),\n", + " year_at_diagnosis=diagnosis.get(\"year_of_diagnosis\"),\n", " related_specimen=[\n", - " transform_sample_to_specimen(\n", - " sample\n", - " ) for sample in case.get('samples')\n", - " ]\n", + " transform_sample_to_specimen(sample) for sample in case.get(\"samples\")\n", + " ],\n", " )\n", " ccdh_diagnosis.identifier = [\n", - " ccdh.Identifier(\n", - " system='GDC-submitter-id',\n", - " value=diagnosis.get('submitter_id')\n", - " )\n", + " ccdh.Identifier(system=\"GDC-submitter-id\", value=diagnosis.get(\"submitter_id\"))\n", " ]\n", - " \n", - " if 'primary_site' in case and case['primary_site'] != '':\n", - " body_site = create_body_site(case['primary_site'])\n", + "\n", + " if \"primary_site\" in case and case[\"primary_site\"] != \"\":\n", + " body_site = create_body_site(case[\"primary_site\"])\n", " if body_site is not None:\n", " ccdh_diagnosis.metastatic_site.append(body_site)\n", "\n", " return ccdh_diagnosis\n", "\n", - "example_diagnosis = transform_diagnosis(gdc_head_and_mouth[131]['diagnoses'][0], gdc_head_and_mouth[131])\n", + "\n", + "example_diagnosis = transform_diagnosis(\n", + " gdc_head_and_mouth[131][\"diagnoses\"][0], gdc_head_and_mouth[131]\n", + ")\n", "print(yaml_dumper.dumps(example_diagnosis))" ] }, @@ -1953,7 +1987,7 @@ "from linkml.generators.jsonldcontextgen import ContextGenerator\n", "from linkml_runtime.dumpers import json_dumper\n", "\n", - "jsonldContext = ContextGenerator('ccdh/ccdhmodel.yaml').serialize()\n", + "jsonldContext = ContextGenerator(\"ccdh/ccdhmodel.yaml\").serialize()\n", "jsonldContextAsDict = json.loads(jsonldContext)\n", "\n", "# Display the example diagnosis we constructed in a previous step.\n", @@ -1977,14 +2011,11 @@ "source": [ "diagnoses = []\n", "for case in gdc_head_and_mouth:\n", - " for diagnosis in case['diagnoses']:\n", + " for diagnosis in case[\"diagnoses\"]:\n", " diagnoses.append(transform_diagnosis(diagnosis, case))\n", "\n", - "jsonld = json_dumper.dumps({\n", - " '@graph': diagnoses,\n", - " '@context': jsonldContextAsDict\n", - "})\n", - "with open('head-and-mouth/diagnoses.jsonld', 'w') as file:\n", + "jsonld = json_dumper.dumps({\"@graph\": diagnoses, \"@context\": jsonldContextAsDict})\n", + "with open(\"head-and-mouth/diagnoses.jsonld\", \"w\") as file:\n", " file.write(jsonld)" ] }, @@ -2037,8 +2068,8 @@ "g = Graph()\n", "g.parse(data=jsonld, format=\"json-ld\")\n", "rdfAsTurtle = g.serialize(format=\"turtle\").decode()\n", - "print(''.join(rdfAsTurtle[0:1000]))\n", - "with open('head-and-mouth/diagnoses.ttl', 'w') as file:\n", + "print(\"\".join(rdfAsTurtle[0:1000]))\n", + "with open(\"head-and-mouth/diagnoses.ttl\", \"w\") as file:\n", " file.write(rdfAsTurtle)" ] } diff --git a/cptac2-subject-09CO022/CDA example for subject 09CO022.ipynb b/cptac2-subject-09CO022/CDA example for subject 09CO022.ipynb index cea5ec7..4764e44 100644 --- a/cptac2-subject-09CO022/CDA example for subject 09CO022.ipynb +++ b/cptac2-subject-09CO022/CDA example for subject 09CO022.ipynb @@ -64,7 +64,7 @@ "\n", "# Install cdapython so we can access the CDA API.\n", "!{sys.executable} -m pip install git+https://github.com/CancerDataAggregator/cda-python.git\n", - " \n", + "\n", "# Install pandas.\n", "!{sys.executable} -m pip install pandas" ] @@ -86,7 +86,7 @@ "metadata": {}, "outputs": [], "source": [ - "submitter_id = '09CO022'" + "submitter_id = \"09CO022\"" ] }, { @@ -234,25 +234,19 @@ "# Search by subject_id.\n", "cases_endpt = \"https://api.gdc.cancer.gov/cases\"\n", "\n", - "filters = {\n", - " \"op\": \"in\",\n", - " \"content\":{\n", - " \"field\": \"submitter_id\",\n", - " \"value\": [ submitter_id ]\n", - " }\n", - "}\n", + "filters = {\"op\": \"in\", \"content\": {\"field\": \"submitter_id\", \"value\": [submitter_id]}}\n", "\n", "params = {\n", " \"filters\": json.dumps(filters),\n", " \"expand\": \"diagnoses,samples\",\n", " \"format\": \"JSON\",\n", - " \"size\": \"2\"\n", + " \"size\": \"2\",\n", "}\n", "\n", - "response = requests.get(cases_endpt, params = params)\n", + "response = requests.get(cases_endpt, params=params)\n", "result = json.loads(response.content)\n", "\n", - "pandas.DataFrame(result['data']['hits'])" + "pandas.DataFrame(result[\"data\"][\"hits\"])" ] }, { @@ -376,14 +370,14 @@ } ], "source": [ - "cases = result['data']['hits']\n", + "cases = result[\"data\"][\"hits\"]\n", "\n", "# We should only have one case for subject 09CO022.\n", "assert len(cases) == 1\n", "case = cases[0]\n", "\n", "# Write this to a file.\n", - "with open('gdc_subject_09CO022.json', 'w') as f:\n", + "with open(\"gdc_subject_09CO022.json\", \"w\") as f:\n", " json.dump(case, f, indent=4, sort_keys=True)\n", "\n", "# What information do we have on this case?\n", @@ -421,15 +415,15 @@ " \"filters\": json.dumps(filters),\n", " \"expand\": \"diagnoses,samples\",\n", " \"format\": \"TSV\",\n", - " \"size\": \"2\"\n", + " \"size\": \"2\",\n", "}\n", "\n", - "response = requests.get(cases_endpt, params = params)\n", + "response = requests.get(cases_endpt, params=params)\n", "\n", "# Write this to a file.\n", - "with open('gdc_subject_09CO022.tsv', 'w') as f:\n", + "with open(\"gdc_subject_09CO022.tsv\", \"w\") as f:\n", " f.write(response.text)\n", - " \n", + "\n", "print(f\"{len(response.text)} characters written to 'gdc_subject_09CO022.tsv'\")\n", "\n", "# Write to XML.\n", @@ -437,10 +431,10 @@ " \"filters\": json.dumps(filters),\n", " \"expand\": \"diagnoses,samples\",\n", " \"format\": \"XML\",\n", - " \"size\": \"2\"\n", + " \"size\": \"2\",\n", "}\n", "\n", - "response = requests.get(cases_endpt, params = params)\n", + "response = requests.get(cases_endpt, params=params)\n", "\n", "# Write this to a file.\n", "import xml.dom.minidom\n", @@ -448,9 +442,9 @@ "dom = xml.dom.minidom.parseString(response.text)\n", "pretty_xml_as_string = dom.toprettyxml()\n", "\n", - "with open('gdc_subject_09CO022.xml', 'w') as f:\n", + "with open(\"gdc_subject_09CO022.xml\", \"w\") as f:\n", " f.write(pretty_xml_as_string)\n", - " \n", + "\n", "print(f\"{len(response.text)} characters written to 'gdc_subject_09CO022.xml'\")" ] }, @@ -603,23 +597,23 @@ " tumor_largest_dimension_diameter\n", " }\n", " }\n", - "}\"\"\" % (submitter_id)\n", + "}\"\"\" % (\n", + " submitter_id\n", + ")\n", "\n", - "params = {\n", - " \"query\": graphql_query\n", - "}\n", + "params = {\"query\": graphql_query}\n", "\n", "pdc_graphql_endpoint = \"https://pdc.cancer.gov/graphql\"\n", "\n", - "response = requests.get(pdc_graphql_endpoint, params = params)\n", + "response = requests.get(pdc_graphql_endpoint, params=params)\n", "result = json.loads(response.content)\n", "\n", - "cases = result['data']['case']\n", + "cases = result[\"data\"][\"case\"]\n", "assert len(cases) == 1\n", "case = cases[0]\n", "\n", "# Write this to a file.\n", - "with open('pdc_subject_09CO022.json', 'w') as f:\n", + "with open(\"pdc_subject_09CO022.json\", \"w\") as f:\n", " json.dump(case, f, indent=4, sort_keys=True)\n", "\n", "\n", @@ -659,15 +653,15 @@ "source": [ "from cdapython import Q, columns\n", "\n", - "case_id = case['case_id']\n", + "case_id = case[\"case_id\"]\n", "query_by_case_id = Q(f'ResearchSubject.id = \"{case_id}\"')\n", - "results = query_by_case_id.run(limit=2) \n", + "results = query_by_case_id.run(limit=2)\n", "print(results)\n", "\n", "cda_entry = results[0]\n", "\n", "# Write this to a file.\n", - "with open(f'cda_case_{case_id}.json', 'w') as f:\n", + "with open(f\"cda_case_{case_id}.json\", \"w\") as f:\n", " json.dump(cda_entry, f, indent=4, sort_keys=True)\n", "\n", "# cda_entry" @@ -1206,7 +1200,9 @@ } ], "source": [ - "query_by_derived = Q(f'ResearchSubject.Specimen.derived_from_subject = \"{submitter_id}\"')\n", + "query_by_derived = Q(\n", + " f'ResearchSubject.Specimen.derived_from_subject = \"{submitter_id}\"'\n", + ")\n", "results = query_by_derived.run(limit=100)\n", "print(results)\n", "\n", @@ -1215,7 +1211,7 @@ " result_list.append(result)\n", "\n", "# Write this to a file.\n", - "with open(f'cda_derived_from_{submitter_id}.json', 'w') as f:\n", + "with open(f\"cda_derived_from_{submitter_id}.json\", \"w\") as f:\n", " json.dump(result_list, f, indent=4, sort_keys=True)\n", "\n", "pandas.DataFrame(result_list)" diff --git a/head-and-mouth/Head and Mouth Cancer Datasets.ipynb b/head-and-mouth/Head and Mouth Cancer Datasets.ipynb index 4f739cd..209316d 100644 --- a/head-and-mouth/Head and Mouth Cancer Datasets.ipynb +++ b/head-and-mouth/Head and Mouth Cancer Datasets.ipynb @@ -83,15 +83,13 @@ "pdc_graphql_endpoint = \"https://pdc.cancer.gov/graphql\"\n", "\n", "# Step 1. Get a list of all the case IDs relevant to us.\n", - "primary_site = 'Head and Neck'\n", + "primary_site = \"Head and Neck\"\n", "primary_site_query = \"\"\"{ uiCase(primary_site: \"%s\") { case_id } }\"\"\" % (primary_site)\n", "\n", - "response = requests.get(pdc_graphql_endpoint, params = {\n", - " \"query\": primary_site_query\n", - "})\n", + "response = requests.get(pdc_graphql_endpoint, params={\"query\": primary_site_query})\n", "result = json.loads(response.content)\n", "\n", - "case_ids = list(map(lambda case: case['case_id'], result['data']['uiCase']))\n", + "case_ids = list(map(lambda case: case[\"case_id\"], result[\"data\"][\"uiCase\"]))\n", "unique_case_ids = numpy.unique(case_ids)\n", "print(f\"We have {len(case_ids)} case IDs, of which {len(unique_case_ids)} are unique.\")\n", "\n", @@ -329,16 +327,19 @@ "\n", "cases = []\n", "for num, case_id in enumerate(unique_case_ids):\n", - " response = requests.get(pdc_graphql_endpoint, params = {\n", - " \"query\": case_query % (case_id)\n", - " })\n", + " response = requests.get(\n", + " pdc_graphql_endpoint, params={\"query\": case_query % (case_id)}\n", + " )\n", " result = json.loads(response.content)\n", - " case = result['data']['case']\n", + " case = result[\"data\"][\"case\"]\n", " if case and len(case) == 1:\n", " cases.append(case[0])\n", " print(\"Downloaded case %d of %d: %s\" % (num, len(unique_case_ids), case_id))\n", " else:\n", - " print(\"Could not download case %d of %d: %s\" % (num, len(unique_case_ids), case_id))\n", + " print(\n", + " \"Could not download case %d of %d: %s\"\n", + " % (num, len(unique_case_ids), case_id)\n", + " )\n", "\n", "len(cases)" ] @@ -352,7 +353,7 @@ "source": [ "# Before we examine it, let's save this as a file.\n", "\n", - "with open('pdc-head-and-mouth.json', 'w') as file:\n", + "with open(\"pdc-head-and-mouth.json\", \"w\") as file:\n", " json.dump(cases, file, indent=2, sort_keys=True)" ] }, @@ -1078,26 +1079,26 @@ " \"otherandunspecifiedpartsofmouth\",\n", " \"otherandunspecifiedpartsoftongue\",\n", " \"palate\",\n", - " \"tonsil\"\n", - " ]\n", - " }\n", + " \"tonsil\",\n", + " ],\n", + " },\n", "}\n", "\n", "params = {\n", " \"filters\": json.dumps(filters),\n", " \"expand\": \"diagnoses,samples\",\n", " \"format\": \"JSON\",\n", - " \"size\": 1000\n", + " \"size\": 1000,\n", "}\n", "\n", - "response = requests.get(cases_endpt, params = params)\n", + "response = requests.get(cases_endpt, params=params)\n", "result = json.loads(response.content)\n", "\n", "print(f\"Warnings: {result['warnings']}\")\n", "\n", - "gdc_entries = result['data']['hits']\n", + "gdc_entries = result[\"data\"][\"hits\"]\n", "\n", - "with open('gdc-head-and-mouth.json', 'w') as file:\n", + "with open(\"gdc-head-and-mouth.json\", \"w\") as file:\n", " json.dump(gdc_entries, file, indent=2, sort_keys=True)\n", "\n", "pandas.DataFrame(gdc_entries)" diff --git a/poetry.lock b/poetry.lock index 1c10683..209812c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -111,9 +111,11 @@ python-versions = ">=3.6.2" [package.dependencies] click = ">=7.1.2" +ipython = {version = ">=7.8.0", optional = true, markers = "extra == \"jupyter\""} mypy-extensions = ">=0.4.3" pathspec = ">=0.9.0,<1" platformdirs = ">=2" +tokenize-rt = {version = ">=3.2.0", optional = true, markers = "extra == \"jupyter\""} tomli = ">=0.2.6,<2.0.0" typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""} typing-extensions = [ @@ -1756,6 +1758,14 @@ python-versions = ">= 3.5" [package.extras] test = ["pytest", "pathlib2"] +[[package]] +name = "tokenize-rt" +version = "4.2.1" +description = "A wrapper around the stdlib `tokenize` which roundtrips." +category = "dev" +optional = false +python-versions = ">=3.6.1" + [[package]] name = "toml" version = "0.10.2" @@ -1881,7 +1891,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" python-versions = ">=3.7,<4.0" -content-hash = "8cbd93a8ec1d482be37131cf5354c1458ae2fc6db3fa240bb1b76c7feea23ef1" +content-hash = "6e121e3c2e7d79b9c52601ef86e374a0406bbec15acb70217129bb21ecf864d9" [metadata.files] alabaster = [ @@ -2900,6 +2910,10 @@ testpath = [ {file = "testpath-0.5.0-py3-none-any.whl", hash = "sha256:8044f9a0bab6567fc644a3593164e872543bb44225b0e24846e2c89237937589"}, {file = "testpath-0.5.0.tar.gz", hash = "sha256:1acf7a0bcd3004ae8357409fc33751e16d37ccc650921da1094a86581ad1e417"}, ] +tokenize-rt = [ + {file = "tokenize_rt-4.2.1-py2.py3-none-any.whl", hash = "sha256:08a27fa032a81cf45e8858d0ac706004fcd523e8463415ddf1442be38e204ea8"}, + {file = "tokenize_rt-4.2.1.tar.gz", hash = "sha256:0d4f69026fed520f8a1e0103aa36c406ef4661417f20ca643f913e33531b3b94"}, +] toml = [ {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, diff --git a/pyproject.toml b/pyproject.toml index 200cd04..3eace85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,9 +16,9 @@ PyLD = "^2.0.3" pip = "^21.3.1" crdch-model = "^1.1.5" pandas = "^1.3.4" -black = "^21.12b0" [tool.poetry.dev-dependencies] +black = {extras = ["jupyter"], version = "^21.12b0"} [build-system] requires = ["poetry-core>=1.0.0"] From a6b0aae7a7ca828bafa906d7d400e7cd93f8bdad Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 16:44:14 -0500 Subject: [PATCH 17/18] Updated pytest.yaml GitHub Action to use black. --- .github/workflows/pytest.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index a54dbb7..e8ace96 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -33,9 +33,8 @@ jobs: run: | poetry run pytest -svvv - - name: Lint with flake8 + - name: Code formatting with black run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + # run black in check mode + # if files are not formatted correctly, the build will not go through + poetry run black . --check --verbose From 95a36d8a9a94b0c02d66f16fb286c843c2442101 Mon Sep 17 00:00:00 2001 From: Gaurav Vaidya Date: Thu, 9 Dec 2021 16:46:52 -0500 Subject: [PATCH 18/18] Reformated Jupyter Notebooks with black. --- .../Head and Mouth Cancer Datasets.ipynb | 35 +++++++++---------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/head-and-mouth/Head and Mouth Cancer Datasets.ipynb b/head-and-mouth/Head and Mouth Cancer Datasets.ipynb index 19b8fad..fb804a9 100644 --- a/head-and-mouth/Head and Mouth Cancer Datasets.ipynb +++ b/head-and-mouth/Head and Mouth Cancer Datasets.ipynb @@ -53,7 +53,7 @@ "import sys\n", "\n", "# Install pandas\n", - "#!{sys.executable} -m pip install pandas " + "#!{sys.executable} -m pip install pandas" ] }, { @@ -102,7 +102,7 @@ "response = requests.get(pdc_graphql_endpoint, params={\"query\": primary_site_query})\n", "result = json.loads(response.content)\n", "\n", - "case_ids = list(map(lambda case: case['case_id'], result['data']['uiCase']))\n", + "case_ids = list(map(lambda case: case[\"case_id\"], result[\"data\"][\"uiCase\"]))\n", "unique_case_ids = np.unique(case_ids)\n", "print(f\"We have {len(case_ids)} case IDs, of which {len(unique_case_ids)} are unique.\")" ] @@ -345,9 +345,12 @@ " case = result[\"data\"][\"case\"]\n", " if case and len(case) == 1:\n", " cases.append(case[0])\n", - " print(\"Downloaded case %d of %d: %s\" % (num+1, len(unique_case_ids), case_id))\n", + " print(\"Downloaded case %d of %d: %s\" % (num + 1, len(unique_case_ids), case_id))\n", " else:\n", - " print(\"Could not download case %d of %d: %s\" % (num+1, len(unique_case_ids), case_id))\n", + " print(\n", + " \"Could not download case %d of %d: %s\"\n", + " % (num + 1, len(unique_case_ids), case_id)\n", + " )\n", "\n", "len(cases)" ] @@ -395,7 +398,7 @@ } ], "source": [ - "#df_pdc_cases = pd.DataFrame(cases)\n", + "# df_pdc_cases = pd.DataFrame(cases)\n", "df_pdc_cases = pd.json_normalize(cases)\n", "df_pdc_cases.shape, list(df_pdc_cases.columns)" ] @@ -759,11 +762,7 @@ "# Search by cases.primary_site.\n", "cases_endpt = \"https://api.gdc.cancer.gov/cases\"\n", "\n", - "field_groups = [\n", - " \"diagnoses\",\n", - " \"samples\",\n", - " \"demographic\"\n", - " ]\n", + "field_groups = [\"diagnoses\", \"samples\", \"demographic\"]\n", "field_groups = \",\".join(field_groups)\n", "\n", "filters = {\n", @@ -785,26 +784,26 @@ " \"otherandunspecifiedpartsofmouth\",\n", " \"otherandunspecifiedpartsoftongue\",\n", " \"palate\",\n", - " \"tonsil\"\n", - " ]\n", - " }\n", + " \"tonsil\",\n", + " ],\n", + " },\n", "}\n", "\n", "params = {\n", " \"filters\": json.dumps(filters),\n", " \"expand\": field_groups,\n", " \"format\": \"JSON\",\n", - " \"size\": 1000\n", + " \"size\": 1000,\n", "}\n", "\n", - "response = requests.get(cases_endpt, params = params)\n", + "response = requests.get(cases_endpt, params=params)\n", "result = json.loads(response.content)\n", "\n", "print(f\"Warnings: {result['warnings']}\")\n", "\n", - "gdc_entries = result['data']['hits']\n", + "gdc_entries = result[\"data\"][\"hits\"]\n", "\n", - "with open('gdc-head-and-mouth.json', 'w') as file:\n", + "with open(\"gdc-head-and-mouth.json\", \"w\") as file:\n", " json.dump(gdc_entries, file, indent=2, sort_keys=True)" ] }, @@ -871,7 +870,7 @@ } ], "source": [ - "#pd_gdc_entries = pd.DataFrame(gdc_entries)\n", + "# pd_gdc_entries = pd.DataFrame(gdc_entries)\n", "df_gdc_entries = pd.json_normalize(gdc_entries)\n", "df_gdc_entries.shape, list(df_gdc_entries.columns)" ]